Skip site navigation (1)Skip section navigation (2)
Date:      13 Oct 2004 19:50:19 -0400
From:      Mike Jeays <Mike.Jeays@rogers.com>
To:        Laszlo Antal <lantal@tmail.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: Unable to umount Cdrom drive.
Message-ID:  <1097711419.30508.138.camel@chaucer>
In-Reply-To: <1097691732.126E39B5@j29.dngr.org>
References:  <1097691732.126E39B5@j29.dngr.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 2004-10-13 at 14:22, Laszlo Antal wrote:
> Hi,
> 
> I have FreeBSD 4.10 installed.
> When I mount the cdrom with #mount -t cd9660 /dev/acd0c /cdrom
> everything works fine.I can get to my ports and everything
> But when I want to swap cds and I type #umount /cdrom
> I get this error message:: Unable to umount /cdrom, Device is busy.
> If I do the umont from KDE I get the same error message.
> What I'm doing wrong??
> 
> Thank you for all the help.
> 
> Laszlo
> 
> 
> --lantal
> _______________________________________________
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"

I use a script "eject", as follows. It CDs back to my home directory,
and then ejects the CD. Lazy but effective.


#!/bin/sh
cd $HOME
umount /cdrom
cdcontrol -f /dev/acd0c eject





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1097711419.30508.138.camel>