From owner-freebsd-questions Tue Jun 18 01:10:09 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA08435 for questions-outgoing; Tue, 18 Jun 1996 01:10:09 -0700 (PDT) Received: from csd.cs.technion.ac.il (csd.cs.technion.ac.il [132.68.32.8]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id BAA08428 for ; Tue, 18 Jun 1996 01:10:02 -0700 (PDT) Received: (from nadav@localhost) by csd.cs.technion.ac.il (8.6.11/8.6.10) id LAA23584; Tue, 18 Jun 1996 11:09:33 +0300 Date: Tue, 18 Jun 1996 11:09:32 +0300 (IDT) From: Nadav Eiron X-Sender: nadav@csd To: Richard Beyer cc: questions@freebsd.org Subject: Re: Mount a CDROM? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 18 Jun 1996, Richard Beyer wrote: > Warning! Newbie question! > > I've inherited a set-up FreeBSD 2.1r system and can't work out how to > mount the CDROM. > > If have the folllowing line in /etc/fstab > ... > #/dev/wcd0c /cdrom cd9660 ro 1 1 > ... First, that line is commented out, so uncomment it. You should probably also mark it "noauto" so that at boot time (don't if you want it to mount at each reboot), the cdrom will not be mounted, and also set the last two fields to 0 (as CDROM's don't get dumped or fscked). This would give: /dev/wcd0c /cdrom cd9660 ro,noauto 0 0 Then, all you have to do is: mount /cdrom > > Thanks in advance. > > Richard. > Nadav