- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Can't unmount nfs mounted filesystem
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
11-15-2001 01:22 PM
11-15-2001 01:22 PM
Can't unmount nfs mounted filesystem
umount: cannot unmount /risc/tools/pkgs : Block device required
Does anyone know of a workaround to this other than a reboot. Any assistance would be greatly appreciated.
Kenny H.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 01:26 PM
11-15-2001 01:26 PM
Re: Can't unmount nfs mounted filesystem
If the NFS filesystem is mounted at /mount_point,
use
umount /mount_point
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 01:30 PM
11-15-2001 01:30 PM
Re: Can't unmount nfs mounted filesystem
example
umount /dev/vg01/lvol1
If there are any nfs users, you may have to kill the nfsd's also.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 01:30 PM
11-15-2001 01:30 PM
Re: Can't unmount nfs mounted filesystem
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 01:38 PM
11-15-2001 01:38 PM
Re: Can't unmount nfs mounted filesystem
There is a possibility that the there is no filesystem mounted at the directory you are trying to unmount. Do a "bdf" or "mount" to check the correct mount point.
John, you can use the "umount /mount_point" to unmount a filesystem.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 01:40 PM
11-15-2001 01:40 PM
Re: Can't unmount nfs mounted filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 02:02 PM
11-15-2001 02:02 PM
Re: Can't unmount nfs mounted filesystem
* I have been using the unmount command as:
umount /risc/tools/pkgs
* I cannot unmount the device because this is an nfs mounted filesystem
* the output of bdf is as follows:
nfsserver:/risc/atools/apkgs/pkgs.HP-UXOS
3938272 2111294 1433151 60% /risc/tools/pkgs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 02:05 PM
11-15-2001 02:05 PM
Re: Can't unmount nfs mounted filesystem
nfsserver:/risc/atools/abin/bin.HP-UXOS /risc/tools/bin nfs rw,hard,intr 0 0
nfsserver:/risc/atools/alib/lib.HP-UXOS /risc/tools/lib nfs rw,hard,intr 0 0
nfsserver:/risc/atools/apkgs/pkgs.HP-UXOS /risc/tools/pkgs nfs rw,hard,intr 0 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 03:27 PM
11-15-2001 03:27 PM
Re: Can't unmount nfs mounted filesystem
umount -F nfs -h
or
umount -F nfs
Adam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 03:40 PM
11-15-2001 03:40 PM
Re: Can't unmount nfs mounted filesystem
try
umount -F nfs -v /risc/tools/pkgs
-> makes sure the type is got correctly and is in verbose mode.
If that also doesnt work,
#cd /risc/tools/pkgs
#ll (to see whether you can still access it).
#cd /
#fuser -cu /risk/tools/pkgs
-> is any user/process using it?
**
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2001 06:12 AM
11-16-2001 06:12 AM
Re: Can't unmount nfs mounted filesystem
If a user is in the directory do
a fuser -uc to see if any process or using it.
Then kill the process and try to umount again.