Gentoo Archives: gentoo-doc-cvs

From: "Sven Vermeulen (swift)" <swift@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: gentoo-x86-quickinstall-system.xml
Date: Fri, 12 Aug 2011 19:09:21
Message-Id: 20110812190910.91B372004C@flycatcher.gentoo.org
1 swift 11/08/12 19:09:10
2
3 Modified: gentoo-x86-quickinstall-system.xml
4 Log:
5 Fix bug #378119 - Various OpenRC changes
6
7 Revision Changes Path
8 1.3 xml/htdocs/doc/en/gentoo-x86-quickinstall-system.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-system.xml?rev=1.3&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-system.xml?rev=1.3&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-system.xml?r1=1.2&r2=1.3
13
14 Index: gentoo-x86-quickinstall-system.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-system.xml,v
17 retrieving revision 1.2
18 retrieving revision 1.3
19 diff -u -r1.2 -r1.3
20 --- gentoo-x86-quickinstall-system.xml 6 Mar 2008 05:59:25 -0000 1.2
21 +++ gentoo-x86-quickinstall-system.xml 12 Aug 2011 19:09:10 -0000 1.3
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-system.xml,v 1.2 2008/03/06 05:59:25 nightmorph Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall-system.xml,v 1.3 2011/08/12 19:09:10 swift Exp $ -->
26 <!DOCTYPE included SYSTEM "/dtd/guide.dtd">
27
28 <included>
29
30 -<version>2</version>
31 -<date>2008-03-05</date>
32 +<version>3</version>
33 +<date>2011-08-12</date>
34
35 <section>
36 <title>Configure the system</title>
37 @@ -64,13 +64,14 @@
38 </p>
39
40 <pre caption="Configure networking">
41 -livecd etc # <i>cd conf.d</i>
42 -livecd conf.d # <i>echo 'config_eth0=( "192.168.1.10/24" )' >> net</i>
43 -livecd conf.d # <i>echo 'routes_eth0=( "default via 192.168.1.1" )' >> net</i>
44 +livecd etc # <i>cd init.d</i>
45 +livecd init.d # <i>ln -s net.lo net.eth0</i>
46 +livecd init.d # <i>cd ../conf.d</i>
47 +livecd conf.d # <i>echo 'config_eth0="192.168.1.10 netmask 255.255.255.0 brd 192.168.1.255"' >> net</i>
48 +livecd conf.d # <i>echo 'routes_eth0="default via 192.168.1.1"' >> net</i>
49 livecd conf.d # <i>rc-update add net.eth0 default</i>
50 -<comment>(If you compiled your network card driver as a module,
51 -add it to /etc/modules.autoload.d/kernel-2.6)</comment>
52 -livecd conf.d # <i>echo r8169 >> /etc/modules.autoload.d/kernel-2.6</i>
53 +<comment>(If you compiled your network card driver as a module, add it to /etc/conf.d/modules</comment>
54 +livecd conf.d # <i>echo 'modules="r8169"' >> /etc/conf.d/modules</i>
55 <comment>(If you want to reconnect via ssh after you have rebooted your new box)</comment>
56 livecd conf.d # <i>rc-update add sshd default</i>
57 </pre>
58 @@ -91,24 +92,21 @@
59 </pre>
60
61 <p>
62 -Edit <path>/etc/conf.d/clock</path> to define the time zone you used
63 +Edit <path>/etc/timezone</path> to define the time zone you used
64 previously.
65 </p>
66
67 -<pre caption="Edit /etc/conf.d/clock">
68 -livecd conf.d # <i>nano -w /etc/conf.d/clock</i>
69 -TIMEZONE="Europe/Brussels"
70 +<pre caption="Edit /etc/timezone">
71 +Europe/Brussels
72 </pre>
73
74 <p>
75 -Check the system configuration in <path>/etc/rc.conf</path>,
76 -<path>/etc/conf.d/rc</path>, <path>/etc/conf.d/keymaps</path> and edit any of
77 -those files if required.
78 +Check the system configuration in <path>/etc/rc.conf</path> and
79 +<path>/etc/conf.d/keymaps</path> and edit any of those files if required.
80 </p>
81
82 <pre caption="Optional: edit some config files">
83 livecd conf.d # <i>nano -w /etc/rc.conf</i>
84 -livecd conf.d # <i>nano -w /etc/conf.d/rc</i>
85 livecd conf.d # <i>nano -w /etc/conf.d/keymaps</i>
86 </pre>