- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Umount: Device Busy
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
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
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
тАО12-15-2008 06:17 AM
тАО12-15-2008 06:17 AM
I have tried to unmount filesystem,
umount /dev/vg01/lvol11
but it is giving device busy
I have killed all the processes using
fuser -ku /dev/vg01/lvol11
However it is still giving the same error..
how to unmout this file system
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-15-2008 06:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-15-2008 06:35 AM
тАО12-15-2008 06:35 AM
Re: Umount: Device Busy
Try fuser -cuk /filesystem_name
As a matter of fact try umount /filesystem_name
If that does not work, shut down daemons like oracle and whatnot that might have open file handles on the file system.
There is always single use mode.
People normally don't name their file systems the same name as the logical volume name.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-15-2008 06:40 AM
тАО12-15-2008 06:40 AM
Re: Umount: Device Busy
If any user is currently cd'd into a directory on that particular filesystem this happens.
Best regards
Fredrik Eriksson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-15-2008 06:40 AM
тАО12-15-2008 06:40 AM
Re: Umount: Device Busy
Download and install lsof from;
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.81/
use lsof to list the current processes running on the device.
# lsof /dev/vg01/lvol11
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-15-2008 06:49 AM
тАО12-15-2008 06:49 AM
Re: Umount: Device Busy
I believe HPUX 11iv2 and 11iv3 have a forced umount option.
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-15-2008 07:23 PM
тАО12-15-2008 07:23 PM
Re: Umount: Device Busy
In HP-UX 11.11,
#fuser -cu [mountpoint)
it will show you , which user is loggedin in the mount point.
#fusert -ck [mountpoint]
To kill all the process, which is running in the mount point....
then try for unmount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-15-2008 08:48 PM
тАО12-15-2008 08:48 PM
Re: Umount: Device Busy
2. Kill these all process and ask to user dont fire any new query on it or shutdown the application.
asfter that just use fuser -ku and try to umount.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-15-2008 09:02 PM
тАО12-15-2008 09:02 PM
Re: Umount: Device Busy
What is the out put of #fuser -cu /mountpoint
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-06-2018 11:46 AM
тАО03-06-2018 11:46 AM
Re: Umount: Device Busy
Could be the reason where in mount point is shared as nfs on other nodes.
If yes, unshare the filesystem and check fuser -cu <mount point>
kill if any session running on it then try unmount
umount <mount point>