From owner-svn-doc-head@FreeBSD.ORG Thu Dec 18 12:45:18 2014 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03FDBB7E; Thu, 18 Dec 2014 12:45:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E35AD108B; Thu, 18 Dec 2014 12:45:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBICjH2N045709; Thu, 18 Dec 2014 12:45:17 GMT (envelope-from danger@FreeBSD.org) Received: (from danger@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBICjHJx045708; Thu, 18 Dec 2014 12:45:17 GMT (envelope-from danger@FreeBSD.org) Message-Id: <201412181245.sBICjHJx045708@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danger set sender to danger@FreeBSD.org using -f From: Daniel Gerzo Date: Thu, 18 Dec 2014 12:45:17 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r46099 - head/en_US.ISO8859-1/articles/remote-install X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2014 12:45:18 -0000 Author: danger Date: Thu Dec 18 12:45:17 2014 New Revision: 46099 URL: https://svnweb.freebsd.org/changeset/doc/46099 Log: - update some stuff to reflect the current situation Reported by: Dave Lawrence Modified: head/en_US.ISO8859-1/articles/remote-install/article.xml Modified: head/en_US.ISO8859-1/articles/remote-install/article.xml ============================================================================== --- head/en_US.ISO8859-1/articles/remote-install/article.xml Thu Dec 18 09:44:47 2014 (r46098) +++ head/en_US.ISO8859-1/articles/remote-install/article.xml Thu Dec 18 12:45:17 2014 (r46099) @@ -161,9 +161,9 @@ working directory to the directory where the mfsBSD scripts will reside: - &prompt.root; fetch http://people.freebsd.org/~mm/mfsbsd/mfsbsd-latest.tar.gz -&prompt.root; tar xvzf mfsbsd-1.0-beta1.tar.gz -&prompt.root; cd mfsbsd-1.0-beta1/ + &prompt.root; fetch http://mfsbsd.vx.sk/release/mfsbsd-2.1.tar.gz +&prompt.root; tar xvzf mfsbsd-2.1.tar.gz +&prompt.root; cd mfsbsd-2.1/ Configuration of @@ -242,24 +242,33 @@ ifconfig_re0="inet 192.168.0.2 netmask 2 <acronym>CD</acronym>, or the installation <acronym>ISO</acronym> image to <filename>/cdrom</filename>. For the sake of example, in this article we will assume that - you have downloaded the &os; 7.0-RELEASE + you have downloaded the &os; 10.1-RELEASE <acronym>ISO</acronym>. Mounting this ISO image to the <filename>/cdrom</filename> directory is easy with the &man.mdconfig.8; utility:</para> - <screen>&prompt.root; <userinput>mdconfig -a -t vnode -u 10 -f <replaceable>7.0-RELEASE-amd64-disc1.iso</replaceable></userinput> + <screen>&prompt.root; <userinput>mdconfig -a -t vnode -u 10 -f <replaceable>FreeBSD-10.1-RELEASE-amd64-disc1.iso</replaceable></userinput> &prompt.root; <userinput>mount_cd9660 /dev/md10 /cdrom</userinput></screen> + <para>Since the recent &os; releases do not contain regular + distribution sets, it is required to extract the &os; distribution + files from the distribution archives located on the + <acronym>ISO</acronym> image:</para> + + <screen>&prompt.root; <userinput>mkdir <replaceable>DIST</replaceable></userinput> +&prompt.root; <userinput>tar -xvf /cdrom/usr/freebsd-dist/base.txz -C <replaceable>DIST</replaceable></userinput> +&prompt.root; <userinput>tar -xvf /cdrom/usr/freebsd-dist/kernel.txz -C <replaceable>DIST</replaceable></userinput></screen> + <para>Next, build the bootable <application>mfsBSD</application> image:</para> - <screen>&prompt.root; <userinput>make BASE=/cdrom/<replaceable>7.0-RELEASE</replaceable></userinput></screen> + <screen>&prompt.root; <userinput>make BASE=<replaceable>DIST</replaceable></userinput></screen> <note> <para>The above <command>make</command> has to be run from the top level of the <application>mfsBSD</application> directory tree, for example - <filename>~/mfsbsd-1.0-beta1/</filename>.</para> + <filename>~/mfsbsd-2.1/</filename>.</para> </note> </sect2>