Gentoo Archives: gentoo-doc-cvs

From: "Joshua Saddler (nightmorph)" <nightmorph@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: gentoo-sparc-netboot-howto.xml
Date: Tue, 05 Oct 2010 21:55:02
Message-Id: 20101005215455.E589920051@flycatcher.gentoo.org
1 nightmorph 10/10/05 21:54:55
2
3 Modified: gentoo-sparc-netboot-howto.xml
4 Log:
5 update package category moves, removals, etc. from an email sent to me
6
7 Revision Changes Path
8 1.13 xml/htdocs/doc/en/gentoo-sparc-netboot-howto.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/gentoo-sparc-netboot-howto.xml?rev=1.13&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/gentoo-sparc-netboot-howto.xml?rev=1.13&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/gentoo-sparc-netboot-howto.xml?r1=1.12&r2=1.13
13
14 Index: gentoo-sparc-netboot-howto.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-sparc-netboot-howto.xml,v
17 retrieving revision 1.12
18 retrieving revision 1.13
19 diff -u -r1.12 -r1.13
20 --- gentoo-sparc-netboot-howto.xml 3 Mar 2010 01:37:41 -0000 1.12
21 +++ gentoo-sparc-netboot-howto.xml 5 Oct 2010 21:54:55 -0000 1.13
22 @@ -1,6 +1,6 @@
23 <?xml version='1.0' encoding="UTF-8"?>
24 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
25 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-sparc-netboot-howto.xml,v 1.12 2010/03/03 01:37:41 nightmorph Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-sparc-netboot-howto.xml,v 1.13 2010/10/05 21:54:55 nightmorph Exp $ -->
27
28 <guide>
29 <title>Gentoo Linux based Netboot HOWTO</title>
30 @@ -21,8 +21,8 @@
31 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
32 <license/>
33
34 -<version>1.4</version>
35 -<date>2010-03-02</date>
36 +<version>2</version>
37 +<date>2010-10-05</date>
38
39 <chapter>
40 <title>Introduction</title>
41 @@ -79,24 +79,18 @@
42 <body>
43
44 <p>
45 -Currently, there are two choices for a reverse ARP daemon. They are
46 -<c>net-misc/iputils</c> (installed as part of the system profile) and
47 -<c>net-misc/rarpd</c>.
48 +A reverse ARP daemon is already installed on your system; it's part of the
49 +<c>net-misc/iputils</c> package
50 </p>
51
52 -<note>
53 -Installing <c>net-misc/rarpd</c> will overwrite the <c>rarpd</c> and
54 -<c>rarpd</c> manpage from <c>net-misc/iputils</c>.
55 -</note>
56 -
57 <p>
58 <b>Setting up common rarpd elements</b>: <path>/etc/ethers</path>
59 </p>
60
61 <p>
62 -No matter which <c>rarpd</c> you choose to use, you will need to setup the
63 -<path>/etc/ethers</path> file. This file indicates which hosts <c>rarpd</c>
64 -should respond to when a request is seen, and what address to reply with.
65 +You will need to setup the <path>/etc/ethers</path> file. This file indicates
66 +which hosts <c>rarpd</c> should respond to when a request is seen, and what
67 +address to reply with.
68 </p>
69
70 <p>
71 @@ -164,16 +158,15 @@
72 </note>
73
74 <p>
75 -<b>Setting up net-misc/iputils rarpd</b>
76 +<b>Setting up rarpd</b>
77 </p>
78
79 <p>
80 First, we will need to determine the options to use for <c>rarpd</c>. While
81 there are more options than we'll cover here, these options should get you
82 -started As there is currently no <path>init.d</path> script for the
83 -<c>net-misc/iputils</c> version of <c>rarpd</c>, an entry will need to be added
84 -to <path>/etc/conf.d/local.start</path> if you want to enable <c>rarpd</c>
85 -services at boot time. A sample entry is as follows:
86 +started As there is currently no <path>init.d</path> script for <c>rarpd</c>, an
87 +entry will need to be added to <path>/etc/conf.d/local.start</path> if you want
88 +to enable <c>rarpd</c> services at boot time. A sample entry is as follows:
89 </p>
90
91 <pre caption="/etc/conf.d/local.start">
92 @@ -198,47 +191,6 @@
93 For more options, consult <c>man 8 rarpd</c>.
94 </p>
95
96 -<p>
97 -<b>Setting up net-misc/rarpd</b>
98 -</p>
99 -
100 -<p>
101 -Firstly, we'll need to install <c>rarpd</c> with the following command:
102 -</p>
103 -
104 -<pre caption="Installing rarpd">
105 -# <i>emerge net-misc/rarpd</i>
106 -</pre>
107 -
108 -<p>
109 -Next, options for <c>rarpd</c> will need to be set in
110 -<path>/etc/conf.d/rarpd</path>. For an equivalent configuration as the one used
111 -above for the <c>net-misc/iputils</c> <c>rarpd</c>, adjust
112 -<path>/etc/conf.d/rarpd</path> to look like the following
113 -</p>
114 -
115 -<pre caption="/etc/conf.d/rarpd">
116 -RARPD_OPTS="-v -i eth0"
117 -</pre>
118 -
119 -<p>
120 -An explanation of the above rarpd options (as taken from the man page);
121 -</p>
122 -
123 -<ul>
124 - <li>
125 - <c>-v</c> Be verbose. Show requests which the daemon is responding to
126 - </li>
127 - <li>
128 - <c>-i</c> Bind to the named interface. By default <c>rarpd</c> binds to the
129 - default interface for the local system type, if available
130 - </li>
131 -</ul>
132 -
133 -<p>
134 -For more options, consult <c>man 8 rarpd</c> and <c>rarpd --help</c>.
135 -</p>
136 -
137 </body>
138 </section>
139 <section>
140 @@ -246,8 +198,8 @@
141 <body>
142
143 <p>
144 -Here there are three options for a TFTP daemon, <c>net-misc/atftp</c>,
145 -<c>net-misc/netkit-tftp</c> and <c>net-misc/tftp-hpa</c>. You only need to
146 +Here there are three options for a TFTP daemon, <c>net-ftp/atftp</c>,
147 +<c>net-ftp/netkit-tftp</c> and <c>net-ftp/tftp-hpa</c>. You only need to
148 install one of the TFTP daemons for proper operation.
149 </p>
150
151 @@ -289,15 +241,15 @@
152 <body>
153
154 <p>
155 -First, install the <c>net-misc/atftp</c> package as follows;
156 +First, install the <c>atftp</c> package as follows;
157 </p>
158
159 <pre caption="Installing atftp">
160 -# <i>emerge net-misc/atftp</i>
161 +# <i>emerge atftp</i>
162 </pre>
163
164 <p>
165 -After the <c>net-misc/atftp</c> package has been installed, it will need to be
166 +After the <c>atftp</c> package has been installed, it will need to be
167 configured. If tftpd services are desired at boot time, an entry to
168 <path>/etc/conf.d/local.start</path> will need to be added as <c>atftp</c> has
169 no <path>init.d</path>, <c>inetd</c> or <c>xinetd</c> scripts of its own. If you
170 @@ -315,7 +267,7 @@
171 </pre>
172
173 <p>
174 -An explanation of the above <c>rarpd</c> options (as taken from the man page);
175 +An explanation of the above options (as taken from the man page);
176 </p>
177
178 <ul>
179 @@ -341,16 +293,16 @@
180 <body>
181
182 <p>
183 -First, install the <c>net-misc/netkit-tftp</c> package:
184 +First, install the <c>netkit-tftp</c> package:
185 </p>
186
187 <pre caption="Installing netkit-tftp">
188 -# <i>emerge net-misc/netkit-tftp</i>
189 +# <i>emerge netkit-tftp</i>
190 </pre>
191
192 <p>
193 Second, install <c>sys-apps/xinetd</c> if it is not currently present. After
194 -the <c>net-misc/netkit-tftp</c> and <c>sys-apps/xinetd</c> packages have been
195 +the <c>netkit-tftp</c> and <c>sys-apps/xinetd</c> packages have been
196 installed, <c>netkit-tftp</c> will need to be configured. <c>netkit-tftp</c>
197 needs to be run from <c>xinetd</c>, however it does not provide example scripts
198 of its own. A sample <c>xinetd</c> file is provided below:
199 @@ -432,7 +384,7 @@
200 </p>
201
202 <pre caption="Installing tftp-hpa">
203 -# <i>emerge net-misc/tftp-hpa</i>
204 +# <i>emerge tftp-hpa</i>
205 </pre>
206
207 <p>