public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2009-02-11  8:40 Joshua Saddler (nightmorph)
  0 siblings, 0 replies; 20+ messages in thread
From: Joshua Saddler (nightmorph) @ 2009-02-11  8:40 UTC (permalink / raw
  To: gentoo-commits

nightmorph    09/02/11 08:40:54

  Modified:             hb-install-config.xml
  Log:
  saner DHCP defaults per upstream's request on bug 257638, comment #11

Revision  Changes    Path
1.100                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.99&r2=1.100

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- hb-install-config.xml	2 May 2008 08:04:23 -0000	1.99
+++ hb-install-config.xml	11 Feb 2009 08:40:54 -0000	1.100
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.99 2008/05/02 08:04:23 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.100 2009/02/11 08:40:54 nightmorph Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>9.2</version>
-<date>2008-05-02</date>
+<version>9.3</version>
+<date>2009-02-11</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -303,18 +303,17 @@
 </pre>
 
 <p>
-To use DHCP and add specific DHCP options, define <c>config_eth0</c> and
-<c>dhcp_eth0</c>:
+To use DHCP, define <c>config_eth0</c>:
 </p>
 
 <pre caption="Automatically obtaining an IP address for eth0">
 config_eth0=( "dhcp" )
-dhcp_eth0="nodns nontp nonis"
 </pre>
 
 <p>
 Please read <path>/etc/conf.d/net.example</path> for a list of all available
-options.
+options. Be sure to also read your DHCP client manpage if you need to set
+specific DHCP options.
 </p>
 
 <p>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2010-05-14 22:32 Joshua Saddler (nightmorph)
  0 siblings, 0 replies; 20+ messages in thread
From: Joshua Saddler (nightmorph) @ 2010-05-14 22:32 UTC (permalink / raw
  To: gentoo-commits

nightmorph    10/05/14 22:32:52

  Modified:             hb-install-config.xml
  Log:
  stick shm and proc in the fstab examples

Revision  Changes    Path
1.102                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.101&r2=1.102

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- hb-install-config.xml	5 Aug 2009 15:25:23 -0000	1.101
+++ hb-install-config.xml	14 May 2010 22:32:52 -0000	1.102
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.101 2009/08/05 15:25:23 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.102 2010/05/14 22:32:52 nightmorph Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>9.4</version>
-<date>2009-08-05</date>
+<version>9.5</version>
+<date>2010-05-14</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -127,6 +127,9 @@
 /dev/sda4   /            ext3    noatime              0 1
 
 /dev/cdrom  /mnt/cdrom   auto    noauto,user          0 0
+
+proc        /proc        proc    defaults             0 0
+shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 </pre>
 
 <pre caption="A full /etc/fstab example" test="func:keyval('arch')='Alpha' or func:keyval('arch')='MIPS' or func:keyval('arch')='x86' or func:keyval('arch')='AMD64'">
@@ -135,6 +138,9 @@
 /dev/sda3   /            ext3    noatime              0 1
 
 /dev/cdrom  /mnt/cdrom   auto    noauto,user          0 0
+
+proc        /proc        proc    defaults             0 0
+shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 </pre>
 
 <pre caption="A full /etc/fstab example" test="func:keyval('arch')='SPARC'">
@@ -148,6 +154,9 @@
 openprom    /proc/openprom  openpromfs  defaults             0 0
 
 /dev/cdrom  /mnt/cdrom      auto        noauto,user          0 0
+
+proc        /proc        proc    defaults             0 0
+shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 </pre>
 
 <pre caption="A full /etc/fstab example" test="func:keyval('arch')='PPC' or
@@ -156,6 +165,9 @@
 /dev/sda3   none         swap    sw                   0 0
 
 /dev/cdrom  /mnt/cdrom   auto    noauto,user          0 0
+
+proc        /proc        proc    defaults             0 0
+shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 </pre>
 
 <p>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2011-08-02 17:43 Jan Kundrat (jkt)
  0 siblings, 0 replies; 20+ messages in thread
From: Jan Kundrat (jkt) @ 2011-08-02 17:43 UTC (permalink / raw
  To: gentoo-commits

jkt         11/08/02 17:43:17

  Modified:             hb-install-config.xml
  Log:
  #377309, there's no net.eth0 by default in the new openrc/baselayout

Revision  Changes    Path
1.103                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.102&r2=1.103

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- hb-install-config.xml	14 May 2010 22:32:52 -0000	1.102
+++ hb-install-config.xml	2 Aug 2011 17:43:17 -0000	1.103
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.102 2010/05/14 22:32:52 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.103 2011/08/02 17:43:17 jkt Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>9.5</version>
-<date>2010-05-14</date>
+<version>10</version>
+<date>2011-08-02</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -349,21 +349,17 @@
 </p>
 
 <pre caption="Adding net.eth0 to the default runlevel">
+# <i>cd /etc/init.d</i>
+# <i>ln -s net.lo net.eth0</i>
 # <i>rc-update add net.eth0 default</i>
 </pre>
 
 <p>
 If you have several network interfaces, you need to create the appropriate
-<path>net.eth1</path>, <path>net.eth2</path> etc. initscripts for those. You can
-use <c>ln</c> to do this:
+<path>net.eth1</path>, <path>net.eth2</path> etc. just like you did with
+<path>net.eth0</path>.
 </p>
 
-<pre caption="Creating extra initscripts">
-# <i>cd /etc/init.d</i>
-# <i>ln -s net.lo net.eth1</i>
-# <i>rc-update add net.eth1 default</i>
-</pre>
-
 </body>
 </subsection>
 <subsection>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2011-08-03  8:17 Jan Kundrat (jkt)
  0 siblings, 0 replies; 20+ messages in thread
From: Jan Kundrat (jkt) @ 2011-08-03  8:17 UTC (permalink / raw
  To: gentoo-commits

jkt         11/08/03 08:17:07

  Modified:             hb-install-config.xml
  Log:
  #376087, s/HOSTNAME/hostname/ and stop using Bash arrays in /etc/conf.d/net
  
  Thanks to swift for the patch

Revision  Changes    Path
1.104                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.103&r2=1.104

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- hb-install-config.xml	2 Aug 2011 17:43:17 -0000	1.103
+++ hb-install-config.xml	3 Aug 2011 08:17:07 -0000	1.104
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.103 2011/08/02 17:43:17 jkt Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.104 2011/08/03 08:17:07 jkt Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>10</version>
-<date>2011-08-02</date>
+<version>11</version>
+<date>2011-08-03</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -206,8 +206,8 @@
 <pre caption="Setting the host name">
 # <i>nano -w /etc/conf.d/hostname</i>
 
-<comment>(Set the HOSTNAME variable to your host name)</comment>
-HOSTNAME="<i>tux</i>"
+<comment>(Set the hostname variable to your host name)</comment>
+hostname="<i>tux</i>"
 </pre>
 
 <p>
@@ -310,8 +310,8 @@
 </p>
 
 <pre caption="Manually setting IP information for eth0">
-config_eth0=( "192.168.0.2 netmask 255.255.255.0 brd 192.168.0.255" )
-routes_eth0=( "default via 192.168.0.1" )
+config_eth0="192.168.0.2 netmask 255.255.255.0 brd 192.168.0.255"
+routes_eth0="default via 192.168.0.1"
 </pre>
 
 <p>
@@ -319,7 +319,7 @@
 </p>
 
 <pre caption="Automatically obtaining an IP address for eth0">
-config_eth0=( "dhcp" )
+config_eth0="dhcp"
 </pre>
 
 <p>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2011-08-12 18:45 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2011-08-12 18:45 UTC (permalink / raw
  To: gentoo-commits

swift       11/08/12 18:45:20

  Modified:             hb-install-config.xml
  Log:
  Fix bug #378495 - OpenRC uses /etc/conf.d/hwclock instead of /etc/conf.d/clock. Also fix KEYMAP variable (is now lower case)

Revision  Changes    Path
1.105                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.104&r2=1.105

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- hb-install-config.xml	3 Aug 2011 08:17:07 -0000	1.104
+++ hb-install-config.xml	12 Aug 2011 18:45:20 -0000	1.105
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.104 2011/08/03 08:17:07 jkt Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.105 2011/08/12 18:45:20 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>11</version>
-<date>2011-08-03</date>
+<version>12</version>
+<date>2011-08-12</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -465,8 +465,8 @@
 </pre>
 
 <p>
-Take special care with the <c>KEYMAP</c> variable. If you select the wrong
-<c>KEYMAP</c>, you will get weird results when typing on your keyboard.
+Take special care with the <c>keymap</c> variable. If you select the wrong
+<c>keymap</c>, you will get weird results when typing on your keyboard.
 </p>
 
 <note test="substring(func:keyval('arch'),1,3)='PPC'">
@@ -479,12 +479,12 @@
 </p>
 
 <p>
-Gentoo uses <path>/etc/conf.d/clock</path> to set clock options. Edit it
+Gentoo uses <path>/etc/conf.d/hwclock</path> to set clock options. Edit it
 according to your needs.
 </p>
 
-<pre caption="Opening /etc/conf.d/clock">
-# <i>nano -w /etc/conf.d/clock</i>
+<pre caption="Opening /etc/conf.d/hwclock">
+# <i>nano -w /etc/conf.d/hwclock</i>
 </pre>
 
 <p>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2011-08-14 10:29 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2011-08-14 10:29 UTC (permalink / raw
  To: gentoo-commits

swift       11/08/14 10:29:40

  Modified:             hb-install-config.xml
  Log:
  Fix #379153 - Stale reference to /etc/conf.d/clock. Thanks to hitachi user for reporting

Revision  Changes    Path
1.106                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.105&r2=1.106

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- hb-install-config.xml	12 Aug 2011 18:45:20 -0000	1.105
+++ hb-install-config.xml	14 Aug 2011 10:29:40 -0000	1.106
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.105 2011/08/12 18:45:20 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.106 2011/08/14 10:29:40 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>12</version>
-<date>2011-08-12</date>
+<version>13</version>
+<date>2011-08-13</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -501,7 +501,7 @@
 </p>
 
 <p>
-When you're finished configuring <path>/etc/conf.d/clock</path>, save and
+When you're finished configuring <path>/etc/conf.d/hwclock</path>, save and
 exit. 
 </p>
 






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2011-09-11  8:53 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2011-09-11  8:53 UTC (permalink / raw
  To: gentoo-commits

swift       11/09/11 08:53:34

  Modified:             hb-install-config.xml
  Log:
  Update hwclock references, thanks to klondike for the initial patch. Bug reports crossed #382525 and #213988

Revision  Changes    Path
1.107                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.106&r2=1.107

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- hb-install-config.xml	14 Aug 2011 10:29:40 -0000	1.106
+++ hb-install-config.xml	11 Sep 2011 08:53:34 -0000	1.107
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.106 2011/08/14 10:29:40 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.107 2011/09/11 08:53:34 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>13</version>
-<date>2011-08-13</date>
+<version>14</version>
+<date>2011-09-11</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -488,21 +488,21 @@
 </pre>
 
 <p>
-If your hardware clock is not using UTC, you need to add <c>CLOCK="local"</c>
+If your hardware clock is not using UTC, you need to add <c>clock="local"</c>
 to the file. Otherwise you will notice some clock skew.
 </p>
 
 <p>
-You should define the timezone that you previously copied to
-<path>/etc/localtime</path> so that further upgrades of the
-<c>sys-libs/timezone-data</c> package can update <path>/etc/localtime</path>
-automatically. For instance, if you used the GMT timezone, you would add
-<c>TIMEZONE="GMT"</c>
+When you're finished configuring <path>/etc/conf.d/hwclock</path>, save and
+exit. 
 </p>
 
 <p>
-When you're finished configuring <path>/etc/conf.d/hwclock</path>, save and
-exit. 
+You should define the timezone that you previously copied to
+<path>/etc/localtime</path> in the <path>/etc/timezone</path> file so that
+further upgrades of the <c>sys-libs/timezone-data</c> package can update
+<path>/etc/localtime</path> automatically. For instance, if you used the GMT
+timezone, you would write <c>GMT</c> in the <path>/etc/timezone</path> file.
 </p>
 
 <p test="not(func:keyval('arch')='PPC64')">






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2012-03-28 22:39 Joshua Saddler (nightmorph)
  0 siblings, 0 replies; 20+ messages in thread
From: Joshua Saddler (nightmorph) @ 2012-03-28 22:39 UTC (permalink / raw
  To: gentoo-commits

nightmorph    12/03/28 22:39:04

  Modified:             hb-install-config.xml
  Log:
  update conf.d/rc and rc.conf for OpenRC's usage, bug 407489

Revision  Changes    Path
1.110                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.109&r2=1.110

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- hb-install-config.xml	22 Feb 2012 21:27:45 -0000	1.109
+++ hb-install-config.xml	28 Mar 2012 22:39:04 -0000	1.110
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.109 2012/02/22 21:27:45 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.110 2012/03/28 22:39:04 nightmorph Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>16</version>
-<date>2012-02-22</date>
+<version>17</version>
+<date>2012-03-28</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -438,22 +438,19 @@
 <body>
 
 <p>
-Gentoo uses <path>/etc/rc.conf</path> for general, system-wide configuration.
-Open up <path>/etc/rc.conf</path> and enjoy all the comments in that file :)
+Gentoo uses <path>/etc/rc.conf</path> and <path>/etc/conf.d/rc</path> to
+configure the services, startup, and shutdown of your system. Open up
+<path>/etc/rc.conf</path> and <path>/etc/conf.d/rc</path> and enjoy all the
+comments in those files.
 </p>
 
-<pre caption="Opening /etc/rc.conf">
+<pre caption="Configuring services">
 # <i>nano -w /etc/rc.conf</i>
+# <i>nano -w /etc/conf.d/rc</i>
 </pre>
 
 <p>
-When you're finished configuring <path>/etc/rc.conf</path>, save and exit. 
-</p>
-
-<p>
-As you can see, this file is well commented to help you set up the necessary
-configuration variables. You can configure your system to use unicode and
-define your default editor and your display manager (like gdm or kdm).
+When you're finished configuring these two files, save them and exit. 
 </p>
 
 <p>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2012-04-06 12:09 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2012-04-06 12:09 UTC (permalink / raw
  To: gentoo-commits

swift       12/04/06 12:09:19

  Modified:             hb-install-config.xml
  Log:
  Fix bug #410997 - Remove reference to /etc/conf.d/rc

Revision  Changes    Path
1.111                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.110&r2=1.111

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- hb-install-config.xml	28 Mar 2012 22:39:04 -0000	1.110
+++ hb-install-config.xml	6 Apr 2012 12:09:19 -0000	1.111
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.110 2012/03/28 22:39:04 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.111 2012/04/06 12:09:19 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>17</version>
-<date>2012-03-28</date>
+<version>18</version>
+<date>2012-04-06</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -438,15 +438,13 @@
 <body>
 
 <p>
-Gentoo uses <path>/etc/rc.conf</path> and <path>/etc/conf.d/rc</path> to
-configure the services, startup, and shutdown of your system. Open up
-<path>/etc/rc.conf</path> and <path>/etc/conf.d/rc</path> and enjoy all the
-comments in those files.
+Gentoo uses <path>/etc/rc.conf</path> to configure the services, startup,
+and shutdown of your system. Open up <path>/etc/rc.conf</path> and enjoy all
+the comments in the file.
 </p>
 
 <pre caption="Configuring services">
 # <i>nano -w /etc/rc.conf</i>
-# <i>nano -w /etc/conf.d/rc</i>
 </pre>
 
 <p>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2012-04-08 20:34 Camille Huot (cam)
  0 siblings, 0 replies; 20+ messages in thread
From: Camille Huot (cam) @ 2012-04-08 20:34 UTC (permalink / raw
  To: gentoo-commits

cam         12/04/08 20:34:05

  Modified:             hb-install-config.xml
  Log:
  Suggesting to use at least 1 utf8 locale

Revision  Changes    Path
1.113                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.112&r2=1.113

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- hb-install-config.xml	8 Apr 2012 20:20:55 -0000	1.112
+++ hb-install-config.xml	8 Apr 2012 20:34:04 -0000	1.113
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.112 2012/04/08 20:20:55 cam Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.113 2012/04/08 20:34:04 cam Exp $ -->
 
 <sections>
 
@@ -14,7 +14,7 @@
 proceed.
 </abstract>
 
-<version>19</version>
+<version>20</version>
 <date>2012-04-08</date>
 
 <section>
@@ -534,6 +534,11 @@
 You can select your desired locales in the list given by running <c>locale -a</c>.
 </note>
 
+<warn>
+We strongly suggest that you should use at least one UTF-8 locale because some
+applications would require it.
+</warn>
+
 <p>
 The next step is to run <c>locale-gen</c>. It will generates all the locales you
 have specified in the <path>/etc/locale.gen</path> file.






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2012-04-09 10:03 Joshua Saddler (nightmorph)
  0 siblings, 0 replies; 20+ messages in thread
From: Joshua Saddler (nightmorph) @ 2012-04-09 10:03 UTC (permalink / raw
  To: gentoo-commits

nightmorph    12/04/09 10:03:26

  Modified:             hb-install-config.xml
  Log:
  english fix, no content change; no revbump

Revision  Changes    Path
1.114                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.114&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.114&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.113&r2=1.114

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- hb-install-config.xml	8 Apr 2012 20:34:04 -0000	1.113
+++ hb-install-config.xml	9 Apr 2012 10:03:26 -0000	1.114
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.113 2012/04/08 20:34:04 cam Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.114 2012/04/09 10:03:26 nightmorph Exp $ -->
 
 <sections>
 
@@ -536,7 +536,7 @@
 
 <warn>
 We strongly suggest that you should use at least one UTF-8 locale because some
-applications would require it.
+applications may require it.
 </warn>
 
 <p>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2012-04-29 16:52 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2012-04-29 16:52 UTC (permalink / raw
  To: gentoo-commits

swift       12/04/29 16:52:20

  Modified:             hb-install-config.xml
  Log:
  Fix bug #406263 - Removing fstab references to /proc and /dev/shm, these are handled by openrc automatically

Revision  Changes    Path
1.115                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.115&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.115&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.114&r2=1.115

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- hb-install-config.xml	9 Apr 2012 10:03:26 -0000	1.114
+++ hb-install-config.xml	29 Apr 2012 16:52:20 -0000	1.115
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.114 2012/04/09 10:03:26 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.115 2012/04/29 16:52:20 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>20</version>
-<date>2012-04-08</date>
+<version>21</version>
+<date>2012-04-29</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -127,9 +127,6 @@
 /dev/sda4   /            ext3    noatime              0 1
 
 /dev/cdrom  /mnt/cdrom   auto    noauto,user          0 0
-
-proc        /proc        proc    defaults             0 0
-shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 </pre>
 
 <pre caption="A full /etc/fstab example" test="func:keyval('arch')='Alpha' or func:keyval('arch')='MIPS' or func:keyval('arch')='x86' or func:keyval('arch')='AMD64'">
@@ -138,9 +135,6 @@
 /dev/sda3   /            ext3    noatime              0 1
 
 /dev/cdrom  /mnt/cdrom   auto    noauto,user          0 0
-
-proc        /proc        proc    defaults             0 0
-shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 </pre>
 
 <pre caption="A full /etc/fstab example" test="func:keyval('arch')='SPARC'">
@@ -154,9 +148,6 @@
 openprom    /proc/openprom  openpromfs  defaults             0 0
 
 /dev/cdrom  /mnt/cdrom      auto        noauto,user          0 0
-
-proc        /proc        proc    defaults             0 0
-shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 </pre>
 
 <pre caption="A full /etc/fstab example" test="func:keyval('arch')='PPC' or
@@ -165,9 +156,6 @@
 /dev/sda3   none         swap    sw                   0 0
 
 /dev/cdrom  /mnt/cdrom   auto    noauto,user          0 0
-
-proc        /proc        proc    defaults             0 0
-shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 </pre>
 
 <p>






^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2013-06-23 14:58 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2013-06-23 14:58 UTC (permalink / raw
  To: gentoo-commits

swift       13/06/23 14:58:25

  Modified:             hb-install-config.xml
  Log:
  Fix bug 473040 - Explicitly link to network interface naming in the configuration section

Revision  Changes    Path
1.120                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.120&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.120&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.119&r2=1.120

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- hb-install-config.xml	6 May 2013 14:24:20 -0000	1.119
+++ hb-install-config.xml	23 Jun 2013 14:58:25 -0000	1.120
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.119 2013/05/06 14:24:20 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.120 2013/06/23 14:58:25 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>25</version>
-<date>2013-05-06</date>
+<version>26</version>
+<date>2013-06-23</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -302,7 +302,8 @@
 This assumes that your network interface will be called eth0. This is, however,
 very system dependent. It is recommended to assume that the interface is named
 the same as the interface name when booted from the installation media <e>if</e>
-the installation media is sufficiently recent. 
+the installation media is sufficiently recent. More information can be found in
+<uri link="?part=4&amp;chap=2#doc_chap4">Network Interface Naming</uri>.
 </note>
 
 <pre caption="Manually setting IP information for eth0">





^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2013-07-24 20:40 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2013-07-24 20:40 UTC (permalink / raw
  To: gentoo-commits

swift       13/07/24 20:40:40

  Modified:             hb-install-config.xml
  Log:
  UTF-8 guide is now at https://wiki.gentoo.org/wiki/UTF-8

Revision  Changes    Path
1.122                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.121&r2=1.122

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- hb-install-config.xml	22 Jul 2013 13:59:36 -0000	1.121
+++ hb-install-config.xml	24 Jul 2013 20:40:40 -0000	1.122
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.121 2013/07/22 13:59:36 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.122 2013/07/24 20:40:40 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>27</version>
-<date>2013-07-22</date>
+<version>28</version>
+<date>2013-07-24</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -578,8 +578,8 @@
 
 <p>
 We made a full <uri link="https://wiki.gentoo.org/wiki/Localization/HOWTO">Localization
-Guide</uri> to help you through this process. You can also read our detailed
-<uri link="../utf-8.xml#doc_chap2">UTF-8 Guide</uri> for very specific
+Guide</uri> to help you through this process. You can also read the detailed
+<uri link="https://wiki.gentoo.org/wiki/UTF-8">UTF-8 article</uri> for very specific
 informations to enable UTF-8 on your system.
 </p>
 





^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2013-12-17  9:34 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2013-12-17  9:34 UTC (permalink / raw
  To: gentoo-commits

swift       13/12/17 09:34:53

  Modified:             hb-install-config.xml
  Log:
  Fix bug #439276 - Add discard mount option for SSD users

Revision  Changes    Path
1.123                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.122&r2=1.123

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- hb-install-config.xml	24 Jul 2013 20:40:40 -0000	1.122
+++ hb-install-config.xml	17 Dec 2013 09:34:53 -0000	1.123
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.122 2013/07/24 20:40:40 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.123 2013/12/17 09:34:53 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>28</version>
-<date>2013-07-24</date>
+<version>29</version>
+<date>2013-12-17</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -167,7 +167,10 @@
 <p>
 To improve performance, most users would want to add the <c>noatime</c>
 mount option, which results in a faster system since access times
-aren't registered (you don't need those generally anyway).
+aren't registered (you don't need those generally anyway). This is also
+recommended for solid state drive (SSD) users, who should also enable
+the <c>discard</c> mount option (ext4 and btrfs only for now) which
+makes the TRIM command work.
 </p>
 
 <p>





^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2013-12-17  9:45 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2013-12-17  9:45 UTC (permalink / raw
  To: gentoo-commits

swift       13/12/17 09:45:48

  Modified:             hb-install-config.xml
  Log:
  Fix bug #483654 - Add info on by-id and by-uuid for fstab

Revision  Changes    Path
1.124                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.124&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.124&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.123&r2=1.124

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- hb-install-config.xml	17 Dec 2013 09:34:53 -0000	1.123
+++ hb-install-config.xml	17 Dec 2013 09:45:47 -0000	1.124
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.123 2013/12/17 09:34:53 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.124 2013/12/17 09:45:47 swift Exp $ -->
 
 <sections>
 
@@ -14,7 +14,7 @@
 proceed.
 </abstract>
 
-<version>29</version>
+<version>30</version>
 <date>2013-12-17</date>
 
 <section>
@@ -82,6 +82,16 @@
 # <i>nano -w /etc/fstab</i>
 </pre>
 
+<p>
+In the remainder of the text, we use the default <path>/dev/sd*</path> block
+device files as partition. You can also opt to use the symbolic links in the
+<path>/dev/disk/byid</path> or <path>/dev/disk/by-uuid</path>. These names are
+not likely to change, whereas the default block device files naming depends on
+a number of factors (such as how and in what order the disks are attached to
+your system). However, if you do not intend to fiddle with the disk ordering,
+you can continue with the default block device files safely.
+</p>
+
 </body>
 <body test="func:keyval('/boot')">
 





^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2013-12-17 10:01 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2013-12-17 10:01 UTC (permalink / raw
  To: gentoo-commits

swift       13/12/17 10:01:35

  Modified:             hb-install-config.xml
  Log:
  Fix bug #482284 - Add eselect locale instructions

Revision  Changes    Path
1.125                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.125&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.125&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.124&r2=1.125

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- hb-install-config.xml	17 Dec 2013 09:45:47 -0000	1.124
+++ hb-install-config.xml	17 Dec 2013 10:01:35 -0000	1.125
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.124 2013/12/17 09:45:47 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.125 2013/12/17 10:01:35 swift Exp $ -->
 
 <sections>
 
@@ -14,7 +14,7 @@
 proceed.
 </abstract>
 
-<version>30</version>
+<version>31</version>
 <date>2013-12-17</date>
 
 <section>
@@ -572,8 +572,40 @@
 </pre>
 
 <p>
-Once done, you now have the possibility to set the system-wide locale settings
-in the <path>/etc/env.d/02locale</path> file:
+You can verify that your selected locales are available by running <c>locale -a</c>.
+</p>
+
+<p>
+Once done, you now have the possibility to set the system-wide locale settings.
+With <c>eselect locale list</c>, the available targets are displayed:
+</p>
+
+<pre caption="Displaying the available LANG settings">
+# <i>eselect locale list</i>
+Available targets for the LANG variable:
+  [1] C
+  [2] POSIX
+  [3] en_US
+  [4] en_US.iso88591
+  [5] en_US.utf8
+  [6] de_DE
+  [7] de_DE.iso88591
+  [8] de_DE.iso885915
+  [9] de_DE.utf8
+  [ ] (free form)
+</pre>
+
+<p>
+With <c>eselect locale set &lt;value&gt;</c> the correct locale can be set:
+</p>
+
+<pre caption="Setting the LANG variable">
+# <i>eselect locale set 9</i>
+</pre>
+
+<p>
+Manually, this can still be accomplished through the
+<path>/etc/env.d/02locale</path> file:
 </p>
 
 <pre caption="Setting the default system locale in /etc/env.d/02locale">
@@ -582,11 +614,11 @@
 </pre>
 
 <p>
-And reload your environment:
+Don't forget to reload your environment:
 </p>
 
 <pre caption="Reload shell environment">
-# env-update &amp;&amp; source /etc/profile
+# <i>env-update &amp;&amp; source /etc/profile</i>
 </pre>
 
 <p>





^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2013-12-17 11:52 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2013-12-17 11:52 UTC (permalink / raw
  To: gentoo-commits

swift       13/12/17 11:52:06

  Modified:             hb-install-config.xml
  Log:
  Fix bug #494514 - Mention that /etc/conf.d/net is a new file (to be created by the user)

Revision  Changes    Path
1.127                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.126&r2=1.127

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- hb-install-config.xml	17 Dec 2013 11:48:58 -0000	1.126
+++ hb-install-config.xml	17 Dec 2013 11:52:05 -0000	1.127
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.126 2013/12/17 11:48:58 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.127 2013/12/17 11:52:05 swift Exp $ -->
 
 <sections>
 
@@ -14,7 +14,7 @@
 proceed.
 </abstract>
 
-<version>32</version>
+<version>33</version>
 <date>2013-12-17</date>
 
 <section>
@@ -218,6 +218,11 @@
 domainnames if your networking is setup for DHCP.
 </p>
 
+<note>
+The <path>/etc/conf.d/net</path> file does not exist by default, so you might
+need to create it.
+</note>
+
 <pre caption="Setting the domainname">
 # <i>nano -w /etc/conf.d/net</i>
 
@@ -296,17 +301,6 @@
 </pre>
 
 <p>
-You will see the following file:
-</p>
-
-<pre caption="Default /etc/conf.d/net">
-# This blank configuration will automatically use DHCP for any net.*
-# scripts in /etc/init.d.  To create a more complete configuration,
-# please review /usr/share/doc/netifrc-*/net.example.bz2 and save
-# your configuration in /etc/conf.d/net (this file :]!).
-</pre>
-
-<p>
 To enter your own IP address, netmask and gateway, you need
 to set both <c>config_eth0</c> and <c>routes_eth0</c>:
 </p>





^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2014-04-11 16:03 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2014-04-11 16:03 UTC (permalink / raw
  To: gentoo-commits

swift       14/04/11 16:03:58

  Modified:             hb-install-config.xml
  Log:
  Fix bug #503760 - Have users deploy netifrc

Revision  Changes    Path
1.130                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.130&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.130&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.129&r2=1.130

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- hb-install-config.xml	19 Dec 2013 10:48:20 -0000	1.129
+++ hb-install-config.xml	11 Apr 2014 16:03:58 -0000	1.130
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.129 2013/12/19 10:48:20 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.130 2014/04/11 16:03:58 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>35</version>
-<date>2013-12-19</date>
+<version>36</version>
+<date>2014-04-11</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -283,6 +283,14 @@
 </p>
 
 <p>
+Let's first install <c>netifrc</c>:
+</p>
+
+<pre caption="Installing netifrc">
+# <i>emerge --noreplace netifrc</i>
+</pre>
+
+<p>
 DHCP is used by default. For DHCP to work, you will need to install a DHCP
 client. This is described later in <uri
 link="?part=1&amp;chap=9#networking-tools">Installing Necessary System





^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
@ 2014-05-27 10:05 Sven Vermeulen (swift)
  0 siblings, 0 replies; 20+ messages in thread
From: Sven Vermeulen (swift) @ 2014-05-27 10:05 UTC (permalink / raw
  To: gentoo-commits

swift       14/05/27 10:05:48

  Modified:             hb-install-config.xml
  Log:
  Fix bug #510274 - Typo in /dev/disk/by-id path

Revision  Changes    Path
1.131                xml/htdocs/doc/en/handbook/hb-install-config.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.130&r2=1.131

Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- hb-install-config.xml	11 Apr 2014 16:03:58 -0000	1.130
+++ hb-install-config.xml	27 May 2014 10:05:48 -0000	1.131
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.130 2014/04/11 16:03:58 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.131 2014/05/27 10:05:48 swift Exp $ -->
 
 <sections>
 
@@ -14,8 +14,8 @@
 proceed.
 </abstract>
 
-<version>36</version>
-<date>2014-04-11</date>
+<version>37</version>
+<date>2014-05-27</date>
 
 <section>
 <title>Filesystem Information</title>
@@ -85,7 +85,7 @@
 <p>
 In the remainder of the text, we use the default <path>/dev/sd*</path> block
 device files as partition. You can also opt to use the symbolic links in the
-<path>/dev/disk/byid</path> or <path>/dev/disk/by-uuid</path>. These names are
+<path>/dev/disk/by-id</path> or <path>/dev/disk/by-uuid</path>. These names are
 not likely to change, whereas the default block device files naming depends on
 a number of factors (such as how and in what order the disks are attached to
 your system). However, if you do not intend to fiddle with the disk ordering,





^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2014-05-27 10:05 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-17  9:45 [gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml Sven Vermeulen (swift)
  -- strict thread matches above, loose matches on Subject: below --
2014-05-27 10:05 Sven Vermeulen (swift)
2014-04-11 16:03 Sven Vermeulen (swift)
2013-12-17 11:52 Sven Vermeulen (swift)
2013-12-17 10:01 Sven Vermeulen (swift)
2013-12-17  9:34 Sven Vermeulen (swift)
2013-07-24 20:40 Sven Vermeulen (swift)
2013-06-23 14:58 Sven Vermeulen (swift)
2012-04-29 16:52 Sven Vermeulen (swift)
2012-04-09 10:03 Joshua Saddler (nightmorph)
2012-04-08 20:34 Camille Huot (cam)
2012-04-06 12:09 Sven Vermeulen (swift)
2012-03-28 22:39 Joshua Saddler (nightmorph)
2011-09-11  8:53 Sven Vermeulen (swift)
2011-08-14 10:29 Sven Vermeulen (swift)
2011-08-12 18:45 Sven Vermeulen (swift)
2011-08-03  8:17 Jan Kundrat (jkt)
2011-08-02 17:43 Jan Kundrat (jkt)
2010-05-14 22:32 Joshua Saddler (nightmorph)
2009-02-11  8:40 Joshua Saddler (nightmorph)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox