| … | |
… | |
| 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.34 2004/06/03 20:58:34 neysx Exp $ --> |
7 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.36 2004/07/09 11:24:20 neysx 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> |
| … | |
… | |
| 78 | <path>/boot</path> partition (such as <b>PPC</b>), don't copy it verbatim. |
78 | <path>/boot</path> partition (such as <b>PPC</b>), don't copy it verbatim. |
| 79 | </p> |
79 | </p> |
| 80 | |
80 | |
| 81 | <p> |
81 | <p> |
| 82 | In our default x86 partitioning example <path>/boot</path> is the |
82 | In our default x86 partitioning example <path>/boot</path> is the |
| 83 | <path>/dev/hda1</path> partition, with <c>ext2</c> as filesystem. It shouldn't |
83 | <path>/dev/hda1</path> partition, with <c>ext2</c> as filesystem. |
| 84 | be mounted automatically (<c>noauto</c>) but does need to be checked. So we |
84 | It needs to be checked during boot, so we would write down: |
| 85 | would write down: |
|
|
| 86 | </p> |
85 | </p> |
| 87 | |
86 | |
| 88 | <pre caption="An example /boot line for /etc/fstab"> |
87 | <pre caption="An example /boot line for /etc/fstab"> |
| 89 | /dev/hda1 /boot ext2 noauto 1 2 |
88 | /dev/hda1 /boot ext2 defaults 1 2 |
|
|
89 | </pre> |
|
|
90 | |
|
|
91 | <p> |
|
|
92 | Some users don't want their <path>/boot</path> partition to be mounted |
|
|
93 | automatically. Those people should substitute <c>defaults</c> with |
|
|
94 | <c>noauto</c>. This does mean that you need to manually mount this partition |
|
|
95 | every time you want to use it. |
| 90 | </pre> |
96 | </p> |
| 91 | |
97 | |
| 92 | <p> |
98 | <p> |
| 93 | Now, to improve performance, most users would want to add the <c>noatime</c> |
99 | Now, to improve performance, most users would want to add the <c>noatime</c> |
| 94 | option as mountoption, which results in a faster system since access times |
100 | option as mountoption, which results in a faster system since access times |
| 95 | aren't registered (you don't need those generally anyway): |
101 | aren't registered (you don't need those generally anyway): |
| … | |
… | |
| 260 | </p> |
266 | </p> |
| 261 | |
267 | |
| 262 | <pre caption="Examples for /etc/conf.d/net"> |
268 | <pre caption="Examples for /etc/conf.d/net"> |
| 263 | <comment>(For DHCP)</comment> |
269 | <comment>(For DHCP)</comment> |
| 264 | iface_eth0="dhcp" |
270 | iface_eth0="dhcp" |
|
|
271 | <comment>Some network admins require that you use the</comment> |
|
|
272 | <comment>hostname and domainname provided by the DHCP server.</comment> |
|
|
273 | <comment>In that case, add the following to let dhcpcd use them.</comment> |
|
|
274 | <comment>That will override your own hostname and domainname definitions.</comment> |
|
|
275 | dhcpcd_eth0="-HD" |
|
|
276 | <comment>If you intend on using NTP to keep your machine clock synchronized, use</comment> |
|
|
277 | <comment>the -N option to prevent dhcpcd from overwriting your /etc/ntp.conf file</comment> |
|
|
278 | dhcpcd_eth0="-N" |
| 265 | |
279 | |
| 266 | <comment>(For static IP)</comment> |
280 | <comment>(For static IP)</comment> |
| 267 | iface_eth0="192.168.0.2 broadcast 192.168.0.255 netmask 255.255.255.0" |
281 | iface_eth0="192.168.0.2 broadcast 192.168.0.255 netmask 255.255.255.0" |
| 268 | gateway="eth0/192.168.0.1" |
282 | gateway="eth0/192.168.0.1" |
| 269 | |
283 | |