| … | |
… | |
| 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.50 2004/11/09 13:01:52 swift Exp $ --> |
7 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.67 2005/06/24 18:47:21 fox2mike Exp $ --> |
| 8 | |
8 | |
| 9 | <sections> |
9 | <sections> |
| 10 | |
10 | |
| 11 | <version>1.49</version> |
11 | <version>2.9</version> |
| 12 | <date>October 23, 2004</date> |
12 | <date>2005-06-24</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> |
| … | |
… | |
| 126 | (required) and for your CD-ROM drive (and of course, if you have other |
126 | (required) and for your CD-ROM drive (and of course, if you have other |
| 127 | partitions or drives, for those too): |
127 | partitions or drives, for those too): |
| 128 | </p> |
128 | </p> |
| 129 | |
129 | |
| 130 | <pre caption="A full /etc/fstab example"> |
130 | <pre caption="A full /etc/fstab example"> |
| 131 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |
131 | /dev/hda1 /boot ext2 defaults,noatime 1 2 |
| 132 | /dev/hda2 none swap sw 0 0 |
132 | /dev/hda2 none swap sw 0 0 |
| 133 | /dev/hda3 / ext3 noatime 0 1 |
133 | /dev/hda3 / ext3 noatime 0 1 |
| 134 | |
134 | |
| 135 | none /proc proc defaults 0 0 |
135 | none /proc proc defaults 0 0 |
| 136 | none /dev/shm tmpfs nodev,nosuid,noexec 0 0 |
136 | none /dev/shm tmpfs nodev,nosuid,noexec 0 0 |
| … | |
… | |
| 151 | too: |
151 | too: |
| 152 | </p> |
152 | </p> |
| 153 | |
153 | |
| 154 | <pre caption="Adding openprom filesystem to /etc/fstab"> |
154 | <pre caption="Adding openprom filesystem to /etc/fstab"> |
| 155 | none /proc/openprom openpromfs defaults 0 0 |
155 | none /proc/openprom openpromfs defaults 0 0 |
| 156 | </pre> |
|
|
| 157 | |
|
|
| 158 | <p> |
|
|
| 159 | If you need <c>usbfs</c>, add the following line to <path>/etc/fstab</path>: |
|
|
| 160 | </p> |
|
|
| 161 | |
|
|
| 162 | <pre caption="Adding usbfs filesystem to /etc/fstab"> |
|
|
| 163 | none /proc/bus/usb usbfs defaults 0 0 |
|
|
| 164 | </pre> |
156 | </pre> |
| 165 | |
157 | |
| 166 | <p> |
158 | <p> |
| 167 | Double-check your <path>/etc/fstab</path>, save and quit to continue. |
159 | Double-check your <path>/etc/fstab</path>, save and quit to continue. |
| 168 | </p> |
160 | </p> |
| … | |
… | |
| 187 | <p> |
179 | <p> |
| 188 | We use these values in the next examples. First we set the hostname: |
180 | We use these values in the next examples. First we set the hostname: |
| 189 | </p> |
181 | </p> |
| 190 | |
182 | |
| 191 | <pre caption="Setting the hostname"> |
183 | <pre caption="Setting the hostname"> |
| 192 | # <i>echo tux > /etc/hostname</i> |
184 | # <i>nano -w /etc/conf.d/hostname</i> |
|
|
185 | |
|
|
186 | <comment>(Set the HOSTNAME variable to your hostname)</comment> |
|
|
187 | HOSTNAME="<i>tux</i>" |
| 193 | </pre> |
188 | </pre> |
| 194 | |
189 | |
| 195 | <p> |
190 | <p> |
| 196 | Second we set the domainname: |
191 | Second we set the domainname: |
| 197 | </p> |
192 | </p> |
| 198 | |
193 | |
| 199 | <pre caption="Setting the domainname"> |
194 | <pre caption="Setting the domainname"> |
| 200 | # <i>echo homenetwork > /etc/dnsdomainname</i> |
195 | # <i>nano -w /etc/conf.d/domainname</i> |
|
|
196 | |
|
|
197 | <comment>(Set the DNSDOMAIN variable to your domain name)</comment> |
|
|
198 | DNSDOMAIN="<i>homenetwork</i>" |
| 201 | </pre> |
199 | </pre> |
| 202 | |
200 | |
| 203 | <p> |
201 | <p> |
| 204 | If you have a NIS domain (if you don't know what that is, then you don't have |
202 | If you have a NIS domain (if you don't know what that is, then you don't have |
| 205 | one), you need to define that one too: |
203 | one), you need to define that one too: |
| 206 | </p> |
204 | </p> |
| 207 | |
205 | |
| 208 | <pre caption="Setting the NIS domainname"> |
206 | <pre caption="Setting the NIS domainname"> |
| 209 | # <i>echo nis.homenetwork > /etc/nisdomainname</i> |
207 | # <i>nano -w /etc/conf.d/domainname</i> |
|
|
208 | |
|
|
209 | <comment>(Set the NISDOMAIN variable to your NIS domain name)</comment> |
|
|
210 | NISDOMAIN="<i>my-nisdomain</i>" |
| 210 | </pre> |
211 | </pre> |
| 211 | |
212 | |
| 212 | <p> |
213 | <p> |
| 213 | Now add the <c>domainname</c> script to the default runlevel: |
214 | Now add the <c>domainname</c> script to the default runlevel: |
| 214 | </p> |
215 | </p> |
| … | |
… | |
| 223 | <title>Configuring your Network</title> |
224 | <title>Configuring your Network</title> |
| 224 | <body> |
225 | <body> |
| 225 | |
226 | |
| 226 | <p> |
227 | <p> |
| 227 | Before you get that "Hey, we've had that already"-feeling, you should remember |
228 | Before you get that "Hey, we've had that already"-feeling, you should remember |
| 228 | that the networking you set up in the beginning of the gentoo installation was |
229 | that the networking you set up in the beginning of the Gentoo installation was |
| 229 | just for the installation. Right now you are going to configure networking for |
230 | just for the installation. Right now you are going to configure networking for |
| 230 | your Gentoo system permanently. |
231 | your Gentoo system permanently. |
| 231 | </p> |
232 | </p> |
|
|
233 | |
|
|
234 | <note> |
|
|
235 | More detailed information about networking, including advanced topics like |
|
|
236 | bonding, bridging, 802.11q VLANs or wireless networking is covered in the <uri |
|
|
237 | link="?part=4">Gentoo Network Configuration</uri> section. |
|
|
238 | </note> |
| 232 | |
239 | |
| 233 | <p> |
240 | <p> |
| 234 | All networking information is gathered in <path>/etc/conf.d/net</path>. It uses |
241 | All networking information is gathered in <path>/etc/conf.d/net</path>. It uses |
| 235 | a straightforward yet not intuitive syntax if you don't know how to set up |
242 | a straightforward yet not intuitive syntax if you don't know how to set up |
| 236 | networking manually. But don't fear, we'll explain everything :) |
243 | networking manually. But don't fear, we'll explain everything :) |
| … | |
… | |
| 244 | <pre caption="Opening /etc/conf.d/net for editing"> |
251 | <pre caption="Opening /etc/conf.d/net for editing"> |
| 245 | # <i>nano -w /etc/conf.d/net</i> |
252 | # <i>nano -w /etc/conf.d/net</i> |
| 246 | </pre> |
253 | </pre> |
| 247 | |
254 | |
| 248 | <p> |
255 | <p> |
| 249 | The first variable you'll find is <c>iface_eth0</c>. It uses the following |
256 | The first variable you'll find is called <c>config_eth0</c>. As you can probably |
| 250 | syntax: |
257 | imagine, this variable configured the eth0 network interface. If the interface |
| 251 | </p> |
258 | needs to automatically obtain an IP address through DHCP, you should set it |
| 252 | |
259 | like so: |
| 253 | <pre caption="iface_eth0 syntaxis"> |
|
|
| 254 | iface_eth0="<i><your ip address></i> broadcast <i><your broadcast address></i> netmask <i><your netmask></i>" |
|
|
| 255 | </pre> |
|
|
| 256 | |
|
|
| 257 | <p> |
260 | </p> |
| 258 | If you use DHCP (automatic IP retrieval), you should just set <c>iface_eth0</c> |
261 | |
| 259 | to <c>dhcp</c>. If you use rp-pppoe (e.g. for ADSL), set it to <c>up</c>. |
262 | <pre caption="Automatically obtaining an IP address for eth0"> |
| 260 | If you need to set up your network manually and you're |
263 | config_eth0=( "dhcp" ) |
| 261 | not familiar with all the above terms, please read the section on <uri |
264 | </pre> |
| 262 | link="?part=1&chap=3#network_term">Understanding Network |
265 | |
| 263 | Terminology</uri> if you haven't done so already. |
|
|
| 264 | </p> |
266 | <p> |
| 265 | |
267 | However, if you have to enter your own IP address, netmask and gateway, you need |
|
|
268 | to set both <c>config_eth0</c> and <c>routes_eth0</c>: |
| 266 | <p> |
269 | </p> |
| 267 | So let us give three examples; the first one uses DHCP, the second one a static |
270 | |
| 268 | IP (192.168.0.2) with netmask 255.255.255.0, broadcast 192.168.0.255 and |
271 | <pre caption="Manually setting IP information for eth0"> |
| 269 | gateway 192.168.0.1 while the third one just activates the interface for |
272 | config_eth0=( "192.168.0.2 netmask 255.255.255.0" ) |
| 270 | rp-pppoe usage: |
273 | routes_eth0=( "default gw 192.168.0.1" ) |
|
|
274 | </pre> |
|
|
275 | |
| 271 | </p> |
276 | <p> |
| 272 | |
277 | If you have several network interfaces repeat the above steps for |
| 273 | <pre caption="Examples for /etc/conf.d/net"> |
278 | <c>config_eth1</c>, <c>config_eth2</c>, etc. |
| 274 | <comment>(For DHCP)</comment> |
|
|
| 275 | iface_eth0="dhcp" |
|
|
| 276 | <comment># Some network admins require that you use the</comment> |
|
|
| 277 | <comment># hostname and domainname provided by the DHCP server.</comment> |
|
|
| 278 | <comment># In that case, add the following to let dhcpcd use them.</comment> |
|
|
| 279 | <comment># That will override your own hostname and domainname definitions.</comment> |
|
|
| 280 | dhcpcd_eth0="-HD" |
|
|
| 281 | <comment># If you intend on using NTP to keep your machine clock synchronized, use</comment> |
|
|
| 282 | <comment># the -N option to prevent dhcpcd from overwriting your /etc/ntp.conf file</comment> |
|
|
| 283 | dhcpcd_eth0="-N" |
|
|
| 284 | |
|
|
| 285 | <comment>(For static IP)</comment> |
|
|
| 286 | iface_eth0="192.168.0.2 broadcast 192.168.0.255 netmask 255.255.255.0" |
|
|
| 287 | gateway="eth0/192.168.0.1" |
|
|
| 288 | |
|
|
| 289 | <comment>(For rp-pppoe)</comment> |
|
|
| 290 | iface_eth0="up" |
|
|
| 291 | </pre> |
|
|
| 292 | |
|
|
| 293 | <p> |
|
|
| 294 | If you have several network interfaces, create extra <c>iface_eth</c> variables, |
|
|
| 295 | like <c>iface_eth1</c>, <c>iface_eth2</c> etc. The <c>gateway</c> variable |
|
|
| 296 | shouldn't be reproduced as you can only set one gateway per computer. |
|
|
| 297 | </p> |
279 | </p> |
| 298 | |
280 | |
| 299 | <p> |
281 | <p> |
| 300 | Now save the configuration and exit to continue. |
282 | Now save the configuration and exit to continue. |
| 301 | </p> |
283 | </p> |
| … | |
… | |
| 355 | </pre> |
337 | </pre> |
| 356 | |
338 | |
| 357 | <p> |
339 | <p> |
| 358 | If your system is the only system (or the nameservers handle all name |
340 | If your system is the only system (or the nameservers handle all name |
| 359 | resolution) a single line is sufficient. For instance, if you want to call your |
341 | resolution) a single line is sufficient. For instance, if you want to call your |
| 360 | system <c>tux.homenetwork</c>: |
342 | system <c>tux</c>: |
| 361 | </p> |
343 | </p> |
| 362 | |
344 | |
| 363 | <pre caption="/etc/hosts for lonely or fully integrated PCs"> |
345 | <pre caption="/etc/hosts for lonely or fully integrated PCs"> |
| 364 | 127.0.0.1 tux.homenetwork tux localhost |
346 | 127.0.0.1 localhost tux |
| 365 | </pre> |
347 | </pre> |
| 366 | |
348 | |
| 367 | <p> |
349 | <p> |
| 368 | Save and exit the editor to continue. |
350 | Save and exit the editor to continue. |
| 369 | </p> |
351 | </p> |
| … | |
… | |
| 444 | <pre caption="Opening /etc/rc.conf"> |
426 | <pre caption="Opening /etc/rc.conf"> |
| 445 | # <i>nano -w /etc/rc.conf</i> |
427 | # <i>nano -w /etc/rc.conf</i> |
| 446 | </pre> |
428 | </pre> |
| 447 | |
429 | |
| 448 | <p> |
430 | <p> |
|
|
431 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit. |
|
|
432 | </p> |
|
|
433 | |
|
|
434 | <p> |
| 449 | As you can see, this file is well commented to help you set up the necessary |
435 | As you can see, this file is well commented to help you set up the necessary |
| 450 | configuration variables. Take special care with the <c>KEYMAP</c> setting: if |
436 | configuration variables. Among other settings, you can configure your console |
| 451 | you select the wrong <c>KEYMAP</c> you will get weird results when typing on |
437 | fonts, your default editor and your display manager (like gdm or kdm). |
| 452 | your keyboard. |
438 | </p> |
|
|
439 | |
|
|
440 | <p> |
|
|
441 | Gentoo uses <path>/etc/conf.d/keymaps</path> to handle keyboard configuration. |
|
|
442 | Edit it to configure your keyboard. |
|
|
443 | </p> |
|
|
444 | |
|
|
445 | <pre caption="Opening /etc/conf.d/keymaps"> |
|
|
446 | # <i>nano -w /etc/conf.d/keymaps</i> |
|
|
447 | </pre> |
|
|
448 | |
|
|
449 | <p> |
|
|
450 | Take special care with the <c>KEYMAP</c> variable. If you select the wrong |
|
|
451 | <c>KEYMAP</c>, you will get weird results when typing on your keyboard. |
| 453 | </p> |
452 | </p> |
| 454 | |
453 | |
| 455 | <note> |
454 | <note> |
| 456 | Users of USB-based <b>SPARC</b> systems and <b>SPARC</b> clones might need to |
455 | Users of USB-based <b>SPARC</b> systems and <b>SPARC</b> clones might need to |
| 457 | select an i386 keymap (such as "us") instead of "sunkeymap". |
456 | select an i386 keymap (such as "us") instead of "sunkeymap". |
| 458 | </note> |
457 | </note> |
| 459 | |
458 | |
| 460 | <p> |
459 | <p> |
| 461 | <b>PPC</b> uses x86 keymaps on most systems. Users who want to be able to use |
460 | <b>PPC</b> uses x86 keymaps on most systems. Users who want to be able to use |
| 462 | ADB keymaps on boot have to enable ADB keycode sendings in their kernel and have |
461 | ADB keymaps on boot have to enable ADB keycode sendings in their kernel and have |
| 463 | to set a mac/ppc keymap in <path>rc.conf</path>. |
462 | to set a mac/ppc keymap in <path>/etc/conf.d/keymaps</path>. |
| 464 | </p> |
|
|
| 465 | |
|
|
| 466 | <p> |
463 | </p> |
|
|
464 | |
|
|
465 | <p> |
|
|
466 | When you're finished configuring <path>/etc/conf.d/keymaps</path>, save and |
|
|
467 | exit. |
|
|
468 | </p> |
|
|
469 | |
|
|
470 | <p> |
|
|
471 | Gentoo uses <path>/etc/conf.d/clock</path> to set clock options. Edit it |
|
|
472 | according to your needs. |
|
|
473 | </p> |
|
|
474 | |
|
|
475 | <pre caption="Opening /etc/conf.d/clock"> |
|
|
476 | # <i>nano -w /etc/conf.d/clock</i> |
|
|
477 | </pre> |
|
|
478 | |
|
|
479 | <p> |
|
|
480 | If your hardware clock is not using UTC, you need to add <c>CLOCK="local"</c> to |
|
|
481 | the file. Otherwise you will notice some clock skew. |
|
|
482 | </p> |
|
|
483 | |
|
|
484 | <p> |
| 467 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit, then |
485 | When you're finished configuring <path>/etc/conf.d/clock</path>, save and |
|
|
486 | exit. |
|
|
487 | </p> |
|
|
488 | |
|
|
489 | <p> |
|
|
490 | If you are not installing Gentoo on an IBM POWER5 or JS20 system, continue with |
|
|
491 | <uri link="?part=1&chap=9">Installing Necessary System Tools</uri>. |
|
|
492 | </p> |
|
|
493 | |
|
|
494 | </body> |
|
|
495 | </subsection> |
|
|
496 | <subsection> |
|
|
497 | <title>Configuring the Console</title> |
|
|
498 | <body> |
|
|
499 | |
|
|
500 | <note> |
|
|
501 | The following section applies to the IBM POWER5 and JS20 hardware platforms. |
|
|
502 | </note> |
|
|
503 | |
|
|
504 | <p> |
|
|
505 | If you are running Gentoo in an LPAR or on a JS20 blade, you must uncomment |
|
|
506 | the hvc line in /etc/inittab for the virtual console to spawn a login prompt. |
|
|
507 | </p> |
|
|
508 | |
|
|
509 | <pre caption="Enabling hvc support in /etc/inittab"> |
|
|
510 | hvc:12345:respawn:/sbin/agetty -nl /bin/bashlogin 9600 hvc0 vt220 |
|
|
511 | </pre> |
|
|
512 | |
|
|
513 | <p> |
| 468 | continue with <uri link="?part=1&chap=9">Installing Necessary System |
514 | You may now continue with <uri link="?part=1&chap=9">Installing Necessary |
| 469 | Tools</uri>. |
515 | System Tools</uri>. |
| 470 | </p> |
516 | </p> |
| 471 | |
517 | |
| 472 | </body> |
518 | </body> |
| 473 | </subsection> |
519 | </subsection> |
| 474 | </section> |
520 | </section> |