I can't umount on my Linux machine and not by umount -f please advice?
[root@Linux umount /mnt/cdrom
umount: /mnt/cdrom: device is busy
umount: /mnt/cdrom: device is busy
I can't umount on my Linux machine and not by umount -f please advice?
[root@Linux umount /mnt/cdrom
umount: /mnt/cdrom: device is busy
umount: /mnt/cdrom: device is busy
You can use fuser to see which processes are still using that mount:
If you want to kill those processes via fuser, use
-k
:I often (as in: I wish I had a nickel every time...) find myself unable to umount because I've cd'd to a mount as myself then su'd to root. My old shell is still on the mount point so I can't umount. Try exiting the root shell and see if your user's shell is still cd'd to something under
/mnt/cdrom
.You need to figure out what is using the tile system in the mount and stop those process. You can get an idea of what might be there by running
lsof | grep /mnt/cdrom
to see what procses have that folder open. You might start by closing any file managers and cd'ing out of there from any terminals.You are probably viewing the CD from a console or file browser without realising. Linux won't let you unmount it if it's in use.
If you don't care about what may be using the device you can
umount -f /mnt/cdrom
which will force it to be unmounted.