Gentoo Archives: gentoo-doc-cvs

From: "Xavier Neys (neysx)" <neysx@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: gentoo-x86-quickinstall-stage.xml
Date: Thu, 22 Jan 2009 16:59:51
Message-Id: E1LQ2uB-0001ff-3w@stork.gentoo.org
1 neysx 09/01/22 16:59:47
2
3 Modified: gentoo-x86-quickinstall-stage.xml
4 Log:
5 #256012 bind-mount /dev before chrooting
6
7 Revision Changes Path
8 1.7 xml/htdocs/doc/en/gentoo-x86-quickinstall-stage.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-stage.xml?rev=1.7&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-stage.xml?rev=1.7&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-stage.xml?r1=1.6&r2=1.7
13
14 Index: gentoo-x86-quickinstall-stage.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-stage.xml,v
17 retrieving revision 1.6
18 retrieving revision 1.7
19 diff -u -r1.6 -r1.7
20 --- gentoo-x86-quickinstall-stage.xml 1 Nov 2008 09:45:22 -0000 1.6
21 +++ gentoo-x86-quickinstall-stage.xml 22 Jan 2009 16:59:47 -0000 1.7
22 @@ -1,11 +1,11 @@
23 <?xml version='1.0' encoding="UTF-8"?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-stage.xml,v 1.6 2008/11/01 09:45:22 neysx Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-stage.xml,v 1.7 2009/01/22 16:59:47 neysx Exp $ -->
26 <!DOCTYPE included SYSTEM "/dtd/guide.dtd">
27
28 <included>
29
30 -<version>6</version>
31 -<date>2008-11-01</date>
32 +<version>7</version>
33 +<date>2009-01-22</date>
34
35 <section>
36 <title>Setting Up The Stage</title>
37 @@ -81,13 +81,15 @@
38 <body>
39
40 <p>
41 -Mount the <path>/proc</path> file system, copy over the
42 -<path>/etc/resolv.conf</path> file, then chroot into your Gentoo environment.
43 +Mount the <path>/proc</path> &amp; <path>/dev</path> file systems, copy over
44 +the <path>/etc/resolv.conf</path> file, then chroot into your Gentoo
45 +environment.
46 </p>
47
48 <pre caption="Chroot">
49 livecd usr # <i>cd /</i>
50 livecd / # <i>mount -t proc proc /mnt/gentoo/proc</i>
51 +licecd / # <i>mount -o bind /dev /mnt/gentoo/dev</i>
52 livecd / # <i>cp -L /etc/resolv.conf /mnt/gentoo/etc/</i>
53 livecd / # <i>chroot /mnt/gentoo /bin/bash</i>
54 livecd / # <i>env-update &amp;&amp; source /etc/profile</i>