| 1 | <?xml version="1.0" encoding="ISO-8859-1"?> | 
|---|
| 2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" | 
|---|
| 3 | "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [ | 
|---|
| 4 | <!ENTITY % general-entities SYSTEM "../../general.ent"> | 
|---|
| 5 | %general-entities; | 
|---|
| 6 | ]> | 
|---|
| 7 |  | 
|---|
| 8 | <sect1 id="ch-boot-fstab"> | 
|---|
| 9 | <?dbhtml filename="fstab.html"?> | 
|---|
| 10 |  | 
|---|
| 11 | <title>Creating the /etc/fstab File</title> | 
|---|
| 12 |  | 
|---|
| 13 | <indexterm zone="ch-boot-fstab"> | 
|---|
| 14 | <primary sortas="e-/etc/fstab">/etc/fstab</primary> | 
|---|
| 15 | </indexterm> | 
|---|
| 16 |  | 
|---|
| 17 | <para os="a">The <filename>/etc/fstab</filename> file is used by some | 
|---|
| 18 | programs to determine where file systems are to be mounted by default, | 
|---|
| 19 | which must be checked, and in which order. Create a new file systems | 
|---|
| 20 | table like this:</para> | 
|---|
| 21 |  | 
|---|
| 22 | <screen><userinput>cat > ${CLFS}/etc/fstab << "EOF" | 
|---|
| 23 | <literal># Begin /etc/fstab | 
|---|
| 24 |  | 
|---|
| 25 | # file system  mount-point  type   options          dump  fsck | 
|---|
| 26 | #                                                         order | 
|---|
| 27 |  | 
|---|
| 28 | /dev/<replaceable>[xxx]</replaceable>     /            <replaceable>[fff]</replaceable>  defaults         1     1 | 
|---|
| 29 | /dev/<replaceable>[yyy]</replaceable>     swap         swap   pri=1            0     0 | 
|---|
| 30 | proc           /proc        proc   defaults         0     0 | 
|---|
| 31 | sysfs          /sys         sysfs  defaults         0     0 | 
|---|
| 32 | devpts         /dev/pts     devpts gid=4,mode=620   0     0 | 
|---|
| 33 | shm            /dev/shm     tmpfs  defaults         0     0 | 
|---|
| 34 | # End /etc/fstab</literal> | 
|---|
| 35 | EOF</userinput></screen> | 
|---|
| 36 |  | 
|---|
| 37 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 38 | href="../../bootable/common/fstab.xml" | 
|---|
| 39 | xpointer="xpointer(//*[@os='b'])"/> | 
|---|
| 40 |  | 
|---|
| 41 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 42 | href="../../bootable/common/fstab.xml" | 
|---|
| 43 | xpointer="xpointer(//*[@os='c'])"/> | 
|---|
| 44 |  | 
|---|
| 45 | </sect1> | 
|---|