From owner-freebsd-current@FreeBSD.ORG Mon Jul 13 00:13:16 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 DF1FF106564A for ; Mon, 13 Jul 2009 00:13:16 +0000 (UTC) (envelope-from kingedgar@gmail.com) Received: from mail-yx0-f181.google.com (mail-yx0-f181.google.com [209.85.210.181]) by mx1.freebsd.org (Postfix) with ESMTP id 8F5508FC13 for ; Mon, 13 Jul 2009 00:13:16 +0000 (UTC) (envelope-from kingedgar@gmail.com) Received: by yxe11 with SMTP id 11so3666613yxe.3 for ; Sun, 12 Jul 2009 17:13:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=ZBK5dhTicYIoM0uII3KUpcGYrL/M6MLGagQDJUor8Rg=; b=Zn/ZrkQZxf7cWU5Myn27PYqlMCnSk46HyrpdNYuC/8BiZWKmTdLjtrxu0FxAerTjgh wVFBlh7q2FLI+e24taKZKJvU8xyfU96EMUuzgL3kn372uuT55V1wL21yQn+vqK0YNI7J Q7+nwFBqE2fnNHYHin1dryW3kOiuh201fVRIo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=keht5lvRu7TOfDFRDDjEwe1Kd9JPOwyJHKnDz7ogUkv2anRFnX6VXWKm54Wp+XlveK oMUiCk2/Gdl96v15vS3kBNxQMtYMPOhd49Y/V15te3yOjzf4+SKj847lkEMfbIWIxKG8 2NNyAcL/XRv+rghaoeZtoJJPgTZHZAhIUZlz0= MIME-Version: 1.0 Received: by 10.101.71.3 with SMTP id y3mr6347850ank.62.1247443995802; Sun, 12 Jul 2009 17:13:15 -0700 (PDT) In-Reply-To: <790a9fff0907121709u573ed982x8245692d27b01c07@mail.gmail.com> References: <790a9fff0907101159w495b644dge4a4bd81de0bda9b@mail.gmail.com> <20090710211809.GA84773@crodrigues.org> <790a9fff0907101911y7143ed4bnbb050d78ebc21558@mail.gmail.com> <790a9fff0907110606t61da8ebbufa5575d12d949ca@mail.gmail.com> <790a9fff0907110747t7187fba6h7fdb82a40f57d489@mail.gmail.com> <20090712175929.f38d4c26.nork@FreeBSD.org> <790a9fff0907121203w7e814493n97eaa8664531f37@mail.gmail.com> <970380130907121701g15ea2461v497602529ff57fe9@mail.gmail.com> <790a9fff0907121709u573ed982x8245692d27b01c07@mail.gmail.com> Date: Sun, 12 Jul 2009 19:13:15 -0500 Message-ID: <970380130907121713g209a23e4l80f0decea99c2958@mail.gmail.com> From: Jason Garrett To: Scot Hetzel Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-current Subject: Re: [SOLVED]Re: How to create ZFS on Root using MBR slices? 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: Mon, 13 Jul 2009 00:13:17 -0000 On Sun, Jul 12, 2009 at 19:09, Scot Hetzel wrote: > On Sun, Jul 12, 2009 at 7:01 PM, Jason Garrett wrote: > > > > > >>snip-all > > > > I have a bit of a problem with the instructions, specifically the part > > below... > > > > 1. Fixit# cd src ; ./install.sh all > > 2. Fixit# cd ./kernel ; ./install.sh generic > > 3. Fixit# cd /zroot/boot ; cp -rp GENERIC/* ../kernel > > > > > > Line one works fine and as expected. Line two does not work, spits out > this > > error: cd: can't cd to ./kernel. > > > > If I run cd ../kernel; ./install.sh generic it does not error, but the > next > > line does, like this... > > > > > > cp: ../kernel is not a directory > > > > > > > > Any ideas on what I might be doing wrong? > > > The instructions were in error, I have updated them to:: > > 8. install FreeBSD to zroot > > Fixit# cd /dist/8.0-20090628-SNAP > Fixit# export DESTDIR=/zroot > Fixit# for dir in base catpages dict doc games info lib32 manpages ports; \ > do (cd $dir ; ./install.sh) ; done > Fixit# cd src ; ./install.sh all > Fixit# cd ../kernel ; ./install.sh generic > Fixit# cd /zroot/boot ; cp -rp GENERIC/* /zroot/boot/kernel/ Thanks! > > > Scot >