Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Jul 2001 11:46:38 -0400
From:      "Gerald T. Freymann" <freymann@scaryg.shacknet.nu>
To:        "Radhika Sambamurti" <radhika_narendran@yahoo.com>, <freebsd-questions@FreeBSD.ORG>
Subject:   Re: Mounting cdrom - failing
Message-ID:  <02d001c10ed7$aac80fc0$0f01a8c0@phantom>
References:  <20010717152300.20571.qmail@web9302.mail.yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
> I am trying to mount my cdrom drive and every time I give
> the command: mount -t cd9660 /dev/cd0a /cdrom
> it comes back with the error: cd9660: device not configured

Try:    mount_cd9660 /dev/acd0c /cdrom

 Also, why not create (as root) the following two files?

in /usr/local/bin
create a file called "cdin" with two lines

#!/bin/sh
mount_cd9660 /dev/acd0c /cdrom

Then:    chmod 744 /usr/local/bin/cdin

 Now you can insert a CD, type "cdin" and voila.

 Alternatively, to unmount the sucker..

in /usr/local/bin
create a file called "cdout" with these 3 lines:

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

Then:    chmod 744 /usr/local/bin/cdout

 Now you can type "cdout" and voila

(taken from freebsd cheat cheats site I believe
http://www.mostgraveconcern.com/freebsd/)

-gf





To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?02d001c10ed7$aac80fc0$0f01a8c0>