- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to unmount 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
05-29-2007 02:50 AM
05-29-2007 02:50 AM
What can I do to unmount it?
# umount /dev/vgignite2/lvol2
umount: cannot unmount /sapmnt/LLC : Device busy
umount: return error 1.
#
# fuser -cu /sapmnt/LLC
/sapmnt/LLC:
# fuser -ku /sapmnt/LLC
/sapmnt/LLC:
# umount /dev/vgignite2/lvol2
umount: cannot unmount /sapmnt/LLC : Device busy
umount: return error 1.
#
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 02:53 AM
05-29-2007 02:53 AM
Solutionhttp://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.77/
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 02:54 AM
05-29-2007 02:54 AM
Re: Unable to unmount filesystem
try lsof
http://gatekeep.cs.utah.edu/hppd/cgi-bin/search?package=on&description=on&term=lsof&Search=Search
It is much more efficient than fuser.
Also, dumb question - is /sapmnt/LLC your current directory? You cannot unmount a filesystem if you in it (or in a child directory)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 02:55 AM
05-29-2007 02:55 AM
Re: Unable to unmount filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 02:57 AM
05-29-2007 02:57 AM
Re: Unable to unmount filesystem
One classic error is to be 'cd'ed into the directory that you are trying to unmount. Make sure that you aren't.
You can also try 'fuser' using the block special device file instead of the mountpoint:
# fuser -ku /dev/dsk/cXtYdZ
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 05:03 AM
05-29-2007 05:03 AM
Re: Unable to unmount filesystem
perhaps this filesystem is NFS-exported.
Unexport it via
exportfs -uv /sapmnt/LLC
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 05:16 AM
05-29-2007 05:16 AM
Re: Unable to unmount filesystem
True, but fuser tends to show this even as useless as it is.
Best is to use lsof as suggested by all above.
Jov