| … | |
… | |
| 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.39 2004/08/01 11:20:51 swift Exp $ --> |
7 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.48 2004/10/23 11:02:06 swift Exp $ --> |
| 8 | |
8 | |
| 9 | <sections> |
9 | <sections> |
| 10 | <section> |
10 | <section> |
| 11 | <title>Filesystem Information</title> |
11 | <title>Filesystem Information</title> |
| 12 | <subsection> |
12 | <subsection> |
| … | |
… | |
| 15 | |
15 | |
| 16 | <p> |
16 | <p> |
| 17 | Under Linux, all partitions used by the system must be listed in |
17 | Under Linux, all partitions used by the system must be listed in |
| 18 | <path>/etc/fstab</path>. This file contains the mountpoints of those partitions |
18 | <path>/etc/fstab</path>. This file contains the mountpoints of those partitions |
| 19 | (where they are seen in the file system structure), how they should be mounted |
19 | (where they are seen in the file system structure), how they should be mounted |
| 20 | (special options) and when (automatically or not, can users mount those or not, |
20 | and with what special options (automatically or not, whether users can mount |
| 21 | etc.). |
21 | them or not, etc.) |
| 22 | </p> |
22 | </p> |
| 23 | |
23 | |
| 24 | </body> |
24 | </body> |
| 25 | </subsection> |
25 | </subsection> |
| 26 | <subsection> |
26 | <subsection> |
| … | |
… | |
| 57 | </li> |
57 | </li> |
| 58 | <li> |
58 | <li> |
| 59 | The sixth field is used by <c>fsck</c> to determine the order in which |
59 | The sixth field is used by <c>fsck</c> to determine the order in which |
| 60 | filesystems should be <b>check</b>ed if the system wasn't shut down properly. |
60 | filesystems should be <b>check</b>ed if the system wasn't shut down properly. |
| 61 | The root filesystem should have <c>1</c> while the rest should have <c>2</c> |
61 | The root filesystem should have <c>1</c> while the rest should have <c>2</c> |
| 62 | (or <c>0</c> in case a filesystem check isn't necessary). |
62 | (or <c>0</c> if a filesystem check isn't necessary). |
| 63 | </li> |
63 | </li> |
| 64 | </ul> |
64 | </ul> |
| 65 | |
65 | |
| 66 | <p> |
66 | <p> |
|
|
67 | The default <path>/etc/fstab</path> file provided by Gentoo <e>is no valid fstab |
| 67 | So start <c>nano</c> (or your favorite editor) to create your |
68 | file</e>, so start <c>nano</c> (or your favorite editor) to create your |
| 68 | <path>/etc/fstab</path>: |
69 | <path>/etc/fstab</path>: |
| 69 | </p> |
70 | </p> |
| 70 | |
71 | |
| 71 | <pre caption="Opening /etc/fstab"> |
72 | <pre caption="Opening /etc/fstab"> |
| 72 | # <i>nano -w /etc/fstab</i> |
73 | # <i>nano -w /etc/fstab</i> |
| … | |
… | |
| 88 | /dev/hda1 /boot ext2 defaults 1 2 |
89 | /dev/hda1 /boot ext2 defaults 1 2 |
| 89 | </pre> |
90 | </pre> |
| 90 | |
91 | |
| 91 | <p> |
92 | <p> |
| 92 | Some users don't want their <path>/boot</path> partition to be mounted |
93 | Some users don't want their <path>/boot</path> partition to be mounted |
| 93 | automatically. Those people should substitute <c>defaults</c> with |
94 | automatically to improve their system's security. Those people should |
| 94 | <c>noauto</c>. This does mean that you need to manually mount this partition |
95 | substitute <c>defaults</c> with <c>noauto</c>. This does mean that you need to |
| 95 | every time you want to use it. |
96 | manually mount this partition every time you want to use it. |
| 96 | </p> |
97 | </p> |
| 97 | |
98 | |
| 98 | <p> |
99 | <p> |
| 99 | Now, to improve performance, most users would want to add the <c>noatime</c> |
100 | Now, to improve performance, most users would want to add the <c>noatime</c> |
| 100 | option as mountoption, which results in a faster system since access times |
101 | option as mountoption, which results in a faster system since access times |
| 101 | aren't registered (you don't need those generally anyway): |
102 | aren't registered (you don't need those generally anyway): |
| 102 | </p> |
103 | </p> |
| 103 | |
104 | |
| 104 | <pre caption="An improved /boot line for /etc/fstab"> |
105 | <pre caption="An improved /boot line for /etc/fstab"> |
| 105 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |
106 | /dev/hda1 /boot ext2 defaults,noatime 1 2 |
| 106 | </pre> |
107 | </pre> |
| 107 | |
108 | |
| 108 | <p> |
109 | <p> |
| 109 | If we continue with this, we would end up with the following three lines (for |
110 | If we continue with this, we would end up with the following three lines (for |
| 110 | <path>/boot</path>, <path>/</path> and the swap partition): |
111 | <path>/boot</path>, <path>/</path> and the swap partition): |
| 111 | </p> |
112 | </p> |
| 112 | |
113 | |
| 113 | <pre caption="Three /etc/fstab lines"> |
114 | <pre caption="Three /etc/fstab lines"> |
| 114 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |
115 | /dev/hda1 /boot ext2 defaults,noatime 1 2 |
| 115 | /dev/hda2 none swap sw 0 0 |
116 | /dev/hda2 none swap sw 0 0 |
| 116 | /dev/hda3 / ext3 noatime 0 1 |
117 | /dev/hda3 / ext3 noatime 0 1 |
| 117 | </pre> |
118 | </pre> |
| 118 | |
119 | |
| 119 | <p> |
120 | <p> |
| … | |
… | |
| 121 | (required) and for your CD-ROM drive (and of course, if you have other |
122 | (required) and for your CD-ROM drive (and of course, if you have other |
| 122 | partitions or drives, for those too): |
123 | partitions or drives, for those too): |
| 123 | </p> |
124 | </p> |
| 124 | |
125 | |
| 125 | <pre caption="A full /etc/fstab example"> |
126 | <pre caption="A full /etc/fstab example"> |
| 126 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |
127 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |
| 127 | /dev/hda2 none swap sw 0 0 |
128 | /dev/hda2 none swap sw 0 0 |
| 128 | /dev/hda3 / ext3 noatime 0 1 |
129 | /dev/hda3 / ext3 noatime 0 1 |
| 129 | |
130 | |
| 130 | none /proc proc defaults 0 0 |
131 | none /proc proc defaults 0 0 |
| 131 | none /dev/shm tmpfs defaults 0 0 |
132 | none /dev/shm tmpfs nodev,nosuid,noexec 0 0 |
| 132 | |
133 | |
| 133 | /dev/cdroms/cdrom0 /mnt/cdrom auto noauto,user 0 0 |
134 | /dev/cdroms/cdrom0 /mnt/cdrom auto noauto,user 0 0 |
| 134 | </pre> |
135 | </pre> |
| 135 | |
136 | |
| 136 | <p> |
137 | <p> |
| … | |
… | |
| 225 | your Gentoo system permanently. |
226 | your Gentoo system permanently. |
| 226 | </p> |
227 | </p> |
| 227 | |
228 | |
| 228 | <p> |
229 | <p> |
| 229 | All networking information is gathered in <path>/etc/conf.d/net</path>. It uses |
230 | All networking information is gathered in <path>/etc/conf.d/net</path>. It uses |
| 230 | a straightforward yet not intuitive syntax if you don't know how to setup |
231 | a straightforward yet not intuitive syntax if you don't know how to set up |
| 231 | networking manually. But don't fear, we'll explain everything :) |
232 | networking manually. But don't fear, we'll explain everything :) |
| 232 | </p> |
233 | </p> |
| 233 | |
234 | |
| 234 | <p> |
235 | <p> |
| 235 | First open <path>/etc/conf.d/net</path> with your favorite editor (<c>nano</c> |
236 | First open <path>/etc/conf.d/net</path> with your favorite editor (<c>nano</c> |
| … | |
… | |
| 250 | </pre> |
251 | </pre> |
| 251 | |
252 | |
| 252 | <p> |
253 | <p> |
| 253 | If you use DHCP (automatic IP retrieval), you should just set <c>iface_eth0</c> |
254 | If you use DHCP (automatic IP retrieval), you should just set <c>iface_eth0</c> |
| 254 | to <c>dhcp</c>. If you use rp-pppoe (e.g. for ADSL), set it to <c>up</c>. |
255 | to <c>dhcp</c>. If you use rp-pppoe (e.g. for ADSL), set it to <c>up</c>. |
| 255 | If you need to setup your network manually and you're |
256 | If you need to set up your network manually and you're |
| 256 | not familiar with all the above terms, please read the section on <uri |
257 | not familiar with all the above terms, please read the section on <uri |
| 257 | link="?part=1&chap=3#doc_chap4_sect3">Understanding Network |
258 | link="?part=1&chap=3#network_term">Understanding Network |
| 258 | Terminology</uri> if you haven't done so already. |
259 | Terminology</uri> if you haven't done so already. |
| 259 | </p> |
260 | </p> |
| 260 | |
261 | |
| 261 | <p> |
262 | <p> |
| 262 | So let us give three examples; the first one uses DHCP, the second one a static |
263 | So let us give three examples; the first one uses DHCP, the second one a static |
| … | |
… | |
| 300 | <subsection> |
301 | <subsection> |
| 301 | <title>Automatically Start Networking at Boot</title> |
302 | <title>Automatically Start Networking at Boot</title> |
| 302 | <body> |
303 | <body> |
| 303 | |
304 | |
| 304 | <p> |
305 | <p> |
| 305 | To have your network interfaces activated at boot, you need to add those to the |
306 | To have your network interfaces activated at boot, you need to add them to the |
| 306 | default runlevel. If you have PCMCIA interfaces you should skip this action as |
307 | default runlevel. If you have PCMCIA interfaces you should skip this action as |
| 307 | the PCMCIA interfaces are started by the PCMCIA init script. |
308 | the PCMCIA interfaces are started by the PCMCIA init script. |
| 308 | </p> |
309 | </p> |
| 309 | |
310 | |
| 310 | <pre caption="Adding net.eth0 to the default runlevel"> |
311 | <pre caption="Adding net.eth0 to the default runlevel"> |
| … | |
… | |
| 378 | <note> |
379 | <note> |
| 379 | pcmcia-cs is only available for x86, amd64 and ppc platforms. |
380 | pcmcia-cs is only available for x86, amd64 and ppc platforms. |
| 380 | </note> |
381 | </note> |
| 381 | |
382 | |
| 382 | <p> |
383 | <p> |
| 383 | PCMCIA-users should first install the <c>pcmcia-cs</c> package. The |
384 | PCMCIA-users should first install the <c>pcmcia-cs</c> package. This also |
|
|
385 | includes users who will be working with a 2.6 kernel (even though they won't be |
|
|
386 | using the PCMCIA drivers from this package). The <c>USE="-X"</c> is necessary |
| 384 | <c>USE="-X"</c> is necessary to avoid installing xorg-x11 at this moment: |
387 | to avoid installing xorg-x11 at this moment: |
| 385 | </p> |
388 | </p> |
| 386 | |
389 | |
| 387 | <pre caption="Installing pcmcia-cs"> |
390 | <pre caption="Installing pcmcia-cs"> |
| 388 | # <i>USE="-X" emerge pcmcia-cs</i> |
391 | # <i>USE="-X" emerge pcmcia-cs</i> |
| 389 | </pre> |
392 | </pre> |
| … | |
… | |
| 399 | |
402 | |
| 400 | </body> |
403 | </body> |
| 401 | </subsection> |
404 | </subsection> |
| 402 | </section> |
405 | </section> |
| 403 | <section> |
406 | <section> |
|
|
407 | <title>System Information</title> |
|
|
408 | <subsection> |
|
|
409 | <title>Root Password</title> |
|
|
410 | <body> |
|
|
411 | |
|
|
412 | <p> |
|
|
413 | First we set the root password by typing: |
|
|
414 | </p> |
|
|
415 | |
|
|
416 | <pre caption="Setting the root password"> |
|
|
417 | # <i>passwd</i> |
|
|
418 | </pre> |
|
|
419 | |
|
|
420 | <p> |
|
|
421 | If you want root to be able to log on through the serial console, add |
|
|
422 | <c>tts/0</c> to <path>/etc/securetty</path>: |
|
|
423 | </p> |
|
|
424 | |
|
|
425 | <pre caption="Adding tts/0 to /etc/securetty"> |
|
|
426 | # <i>echo "tts/0" >> /etc/securetty</i> |
|
|
427 | </pre> |
|
|
428 | |
|
|
429 | </body> |
|
|
430 | </subsection> |
|
|
431 | <subsection> |
| 404 | <title>System Information</title> |
432 | <title>System Information</title> |
| 405 | <body> |
433 | <body> |
| 406 | |
434 | |
| 407 | <p> |
435 | <p> |
| 408 | Gentoo uses <path>/etc/rc.conf</path> for general, system-wide configuration. |
436 | Gentoo uses <path>/etc/rc.conf</path> for general, system-wide configuration. |
| … | |
… | |
| 431 | to set a mac/ppc keymap in <path>rc.conf</path>. |
459 | to set a mac/ppc keymap in <path>rc.conf</path>. |
| 432 | </p> |
460 | </p> |
| 433 | |
461 | |
| 434 | <p> |
462 | <p> |
| 435 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit, then |
463 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit, then |
| 436 | continue with <uri link="?part=1&chap=9">Configuring the Bootloader</uri>. |
464 | continue with <uri link="?part=1&chap=9">Installing Necessary System |
|
|
465 | Tools</uri>. |
| 437 | </p> |
466 | </p> |
| 438 | |
467 | |
| 439 | </body> |
468 | </body> |
|
|
469 | </subsection> |
| 440 | </section> |
470 | </section> |
| 441 | </sections> |
471 | </sections> |