- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: nfs mount
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:28 AM
05-19-2003 08:28 AM
nfs mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:33 AM
05-19-2003 08:33 AM
Re: nfs mount
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:34 AM
05-19-2003 08:34 AM
Re: nfs mount
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:36 AM
05-19-2003 08:36 AM
Re: nfs mount
For NFS stuff look for lines like:
remote_machine:/filesystem/to/mount /mounted/on/local/dir nfs 0 0
The specific to look for is the 'nfs' in the filesystem type column.
If it isn't mounted you can do a:
# mount -a
Which will try to mount everything in /etc/fstab
or
# mount /mounted/on/local/dir
will attempt to mount that specific dir.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:36 AM
05-19-2003 08:36 AM
Re: nfs mount
Have a look at '/etc/exports'. It defines the directories to be exported. '/etc/xtab' will show you the exported directories. Thus, 'exports' is analogous to '/etc/fstab' and 'xtab' is analogous to '/etc/mnttab' insofar as the first file declares the intention; the second file hold what was actually done.
See the man pages for 'exports(4)' for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:38 AM
05-19-2003 08:38 AM
Re: nfs mount
# bdf
.. to show all currently mounted filesystems. If you find any mount point in /etc/fstab that does not appear in the "bdf" output you can manually try to mount it. The quickest way is to simply run ..
# mount -a
.. which will mount all entries in fstab file (already mounted FS will be be flagged as "already mounted").
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:40 AM
05-19-2003 08:40 AM
Re: nfs mount
You can mount any NFS filesystem listed in /etc/fstab by issuing
mount /mntpath
where /mntpath is the mount-point specified in fstab.
mount -F nfs host:/dirpath /mntpoint
will allow you to mount NFS volumes not listed in fstab.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:40 AM
05-19-2003 08:40 AM
Re: nfs mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:41 AM
05-19-2003 08:41 AM
Re: nfs mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:41 AM
05-19-2003 08:41 AM
Re: nfs mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:41 AM
05-19-2003 08:41 AM
Re: nfs mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:43 AM
05-19-2003 08:43 AM
Re: nfs mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:43 AM
05-19-2003 08:43 AM
Re: nfs mount
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:54 AM
05-19-2003 08:54 AM
Re: nfs mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 08:56 AM
05-19-2003 08:56 AM
Re: nfs mount
# mount remote_host:/dir /dir
will mount /dir from remote_host to /dir on the local machine and it does not have to be specified in the fstab file.