From owner-freebsd-geom@FreeBSD.ORG Fri Nov 10 09:56:02 2006 Return-Path: X-Original-To: freebsd-geom@freebsd.org Delivered-To: freebsd-geom@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 800FD16A40F for ; Fri, 10 Nov 2006 09:56:02 +0000 (UTC) (envelope-from etc@fluffles.net) Received: from auriate.fluffles.net (a83-68-3-169.adsl.cistron.nl [83.68.3.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AF3E43D49 for ; Fri, 10 Nov 2006 09:56:01 +0000 (GMT) (envelope-from etc@fluffles.net) Received: from destiny ([10.0.0.21]) by auriate.fluffles.net with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GiT7A-0006Ol-LK; Fri, 10 Nov 2006 10:56:00 +0100 Message-ID: <45544CC0.4060007@fluffles.net> Date: Fri, 10 Nov 2006 10:56:16 +0100 From: Fluffles User-Agent: Thunderbird 1.5.0.7 (X11/20060917) MIME-Version: 1.0 To: Andrei Kolu References: <20061024152308.GG75746@garage.freebsd.pl> <200611100028.03345.antik@bsd.ee> <4553ACD0.9080405@fluffles.net> <200611101127.35700.antik@bsd.ee> In-Reply-To: <200611101127.35700.antik@bsd.ee> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-geom@freebsd.org Subject: Re: gjournaled UFS2 filesystem is gone after power outage X-BeenThere: freebsd-geom@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GEOM-specific discussions and implementations List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Nov 2006 09:56:02 -0000 Andrei Kolu wrote: > My /etc/fstab contents: > /dev/ad0s4.journal /mnt/ad0s4 ufs rw,noauto 0 0 > The noauto option means that it won't be mounted at boot time. The two zeroes behind that, means that it won't be checked by FSCK. If you had an unclean shutdown and you want to mount the journaled volume again, you will need to fsck it manually with "fsck -t ufs /dev/ad0s4.journal", and then mount it. If you'd like to the fscking automatically, change the two "0" to two "2", like this: /dev/ad0s4.journal /mnt/ad0s4 ufs rw,noauto 2 2 - Veronica