From owner-freebsd-fs@freebsd.org Sun May 29 12:20:42 2016 Return-Path: Delivered-To: freebsd-fs@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 DA363B4E601 for ; Sun, 29 May 2016 12:20:42 +0000 (UTC) (envelope-from blackcatzilla@gmail.com) Received: from mail-io0-x235.google.com (mail-io0-x235.google.com [IPv6:2607:f8b0:4001:c06::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B75CB1C2E for ; Sun, 29 May 2016 12:20:42 +0000 (UTC) (envelope-from blackcatzilla@gmail.com) Received: by mail-io0-x235.google.com with SMTP id p64so54817231ioi.2 for ; Sun, 29 May 2016 05:20:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=/Cdi3f8udJhY6coEJpIDcyL6LZwEhe9KKPRxJ9mMiDQ=; b=kHb9EngIDr4UNEkJ9VyqrpFv1GotyYtqpSts3ZTa7/UbCQARFnoKFCEZu+ROcsHK5l xnhQyGOZe6AoHZmjVTlSSsQWcqsC9mLQXZiloDHG6jzS10mmq1p3+C0croebcCZZS3hW lf1A649zdlQ7aTCOOCD4JMQv0pQobuCZLNquyFHnDUUY3fsNWhcOm0xbCist6U0u0kxF 2ilNqooM8JUCbtCBlNLdskr/Fu8/d1nP55flAPEEjfWkYse+GIbrXnJLD1Tvy11Xn4rP ALZRNcc/Mwwc1mRDMtOPbpoJN45mTXY7IgGFBwYAt8Lz5NxMaqbEZV7a7DPnYZkd6WEh LjIA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=/Cdi3f8udJhY6coEJpIDcyL6LZwEhe9KKPRxJ9mMiDQ=; b=T08y9vjEiJ7EmzDwhx7qnRc4nNKFfdT5QICaAFPcSnUuoyuDjmxP+XrRnpzOIhFznT SoN1nVGqTp4B9aQoL1Z2zoq/kAQGJPkkp7E+ee47FfbVSgYZ7TWg81yZMDqpiJxK5fSh xMpEQZFaN3p309sSQyjZ+/gSP6zvfiLU5LnqJNMLNoDurUvFUjQCKtyzkc+yJhUVPH7N 50KWnQf8hl3P67UvesRWB503JVzpxmnIiEoXZAHUSHHBKnhM5klEYDQbjJf8fd8MCTes uFygt3U4nJV2IT+CHO7TUxiCsd8gYjYMJL1Ad+6OpQnLXIrXg/F7NupxBKv2b8d46osM Vb6A== X-Gm-Message-State: ALyK8tIiNryU/BTZF1/qb4BGLUJWHr3YpNqd9PbWbC8ZdjukRyuYH+jCCqq8Zd2h3rUxXDrtzIGTwvlwJaaOYg== X-Received: by 10.107.200.18 with SMTP id y18mr18718371iof.187.1464524442149; Sun, 29 May 2016 05:20:42 -0700 (PDT) MIME-Version: 1.0 Received: by 10.36.46.201 with HTTP; Sun, 29 May 2016 05:20:22 -0700 (PDT) In-Reply-To: References: From: BlackCat Date: Sun, 29 May 2016 15:20:22 +0300 Message-ID: Subject: Re: ZFS - RAIDZ1 Recovery (Evgeny Sam) To: Evgeny Sam Cc: freebsd-fs@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 May 2016 12:20:42 -0000 2016-05-29 5:42 GMT+03:00 Evgeny Sam : > The Command "zpool import -fFn 2918670121059000644 zh_vol_old" does not show > anything. > I briefly checked sources and looks like ZFS assume that it could import pool. Try following command (note the absence of -n option): # zpool import -o ro -fF 2918670121059000644 zh_vol_old it should really import your pool in readonly mode. -- BR BC