From owner-freebsd-current@FreeBSD.ORG Mon Jul 13 00:09:42 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 483DD1065676 for ; Mon, 13 Jul 2009 00:09:42 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-vw0-f172.google.com (mail-vw0-f172.google.com [209.85.212.172]) by mx1.freebsd.org (Postfix) with ESMTP id EE2CA8FC15 for ; Mon, 13 Jul 2009 00:09:41 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: by vwj2 with SMTP id 2so1626292vwj.3 for ; Sun, 12 Jul 2009 17:09:41 -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 :content-transfer-encoding; bh=Tn2JYDwOxI3gzsOY8IOtXRQeRYj3wLV3+qJUgJH8Kx4=; b=avmlKIvuEVyexsQMHvJRImJd++Om6MutqlshHEK9pQrSeFvJTOnKvEI8dKOhzDpVAQ RCgGQv8AkIQJ2d1+RkRsnYV8VT4YX9BKAUecz1gkMzYzokWAPj9LfwgOeo2sR9H3v0v5 wYzACQoJDsfnwHx/IyiXxd57bC+zvlI0Z/ALk= 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:content-transfer-encoding; b=OF4Nqsjiy5kIySGd7ehj2BYST5JhRLdjyCl4DATOmOzx7JCUuvgFEiGrGvdoHNN8zW d07ztdmuAUwYlvlB9tEaGPRxKYMGJ9wiH7VOwTaN5xbLu704JpdTagJv1AVSGZye1dTj TSnKNNcyDFdk/WMubSNmyLCQwRT29tpoV+iqw= MIME-Version: 1.0 Received: by 10.220.76.1 with SMTP id a1mr6260513vck.80.1247443781205; Sun, 12 Jul 2009 17:09:41 -0700 (PDT) In-Reply-To: <970380130907121701g15ea2461v497602529ff57fe9@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> Date: Sun, 12 Jul 2009 19:09:41 -0500 Message-ID: <790a9fff0907121709u573ed982x8245692d27b01c07@mail.gmail.com> From: Scot Hetzel To: Jason Garrett Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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:09:42 -0000 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/ Scot