From owner-freebsd-questions@freebsd.org Thu Nov 3 17:38:54 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 6F645C2D0BC for ; Thu, 3 Nov 2016 17:38:54 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from anny.lostinspace.de (anny.lostinspace.de [195.30.95.33]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 303601BAD for ; Thu, 3 Nov 2016 17:38:53 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from server.idefix.lan (aftr-185-17-207-88.dynamic.mnet-online.de [185.17.207.88]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: idefix@fechner.net) by anny.lostinspace.de (Postfix) with ESMTPSA id 2E483785742 for ; Thu, 3 Nov 2016 18:38:45 +0100 (CET) DMARC-Filter: OpenDMARC Filter v1.3.1 anny.lostinspace.de 2E483785742 Authentication-Results: anny.lostinspace.de; dmarc=none header.from=fechner.net DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fechner.net; s=default; t=1478194725; bh=nQWZUvIsMrB8qt+G2cIrf9ZMNhu1Hnqmo+ruQQV0Fu0=; h=To:From:Subject:Date; b=pkbeqf6YdwCzLiibe+beDgTpLnHw4JEGEqWkbcJZg0JEKi/E9nPXStklh0plNKUZa SR4wDGmsOrjYjFjRFhe3yPa/4d0rZ2b/Iy6KcQynuAbkSKdLU0c6Ihr1tsymz9DHLP 8LrxMqeIJnTpyX67mT/FBvsXwCaiZJj0O8OygNI0= Received: from [192.168.0.151] (aftr-185-17-207-88.dynamic.mnet-online.de [185.17.207.88]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by server.idefix.lan (Postfix) with ESMTPSA id 92D3565BB4E for ; Thu, 3 Nov 2016 18:38:16 +0100 (CET) To: FreeBSD Mailing List From: Matthias Fechner Subject: Prevent zpool from being mounted on next boot Message-ID: Date: Thu, 3 Nov 2016 18:37:56 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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, 03 Nov 2016 17:38:54 -0000 Dear all, I currently have the problem that my boot partition is only 64kb which is not enough for freebsd 11 new zpool version. So I removed one disk from my zpool mirror. Corrected the partition size to 256kb and copied all data with zfs send/receive to the new pool. The zpool name changed from tank to zroot. I would modify on the new pool the loader.conf and the bootfs option for the new pool by: zpool set bootfs=3Dzroot/ROOT/default zroot But I fear a little bit that at a reboot the new pool zroot and the old p= ool tank is mounted to / which would cause serious problems. Is there a way to prevent the mount from pool tank at next boot? I would not like to destroy the pool (tank) till I can boot the new one w= ithout problems. Thanks Matthias