| … | |
… | |
| 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/1.0 --> |
| 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.62 2005/06/09 07:16:39 swift Exp $ --> |
| 8 | |
8 | |
| 9 | <sections> |
9 | <sections> |
| 10 | |
10 | |
| 11 | <version>2.1</version> |
11 | <version>2.4</version> |
| 12 | <date>2005-04-07</date> |
12 | <date>2005-06-09</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> |
| … | |
… | |
| 236 | <pre caption="Opening /etc/conf.d/net for editing"> |
236 | <pre caption="Opening /etc/conf.d/net for editing"> |
| 237 | # <i>nano -w /etc/conf.d/net</i> |
237 | # <i>nano -w /etc/conf.d/net</i> |
| 238 | </pre> |
238 | </pre> |
| 239 | |
239 | |
| 240 | <p> |
240 | <p> |
| 241 | The first variable you'll find is <c>iface_eth0</c>. It uses the following |
241 | The first variable you'll find is called <c>config_eth0</c>. As you can probably |
| 242 | syntax: |
242 | imagine, this variable configured the eth0 network interface. If the interface |
| 243 | </p> |
243 | needs to automatically obtain an IP through DHCP, you should set it like so: |
| 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> |
244 | </p> |
| 250 | If you use DHCP (automatic IP retrieval), you should just set <c>iface_eth0</c> |
245 | |
| 251 | to <c>dhcp</c>. If you use rp-pppoe (e.g. for ADSL), set it to <c>up</c>. |
246 | <pre caption="Automatically obtaining an IP for eth0"> |
| 252 | If you need to set up your network manually and you're |
247 | config_eth0=( "dhcp" ) |
| 253 | not familiar with all the above terms, please read the section on <uri |
248 | </pre> |
| 254 | link="?part=1&chap=3#network_term">Understanding Network |
249 | |
| 255 | Terminology</uri> if you haven't done so already. |
|
|
| 256 | </p> |
250 | <p> |
| 257 | |
251 | However, if you have to enter your own IP address, netmask and gateway, you need |
|
|
252 | to set both <c>config_eth0</c> and <c>routes_eth0</c>: |
| 258 | <p> |
253 | </p> |
| 259 | So let us give three examples; the first one uses DHCP, the second one a static |
254 | |
| 260 | IP (192.168.0.2) with netmask 255.255.255.0, broadcast 192.168.0.255 and |
255 | <pre caption="Manually setting IP information for eth0"> |
| 261 | gateway 192.168.0.1 while the third one just activates the interface for |
256 | config_eth0=( "192.168.0.2 netmask 255.255.255.0" ) |
| 262 | rp-pppoe usage: |
257 | routes_eth0=( "default gw 192.168.0.1" ) |
|
|
258 | </pre> |
|
|
259 | |
| 263 | </p> |
260 | <p> |
| 264 | |
261 | If you have several network interfaces repeat the above steps for |
| 265 | <pre caption="Examples for /etc/conf.d/net"> |
262 | <c>config_eth1</c>, <c>config_eth2</c>, etc. |
| 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> |
|
|
| 286 | If you have several network interfaces, create extra <c>iface_eth</c> variables, |
|
|
| 287 | like <c>iface_eth1</c>, <c>iface_eth2</c> etc. The <c>gateway</c> variable |
|
|
| 288 | shouldn't be reproduced as you can only set one gateway per computer. |
|
|
| 289 | </p> |
263 | </p> |
| 290 | |
264 | |
| 291 | <p> |
265 | <p> |
| 292 | Now save the configuration and exit to continue. |
266 | Now save the configuration and exit to continue. |
| 293 | </p> |
267 | </p> |
| … | |
… | |
| 454 | ADB keymaps on boot have to enable ADB keycode sendings in their kernel and have |
428 | ADB keymaps on boot have to enable ADB keycode sendings in their kernel and have |
| 455 | to set a mac/ppc keymap in <path>rc.conf</path>. |
429 | to set a mac/ppc keymap in <path>rc.conf</path>. |
| 456 | </p> |
430 | </p> |
| 457 | |
431 | |
| 458 | <p> |
432 | <p> |
|
|
433 | If your hardware clock is not using UTC, you need to add <c>CLOCK="local"</c> to |
|
|
434 | the file. Otherwise you will notice some clock skew. |
|
|
435 | </p> |
|
|
436 | |
|
|
437 | <p> |
| 459 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit, then |
438 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit. |
|
|
439 | </p> |
|
|
440 | |
|
|
441 | <p> |
|
|
442 | If you are not installing Gentoo on an IBM POWER5 or JS20 system, continue with |
|
|
443 | <uri link="?part=1&chap=9">Installing Necessary System Tools</uri>. |
|
|
444 | </p> |
|
|
445 | |
|
|
446 | </body> |
|
|
447 | </subsection> |
|
|
448 | <subsection> |
|
|
449 | <title>Configuring the Console</title> |
|
|
450 | <body> |
|
|
451 | |
|
|
452 | <note> |
|
|
453 | The following section applies to the IBM POWER5 and JS20 hardware platforms. |
|
|
454 | </note> |
|
|
455 | |
|
|
456 | <p> |
|
|
457 | If you are running Gentoo in an LPAR or on a JS20 blade, you must uncomment |
|
|
458 | the hvc line in /etc/inittab for the virtual console to spawn a login prompt. |
|
|
459 | </p> |
|
|
460 | |
|
|
461 | <pre caption="Enabling hvc support in /etc/inittab"> |
|
|
462 | hvc:12345:respawn:/sbin/agetty -nl /bin/bashlogin 9600 hvc0 vt220 |
|
|
463 | </pre> |
|
|
464 | |
|
|
465 | <p> |
| 460 | continue with <uri link="?part=1&chap=9">Installing Necessary System |
466 | You may now continue with <uri link="?part=1&chap=9">Installing Necessary |
| 461 | Tools</uri>. |
467 | System Tools</uri>. |
| 462 | </p> |
468 | </p> |
| 463 | |
469 | |
| 464 | </body> |
470 | </body> |
| 465 | </subsection> |
471 | </subsection> |
| 466 | </section> |
472 | </section> |