From owner-freebsd-fs@FreeBSD.ORG Sat Aug 25 16:08:42 2012 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DDAD71065670 for ; Sat, 25 Aug 2012 16:08:42 +0000 (UTC) (envelope-from artemb@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5AF948FC1A for ; Sat, 25 Aug 2012 16:08:41 +0000 (UTC) Received: by lbbgg13 with SMTP id gg13so2025814lbb.13 for ; Sat, 25 Aug 2012 09:08:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=gQM85xPWtlSzcwjFMa+bzm2YXap2UQp6LxswwQrjmiM=; b=Tkmmxr7XzJuNhwpcDVsI/nxMbC4dzPyQC99eVYc6TV7TXdjP2BoqkioG1CUH2yqGqU UAbBk0te6ZIrPIFtBgeE2RQUMefTyKzKwHIuymeUN56LydupbQHE+do3/zN66blrX+zx TdHki5iYgqF4g2hECHRr4tiW/B75Qnlle3RwK6OEZtsuly4ZmmZQ3vvXbTWhDFRT+6y1 l35Sz9/qZUFqsHiMs6bk8MxY4QK7CvIRNqY5rUgounszOOprTI45xl4vqDmrCVdYMtjF ICevJntsTlTOaC0BimT44o+DNQKDJ4Fz3Hj0Qy6C0Ekg/QCIyckp3vGqT/Frch45NIH5 sGew== MIME-Version: 1.0 Received: by 10.152.125.133 with SMTP id mq5mr9196580lab.12.1345910920865; Sat, 25 Aug 2012 09:08:40 -0700 (PDT) Sender: artemb@gmail.com Received: by 10.112.23.164 with HTTP; Sat, 25 Aug 2012 09:08:40 -0700 (PDT) In-Reply-To: References: Date: Sat, 25 Aug 2012 09:08:40 -0700 X-Google-Sender-Auth: 14lGPD4c5QF9Pm64vwEI3PyyJ2Q Message-ID: From: Artem Belevich To: antonin tessier Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-fs@freebsd.org Subject: Re: Recover ZFS pool after having deleted zfs configuration file in /boot X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2012 16:08:43 -0000 > When I try to create a zpool with "zpool create home /dev/ada0p7", I get this error "/dev/ada0p7 is part of potentially active pool 'home'. ZFS had just saved your data from your attempt to destroy it. > But "zpool list" tells me no pool exists. That issue is very disturbing since /dev/ada0p7 was mounted as /usr/home, so I can't get my data back... try "zfs import" and see if it finds your pool. If it does, do 'zfs import home' and zfs should make your pool available again. --Artem