- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Umount directory
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-06-2002 04:19 AM
09-06-2002 04:19 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2002 04:22 AM
09-06-2002 04:22 AM
Re: Umount directory
You can use fuser command or look for the lsof tool in internet in order to know the process that locks the file system.
Regards,
Justo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2002 04:29 AM
09-06-2002 04:29 AM
Re: Umount directory
Besides running processes (see fuser/lsof) there are some more things that may keep an file system busy, e.g.:
- active fs swap
- other fs mounted into it
If the fs is NFS exported then an NFS client lock may also be able to make trouble. You then need to restart rpc.lockd and rpc.statd... then the umount should work.
Regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2002 04:31 AM
09-06-2002 04:31 AM
Re: Umount directory
A very common reason for not being able to unmount a filesystem is that you or someone else is CD'ed into the directory.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2002 05:27 AM
09-06-2002 05:27 AM
Re: Umount directory
http://docs.hp.com/hpux/onlinedocs/B1031-90048/00/00/42-con.html
GL,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2002 11:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2002 07:34 AM
09-09-2002 07:34 AM
Re: Umount directory
This could mean there are apps actively accessing the files. Or it could be as simple as a shell account being in that directory.
The first thing to do is cd to / to make sure you aren't the one keeping the device busy. :-)
Then if that doesn't work issue:
fuser -c /file/system/to/unmount
fuser -u /file/system/to/unmount
This will tell you what processes are using the file system. Check each process to make sure you know what it is and shutdown the process.
Once no processes are using the file system you will be able to unmount it.
Sean
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2002 07:40 AM
09-09-2002 07:40 AM
Re: Umount directory
fuser -ck /mountpoint; umount /mount point , this should do the work , incase there are processes associated they will get killed . You can also try lsof to find out what are the open files accociated with the mount point.
Manoj Srivastava