Operating System - HP-UX
1833802 Members
2120 Online
110063 Solutions
New Discussion

how nfs file system will be mount

 
SOLVED
Go to solution
subrata biswal
Frequent Advisor

how nfs file system will be mount

what is the command to mount NFS file system?

How i can change user information in command line
what is the command?

6 REPLIES 6
Steven Schweda
Honored Contributor

Re: how nfs file system will be mount

man mount
Patrick Wallek
Honored Contributor

Re: how nfs file system will be mount

>>what is the command to mount NFS file system?

The command is: 'mount' See 'man mount_nfs

>>How i can change user information in command line
>>what is the command?

What user information? Are you talking about information in /etc/passwd for a user? If so, you can use 'usermod'. 'man usermod' for details. If you are talking about something else, please elaborate.
Bishwajit Kumar
Frequent Advisor
Solution

Re: how nfs file system will be mount

Assuming this HP-UX

Step#1
#showmount -e
Will list all exported shares

Step#2
#mkdir mymnt

Step#3
#mount :/ /mymnt

Step#4
#bdf

To check the mounted file system.
or
#mount
or
#cat /etc/mntntab

#bdf command doesn't work on other UNIX
So for Linux
use
#df -kh

Hope this helps.

eric lipede_1
Regular Advisor

Re: how nfs file system will be mount

steve - you so funny ! ;-)
Steven Schweda
Honored Contributor

Re: how nfs file system will be mount

> steve - you so funny ! ;-)

What's your better answer for such a nearly
content-free/context-free question?
subrata biswal
Frequent Advisor

Re: how nfs file system will be mount

ok