Date: Fri, 4 Feb 2000 14:38:09 +1300 From: Jonathan Chen <jonc@logisticsoftware.co.nz> To: Jerry Lei <tylei@hotmail.com> Cc: freebsd-questions@FreeBSD.ORG Subject: Re: mount addtional cdrom II Message-ID: <20000204143809.A30358@jonc.logisticsoftware.co.nz> In-Reply-To: <20000203221101.55247.qmail@hotmail.com>; from tylei@hotmail.com on Thu, Feb 03, 2000 at 02:11:01PM -0800 References: <20000203221101.55247.qmail@hotmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Feb 03, 2000 at 02:11:01PM -0800, Jerry Lei wrote: [...] > Below is the context of /etc/fstab related to cdrom. I added the second line > myself. > > /dev/acd0c cd9660 /cdrom/cd0 ro, noauto 0 0 > /dev/acd1c cd9660 /cdrom/cd1 ro, noauto 0 0 > Your /etc/fstab is wrong. Please read the man page for fstab(5) carefully. It should be: /dev/acd1c /cdrom/cd1 cd9660 ro,noauto 0 0 Note: mount point comes after device, and there are no spaces between the various mount-options. > I use mount to mount my cdrom and error message like this > > #mount -t cd9660 -o ro /dev/acd1c /cdrom/cd1 > usage: No cd9660 such files or directories > > What could I do to let FreeBSD get another cdrom? Thanks. Make sure your mount point and the device node exists. ie /cdrom/cd1 needs to be a existing directory, and /dev/acd1c refers to a valid device. Jonathan Chen ------------------------------------------------------------------------ "We laugh in the face of danger, we drop icecubes down the vest of fear" - Edmond Blackadder III 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?20000204143809.A30358>