From owner-freebsd-questions@FreeBSD.ORG Tue Nov 30 18:16:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7894A16A4CE for ; Tue, 30 Nov 2004 18:16:34 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 234F743D31 for ; Tue, 30 Nov 2004 18:16:34 +0000 (GMT) (envelope-from freebsdnews@gmail.com) Received: by wproxy.gmail.com with SMTP id 68so83670wri for ; Tue, 30 Nov 2004 10:16:33 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=eVSQ2eVwFbWdPqKPM7fJpdXK8h/HG85WfoQZq5UWSCMwigzDPXokLtsxhZ0VnNvaERBcfknN68E82RrmblMt3wOTaSEwrxzFB1Dz7ZLWb1wdh7bXg3uPmwBn97Y7CKYcmWNhjYh0WdUSo6YVAPgTBtqL/GSqRy6tQd92b+6GMXc= Received: by 10.54.26.8 with SMTP id 8mr193976wrz; Tue, 30 Nov 2004 10:16:33 -0800 (PST) Received: by 10.54.50.27 with HTTP; Tue, 30 Nov 2004 10:16:33 -0800 (PST) Message-ID: <8292450b04113010165bc95e74@mail.gmail.com> Date: Tue, 30 Nov 2004 12:16:33 -0600 From: CHris Rich To: Kevin Smith In-Reply-To: <41A6FD07.1020900@adelphia.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <41A6FD07.1020900@adelphia.net> cc: freebsd-questions@freebsd.org Subject: Re: mount ntfs (windows) file system in /etc/fstab fails at boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: CHris Rich List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2004 18:16:34 -0000 On Fri, 26 Nov 2004 01:53:11 -0800, Kevin Smith wrote: > I am able to mount my windows partition manually by either: > > > mount -t ntfs /dev/ad0s1 /windows > > or by putting an entry in by /dev/fstab that looks like: > > /dev/ad0s1 /windows ntfs ro 2 2 > > and using command: > > > mount /windows > > -however, > > If I leave this entry in my /etc/fstab, the OS reports inconsistency > errors on bootup when it tries to mount and goes into single-user mode. > I then had to remount / for read-write and delete the line in the fstab > before it would boot again. I put a script in /usr/local/etc/rc.d/ that mounts my windows partition for me not sure if it is the best way to do it but it works for me Regards > > Am I using the wrong syntax for the fstab entry ?- also, why does it > mount manually with no error - but complain at boot time ? > > -K