From owner-freebsd-questions@FreeBSD.ORG Wed Dec 1 05:52:06 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 9290416A4CE for ; Wed, 1 Dec 2004 05:52:06 +0000 (GMT) Received: from rosebud.otenet.gr (rosebud.otenet.gr [195.170.0.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5DC043D2D for ; Wed, 1 Dec 2004 05:52:04 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.gr (patr530-a170.otenet.gr [212.205.215.170]) iB15pxUU028510; Wed, 1 Dec 2004 07:51:59 +0200 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id iB15pv8U042087; Wed, 1 Dec 2004 07:51:57 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id iB15pvSE042086; Wed, 1 Dec 2004 07:51:57 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Wed, 1 Dec 2004 07:51:56 +0200 From: Giorgos Keramidas To: Kevin Smith Message-ID: <20041201055156.GC41749@gothmog.gr> References: <41A6FD07.1020900@adelphia.net> <8292450b04113010165bc95e74@mail.gmail.com> <41ACBC7E.2020502@adelphia.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41ACBC7E.2020502@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 List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2004 05:52:06 -0000 On 2004-11-30 10:31, Kevin Smith wrote: > Kris K. explained the problem earlier in the thread. > > The correct entry in your /etc/fstab should be somethig like bellow. I > had a "2" in the 6th field (instead of "0" or leave it out); this causes > the file system to be checked on bootup which fails with the ntfs file > system. If you have this in your fstab, you should not need to mount it > in your rc files. Mine mounts automatically with no problem with the > following line: > > /dev/ad0s1 /windows ntfs ro 2 0 Hi Kevin, Since the second from the last column is the "dump frequency" and I wouldn't really expect anyone to take backups of NTFS volumes with dump(8) and restore(8), you can safely use a second zero there too: /dev/ad0s1 /windows ntfs ro 0 0 Regards, Giorgos