| … | |
… | |
| 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.23 2004/02/08 09:54:39 swift Exp $ --> |
7 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.24 2004/02/23 16:34:12 vapier 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> |
| … | |
… | |
| 89 | /dev/hda1 /boot ext2 noauto 1 2 |
89 | /dev/hda1 /boot ext2 noauto 1 2 |
| 90 | </pre> |
90 | </pre> |
| 91 | |
91 | |
| 92 | <p> |
92 | <p> |
| 93 | Now, to improve performance, most users would want to add the <c>noatime</c> |
93 | 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 |
94 | option as a mountoption, which results in a faster system since access times |
| 95 | aren't registered (you don't need those generally anyway): |
95 | aren't registered (you don't need those generally anyway): |
| 96 | </p> |
96 | </p> |
| 97 | |
97 | |
| 98 | <pre caption="An improved /boot line for /etc/fstab"> |
98 | <pre caption="An improved /boot line for /etc/fstab"> |
| 99 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |
99 | /dev/hda1 /boot ext2 noauto,noatime 1 2 |