| … | |
… | |
| 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.58 2005/04/08 12:03:44 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> |
| … | |
… | |
| 235 | |
235 | |
| 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 | <!-- Old baselayout - current stable --> |
|
|
| 241 | |
|
|
| 242 | <p> |
|
|
| 243 | The first variable you'll find is <c>iface_eth0</c>. It uses the following |
|
|
| 244 | syntax: |
|
|
| 245 | </p> |
|
|
| 246 | |
|
|
| 247 | <pre caption="iface_eth0 syntaxis"> |
|
|
| 248 | iface_eth0="<i><your ip address></i> broadcast <i><your broadcast address></i> netmask <i><your netmask></i>" |
|
|
| 249 | </pre> |
|
|
| 250 | |
|
|
| 251 | <p> |
|
|
| 252 | If you use DHCP (automatic IP retrieval), you should just set <c>iface_eth0</c> |
|
|
| 253 | to <c>dhcp</c>. If you use rp-pppoe (e.g. for ADSL), set it to <c>up</c>. |
|
|
| 254 | If you need to set up your network manually and you're |
|
|
| 255 | not familiar with all the above terms, please read the section on <uri |
|
|
| 256 | link="?part=1&chap=3#network_term">Understanding Network |
|
|
| 257 | Terminology</uri> if you haven't done so already. |
|
|
| 258 | </p> |
|
|
| 259 | |
|
|
| 260 | <p> |
|
|
| 261 | So let us give three examples; the first one uses DHCP, the second one a static |
|
|
| 262 | IP (192.168.0.2) with netmask 255.255.255.0, broadcast 192.168.0.255 and |
|
|
| 263 | gateway 192.168.0.1 while the third one just activates the interface for |
|
|
| 264 | rp-pppoe usage: |
|
|
| 265 | </p> |
|
|
| 266 | |
|
|
| 267 | <pre caption="Examples for /etc/conf.d/net"> |
|
|
| 268 | <comment>(For DHCP)</comment> |
|
|
| 269 | iface_eth0="dhcp" |
|
|
| 270 | <comment># Some network admins require that you use the</comment> |
|
|
| 271 | <comment># hostname and domainname provided by the DHCP server.</comment> |
|
|
| 272 | <comment># In that case, add the following to let dhcpcd use them.</comment> |
|
|
| 273 | <comment># That will override your own hostname and domainname definitions.</comment> |
|
|
| 274 | dhcpcd_eth0="-HD" |
|
|
| 275 | <comment># If you intend on using NTP to keep your machine clock synchronized, use</comment> |
|
|
| 276 | <comment># the -N option to prevent dhcpcd from overwriting your /etc/ntp.conf file</comment> |
|
|
| 277 | dhcpcd_eth0="-N" |
|
|
| 278 | |
|
|
| 279 | <comment>(For static IP)</comment> |
|
|
| 280 | iface_eth0="192.168.0.2 broadcast 192.168.0.255 netmask 255.255.255.0" |
|
|
| 281 | gateway="eth0/192.168.0.1" |
|
|
| 282 | |
|
|
| 283 | <comment>(For rp-pppoe)</comment> |
|
|
| 284 | iface_eth0="up" |
|
|
| 285 | </pre> |
|
|
| 286 | |
|
|
| 287 | <p> |
|
|
| 288 | If you have several network interfaces, create extra <c>iface_eth</c> variables, |
|
|
| 289 | like <c>iface_eth1</c>, <c>iface_eth2</c> etc. The <c>gateway</c> variable |
|
|
| 290 | shouldn't be reproduced as you can only set one gateway per computer. |
|
|
| 291 | </p> |
|
|
| 292 | |
|
|
| 293 | <!-- New baselayout - current testing |
|
|
| 294 | |
|
|
| 295 | <p> |
240 | <p> |
| 296 | The first variable you'll find is called <c>config_eth0</c>. As you can probably |
241 | The first variable you'll find is called <c>config_eth0</c>. As you can probably |
| 297 | imagine, this variable configured the eth0 network interface. If the interface |
242 | imagine, this variable configured the eth0 network interface. If the interface |
| 298 | needs to automatically obtain an IP through DHCP, you should set it like so: |
243 | needs to automatically obtain an IP through DHCP, you should set it like so: |
| 299 | </p> |
244 | </p> |
| … | |
… | |
| 314 | |
259 | |
| 315 | <p> |
260 | <p> |
| 316 | If you have several network interfaces repeat the above steps for |
261 | If you have several network interfaces repeat the above steps for |
| 317 | <c>config_eth1</c>, <c>config_eth2</c>, etc. |
262 | <c>config_eth1</c>, <c>config_eth2</c>, etc. |
| 318 | </p> |
263 | </p> |
| 319 | |
|
|
| 320 | --> |
|
|
| 321 | |
264 | |
| 322 | <p> |
265 | <p> |
| 323 | Now save the configuration and exit to continue. |
266 | Now save the configuration and exit to continue. |
| 324 | </p> |
267 | </p> |
| 325 | |
268 | |
| … | |
… | |
| 485 | 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 |
| 486 | to set a mac/ppc keymap in <path>rc.conf</path>. |
429 | to set a mac/ppc keymap in <path>rc.conf</path>. |
| 487 | </p> |
430 | </p> |
| 488 | |
431 | |
| 489 | <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> |
| 490 | 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> |
| 491 | 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 |
| 492 | Tools</uri>. |
467 | System Tools</uri>. |
| 493 | </p> |
468 | </p> |
| 494 | |
469 | |
| 495 | </body> |
470 | </body> |
| 496 | </subsection> |
471 | </subsection> |
| 497 | </section> |
472 | </section> |