- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: umount question
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
09-24-2002 01:30 PM
09-24-2002 01:30 PM
Thanks....
Patrick
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 01:39 PM
09-24-2002 01:39 PM
Re: umount question
I don't think there is much you can do. You can try to see what process might be holding open that mount and kill it, but it sounds like one of those cases where being a little broken is worse that being completely broken. The disk is sick but not completely dead, so the O/S hasn't given up on it and probably is getting a bunch of retrys.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 01:56 PM
09-24-2002 01:56 PM
Solution# mount -v
which will list what's in the mount table. Say for an example of an NFS entry that was stale ..(server name = mars).
mars:/opt/apps on /opt/appsA type nfs....
And you want to try to umount this.
# fuser mars:/opt/apps
==> This list what processes are on the FS.
# fuser -k mars:/opt/apps
==> Try to kill those processes.
Now you should be able to umount it ..
# umount mars:/opt/apps
And ... don't forget to comment the bad entry in the /etc/fstab file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 02:01 PM
09-24-2002 02:01 PM
Re: umount question
exportfs -u directory_you_want_to_unexport.
(man exportfs).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 02:19 PM
09-24-2002 02:19 PM
Re: umount question
Regards...
Patrick Snyder