From owner-freebsd-questions Tue Jul 17 8:46:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from marlo.eagle.ca (marlo.eagle.ca [209.167.16.10]) by hub.freebsd.org (Postfix) with ESMTP id 0061437B401 for ; Tue, 17 Jul 2001 08:46:22 -0700 (PDT) (envelope-from freymann@scaryg.shacknet.nu) Received: from phantom (staff.eagle.ca [209.167.16.15]) by marlo.eagle.ca (8.11.3/8.11.3) with SMTP id f6HFhRo84704; Tue, 17 Jul 2001 11:43:27 -0400 (EDT) (envelope-from freymann@scaryg.shacknet.nu) Message-ID: <02d001c10ed7$aac80fc0$0f01a8c0@phantom> From: "Gerald T. Freymann" To: "Radhika Sambamurti" , References: <20010717152300.20571.qmail@web9302.mail.yahoo.com> Subject: Re: Mounting cdrom - failing Date: Tue, 17 Jul 2001 11:46:38 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > 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