From owner-freebsd-questions@FreeBSD.ORG Wed Oct 13 23:50:21 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A49C016A4D2 for ; Wed, 13 Oct 2004 23:50:21 +0000 (GMT) Received: from smtp102.rog.mail.re2.yahoo.com (smtp102.rog.mail.re2.yahoo.com [206.190.36.80]) by mx1.FreeBSD.org (Postfix) with SMTP id 1270343D39 for ; Wed, 13 Oct 2004 23:50:21 +0000 (GMT) (envelope-from Mike.Jeays@rogers.com) Received: from unknown (HELO ?192.168.2.100?) (mjeays2551@24.114.152.2 with plain) by smtp102.rog.mail.re2.yahoo.com with SMTP; 13 Oct 2004 23:50:20 -0000 From: Mike Jeays To: Laszlo Antal In-Reply-To: <1097691732.126E39B5@j29.dngr.org> References: <1097691732.126E39B5@j29.dngr.org> Content-Type: text/plain Organization: Message-Id: <1097711419.30508.138.camel@chaucer> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Date: 13 Oct 2004 19:50:19 -0400 Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: Unable to umount Cdrom drive. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Oct 2004 23:50:21 -0000 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