1834909 Members
2990 Online
110071 Solutions
New Discussion

Swapping CD's

 
Denton Williams
Advisor

Swapping CD's

Hi All,
I have been prompted to insert the second CD while I am doing an install. The problem is that when I try to eject it won't eject and when I try to unmount it gives a message the the device is busy. What other kinds of actions should I take.

CHeers,
Dee.
Working hard
4 REPLIES 4
Paula J Frazer-Campbell
Honored Contributor

Re: Swapping CD's

Hi
Two things to check:-
1. That you are not in or using the mount point.
2. Fuser -u point will show if anything else is.


Paula
If you can spell SysAdmin then you is one - anon
A. Clay Stephenson
Acclaimed Contributor

Re: Swapping CD's

This sounds like an Oracle 8.1.x install. The real key to this is to not start in the /cdrom directory but rather in another directory and execute the installer with an absolute pathname. Then when are prompted for the 2nd CD, you are able to unmount/mount.
If it ain't broke, I can fix that.
Jacob_2
Advisor

Re: Swapping CD's

Hi,

find the process using the CD drive
# fuser -ku /cdrom
# fuser -ku {device file for CDROM}

Also you may be already in /cdrom.
#pwd
Verify that you are nod in that mount-point

Sanjay_6
Honored Contributor

Re: Swapping CD's

Hi Denton,

You are probably in the directory where the cd is mounted. if there is a install process running it may get killed if you want to forcibly unmount the CD. This is how you forcibly unmount a cd/filesystem,

fuser -cu /mount_point

this will list the user and the process id of the process using that mount point. to kill all the process using the mount point,

fuser -ck /mount_point

Again do a fuser and see if there are any more processes left. If not try to unmount the cd/filesystem,

umount /mount_point

Hope this helps.

Regds