From owner-freebsd-current@FreeBSD.ORG Sat Aug 29 21:51:04 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8058E1065670 for ; Sat, 29 Aug 2009 21:51:04 +0000 (UTC) (envelope-from andreast-list@fgznet.ch) Received: from smtp.fgznet.ch (mail.fgznet.ch [81.92.96.47]) by mx1.freebsd.org (Postfix) with ESMTP id 1B2B58FC08 for ; Sat, 29 Aug 2009 21:51:03 +0000 (UTC) Received: from deuterium.andreas.nets ([91.190.8.131]) by smtp.fgznet.ch (8.13.8/8.13.8/Submit_SMTPAUTH) with ESMTP id n7TLp1Ne068604; Sat, 29 Aug 2009 23:51:01 +0200 (CEST) (envelope-from andreast-list@fgznet.ch) Message-ID: <4A99A2C5.8020900@fgznet.ch> Date: Sat, 29 Aug 2009 23:51:01 +0200 From: Andreas Tobler User-Agent: Thunderbird 2.0.0.22 (Macintosh/20090605) MIME-Version: 1.0 To: Kamigishi Rei References: <4A997442.1060200@fgznet.ch> <20090829183906.GS1881@deviant.kiev.zoral.com.ua> <4A9988ED.2040403@fgznet.ch> <20090829201614.GU1881@deviant.kiev.zoral.com.ua> <4A999344.5000703@fgznet.ch> <20090829205723.GW1881@deviant.kiev.zoral.com.ua> <4A999A07.9000204@fgznet.ch> <4A99A0F7.7000205@haruhiism.net> In-Reply-To: <4A99A0F7.7000205@haruhiism.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.64 on 81.92.96.47 Cc: Kostik Belousov , freebsd-current Subject: Re: Boot panic -CURRENT #196643 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Aug 2009 21:51:04 -0000 Kamigishi Rei wrote: > Andreas Tobler wrote: >> I'd like to mount ad4s4a to /mnt with the following command: >> tc# mount -t zfs /dev/ad4s4a /mnt >> mount: /dev/ad4s4a : Invalid argument >> Any idea what I'm doing wrong? Or is it not possible? > You cannot mount ZFS filesystems by using /sbin/mount. Yup, I learned. > > man zpool (see "zpool import") > man zfs load the zfs stuff. 'mount -t zfs /dev/blah' loaded the module zfs.ko for me. tc# zpool export zroot tc# zpool import zroot tc# cd /zroot/ Then I was able to modify my faulty conf file. Thanks! Andreas