- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can't umount the path
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
10-31-2006 09:19 PM
10-31-2006 09:19 PM
Can't umount the path
I use lsof to check the path /home/edp and found many process , I have already kill all these process , but still can't umount the path , I sure I am not stand on the path , can advise what is wrong ? how can I know anyone stand on the path ? thx
#umount /home/edp
umount: /home/edp: device is busy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2006 09:32 PM
10-31-2006 09:32 PM
Re: Can't umount the path
Yang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2006 10:19 PM
10-31-2006 10:19 PM
Re: Can't umount the path
U can findout the users by the command
fuser -cu /home/edp (or)
ps -eaf | grep -i /home/edp
once u found anything, by using following command u can kill the same.
fuser -ku /home/edp
Thanks,
Vivek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2006 05:33 AM
11-01-2006 05:33 AM
Re: Can't umount the path
If they are, then they would have to be unmounted before /home/edp can be unmounted.
-Sanjay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2006 09:32 AM
11-01-2006 09:32 AM
Re: Can't umount the path
if the path is contained in an exported filesystem for NFS, you'll have to unexport it before you can umount it.
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2006 10:05 AM
11-01-2006 10:05 AM
Re: Can't umount the path
The form has spoken. :-)
fuser -cu /home/edp
fusre -ku /home/edp
One of these should work.
Sp,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2006 11:02 PM
11-01-2006 11:02 PM
Re: Can't umount the path
try as mentioned above
fuser -cu /filesystem ; and then kill the process
fuser -k /filesystem
if needed force the umount
# umount -f /filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2006 01:06 AM
11-02-2006 01:06 AM
Re: Can't umount the path
/#fuser -cu /home/edp
home/edp:
Which does not give any process information.
In addition to having a possible NFS export you may check to see that samba is also running.