| 1 | <!-- The content of this document is licensed under the CC-BY-SA license --> |
1 | <!-- The content of this document is licensed under the CC-BY-SA license --> |
| 2 | <!-- See http://creativecommons.org/licenses/by-sa/1.0 --> |
2 | <!-- See http://creativecommons.org/licenses/by-sa/1.0 --> |
|
|
3 | |
|
|
4 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.16 2004/01/04 17:33:58 swift Exp $ --> |
| 3 | |
5 | |
| 4 | <sections> |
6 | <sections> |
| 5 | <section> |
7 | <section> |
| 6 | <title>Timezone</title> |
8 | <title>Timezone</title> |
| 7 | <body> |
9 | <body> |
| … | |
… | |
| 12 | symlink to <path>/etc/localtime</path> using <c>ln</c>: |
14 | symlink to <path>/etc/localtime</path> using <c>ln</c>: |
| 13 | </p> |
15 | </p> |
| 14 | |
16 | |
| 15 | <pre caption="Setting the timezone information"> |
17 | <pre caption="Setting the timezone information"> |
| 16 | # <i>ls /usr/share/zoneinfo</i> |
18 | # <i>ls /usr/share/zoneinfo</i> |
| 17 | <comment>(Suppose you want to use GTM:)</comment> |
19 | <comment>(Suppose you want to use GMT:)</comment> |
| 18 | # <i>ln -sf /usr/share/zoneinfo/GMT /etc/localtime</i> |
20 | # <i>ln -sf /usr/share/zoneinfo/GMT /etc/localtime</i> |
| 19 | </pre> |
21 | </pre> |
| 20 | |
22 | |
| 21 | </body> |
23 | </body> |
| 22 | </section> |
24 | </section> |
| … | |
… | |
| 40 | <title>Creating /etc/fstab</title> |
42 | <title>Creating /etc/fstab</title> |
| 41 | <body> |
43 | <body> |
| 42 | |
44 | |
| 43 | <p> |
45 | <p> |
| 44 | <path>/etc/fstab</path> uses a special syntaxis. Every line consists of six |
46 | <path>/etc/fstab</path> uses a special syntaxis. Every line consists of six |
| 45 | fields, seperated by whitespace (space(s), tabs or a mixture). Each field has |
47 | fields, separated by whitespace (space(s), tabs or a mixture). Each field has |
| 46 | its own meaning: |
48 | its own meaning: |
| 47 | </p> |
49 | </p> |
| 48 | |
50 | |
| 49 | <ul> |
51 | <ul> |
| 50 | <li> |
52 | <li> |
| … | |
… | |
| 60 | </li> |
62 | </li> |
| 61 | <li> |
63 | <li> |
| 62 | The fourth field shows the <b>mountoptions</b> used by <c>mount</c> when it |
64 | 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, |
65 | 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 |
66 | you are encouraged to read the mount manpage (<c>man mount</c>) for a full |
| 65 | listing. Multiple mountoptions are comma-seperated. |
67 | listing. Multiple mountoptions are comma-separated. |
| 66 | </li> |
68 | </li> |
| 67 | <li> |
69 | <li> |
| 68 | The fifth field is used by <c>dump</c> to determine if the partition needs to |
70 | 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). |
71 | be <b>dump</b>ed or not. You can generally leave this as <c>0</c> (zero). |
| 70 | </li> |
72 | </li> |
| … | |
… | |
| 208 | |
210 | |
| 209 | <pre caption="Setting the NIS domainname"> |
211 | <pre caption="Setting the NIS domainname"> |
| 210 | # <i>echo nis.homenetwork > /etc/nisdomainname</i> |
212 | # <i>echo nis.homenetwork > /etc/nisdomainname</i> |
| 211 | </pre> |
213 | </pre> |
| 212 | |
214 | |
|
|
215 | <p> |
|
|
216 | Now add the <c>domainname</c> script to the default runlevel: |
|
|
217 | </p> |
|
|
218 | |
|
|
219 | <pre caption="Adding domainname to the default runlevel"> |
|
|
220 | # <i>rc-update add domainname default</i> |
|
|
221 | </pre> |
|
|
222 | |
| 213 | </body> |
223 | </body> |
| 214 | </subsection> |
224 | </subsection> |
| 215 | <subsection> |
225 | <subsection> |
| 216 | <title>Configuring your Network</title> |
226 | <title>Configuring your Network</title> |
| 217 | <body> |
227 | <body> |
| … | |
… | |
| 317 | <p> |
327 | <p> |
| 318 | You now need to inform Linux about your network. This is defined in |
328 | 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 |
329 | <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 |
330 | 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), |
331 | 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 |
332 | <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: |
333 | open <path>/etc/hosts</path> and fill in the values: |
| 324 | </p> |
334 | </p> |
| 325 | |
335 | |
| 326 | <pre caption="Opening /etc/hosts"> |
336 | <pre caption="Opening /etc/hosts"> |
| 327 | # <i>nano -w /etc/hosts</i> |
337 | # <i>nano -w /etc/hosts</i> |
| 328 | </pre> |
338 | </pre> |
| 329 | |
339 | |
| 330 | <pre caption="Filling in the networking information"> |
340 | <pre caption="Filling in the networking information"> |
| 331 | 127.0.0.1 tux.homenetwork localhost |
341 | 127.0.0.1 localhost |
| 332 | 192.168.0.5 jenny |
342 | 192.168.0.5 jenny |
| 333 | 192.168.0.56 benny |
343 | 192.168.0.6 benny |
|
|
344 | 192.168.0.7 tux |
| 334 | </pre> |
345 | </pre> |
| 335 | |
346 | |
| 336 | <p> |
347 | <p> |
| 337 | If your system is the only system (or the nameservers handle all name |
348 | If your system is the only system (or the nameservers handle all name |
| 338 | resolution) a single line is sufficient: |
349 | resolution) a single line is sufficient: |
| … | |
… | |
| 361 | <p> |
372 | <p> |
| 362 | PCMCIA-users should first install the <c>pcmcia-cs</c> package: |
373 | PCMCIA-users should first install the <c>pcmcia-cs</c> package: |
| 363 | </p> |
374 | </p> |
| 364 | |
375 | |
| 365 | <pre caption="Installing pcmcia-cs"> |
376 | <pre caption="Installing pcmcia-cs"> |
| 366 | # <i>emerge -k pcmcia-cs</i> |
377 | # <i>emerge --usepkg pcmcia-cs</i> |
| 367 | </pre> |
378 | </pre> |
| 368 | |
379 | |
| 369 | <p> |
380 | <p> |
| 370 | When <c>pcmcia-cs</c> is installed, add <c>pcmcia</c> to the <e>boot</e> |
381 | When <c>pcmcia-cs</c> is installed, add <c>pcmcia</c> to the <e>boot</e> |
| 371 | runlevel: |
382 | runlevel: |
| 372 | </p> |
383 | </p> |
| 373 | |
384 | |
| 374 | <pre caption="Adding pcmcia to the default runlevel"> |
385 | <pre caption="Adding pcmcia to the boot runlevel"> |
| 375 | # <i>rc-update add pcmcia boot</i> |
386 | # <i>rc-update add pcmcia boot</i> |
| 376 | </pre> |
387 | </pre> |
| 377 | |
388 | |
| 378 | </body> |
389 | </body> |
| 379 | </subsection> |
390 | </subsection> |
| … | |
… | |
| 391 | # <i>nano -w /etc/rc.conf</i> |
402 | # <i>nano -w /etc/rc.conf</i> |
| 392 | </pre> |
403 | </pre> |
| 393 | |
404 | |
| 394 | <p> |
405 | <p> |
| 395 | As you can see, this file is well commented to help you set up the necessary |
406 | As you can see, this file is well commented to help you set up the necessary |
| 396 | configuration variables. When you're finished configuring |
407 | configuration variables. Take special care with the <c>KEYMAP</c> setting: if |
| 397 | <path>/etc/rc.conf</path>, save and exit to continue. |
408 | you select the wrong <c>KEYMAP</c> you will get weird results when typing on |
|
|
409 | your keyboard. |
|
|
410 | </p> |
|
|
411 | |
|
|
412 | <note> |
|
|
413 | Users of USB-based SPARC systems and SPARC clones might need to select an i386 |
|
|
414 | keymap (such as "us") instead of "sunkeymap". |
|
|
415 | </note> |
|
|
416 | |
|
|
417 | <p> |
|
|
418 | When you're finished configuring <path>/etc/rc.conf</path>, save and exit, then |
|
|
419 | continue with <uri link="?part=1&chap=9">Configuring the Bootloader</uri>. |
| 398 | </p> |
420 | </p> |
| 399 | |
421 | |
| 400 | </body> |
422 | </body> |
| 401 | </section> |
423 | </section> |
| 402 | </sections> |
424 | </sections> |