From owner-freebsd-questions@freebsd.org Thu Sep 29 02:42:27 2016 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8FBFC01725 for ; Thu, 29 Sep 2016 02:42:27 +0000 (UTC) (envelope-from vas@mpeks.tomsk.su) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 196BC38A for ; Thu, 29 Sep 2016 02:42:26 +0000 (UTC) (envelope-from vas@mpeks.tomsk.su) X-Virus-Scanned: by clamd daemon 0.98.5_1 for FreeBSD at relay2.tomsk.ru Received: from [212.73.125.240] (HELO admin.sibptus.transneft.ru) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPS id 39364092; Thu, 29 Sep 2016 08:42:05 +0600 Received: from admin.sibptus.transneft.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.transneft.ru (8.14.9/8.14.9) with ESMTP id u8T2gPxf035633; Thu, 29 Sep 2016 09:42:25 +0700 (KRAT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.transneft.ru (8.14.9/8.14.9/Submit) id u8T2gM1s035629; Thu, 29 Sep 2016 09:42:22 +0700 (KRAT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.transneft.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Thu, 29 Sep 2016 09:42:22 +0700 From: Victor Sudakov To: Mike Tancsa Cc: freebsd-questions@freebsd.org Subject: Re: complete clone/restore from a ZFS-based system replication stream Message-ID: <20160929024222.GA35090@admin.sibptus.transneft.ru> References: <20160926154720.GA75556@admin.sibptus.transneft.ru> <688eec35-bc7b-ae05-b765-106933b522d1@sentex.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <688eec35-bc7b-ae05-b765-106933b522d1@sentex.net> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Sep 2016 02:42:27 -0000 Mike Tancsa wrote: > > Here are the steps I used to restore a "level zero" zfs file onto a > new/fresh mirror. Mike, thanks to your and others' help I have developed a solution which works for me, at least partially. The only problem with the solution is that I create the second pool on /dev/vtbd2p3, but when the new system boots, there is no /dev/vtbd2 (naturally) and the pool uses /dev/diskid/DISK-BHYVE-8054-2C08-770Ap3 for the physical device, burying all /dev/vtbd0p* devices. Here is my scenario: =================================================== #!/bin/sh DISK=/dev/vtbd2 ZPOOL=foobar1 zfs send -R zroot@test1 > /mnt/test1.zfs zpool destroy ${ZPOOL} gpart destroy -F ${DISK} gpart create -s gpt ${DISK} gpart add -s 64k -t freebsd-boot ${DISK} gpart add -s 2g -t freebsd-swap ${DISK} gpart add -t freebsd-zfs ${DISK} gpart bootcode -b /boot/pmbr -p /boot/gptzfsboot -i 1 ${DISK} zpool create -f -o altroot=/mnt2 -O canmount=off -m none ${ZPOOL} ${DISK}p3 zfs receive -vF ${ZPOOL} < /mnt/test1.zfs zpool set bootfs=${ZPOOL}/ROOT/test1 ${ZPOOL} zpool export ${ZPOOL} =================================================== -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru