From owner-freebsd-questions Tue Jun 18 00:52:13 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA07660 for questions-outgoing; Tue, 18 Jun 1996 00:52:13 -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 AAA07652 for ; Tue, 18 Jun 1996 00:52:04 -0700 (PDT) Received: (from nadav@localhost) by csd.cs.technion.ac.il (8.6.11/8.6.10) id KAA21505; Tue, 18 Jun 1996 10:51:41 +0300 Date: Tue, 18 Jun 1996 10:48:14 +0300 (IDT) From: Nadav Eiron X-Sender: nadav@csd To: Richard Beyer cc: freebsd-questions@cs.technion.ac.il Subject: Re: Mount a CDROM? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII ReSent-Date: Tue, 18 Jun 1996 10:51:30 +0300 (IDT) ReSent-From: Nadav Eiron ReSent-To: questions@freebsd.org ReSent-Message-ID: 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