From owner-freebsd-questions@FreeBSD.ORG Thu Jan 11 06:11:19 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D98D316A40F for ; Thu, 11 Jan 2007 06:11:19 +0000 (UTC) (envelope-from lists@stringsutils.com) Received: from zoraida.natserv.net (p65-147.acedsl.com [66.114.65.147]) by mx1.freebsd.org (Postfix) with ESMTP id 9DAC013C448 for ; Thu, 11 Jan 2007 06:11:19 +0000 (UTC) (envelope-from lists@stringsutils.com) Received: from zoraida.natserv.net (localhost.natserv.net [127.0.0.1]) by zoraida.natserv.net (Postfix) with ESMTP id A67D2C2F6 for ; Thu, 11 Jan 2007 01:11:18 -0500 (EST) Received: by zoraida.natserv.net (Postfix, from userid 58) id 4A0DCC2E9; Thu, 11 Jan 2007 01:11:18 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on zoraida.natserv.net X-Spam-Level: X-Spam-Status: No, score=-0.8 required=4.0 tests=AWL,SPF_PASS autolearn=disabled version=3.1.7 Received: from zoraida.natserv.net (zoraida.natserv.net [66.114.65.147]) by zoraida.natserv.net (Postfix) with ESMTP id 56FBDC163; Thu, 11 Jan 2007 01:11:15 -0500 (EST) References: <45A45773.8020604@tandon.net> Message-ID: X-Mailer: http://www.courier-mta.org/cone/ From: Francisco Reyes To: Sahil Tandon Date: Thu, 11 Jan 2007 01:11:14 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="US-ASCII" Content-Disposition: inline Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: Free BSD Questions list Subject: Re: How to prevent a filesystem from getting checked by fsck? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jan 2007 06:11:19 -0000 Sahil Tandon writes: > Francisco Reyes wrote: > >> Have a server with 3 large filesystems. >> I would like to have only one checked by fsck and mounted. >> The other two I want to fsck and mount manually. >> >> Is it enough to change options to "rw,noauto" and pass to 0 for the two >> I don't want mounted or fscked? > > See "man 5 fstab": > > If the option ``noauto'' is specified, the file system will not > be auto-matically mounted at system startup. > > and > > If the sixth field is not present or is zero, a value of zero is > returned and fsck(8) will assume that the file system does not > need to be checked. Thanks for the reply. I read both fsck and fstab pages.. I just wanted to make sure that I was reading the man pages correctly..