From owner-freebsd-questions@FreeBSD.ORG Wed Apr 14 19:46:37 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E45521065678 for ; Wed, 14 Apr 2010 19:46:37 +0000 (UTC) (envelope-from dbehterev@gmail.com) Received: from mail-bw0-f214.google.com (mail-bw0-f214.google.com [209.85.218.214]) by mx1.freebsd.org (Postfix) with ESMTP id 7460C8FC28 for ; Wed, 14 Apr 2010 19:46:37 +0000 (UTC) Received: by bwz6 with SMTP id 6so523967bwz.13 for ; Wed, 14 Apr 2010 12:46:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:received :message-id:subject:to:content-type; bh=DsBgmr1Qt3ewI+Nd7fYcRH4Gb/8fxBAVKJfGHjSgZvg=; b=UmMJyyD8hOiP3KqZp0QaxJreRpvpjap749TBmcUFYNLf2qtawZI9CebzNVosKcCWIm JK3/1of+fYBMV5RbEhq06Cq0RzN3Scs3rOTRU4BvRxdqZqs3t6zP1c1bwD0Q4kupq9q5 +ROlBYAjoNRXO0YCrBvCG4ZwKESAkufCA8ne0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=XdI+Kkx4+QaDoOWTKS0VOmhiGKOokBoFfCy/bbdCrn3evxA8yVdQUeMXQT6mWa6C+k +XxGFJSg1tF9ewCYB3U+iUfAnBg/K+DW2LZKpujiW7FEhJLH8htJNXn3cZxobDos6LfX lxZGrPAWQWo1dnBy6QKBSYCX8NsXaTqs9kzXg= MIME-Version: 1.0 Received: by 10.204.117.65 with HTTP; Wed, 14 Apr 2010 12:46:16 -0700 (PDT) From: =?KOI8-R?B?5M3J1NLJyiDixcjUxdLF1w==?= Date: Wed, 14 Apr 2010 23:46:16 +0400 Received: by 10.204.47.153 with SMTP id n25mr8964366bkf.199.1271274396283; Wed, 14 Apr 2010 12:46:36 -0700 (PDT) Message-ID: To: freebsd-questions@freebsd.org X-Mailman-Approved-At: Wed, 14 Apr 2010 21:09:26 +0000 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Question about fstab 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: Wed, 14 Apr 2010 19:46:38 -0000 Hello all! I want use redundant scheme for booting my OS. For instance I have two ufs slices and each of them keep /boot folder. For example, I want use fstab like that: # Device Mountpoint FStype Options Dump Pass# /dev/ad6s1b none swap sw 0 0 /dev/ad6s1a /bootdir ufs rw 1 1 /dev/ad4s1a /mnt/bootdir ufs rw 1 1 That scheme will work unless one of ufs slices go out. After that I just select bootable disk in BIOS and reboot. But during boot process I have got error that one of slices can't be mounted. It's not convinient. How can I get decision? Thank all.