| 1 | <?xml version='1.0' encoding='UTF-8'?> |
1 | <?xml version='1.0' encoding='UTF-8'?> |
| 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.45 2004/08/30 17:44:00 neysx Exp $ --> |
7 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.46 2004/09/11 13:34:53 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> |
| 13 | <title>What is fstab?</title> |
13 | <title>What is fstab?</title> |
| 14 | <body> |
14 | <body> |
| 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 | and with what special options (automatically or not, whether users can mount |
20 | and with what special options (automatically or not, whether users can mount |
| 21 | them or not, etc.) |
21 | them or not, etc.) |
| 22 | </p> |
22 | </p> |
| … | |
… | |
| 369 | link="#doc_chap3">System Information</uri>. PCMCIA-users should read the |
369 | link="#doc_chap3">System Information</uri>. PCMCIA-users should read the |
| 370 | following topic on PCMCIA. |
370 | following topic on PCMCIA. |
| 371 | </p> |
371 | </p> |
| 372 | |
372 | |
| 373 | </body> |
373 | </body> |
| 374 | </subsection> |
374 | </subsection> |
| 375 | <subsection> |
375 | <subsection> |
| 376 | <title>Optional: Get PCMCIA Working</title> |
376 | <title>Optional: Get PCMCIA Working</title> |
| 377 | <body> |
377 | <body> |
| 378 | |
378 | |
| 379 | <note> |
379 | <note> |
| 380 | pcmcia-cs is only available for x86, amd64 and ppc platforms. |
380 | pcmcia-cs is only available for x86, amd64 and ppc platforms. |
| 381 | </note> |
381 | </note> |
| 382 | |
382 | |
| 383 | <p> |
383 | <p> |
| 384 | 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 |
| 385 | <c>USE="-X"</c> is necessary to avoid installing xorg-x11 at this moment: |
387 | to avoid installing xorg-x11 at this moment: |
| 386 | </p> |
388 | </p> |
| 387 | |
389 | |
| 388 | <pre caption="Installing pcmcia-cs"> |
390 | <pre caption="Installing pcmcia-cs"> |
| 389 | # <i>USE="-X" emerge pcmcia-cs</i> |
391 | # <i>USE="-X" emerge pcmcia-cs</i> |
| 390 | </pre> |
392 | </pre> |
| 391 | |
393 | |
| 392 | <p> |
394 | <p> |
| 393 | When <c>pcmcia-cs</c> is installed, add <c>pcmcia</c> to the <e>default</e> |
395 | When <c>pcmcia-cs</c> is installed, add <c>pcmcia</c> to the <e>default</e> |
| 394 | runlevel: |
396 | runlevel: |
| 395 | </p> |
397 | </p> |
| 396 | |
398 | |
| 397 | <pre caption="Adding pcmcia to the default runlevel"> |
399 | <pre caption="Adding pcmcia to the default runlevel"> |
| 398 | # <i>rc-update add pcmcia default</i> |
400 | # <i>rc-update add pcmcia default</i> |
| 399 | </pre> |
401 | </pre> |
| 400 | |
402 | |