Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How Do I umount a busy File System?

Status
Not open for further replies.

Jonathan777

Technical User
Aug 23, 2001
26
0
0
US
Need help in Umounting a BUSY file system?

Thank

-JOn
 
Sol8
umount -f <filesystem>
&quot;forces&quot; the umount

Otherwise do a fuser <filesystem> and find the pid's of users/apps on that mounted filesystem and kill them, then umount.

C

 
And do make sure you're not in it yourself when trying to do this - an easy mistake to make! ;-)
 
Use the following command

# fuser -k <filesystem>
 
Another problem I have found is if you are sharing the filesystem that you are trying to umount, you will need to unmount it from all other hosts and unshare it on the local system before it can be unmounted. Regards,
Chuck
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top