1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
8 <sect1 id="ch-bootable-fstab">
9 <?dbhtml filename="fstab.html"?>
11 <title>Creating the /etc/fstab File</title>
13 <indexterm zone="ch-bootable-fstab">
14 <primary sortas="e-/etc/fstab">/etc/fstab</primary>
17 <para>The <filename>/etc/fstab</filename> file is used by some programs to
18 determine where file systems are to be mounted by default, in which order, and
19 which must be checked (for integrity errors) prior to mounting. Create a new
20 file systems table like this:</para>
22 <screen><userinput>cat > /etc/fstab << "EOF"
23 <literal># Begin /etc/fstab
25 # file system mount-point type options dump fsck
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 tmpfs /run tmpfs defaults 0 0
34 # End /etc/fstab</literal>
35 EOF</userinput></screen>
37 <para>Replace <replaceable><xxx></replaceable>,
38 <replaceable><yyy></replaceable>, and <replaceable><fff></replaceable>
39 with the values appropriate for the system, for example, <filename
40 class="partition">hda2</filename>, <filename
41 class="partition">hda5</filename>, and <systemitem
42 class="filesystem">ext3</systemitem>. For details on the six
43 fields in this file, see <command>man 5 fstab</command>.</para>
46 <para>The <filename class="directory">/dev/shm</filename> mount point
47 for <systemitem class="filesystem">tmpfs</systemitem> is included to
48 allow enabling POSIX-shared memory. The kernel must have the required
49 support built into it for this to work (more about this is in the next
50 section). Please note that very little software currently uses
51 POSIX-shared memory. Therefore, consider the <filename
52 class="directory">/dev/shm</filename> mount point optional. For more
54 <filename>Documentation/filesystems/tmpfs.txt</filename> in the kernel
58 <para>Filesystems with MS-DOS or Windows origin (i.e.: vfat, ntfs, smbfs, cifs,
59 iso9660, udf) need the <quote>iocharset</quote> mount option in order for
60 non-ASCII characters in file names to be interpreted properly. The value
61 of this option should be the same as the character set of your locale,
62 adjusted in such a way that the kernel understands it. This works if the
63 relevant character set definition (found under File systems ->
64 Native Language Support) has been compiled into the kernel
65 or built as a module. The <quote>codepage</quote> option is also needed for
66 vfat and smbfs filesystems. It should be set to the codepage number used
67 under MS-DOS in your country. E.g., in order to mount USB flash drives, a
68 ru_RU.KOI8-R user would need the following in the options portion of its
69 mount line in <filename>/etc/fstab</filename>:</para>
71 <screen><literal>noauto,user,quiet,showexec,iocharset=koi8r,codepage=866</literal></screen>
73 <para>The corresponding options fragment for ru_RU.UTF-8 users is:</para>
75 <screen><literal>noauto,user,quiet,showexec,iocharset=utf8,codepage=866</literal></screen>
78 <para>In the latter case, the kernel emits the following message:</para>
80 <screen><computeroutput>FAT: utf8 is not a recommended IO charset for FAT filesystems,
81 filesystem will be case sensitive!</computeroutput></screen>
83 <para>This negative recommendation should be ignored, since all other values
84 of the <quote>iocharset</quote> option result in wrong display of filenames in
88 <para>It is also possible to specify default codepage and iocharset values for
89 some filesystems during kernel configuration. The relevant parameters
91 <quote>Default NLS Option</quote> (<option>CONFIG_NLS_DEFAULT)</option>,
92 <quote>Default Remote NLS Option</quote> (<option>CONFIG_SMB_NLS_DEFAULT</option>),
93 <quote>Default codepage for FAT</quote> (<option>CONFIG_FAT_DEFAULT_CODEPAGE</option>), and
94 <quote>Default iocharset for FAT</quote> (<option>CONFIG_FAT_DEFAULT_IOCHARSET</option>).
95 There is no way to specify these settings for the
96 ntfs filesystem at kernel compilation time.</para>
97 <!-- Personally, I find it more foolproof to always specify the iocharset and
98 codepage in /etc/fstab for MS-based filesystems - Alexander E. Patrakov -->
100 <para>It is possible to make the ext3 filesystem reliable across power
101 failures for some hard disk types. To do this, add the
102 <option>barrier=1</option> mount option to the appropriate entry in
103 <filename>/etc/fstab</filename>. To check if the disk drive supports
105 <ulink url="http://www.linuxfromscratch.org/blfs/view/cvs/general/hdparm.html">hdparm</ulink>
106 on the applicable disk drive. For example, if:</para>
108 <screen role="nodump"><userinput>hdparm -I /dev/sda | grep NCQ</userinput></screen>
110 <para>returns non-empty output, the option is supported.</para>
112 <para>Note: Logical Volume Management (LVM) based partitions cannot use the
113 <option>barrier</option> option.</para>