From owner-freebsd-questions@FreeBSD.ORG Fri Nov 26 02:16:48 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 57F5116A4CE for ; Fri, 26 Nov 2004 02:16:48 +0000 (GMT) Received: from mta13.adelphia.net (mta13.mail.adelphia.net [68.168.78.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF64643D39 for ; Fri, 26 Nov 2004 02:16:47 +0000 (GMT) (envelope-from smithcam@adelphia.net) Received: from [192.168.0.199] (really [68.169.225.230]) by mta13.adelphia.net (InterMail vM.6.01.03.02 201-2131-111-104-20040324) with ESMTP id <20041126021646.FOAS12490.mta13.adelphia.net@[192.168.0.199]>; Thu, 25 Nov 2004 21:16:46 -0500 Message-ID: <41A7028D.7060803@adelphia.net> Date: Fri, 26 Nov 2004 02:16:45 -0800 From: Kevin Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20041120 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway , freebsd-questions@freebsd.org References: <41A6FD07.1020900@adelphia.net> <20041126020446.GA81791@xor.obsecurity.org> In-Reply-To: <20041126020446.GA81791@xor.obsecurity.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit 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 List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Nov 2004 02:16:48 -0000 Yes, putting a "0" in the sixth field takes care of the problem and the /windows file system is now mounted. thanks. > P.S. It's usually helpful to transcribe the exact error, instead of > describing vague symptoms. Yes,I agree. I was not able to retreive the exact error message from dmesg on boot as I had rebooted again and lost that. If you can tell me where I can get previous boot messages (dmesg.today didn have it either), I will post the message for the benefit of others in case they have this problem. Thanks again. -K Kris Kennaway wrote: >On Fri, Nov 26, 2004 at 01:53:11AM -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: >> >> > ^^^ > > The sixth field, (fs_passno), is used by the fsck(8) program to determine > the order in which filesystem checks are done at reboot time. The root > filesystem should be specified with a fs_passno of 1, and other filesys- > tems should have a fs_passno of 2. Filesystems within a drive will be > checked sequentially, but filesystems on different drives will be checked > at the same time to utilize parallelism available in the hardware. If > the sixth field is not present or is zero, a value of zero is returned > and fsck(8) will assume that the filesystem does not need to be checked. > >Since you don't want to run fsck on the ntfs volume, set this to zero. > > > >>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. >> >> > >P.S. It's usually helpful to transcribe the exact error, instead of >describing vague symptoms. > >Kris > >