From owner-freebsd-questions Tue Jul 16 14:04:40 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA20122 for questions-outgoing; Tue, 16 Jul 1996 14:04:40 -0700 (PDT) Received: from rocky.mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA20111 for ; Tue, 16 Jul 1996 14:04:36 -0700 (PDT) Received: (from nate@localhost) by rocky.mt.sri.com (8.7.5/8.7.3) id PAA26038; Tue, 16 Jul 1996 15:04:17 -0600 (MDT) Date: Tue, 16 Jul 1996 15:04:17 -0600 (MDT) Message-Id: <199607162104.PAA26038@rocky.mt.sri.com> From: Nate Williams To: Ken Marsh Cc: questions@freebsd.org Subject: Re: nologin file, lpr daemon, etc. In-Reply-To: References: Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > The problem was in my /etc/rc file: > > mount -a -t nonfs > > This would produce an error message: > > cd9660: -o auto: option not supported > filesystem mount failed, startup aborted. Umm, this points to a bug in /etc/fstab. In the line, there should be something that looks like this (device may vary). /dev/cd0a /cdrom cd9660 ro,noauto Note the 'noauto'. Someone has modified your system to use the 'auto' line, which is a typo. Change 'auto' -> 'noauto' and life will be well; > The line following the error message in the rc file was: > > exit 1 > > So my fix was changing it to: > > echo "let's press on anyway!" This is bad. Nate