nightmorph    07/04/08 00:51:00

  Modified:             gentoo-x86-quickinstall.xml
  Log:
  updated x86 quickinstall guide, bug 173681

Revision  Changes    Path
1.70                 xml/htdocs/doc/en/gentoo-x86-quickinstall.xml

file : 
http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall.xml?rev=1.70&view=markup
plain: 
http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall.xml?rev=1.70&content-type=text/plain
diff : 
http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall.xml?r1=1.69&r2=1.70

Index: gentoo-x86-quickinstall.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall.xml,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- gentoo-x86-quickinstall.xml 26 Feb 2007 08:58:04 -0000      1.69
+++ gentoo-x86-quickinstall.xml 8 Apr 2007 00:51:00 -0000       1.70
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: 
/var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall.xml,v 1.69 
2007/02/26 08:58:04 nightmorph Exp $ -->
+<!-- $Header: 
/var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall.xml,v 1.70 
2007/04/08 00:51:00 nightmorph Exp $ -->
 
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
@@ -25,8 +25,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>12</version>
-<date>2007-02-26</date>
+<version>13</version>
+<date>2007-04-07</date>
 
 <chapter>
 <title>Introduction</title>
@@ -393,13 +393,15 @@
 <body>
 
 <p>
-Set your time zone information by copying the correct file from
-<path>/usr/share/zoneinfo</path> over the <path>/etc/localtime</path> file.
+Set your time zone information by setting the timezone listing from
+<path>/usr/share/zoneinfo</path> in <path>/etc/conf.d/clock</path>.
 </p>
 
 <pre caption="Copy your timezone file">
 <comment>(Using Brussels as an example)</comment>
-livecd / # <i>cp /usr/share/zoneinfo/Europe/Brussels /etc/localtime</i>
+livecd / # <i>nano -w /etc/conf.d/clock</i>
+TIMEZONE="CET"
+
 livecd / # <i>date</i>
 Wed Mar  8 00:46:05 CET 2006
 </pre>
@@ -489,7 +491,7 @@
 <pre caption="Configure networking">
 livecd etc # <i>cd conf.d</i>
 livecd conf.d # <i>echo 'config_eth0=( "192.168.1.10/24" )' >> net</i>
-livecd conf.d # <i>echo 'routes_eth0=( "default via 192.168.1.1" )' >> net</i>
+livecd conf.d # <i>echo 'routes_eth0=( "default gw 192.168.1.1" )' >> net</i>
 livecd conf.d # <i>rc-update add net.eth0 default</i>
 <comment>(If you compiled your network card driver as a module,
 add it to /etc/modules.autoload.d/kernel-2.6)</comment>
@@ -499,7 +501,7 @@
 </pre>
 
 <note>
-Emerge <c>pcmcia-cs</c> and add it to the default run level if you need it.
+Emerge <c>pcmciautils</c> if you need support for PCMCIA cards.
 </note>
 
 <p>
@@ -556,8 +558,8 @@
 
 <p>
 Install the necessary file system tools (<c>xfsprogs</c>, <c>reiserfsprogs</c>
-or <c>jfsutils</c>) and networking tools (<c>dhcpcd</c> or <c>rp-pppoe</c>) if
-you need any.
+or <c>jfsutils</c>) and networking tools (<c>dhcpcd</c> or <c>ppp</c>) if you
+need any.
 </p>
 
 <pre caption="Install extra tools if required">
@@ -565,7 +567,7 @@
 livecd conf.d # <i>emerge jfsutils</i>           <comment>(If you use the JFS 
file system)</comment>
 livecd conf.d # <i>emerge reiserfsprogs</i>      <comment>(If you use the 
Reiser file system)</comment>
 livecd conf.d # <i>emerge dhcpcd</i>             <comment>(If you need a DHCP 
client)</comment>
-livecd conf.d # <i>USE="-X" emerge rp-pppoe</i>  <comment>(If you need PPPoE 
ADSL connectivity)</comment>
+livecd conf.d # <i>USE="-X" emerge ppp</i>  <comment>(If you need PPPoE ADSL 
connectivity)</comment>
 </pre>
 
 </body>
@@ -747,33 +749,19 @@
 <pre caption="View USE flags in use and enable or disable some">
 mybox ~ # <i>emerge -vpe world</i>
 <comment>(Portage displays the packages and their USE flags, as an example, 
let's
-disable ipv6 and fortran, and enable userlocales and unicode)</comment>
-mybox ~ # <i>echo 'USE="nptl nptlonly -ipv6 -fortran userlocales unicode"' >> 
/etc/make.conf</i>
+disable ipv6 and fortran, and enable unicode)</comment>
+mybox ~ # <i>echo 'USE="nptl nptlonly -ipv6 -fortran unicode"' >> 
/etc/make.conf</i>
 </pre>
 
 <p>
-If you enabled the <c>userlocales</c> USE flag for versions of glibc that still
-support it, you should edit <path>/etc/locales.build</path> and define the
-locales you want to build.
-</p>
-
-<p>
-Later versions of glibc ignore the userlocales USE flag and use
-<path>/etc/locale.gen</path> instead. If you are upgrading glibc to such a
-version, you should create <path>/etc/locale.gen</path> <e>and remove</e>
-<path>/etc/locales.build</path>. Check the output of <c>emerge -vpe world</c>
-to know whether glibc supports the userlocales USE flag.
+Recent versions of glibc use <path>/etc/locale.gen</path> to define locale
+settings. If you are upgrading glibc to such a version, you should create
+<path>/etc/locale.gen</path> <e>and remove</e> <path>/etc/locales.build</path>.
 </p>
 
 <pre caption="Define locales">
-mybox ~ # <i>cd /etc</i>
-<comment>(For versions of glibc with the userlocales USE flag)</comment>
-mybox etc # <i>nano -w locales.build</i>
-
-<comment>(For recent versions of glibc, convert locales.build)</comment>
-mybox etc # <i>grep '^[^#].*' locales.build | sed 's:/: :' >locale.gen</i>
-mybox etc # <i>rm locales.build</i>
-mybox etc # <i>nano -w locale.gen</i>
+mybox # <i>cd /etc</i>
+mybox # <i>nano -w locale.gen</i>
 </pre>
 
 <p>



-- 
[email protected] mailing list

Reply via email to