|
|
1 | <?xml version='1.0' encoding='UTF-8'?> |
|
|
2 | <!DOCTYPE sections SYSTEM "/dtd/book.dtd"> |
|
|
3 | |
| 1 | <!-- 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 --> |
| 2 | <!-- See http://creativecommons.org/licenses/by-sa/1.0 --> |
5 | <!-- See http://creativecommons.org/licenses/by-sa/1.0 --> |
| 3 | |
6 | |
|
|
7 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.20 2004/01/19 18:48:52 swift Exp $ --> |
|
|
8 | |
| 4 | <sections> |
9 | <sections> |
| 5 | <section> |
|
|
| 6 | <title>Timezone</title> |
|
|
| 7 | <body> |
|
|
| 8 | |
|
|
| 9 | <p> |
|
|
| 10 | You now need to select your timezone so that your system knows where it is |
|
|
| 11 | located. Look for your timezone in <path>/usr/share/zoneinfo</path>, then make a |
|
|
| 12 | symlink to <path>/etc/localtime</path> using <c>ln</c>: |
|
|
| 13 | </p> |
|
|
| 14 | |
|
|
| 15 | <pre caption="Setting the timezone information"> |
|
|
| 16 | # <i>ls /usr/share/zoneinfo</i> |
|
|
| 17 | <comment>(Suppose you want to use GTM:)</comment> |
|
|
| 18 | # <i>ln -sf /usr/share/zoneinfo/GMT /etc/localtime</i> |
|
|
| 19 | </pre> |
|
|
| 20 | |
|
|
| 21 | </body> |
|
|
| 22 | </section> |
|
|
| 23 | <section> |
10 | <section> |
| 24 | <title>Filesystem Information</title> |
11 | <title>Filesystem Information</title> |
| 25 | <subsection> |
12 | <subsection> |
| 26 | <title>What is fstab?</title> |
13 | <title>What is fstab?</title> |
| 27 | <body> |
14 | <body> |
| … | |
… | |
| 39 | <subsection> |
26 | <subsection> |
| 40 | <title>Creating /etc/fstab</title> |
27 | <title>Creating /etc/fstab</title> |
| 41 | <body> |
28 | <body> |
| 42 | |
29 | |
| 43 | <p> |
30 | <p> |
| 44 | <path>/etc/fstab</path> uses a special syntaxis. Every line consists of six |
31 | <path>/etc/fstab</path> uses a special syntax. Every line consists of six |
| 45 | fields, seperated by whitespace (space(s), tabs or a mixture). Each field has |
32 | fields, separated by whitespace (space(s), tabs or a mixture). Each field has |
| 46 | its own meaning: |
33 | its own meaning: |
| 47 | </p> |
34 | </p> |
| 48 | |
35 | |
| 49 | <ul> |
36 | <ul> |
| 50 | <li> |
37 | <li> |
| … | |
… | |
| 60 | </li> |
47 | </li> |
| 61 | <li> |
48 | <li> |
| 62 | The fourth field shows the <b>mountoptions</b> used by <c>mount</c> when it |
49 | The fourth field shows the <b>mountoptions</b> used by <c>mount</c> when it |
| 63 | wants to mount the partition. As every filesystem has its own mountoptions, |
50 | wants to mount the partition. As every filesystem has its own mountoptions, |
| 64 | you are encouraged to read the mount manpage (<c>man mount</c>) for a full |
51 | you are encouraged to read the mount manpage (<c>man mount</c>) for a full |
| 65 | listing. Multiple mountoptions are comma-seperated. |
52 | listing. Multiple mountoptions are comma-separated. |
| 66 | </li> |
53 | </li> |
| 67 | <li> |
54 | <li> |
| 68 | The fifth field is used by <c>dump</c> to determine if the partition needs to |
55 | The fifth field is used by <c>dump</c> to determine if the partition needs to |
| 69 | be <b>dump</b>ed or not. You can generally leave this as <c>0</c> (zero). |
56 | be <b>dump</b>ed or not. You can generally leave this as <c>0</c> (zero). |
| 70 | </li> |
57 | </li> |
| 71 | <li> |
58 | <li> |
| 72 | The sixth field is used by <c>fsck</c> the order in which filesystems should |
59 | The sixth field is used by <c>fsck</c> to determine the order in which |
| 73 | be <b>check</b>ed if the system wasn't shut down properly. The root filesystem |
60 | filesystems should be <b>check</b>ed if the system wasn't shut down properly. |
| 74 | should have <c>1</c> while the rest should have <c>2</c> (or <c>0</c> in case |
61 | The root filesystem should have <c>1</c> while the rest should have <c>2</c> |
| 75 | a filesystem check isn't necessary). |
62 | (or <c>0</c> in case a filesystem check isn't necessary). |
| 76 | </li> |
63 | </li> |
| 77 | </ul> |
64 | </ul> |
| 78 | |
65 | |
| 79 | <p> |
66 | <p> |
| 80 | So start <c>nano</c> (or your favorite editor) to create your |
67 | So start <c>nano</c> (or your favorite editor) to create your |
| … | |
… | |
| 84 | <pre caption="Opening /etc/fstab"> |
71 | <pre caption="Opening /etc/fstab"> |
| 85 | # <i>nano -w /etc/fstab</i> |
72 | # <i>nano -w /etc/fstab</i> |
| 86 | </pre> |
73 | </pre> |
| 87 | |
74 | |
| 88 | <p> |
75 | <p> |
| 89 | Lets take a look at how we write down the options for the <path>/boot</path> |
76 | Let us take a look at how we write down the options for the <path>/boot</path> |
| 90 | partition. This is just an example, so if your architecture doesn't require a |
77 | partition. This is just an example, so if your architecture doesn't require a |
| 91 | <path>/boot</path> partition, don't copy it verbatim. |
78 | <path>/boot</path> partition, don't copy it verbatim. |
| 92 | </p> |
79 | </p> |
| 93 | |
80 | |
| 94 | <p> |
81 | <p> |
| … | |
… | |
| 123 | /dev/hda3 / ext3 noatime 0 1 |
110 | /dev/hda3 / ext3 noatime 0 1 |
| 124 | </pre> |
111 | </pre> |
| 125 | |
112 | |
| 126 | <p> |
113 | <p> |
| 127 | To finish up, you should add a rule for <path>/proc</path>, <c>tmpfs</c> |
114 | To finish up, you should add a rule for <path>/proc</path>, <c>tmpfs</c> |
| 128 | (required) and for your CD-ROM drive (and ofcourse, if you have other |
115 | (required) and for your CD-ROM drive (and of course, if you have other |
| 129 | partitions or drives, for those too): |
116 | partitions or drives, for those too): |
| 130 | </p> |
117 | </p> |
| 131 | |
118 | |
| 132 | <pre caption="A full /etc/fstab example"> |
119 | <pre caption="A full /etc/fstab example"> |
| 133 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |
120 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |
| … | |
… | |
| 208 | |
195 | |
| 209 | <pre caption="Setting the NIS domainname"> |
196 | <pre caption="Setting the NIS domainname"> |
| 210 | # <i>echo nis.homenetwork > /etc/nisdomainname</i> |
197 | # <i>echo nis.homenetwork > /etc/nisdomainname</i> |
| 211 | </pre> |
198 | </pre> |
| 212 | |
199 | |
|
|
200 | <p> |
|
|
201 | Now add the <c>domainname</c> script to the default runlevel: |
|
|
202 | </p> |
|
|
203 | |
|
|
204 | <pre caption="Adding domainname to the default runlevel"> |
|
|
205 | # <i>rc-update add domainname default</i> |
|
|
206 | </pre> |
|
|
207 | |
| 213 | </body> |
208 | </body> |
| 214 | </subsection> |
209 | </subsection> |
| 215 | <subsection> |
210 | <subsection> |
| 216 | <title>Configuring your Network</title> |
211 | <title>Configuring your Network</title> |
| 217 | <body> |
212 | <body> |
| … | |
… | |
| 254 | link="?part=1&chap=3#doc_chap4_sect3">Understanding Network |
249 | link="?part=1&chap=3#doc_chap4_sect3">Understanding Network |
| 255 | Terminology</uri> if you haven't done so already. |
250 | Terminology</uri> if you haven't done so already. |
| 256 | </p> |
251 | </p> |
| 257 | |
252 | |
| 258 | <p> |
253 | <p> |
| 259 | So lets give two examples; the first one uses DHCP, the second one a static IP |
254 | So let us give two examples; the first one uses DHCP, the second one a static IP |
| 260 | (192.168.0.2) with netmask 255.255.255.0, broadcast 192.168.0.255 and gateway |
255 | (192.168.0.2) with netmask 255.255.255.0, broadcast 192.168.0.255 and gateway |
| 261 | 192.168.0.1: |
256 | 192.168.0.1: |
| 262 | </p> |
257 | </p> |
| 263 | |
258 | |
| 264 | <pre caption="Examples for /etc/conf.d/net"> |
259 | <pre caption="Examples for /etc/conf.d/net"> |
| … | |
… | |
| 317 | <p> |
312 | <p> |
| 318 | You now need to inform Linux about your network. This is defined in |
313 | You now need to inform Linux about your network. This is defined in |
| 319 | <path>/etc/hosts</path> and helps in resolving hostnames to IP addresses |
314 | <path>/etc/hosts</path> and helps in resolving hostnames to IP addresses |
| 320 | for hosts that aren't resolved by your nameserver. For instance, if your |
315 | for hosts that aren't resolved by your nameserver. For instance, if your |
| 321 | internal network consists of three PCs called <c>jenny</c> (192.168.0.5), |
316 | internal network consists of three PCs called <c>jenny</c> (192.168.0.5), |
| 322 | <c>benny</c> (192.168.0.6) and <c>tux</c> (this system) you would |
317 | <c>benny</c> (192.168.0.6) and <c>tux</c> (192.168.0.7 - this system) you would |
| 323 | open <path>/etc/hosts</path> and fill in the values: |
318 | open <path>/etc/hosts</path> and fill in the values: |
| 324 | </p> |
319 | </p> |
| 325 | |
320 | |
| 326 | <pre caption="Opening /etc/hosts"> |
321 | <pre caption="Opening /etc/hosts"> |
| 327 | # <i>nano -w /etc/hosts</i> |
322 | # <i>nano -w /etc/hosts</i> |
| 328 | </pre> |
323 | </pre> |
| 329 | |
324 | |
| 330 | <pre caption="Filling in the networking information"> |
325 | <pre caption="Filling in the networking information"> |
| 331 | 127.0.0.1 tux.homenetwork localhost |
326 | 127.0.0.1 localhost |
| 332 | 192.168.0.5 jenny |
327 | 192.168.0.5 jenny |
| 333 | 192.168.0.56 benny |
328 | 192.168.0.6 benny |
|
|
329 | 192.168.0.7 tux |
| 334 | </pre> |
330 | </pre> |
| 335 | |
331 | |
| 336 | <p> |
332 | <p> |
| 337 | If your system is the only system (or the nameservers handle all name |
333 | If your system is the only system (or the nameservers handle all name |
| 338 | resolution) a single line is sufficient: |
334 | resolution) a single line is sufficient: |
| … | |
… | |
| 346 | Save and exit the editor to continue. |
342 | Save and exit the editor to continue. |
| 347 | </p> |
343 | </p> |
| 348 | |
344 | |
| 349 | <p> |
345 | <p> |
| 350 | If you don't have PCMCIA, you can now continue with <uri |
346 | If you don't have PCMCIA, you can now continue with <uri |
| 351 | link="#doc_chap4">System Information</uri>. PCMCIA-users should read the |
347 | link="#doc_chap3">System Information</uri>. PCMCIA-users should read the |
| 352 | following topic on PCMCIA. |
348 | following topic on PCMCIA. |
| 353 | </p> |
349 | </p> |
| 354 | |
350 | |
| 355 | </body> |
351 | </body> |
| 356 | </subsection> |
352 | </subsection> |
| … | |
… | |
| 361 | <p> |
357 | <p> |
| 362 | PCMCIA-users should first install the <c>pcmcia-cs</c> package: |
358 | PCMCIA-users should first install the <c>pcmcia-cs</c> package: |
| 363 | </p> |
359 | </p> |
| 364 | |
360 | |
| 365 | <pre caption="Installing pcmcia-cs"> |
361 | <pre caption="Installing pcmcia-cs"> |
| 366 | # <i>emerge -k pcmcia-cs</i> |
362 | # <i>emerge --usepkg pcmcia-cs</i> |
| 367 | </pre> |
363 | </pre> |
| 368 | |
364 | |
| 369 | <p> |
365 | <p> |
| 370 | When <c>pcmcia-cs</c> is installed, add <c>pcmcia</c> to the <e>boot</e> |
366 | When <c>pcmcia-cs</c> is installed, add <c>pcmcia</c> to the <e>default</e> |
| 371 | runlevel: |
367 | runlevel: |
| 372 | </p> |
368 | </p> |
| 373 | |
369 | |
| 374 | <pre caption="Adding pcmcia to the default runlevel"> |
370 | <pre caption="Adding pcmcia to the default runlevel"> |
| 375 | # <i>rc-update add pcmcia boot</i> |
371 | # <i>rc-update add pcmcia default</i> |
| 376 | </pre> |
372 | </pre> |
| 377 | |
373 | |
| 378 | </body> |
374 | </body> |
| 379 | </subsection> |
375 | </subsection> |
| 380 | </section> |
376 | </section> |
| … | |
… | |
| 391 | # <i>nano -w /etc/rc.conf</i> |
387 | # <i>nano -w /etc/rc.conf</i> |
| 392 | </pre> |
388 | </pre> |
| 393 | |
389 | |
| 394 | <p> |
390 | <p> |
| 395 | As you can see, this file is well commented to help you set up the necessary |
391 | As you can see, this file is well commented to help you set up the necessary |
| 396 | configuration variables. When you're finished configuring |
392 | configuration variables. Take special care with the <c>KEYMAP</c> setting: if |
| 397 | <path>/etc/rc.conf</path>, save and exit to continue. |
393 | you select the wrong <c>KEYMAP</c> you will get weird results when typing on |
|
|
394 | your keyboard. |
|
|
395 | </p> |
|
|
396 | |
|
|
397 | <note> |
|
|
398 | Users of USB-based SPARC systems and SPARC clones might need to select an i386 |
|
|
399 | keymap (such as "us") instead of "sunkeymap". |
|
|
400 | </note> |
|
|
401 | |
|
|
402 | <p> |
|
|
403 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit, then |
|
|
404 | continue with <uri link="?part=1&chap=9">Configuring the Bootloader</uri>. |
| 398 | </p> |
405 | </p> |
| 399 | |
406 | |
| 400 | </body> |
407 | </body> |
| 401 | </section> |
408 | </section> |
| 402 | </sections> |
409 | </sections> |