Quote:
Originally Posted by hhawaner Just tried that & this is what I get
scott@scott-desktop:/$ eject /dev/cdrom
umount: /media/cdrom0: device is busy.
(In some cases useful info about processes that use
the device is found by lsof( 8 ) or fuser(1))
eject: unmount of `/media/cdrom0' failed  | When you launch the setup program make sure you don't do it from the same directory. For example, if you mount the cdrom into /mnt/cdrom, you usually would do this: Code: cd /mnt/cdrom
wine setup.exe
But instead you should do: Code: wine /mnt/cdrom/setup.exe
From any other directory.
The problem is that if you are into /mnt/cdrom then your shell has that directory open. And being the directory just a particular type of file, you can't umount a media while you have a file within it open. Directories are no exception. |