| 1 | <?xml version='1.0' encoding='UTF-8'?> |
1 | <?xml version='1.0' encoding='UTF-8'?> |
| 2 | <!DOCTYPE sections SYSTEM "/dtd/book.dtd"> |
2 | <!DOCTYPE sections SYSTEM "/dtd/book.dtd"> |
| 3 | |
3 | |
| 4 | <!-- The content of this document is licensed under the CC-BY-SA license --> |
4 | <!-- The content of this document is licensed under the CC-BY-SA license --> |
| 5 | <!-- See http://creativecommons.org/licenses/by-sa/1.0 --> |
5 | <!-- See http://creativecommons.org/licenses/by-sa/2.5 --> |
| 6 | |
6 | |
| 7 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.57 2005/04/07 16:12:35 swift Exp $ --> |
7 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.76 2006/03/28 10:35:59 neysx Exp $ --> |
| 8 | |
8 | |
| 9 | <sections> |
9 | <sections> |
| 10 | |
10 | |
| 11 | <version>2.1</version> |
11 | <version>2.18</version> |
| 12 | <date>2005-04-07</date> |
12 | <date>2006-03-28</date> |
| 13 | |
13 | |
| 14 | <section> |
14 | <section> |
| 15 | <title>Filesystem Information</title> |
15 | <title>Filesystem Information</title> |
| 16 | <subsection> |
16 | <subsection> |
| 17 | <title>What is fstab?</title> |
17 | <title>What is fstab?</title> |
| … | |
… | |
| 78 | </pre> |
78 | </pre> |
| 79 | |
79 | |
| 80 | <p> |
80 | <p> |
| 81 | Let us take a look at how we write down the options for the <path>/boot</path> |
81 | Let us take a look at how we write down the options for the <path>/boot</path> |
| 82 | partition. This is just an example, so if your architecture doesn't require a |
82 | partition. This is just an example, so if your architecture doesn't require a |
| 83 | <path>/boot</path> partition (such as <b>PPC</b>), don't copy it verbatim. |
83 | <path>/boot</path> partition (such as Apple <b>PPC</b> machines), don't copy it |
|
|
84 | verbatim. |
| 84 | </p> |
85 | </p> |
| 85 | |
86 | |
| 86 | <p> |
87 | <p> |
| 87 | In our default x86 partitioning example <path>/boot</path> is the |
88 | In our default x86 partitioning example <path>/boot</path> is the |
| 88 | <path>/dev/hda1</path> partition, with <c>ext2</c> as filesystem. |
89 | <path>/dev/hda1</path> partition, with <c>ext2</c> as filesystem. |
| … | |
… | |
| 179 | <p> |
180 | <p> |
| 180 | We use these values in the next examples. First we set the hostname: |
181 | We use these values in the next examples. First we set the hostname: |
| 181 | </p> |
182 | </p> |
| 182 | |
183 | |
| 183 | <pre caption="Setting the hostname"> |
184 | <pre caption="Setting the hostname"> |
| 184 | # <i>echo tux > /etc/hostname</i> |
185 | # <i>nano -w /etc/conf.d/hostname</i> |
|
|
186 | |
|
|
187 | <comment>(Set the HOSTNAME variable to your hostname)</comment> |
|
|
188 | HOSTNAME="<i>tux</i>" |
| 185 | </pre> |
189 | </pre> |
| 186 | |
190 | |
| 187 | <p> |
191 | <p> |
| 188 | Second we set the domainname: |
192 | Second we set the domainname: |
| 189 | </p> |
193 | </p> |
| 190 | |
194 | |
| 191 | <pre caption="Setting the domainname"> |
195 | <pre caption="Setting the domainname"> |
| 192 | # <i>echo homenetwork > /etc/dnsdomainname</i> |
196 | # <i>nano -w /etc/conf.d/domainname</i> |
|
|
197 | |
|
|
198 | <comment>(Set the DNSDOMAIN variable to your domain name)</comment> |
|
|
199 | DNSDOMAIN="<i>homenetwork</i>" |
| 193 | </pre> |
200 | </pre> |
| 194 | |
201 | |
| 195 | <p> |
202 | <p> |
| 196 | If you have a NIS domain (if you don't know what that is, then you don't have |
203 | If you have a NIS domain (if you don't know what that is, then you don't have |
| 197 | one), you need to define that one too: |
204 | one), you need to define that one too: |
| 198 | </p> |
205 | </p> |
| 199 | |
206 | |
| 200 | <pre caption="Setting the NIS domainname"> |
207 | <pre caption="Setting the NIS domainname"> |
| 201 | # <i>echo nis.homenetwork > /etc/nisdomainname</i> |
208 | # <i>nano -w /etc/conf.d/domainname</i> |
| 202 | </pre> |
|
|
| 203 | |
209 | |
| 204 | <p> |
210 | <comment>(Set the NISDOMAIN variable to your NIS domain name)</comment> |
| 205 | Now add the <c>domainname</c> script to the default runlevel: |
211 | NISDOMAIN="<i>my-nisdomain</i>" |
| 206 | </p> |
|
|
| 207 | |
|
|
| 208 | <pre caption="Adding domainname to the default runlevel"> |
|
|
| 209 | # <i>rc-update add domainname default</i> |
|
|
| 210 | </pre> |
212 | </pre> |
| 211 | |
213 | |
| 212 | </body> |
214 | </body> |
| 213 | </subsection> |
215 | </subsection> |
| 214 | <subsection> |
216 | <subsection> |
| 215 | <title>Configuring your Network</title> |
217 | <title>Configuring your Network</title> |
| 216 | <body> |
218 | <body> |
| 217 | |
219 | |
| 218 | <p> |
220 | <p> |
| 219 | Before you get that "Hey, we've had that already"-feeling, you should remember |
221 | Before you get that "Hey, we've had that already"-feeling, you should remember |
| 220 | that the networking you set up in the beginning of the gentoo installation was |
222 | that the networking you set up in the beginning of the Gentoo installation was |
| 221 | just for the installation. Right now you are going to configure networking for |
223 | just for the installation. Right now you are going to configure networking for |
| 222 | your Gentoo system permanently. |
224 | your Gentoo system permanently. |
| 223 | </p> |
225 | </p> |
| 224 | |
226 | |
|
|
227 | <note> |
|
|
228 | More detailed information about networking, including advanced topics like |
|
|
229 | bonding, bridging, 802.1Q VLANs or wireless networking is covered in the <uri |
|
|
230 | link="?part=4">Gentoo Network Configuration</uri> section. |
|
|
231 | </note> |
|
|
232 | |
| 225 | <p> |
233 | <p> |
| 226 | All networking information is gathered in <path>/etc/conf.d/net</path>. It uses |
234 | All networking information is gathered in <path>/etc/conf.d/net</path>. It uses |
| 227 | a straightforward yet not intuitive syntax if you don't know how to set up |
235 | a straightforward yet not intuitive syntax if you don't know how to set up |
| 228 | networking manually. But don't fear, we'll explain everything :) |
236 | networking manually. But don't fear, we'll explain everything. A fully |
| 229 | </p> |
237 | commented example that covers many different configurations is available in |
| 230 | |
238 | <path>/etc/conf.d/net.example</path>. |
| 231 | <p> |
239 | </p> |
|
|
240 | |
|
|
241 | <p> |
|
|
242 | DHCP is used by default and does not require any further configuration. |
|
|
243 | </p> |
|
|
244 | |
|
|
245 | <p> |
|
|
246 | If you need to configure your network connection either because you need |
|
|
247 | specific DHCP options or because you do not use DHCP at all, open |
| 232 | First open <path>/etc/conf.d/net</path> with your favorite editor (<c>nano</c> |
248 | <path>/etc/conf.d/net</path> with your favorite editor (<c>nano</c> is used in |
| 233 | is used in this example): |
249 | this example): |
| 234 | </p> |
250 | </p> |
| 235 | |
251 | |
| 236 | <pre caption="Opening /etc/conf.d/net for editing"> |
252 | <pre caption="Opening /etc/conf.d/net for editing"> |
| 237 | # <i>nano -w /etc/conf.d/net</i> |
253 | # <i>nano -w /etc/conf.d/net</i> |
| 238 | </pre> |
254 | </pre> |
| 239 | |
255 | |
| 240 | <p> |
256 | <p> |
| 241 | The first variable you'll find is <c>iface_eth0</c>. It uses the following |
257 | You will see the following file: |
| 242 | syntax: |
|
|
| 243 | </p> |
|
|
| 244 | |
|
|
| 245 | <pre caption="iface_eth0 syntaxis"> |
|
|
| 246 | iface_eth0="<i><your ip address></i> broadcast <i><your broadcast address></i> netmask <i><your netmask></i>" |
|
|
| 247 | </pre> |
|
|
| 248 | |
|
|
| 249 | <p> |
258 | </p> |
| 250 | If you use DHCP (automatic IP retrieval), you should just set <c>iface_eth0</c> |
259 | |
| 251 | to <c>dhcp</c>. If you use rp-pppoe (e.g. for ADSL), set it to <c>up</c>. |
260 | <pre caption="Default /etc/conf.d/net"> |
| 252 | If you need to set up your network manually and you're |
261 | # This blank configuration will automatically use DHCP for any net.* |
| 253 | not familiar with all the above terms, please read the section on <uri |
262 | # scripts in /etc/init.d. To create a more complete configuration, |
| 254 | link="?part=1&chap=3#network_term">Understanding Network |
263 | # please review /etc/conf.d/net.example and save your configuration |
| 255 | Terminology</uri> if you haven't done so already. |
264 | # in /etc/conf.d/net (this file :]!). |
|
|
265 | </pre> |
|
|
266 | |
| 256 | </p> |
267 | <p> |
| 257 | |
268 | To enter your own IP address, netmask and gateway, you need |
|
|
269 | to set both <c>config_eth0</c> and <c>routes_eth0</c>: |
| 258 | <p> |
270 | </p> |
| 259 | So let us give three examples; the first one uses DHCP, the second one a static |
271 | |
| 260 | IP (192.168.0.2) with netmask 255.255.255.0, broadcast 192.168.0.255 and |
272 | <pre caption="Manually setting IP information for eth0"> |
| 261 | gateway 192.168.0.1 while the third one just activates the interface for |
273 | config_eth0=( "192.168.0.2 netmask 255.255.255.0 brd 192.168.0.255" ) |
| 262 | rp-pppoe usage: |
274 | routes_eth0=( "default gw 192.168.0.1" ) |
|
|
275 | </pre> |
|
|
276 | |
| 263 | </p> |
277 | <p> |
| 264 | |
278 | To use DHCP and add specific DHCP options, define <c>config_eth0</c> and |
| 265 | <pre caption="Examples for /etc/conf.d/net"> |
279 | <c>dhcp_eth0</c>: |
| 266 | <comment>(For DHCP)</comment> |
|
|
| 267 | iface_eth0="dhcp" |
|
|
| 268 | <comment># Some network admins require that you use the</comment> |
|
|
| 269 | <comment># hostname and domainname provided by the DHCP server.</comment> |
|
|
| 270 | <comment># In that case, add the following to let dhcpcd use them.</comment> |
|
|
| 271 | <comment># That will override your own hostname and domainname definitions.</comment> |
|
|
| 272 | dhcpcd_eth0="-HD" |
|
|
| 273 | <comment># If you intend on using NTP to keep your machine clock synchronized, use</comment> |
|
|
| 274 | <comment># the -N option to prevent dhcpcd from overwriting your /etc/ntp.conf file</comment> |
|
|
| 275 | dhcpcd_eth0="-N" |
|
|
| 276 | |
|
|
| 277 | <comment>(For static IP)</comment> |
|
|
| 278 | iface_eth0="192.168.0.2 broadcast 192.168.0.255 netmask 255.255.255.0" |
|
|
| 279 | gateway="eth0/192.168.0.1" |
|
|
| 280 | |
|
|
| 281 | <comment>(For rp-pppoe)</comment> |
|
|
| 282 | iface_eth0="up" |
|
|
| 283 | </pre> |
|
|
| 284 | |
|
|
| 285 | <p> |
280 | </p> |
| 286 | If you have several network interfaces, create extra <c>iface_eth</c> variables, |
281 | |
| 287 | like <c>iface_eth1</c>, <c>iface_eth2</c> etc. The <c>gateway</c> variable |
282 | <pre caption="Automatically obtaining an IP address for eth0"> |
| 288 | shouldn't be reproduced as you can only set one gateway per computer. |
283 | config_eth0=( "dhcp" ) |
|
|
284 | dhcp_eth0="nodns nontp nonis" |
|
|
285 | </pre> |
|
|
286 | |
|
|
287 | <p> |
|
|
288 | Please read <path>/etc/conf.d/net.example</path> for a list of all available |
|
|
289 | options. |
|
|
290 | </p> |
|
|
291 | |
|
|
292 | <p> |
|
|
293 | If you have several network interfaces repeat the above steps for |
|
|
294 | <c>config_eth1</c>, <c>config_eth2</c>, etc. |
| 289 | </p> |
295 | </p> |
| 290 | |
296 | |
| 291 | <p> |
297 | <p> |
| 292 | Now save the configuration and exit to continue. |
298 | Now save the configuration and exit to continue. |
| 293 | </p> |
299 | </p> |
| … | |
… | |
| 436 | <pre caption="Opening /etc/rc.conf"> |
442 | <pre caption="Opening /etc/rc.conf"> |
| 437 | # <i>nano -w /etc/rc.conf</i> |
443 | # <i>nano -w /etc/rc.conf</i> |
| 438 | </pre> |
444 | </pre> |
| 439 | |
445 | |
| 440 | <p> |
446 | <p> |
|
|
447 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit. |
|
|
448 | </p> |
|
|
449 | |
|
|
450 | <p> |
| 441 | As you can see, this file is well commented to help you set up the necessary |
451 | As you can see, this file is well commented to help you set up the necessary |
| 442 | configuration variables. Take special care with the <c>KEYMAP</c> setting: if |
452 | configuration variables. You can configure your system to use unicode and |
| 443 | you select the wrong <c>KEYMAP</c> you will get weird results when typing on |
453 | define your default editor and your display manager (like gdm or kdm). |
| 444 | your keyboard. |
454 | </p> |
|
|
455 | |
|
|
456 | <p> |
|
|
457 | Gentoo uses <path>/etc/conf.d/keymaps</path> to handle keyboard configuration. |
|
|
458 | Edit it to configure your keyboard. |
|
|
459 | </p> |
|
|
460 | |
|
|
461 | <pre caption="Opening /etc/conf.d/keymaps"> |
|
|
462 | # <i>nano -w /etc/conf.d/keymaps</i> |
|
|
463 | </pre> |
|
|
464 | |
|
|
465 | <p> |
|
|
466 | Take special care with the <c>KEYMAP</c> variable. If you select the wrong |
|
|
467 | <c>KEYMAP</c>, you will get weird results when typing on your keyboard. |
| 445 | </p> |
468 | </p> |
| 446 | |
469 | |
| 447 | <note> |
470 | <note> |
| 448 | Users of USB-based <b>SPARC</b> systems and <b>SPARC</b> clones might need to |
471 | Users of USB-based <b>SPARC</b> systems and <b>SPARC</b> clones might need to |
| 449 | select an i386 keymap (such as "us") instead of "sunkeymap". |
472 | select an i386 keymap (such as "us") instead of "sunkeymap". <b>PPC</b> uses x86 |
|
|
473 | keymaps on most systems. Users who want to be able to use ADB keymaps on boot |
|
|
474 | have to enable ADB keycode sendings in their kernel and have to set a mac/ppc |
|
|
475 | keymap in <path>/etc/conf.d/keymaps</path>. |
| 450 | </note> |
476 | </note> |
| 451 | |
477 | |
| 452 | <p> |
478 | <p> |
| 453 | <b>PPC</b> uses x86 keymaps on most systems. Users who want to be able to use |
479 | When you're finished configuring <path>/etc/conf.d/keymaps</path>, save and |
| 454 | ADB keymaps on boot have to enable ADB keycode sendings in their kernel and have |
480 | exit. |
| 455 | to set a mac/ppc keymap in <path>rc.conf</path>. |
|
|
| 456 | </p> |
|
|
| 457 | |
|
|
| 458 | <p> |
481 | </p> |
|
|
482 | |
|
|
483 | <p> |
|
|
484 | Gentoo uses <path>/etc/conf.d/clock</path> to set clock options. Edit it |
|
|
485 | according to your needs. |
|
|
486 | </p> |
|
|
487 | |
|
|
488 | <pre caption="Opening /etc/conf.d/clock"> |
|
|
489 | # <i>nano -w /etc/conf.d/clock</i> |
|
|
490 | </pre> |
|
|
491 | |
|
|
492 | <p> |
|
|
493 | If your hardware clock is not using UTC, you need to add <c>CLOCK="local"</c> to |
|
|
494 | the file. Otherwise you will notice some clock skew. Furthermore, Windows |
|
|
495 | assumes that your hardware clock uses local time, so if you want to dualboot, |
|
|
496 | you should set this variable appropriately, otherwise your clock will go crazy. |
|
|
497 | </p> |
|
|
498 | |
|
|
499 | <p> |
| 459 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit, then |
500 | When you're finished configuring <path>/etc/conf.d/clock</path>, save and |
|
|
501 | exit. |
|
|
502 | </p> |
|
|
503 | |
|
|
504 | <p> |
|
|
505 | If you are not installing Gentoo on IBM PPC64 hardware, continue with |
|
|
506 | <uri link="?part=1&chap=9">Installing Necessary System Tools</uri>. |
|
|
507 | </p> |
|
|
508 | |
|
|
509 | </body> |
|
|
510 | </subsection> |
|
|
511 | <subsection> |
|
|
512 | <title>Configuring the Console</title> |
|
|
513 | <body> |
|
|
514 | |
|
|
515 | <note> |
|
|
516 | The following section applies to the IBM PPC64 hardware platforms. |
|
|
517 | </note> |
|
|
518 | |
|
|
519 | <p> |
|
|
520 | If you are running Gentoo on IBM PPC64 hardware and using a virtual console |
|
|
521 | you must uncomment the appropriate line in <path>/etc/inittab</path> for the |
|
|
522 | virtual console to spawn a login prompt. |
|
|
523 | </p> |
|
|
524 | |
|
|
525 | <pre caption="Enabling hvc or hvsi support in /etc/inittab"> |
|
|
526 | hvc0:12345:respawn:/sbin/agetty -L 9600 hvc0 |
|
|
527 | hvsi:12345:respawn:/sbin/agetty -L 19200 hvsi0 |
|
|
528 | </pre> |
|
|
529 | |
|
|
530 | <p> |
|
|
531 | You should also take this time to verify that the appropriate console is |
|
|
532 | listed in <path>/etc/securetty</path>. |
|
|
533 | </p> |
|
|
534 | |
|
|
535 | <p> |
| 460 | continue with <uri link="?part=1&chap=9">Installing Necessary System |
536 | You may now continue with <uri link="?part=1&chap=9">Installing Necessary |
| 461 | Tools</uri>. |
537 | System Tools</uri>. |
| 462 | </p> |
538 | </p> |
| 463 | |
539 | |
| 464 | </body> |
540 | </body> |
| 465 | </subsection> |
541 | </subsection> |
| 466 | </section> |
542 | </section> |