Results 1 to 6 of 6
I've changed my permissions but if I want to unmount one of my cdroms it gives an error saying the device is busy. It also can't software eject. Can someone ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 04-06-2005 #1Just Joined!
- Join Date
- Mar 2005
- Posts
- 32
Moutning problems
I've changed my permissions but if I want to unmount one of my cdroms it gives an error saying the device is busy. It also can't software eject. Can someone please help me?
- 04-06-2005 #2
Do you have the cdrom open in any other windows? Is your terminal in the cdrom directory? If you absolutely need it unmounted, try:
or whatever the device is.Code:umount -fl /dev/hdc
- 04-06-2005 #3
If ur gettin this error, u have something open that is in the cd directory somewhere.
Make sure u dont have any file browsers open in the /mnt/cdrom directory or any shells there either.
If u still cant unmount it, try:
that will tell u what process is using the drive, then kill it with:Code:fuser /mnt/cdrom
<PID> is the PID shown be fuserCode:kill <PID>
then try unmount again."I am not an alcoholic, alcoholics go to meetings"
Registered Linux user = #372327
- 04-06-2005 #4
Or if the process is zombie or you can't even kill it with kill -9, try the -l switch to umount like I said. (Although that's highly unlikely as the signal sent by kill -9 cannot be handled by the program. it just kills it no matter what)
- 04-07-2005 #5Just Joined!
- Join Date
- Apr 2005
- Location
- India, At present in NTT, Japan as Partner Employee
- Posts
- 15
yeah!!
In worst case if the CD does not come out at all, you have to kill the relevant processes involved with CD operations, first try to identify the processed using cd - rom, with command ps with option -afe, then fill them one by one which are involved with cd-rom operation.
- 04-07-2005 #6Just Joined!
- Join Date
- Mar 2005
- Posts
- 32
Thanks to everyone who replied. I am sure I can use what you said.


Reply With Quote
