From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.50) id 1EPKjI-0001f5-SF for garchives@archives.gentoo.org; Tue, 11 Oct 2005 14:03:45 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.13.5/8.13.5) with SMTP id j9BDsNsJ012186; Tue, 11 Oct 2005 13:54:23 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [134.68.220.30]) by robin.gentoo.org (8.13.5/8.13.5) with ESMTP id j9BDsNe2004490 for ; Tue, 11 Oct 2005 13:54:23 GMT Message-Id: <200510111354.j9BDsNe2004490@robin.gentoo.org> Received: from lark.gentoo.osuosl.org ([140.211.166.177] helo=lark.gentoo.org) by smtp.gentoo.org with smtp (Exim 4.43) id 1EPKjQ-0003T4-4j for gentoo-doc-cvs@lists.gentoo.org; Tue, 11 Oct 2005 14:03:52 +0000 Received: by lark.gentoo.org (sSMTP sendmail emulation); Tue, 11 Oct 2005 14:03:40 +0000 From: "Lukasz Damentko" Date: Tue, 11 Oct 2005 14:03:40 +0000 To: gentoo-doc-cvs@lists.gentoo.org Subject: [gentoo-doc-cvs] cvs commit: gentoo-freebsd.xml Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-doc-cvs@gentoo.org Reply-to: docs-team@lists.gentoo.org X-Archives-Salt: ece71b10-7cd0-4108-a048-47d106a17bb5 X-Archives-Hash: 88b59a7d3eb3cbd2de6c5db5e36ad9e4 rane 05/10/11 14:03:40 Modified: xml/htdocs/doc/en gentoo-freebsd.xml Log: update from #108859 Revision Changes Path 1.8 +28 -22 xml/htdocs/doc/en/gentoo-freebsd.xml file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/gentoo-freebsd.xml?rev=1.8&content-type=text/x-cvsweb-markup&cvsroot=gentoo plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/gentoo-freebsd.xml?rev=1.8&content-type=text/plain&cvsroot=gentoo diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/gentoo-freebsd.xml.diff?r1=1.7&r2=1.8&cvsroot=gentoo Index: gentoo-freebsd.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-freebsd.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- gentoo-freebsd.xml 6 Oct 2005 15:58:16 -0000 1.7 +++ gentoo-freebsd.xml 11 Oct 2005 14:03:40 -0000 1.8 @@ -1,5 +1,5 @@ - + @@ -12,7 +12,7 @@ Michael Kohl - Otavio R. Piske + Otavio R. Piske Aaron Walker @@ -28,8 +28,8 @@ -1.5 -2005-10-06 +1.6 +2005-10-10 Introduction to FreeBSD @@ -153,9 +153,9 @@

-# mkdir /mnt/gfbsd
+# mkdir /mnt/gentoo
 (Replace X with the correct numbers for your hard disk.)
-# mount /dev/adXsXa /mnt/gfbsd
+# mount /dev/adXsXa /mnt/gentoo
 

@@ -164,33 +164,33 @@

+# cd /mnt/gentoo/
 (Any other Gentoo mirror which includes the experimental/ directory will also work.)
-# wget http://gentoo.osuosl.org/experimental/x86/freebsd/stage3-x86-fbsd-20051005.tar.bz2
-# cp stage3-x86-fbsd-20051005.tar.bz2 /mnt/gfbsd/
-# cd /mnt/gfbsd/
+# wget http://gentoo.osuosl.org/experimental/x86/freebsd/stages/stage3-x86-fbsd-20051005.tar.bz2
 # tar -jxvpf stage3-x86-fbsd-20051005.tar.bz2
+(A wrong make.conf was packaged with the current stage3 tarball. We'll now remove it.)
+# rm -f /mnt/gentoo/etc/make.conf
 (You can delete the tarball with the following command if you want to.)
 # rm stage3-x86-fbsd-20051005.tar.bz2
-(Create a home directory for root.)
-# mkdir /mnt/gfbsd/root
 

Before chrooting into the newly-extracted stage, you first must obtain an up-to-date copy of the Gentoo/FreeBSD overlay. The easiest way to achieve this is to to get our latest -snapshot which you than extract to /usr/local/portage. +snapshot which you than extract to /mnt/gentoo/usr/local/portage

-
-# cd /usr/local/portage
+
+# mkdir /mnt/gentoo/usr/local/portage    
+# cd /mnt/gentoo/usr/local/portage
 # wget http://gentoo.osuosl.org/experimental/snapshots/portage-alt-overlay-latest.tar.bz2
 # tar -xjf portage-alt-overlay-latest.tar.bz2
 

-Alternatively, you can also use Subversion to check out the current version of the overlay. -If you are interested in this possibility, please refer to the Gentoo/ALT overlay +Alternatively, you can also use Subversion to check out the current version of +the overlay. If you are interested in this possibility, please refer to the +Gentoo/ALT overlay documentation.

@@ -201,8 +201,9 @@

-# mount -t devfs none /mnt/gfbsd/dev/
-# chroot /mnt/gfbsd/ /bin/bash
+# mount -t devfs none /mnt/gentoo/dev/
+# cp /etc/resolv.conf /mnt/gentoo/etc
+# chroot /mnt/gentoo/ /bin/bash
 # source /etc/profile
 
@@ -228,8 +229,13 @@ on your connection might take quite a while.

-
+
 # emerge --sync
+(It's also possible to retrieve the Portage tree in another way:)
+# cd /
+# wget http://gentoo.osuosl.org/snapshots/portage-latest.tar.bz2
+# tar -xjf portage-latest.tar.bz2 -C /usr/
+# emerge --metadata
 

@@ -254,8 +260,8 @@ (Leave the chroot environment) # exit (Issued from outside the chroot) -# fdisk -b -B /mnt/gfbsd/boot/boot0 /dev/adX -# chroot /mnt/gfbsd /bin/bash +# fdisk -b -B /mnt/gentoo/boot/boot0 /dev/adX +# chroot /mnt/gentoo /bin/bash # disklabel -B adXsY

-- gentoo-doc-cvs@gentoo.org mailing list