From owner-freebsd-newbies@FreeBSD.ORG Sat Jan 22 00:20:12 2005 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AB4C16A4CE for ; Sat, 22 Jan 2005 00:20:12 +0000 (GMT) Received: from mail.bitfreak.org (mail.bitfreak.org [65.75.198.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3905043D48 for ; Sat, 22 Jan 2005 00:20:12 +0000 (GMT) (envelope-from dmp@bitfreak.org) Received: from spud (mail.bitfreak.org [65.75.198.146]) by mail.bitfreak.org (Postfix) with ESMTP id 60BBF19F2C; Fri, 21 Jan 2005 16:24:12 -0800 (PST) From: "Darren Pilgrim" To: "'Carleton Vaughn'" , Date: Fri, 21 Jan 2005 16:20:02 -0800 Message-ID: <001601c50018$211693b0$142a15ac@spud> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 In-Reply-To: <41EF2230.7080902@mindspring.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Importance: Normal Subject: RE: How to setup fstab for DVD, floppy and CD drives? X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jan 2005 00:20:12 -0000 > From: Carleton Vaughn >=20 > Brian John wrote: > > /dev/acd0 /cdrom auto rw,noauto 0 = 0 <...> > > "mount: exec mount_auto not found in /sbin:/usr/sbin: No such file = or > > directory. Please check that the disk is entered correctly." > >=20 > > How can I get this to work? > > "auto" is in the FStype field, and your mounter is trying to find the=20 > mount program for a file system of type "auto". There's no such = thing. <...> > Someone else probably better understands what "auto" in fstab is=20 > supposed to do. The "auto/noauto" option is used to tell `mount -a` if the filesystem = should be mounted automatically. The typical line for a CD/DVD device that = isn't needed at boot is something like: /dev/device /mountpoint cd9660 ro,noauto > P.S. Can someone comment on why the "rw" option is better=20 > here than "ro"? It's not, you should use "ro" for CD/DVD drives. The mounted = filesystems on these drives can't be written to even if the media itself is writeable. = In FreeBSD, CD/DVD writing is done by writing directly to the device.