From owner-freebsd-questions@FreeBSD.ORG Fri May 4 21:37:02 2012 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 AD6A3106566C; Fri, 4 May 2012 21:37:02 +0000 (UTC) (envelope-from vermaden@interia.pl) Received: from smtpo.poczta.interia.pl (smtpo.poczta.interia.pl [217.74.65.208]) by mx1.freebsd.org (Postfix) with ESMTP id 64FDE8FC0C; Fri, 4 May 2012 21:37:02 +0000 (UTC) Date: Fri, 04 May 2012 23:37:01 +0200 From: vermaden To: "Randal L. Schwartz" X-Mailer: interia.pl/pf09 In-Reply-To: <86ipgbg2p6.fsf@red.stonehenge.com> References: <86ipgbg2p6.fsf@red.stonehenge.com> Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=interia.pl; s=biztos; t=1336167421; bh=/rcYKFSJMbRw2x6L3CccyMg3xtW4VA4Yv1y95HhrWpQ=; h=Date:From:Subject:To:Cc:X-Mailer:In-Reply-To:References: Message-Id:MIME-Version:Content-Type:Content-Transfer-Encoding; b=F3nWlAaKeSAJwYDGGanCPCfpaDYJwBkGr22ajDI9wkgVel6sjJyTgUQieEevIZMAm 9taNdRoxc/6MmAqcpcHoqX6aIrV5XRr5/Uf/CkwHP4JFfbol+ZJmK1/k+p4BITobqr 2Se5Dreh2PHCAbJetMqH+xQorr/cNvOj3ENK7rEQ= Cc: freebsd-fs@FreeBSD.org, freebsd-questions@freebsd.org Subject: Re: HOWTO: FreeBSD ZFS Madness (Boot Environments) 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: Fri, 04 May 2012 21:37:02 -0000 > I have zfs-on-root using the classical documentation (everything under > zpool, possibly with some sub-mounts, but I've left those out lately). >=20 > Is there a way to transition my system to a form that beadm expects? > I tried just running it, and it's upset that zpool/ROOT doesn't exist. Hi, I would suggest using something like that: # zfs create -o mountpoint=3Dnone zpool/ROOT # zfs snapshot zpool@be # zfs clone zpool@be zpool/ROOT/default # fetch https://github.com/vermaden/beadm/blob/master/beadm # chmod +x beadm # ./beadm list # ./beadm activate default # reboot Be sure to use the latest *beadm* from one of these: https://raw.github.com/vermaden/beadm/master/beadm https://sourceforge.net/projects/beadm/ Let me know how these instructions work, especially if You got any errors o= r an unbootable system. It would be best if You would test this zpool root to sys/ROOT/be transitio= n under VirtualBox for 100% safety ;) Regards, vermaden --=20 ...