* [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook/2008.0: hb-install-config.xml
@ 2009-02-11 8:40 Joshua Saddler (nightmorph)
0 siblings, 0 replies; 2+ messages in thread
From: Joshua Saddler (nightmorph) @ 2009-02-11 8:40 UTC (permalink / raw
To: gentoo-doc-cvs
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.8 xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml?r1=1.7&r2=1.8
Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- hb-install-config.xml 2 May 2008 08:04:24 -0000 1.7
+++ hb-install-config.xml 11 Feb 2009 08:40:54 -0000 1.8
@@ -4,12 +4,12 @@
<!-- 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/2008.0/hb-install-config.xml,v 1.7 2008/05/02 08:04:24 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml,v 1.8 2009/02/11 08:40:54 nightmorph Exp $ -->
<sections>
-<version>9.2</version>
-<date>2008-05-02</date>
+<version>9.3</version>
+<date>2009-02-11</date>
<section>
<title>Filesystem Information</title>
@@ -297,18 +297,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] 2+ messages in thread
* [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook/2008.0: hb-install-config.xml
@ 2010-05-14 22:32 Joshua Saddler (nightmorph)
0 siblings, 0 replies; 2+ messages in thread
From: Joshua Saddler (nightmorph) @ 2010-05-14 22:32 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 10/05/14 22:32:53
Modified: hb-install-config.xml
Log:
stick shm and proc in the fstab examples
Revision Changes Path
1.10 xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml?r1=1.9&r2=1.10
Index: hb-install-config.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- hb-install-config.xml 5 Aug 2009 15:25:24 -0000 1.9
+++ hb-install-config.xml 14 May 2010 22:32:52 -0000 1.10
@@ -4,12 +4,12 @@
<!-- 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/2008.0/hb-install-config.xml,v 1.9 2009/08/05 15:25:24 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2008.0/hb-install-config.xml,v 1.10 2010/05/14 22:32:52 nightmorph Exp $ -->
<sections>
-<version>9.4</version>
-<date>2009-08-05</date>
+<version>9.5</version>
+<date>2010-05-14</date>
<section>
<title>Filesystem Information</title>
@@ -121,6 +121,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'">
@@ -129,6 +132,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'">
@@ -142,6 +148,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 func:keyval('arch')='PPC64'">
@@ -149,6 +158,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] 2+ messages in thread
end of thread, other threads:[~2010-05-14 22:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-11 8:40 [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook/2008.0: hb-install-config.xml Joshua Saddler (nightmorph)
-- strict thread matches above, loose matches on Subject: below --
2010-05-14 22:32 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