source: chapter10/fstab.xml@ 0ea3431

xry111/clfs-ng
Last change on this file since 0ea3431 was 0ea3431, checked in by Xi Ruoyao <xry111@…>, 19 months ago

Merge remote-tracking branch 'origin/trunk' into xry111/clfs-ng

  • Property mode set to 100644
File size: 5.7 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[b78c747]7
[3be4d97]8<sect1 id="ch-bootable-fstab">
[b78c747]9 <?dbhtml filename="fstab.html"?>
10
11 <title>Creating the /etc/fstab File</title>
[673b0d8]12
[b78c747]13 <indexterm zone="ch-bootable-fstab">
14 <primary sortas="e-/etc/fstab">/etc/fstab</primary>
15 </indexterm>
[81fd230]16
[b78c747]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>
[81fd230]21
[1118b17]22<screen revision="sysv"><userinput>cat &gt; /etc/fstab &lt;&lt; "EOF"
[d72e04a]23<literal># Begin /etc/fstab
[6370fa6]24
[e9ba8aa8]25# file system mount-point type options dump fsck
26# order
27
[9fe6c3b]28/dev/<replaceable>sda</replaceable>3 / ext4 defaults 1 1
29/dev/<replaceable>sda</replaceable>2 /boot ext4 defaults 0 2
[e9ba8aa8]30proc /proc proc nosuid,noexec,nodev 0 0
31sysfs /sys sysfs nosuid,noexec,nodev 0 0
[654dc0d]32devpts /dev/pts devpts gid=5,mode=620 0 0
[e9ba8aa8]33tmpfs /run tmpfs defaults 0 0
34devtmpfs /dev devtmpfs mode=0755,nosuid 0 0
[16cd0963]35tmpfs /dev/shm tmpfs nosuid,nodev 0 0
[e9ba8aa8]36
[1118b17]37# End /etc/fstab</literal>
38EOF</userinput></screen>
39
40<screen revision="systemd"><userinput>cat &gt; /etc/fstab &lt;&lt; "EOF"
41<literal># Begin /etc/fstab
42
43# file system mount-point type options dump fsck
44# order
45
[9fe6c3b]46/dev/<replaceable>sda</replaceable>3 / ext4 defaults 1 1
47/dev/<replaceable>sda</replaceable>2 /boot ext4 defaults 0 2
[1118b17]48
[d72e04a]49# End /etc/fstab</literal>
[0719866]50EOF</userinput></screen>
[6370fa6]51
[9fe6c3b]52 <para>Replace <replaceable>sda</replaceable> to the name of the device
53 node for your disk where LFS is being built. For details on the six
[b78c747]54 fields in this file, see <command>man 5 fstab</command>.</para>
[81fd230]55
[f7cf1fb]56 <para>Filesystems with MS-DOS or Windows origin (i.e. vfat, ntfs, smbfs,
57 cifs, iso9660, udf) need a special option, utf8, in order for non-ASCII
58 characters in file names to be interpreted properly. For non-UTF-8 locales,
59 the value of <option>iocharset</option> should be set to be the same as the
60 character set of the locale, adjusted in such a way that the kernel
61 understands it. This works if the relevant character set definition (found
62 under File systems -&gt; Native Language Support when configuring the kernel)
63 has been compiled into the kernel or built as a module. However, if the
64 character set of the locale is UTF-8, the corresponding option
65 <option>iocharset=utf8</option> would make the file system case sensitive. To
66 fix this, use the special option <option>utf8</option> instead of
67 <option>iocharset=utf8</option>, for UTF-8 locales. The
68 <quote>codepage</quote> option is also needed for vfat and smbfs filesystems.
69 It should be set to the codepage number used under MS-DOS in your country.
70 For example, in order to mount USB flash drives, a ru_RU.KOI8-R user would
71 need the following in the options portion of its mount line in
72 <filename>/etc/fstab</filename>:</para>
73
74<screen><literal>noauto,user,quiet,showexec,codepage=866,iocharset=koi8r</literal></screen>
[fa21b3d]75
[1652151]76 <para>The corresponding options fragment for ru_RU.UTF-8 users is:</para>
[fa21b3d]77
[f7cf1fb]78<screen><literal>noauto,user,quiet,showexec,codepage=866,utf8</literal></screen>
[fa21b3d]79
[f7cf1fb]80 <para>Note that using <option>iocharset</option> is the default for
81 <literal>iso8859-1</literal> (which keeps the file system case
82 insensitive), and the <option>utf8</option> option tells
83 the kernel to convert the file names using UTF-8 so they can be
84 interpreted in the UTF-8 locale.</para>
85
86 <!--note>
[c226182]87 <para>In the latter case, the kernel emits the following message:</para>
[fa21b3d]88
[c226182]89<screen><computeroutput>FAT: utf8 is not a recommended IO charset for FAT filesystems,
90 filesystem will be case sensitive!</computeroutput></screen>
[fa21b3d]91
[c226182]92 <para>This negative recommendation should be ignored, since all other values
93 of the <quote>iocharset</quote> option result in wrong display of filenames in
94 UTF-8 locales.</para>
[f7cf1fb]95 </note-->
[fa21b3d]96
97 <para>It is also possible to specify default codepage and iocharset values for
98 some filesystems during kernel configuration. The relevant parameters
99 are named
[c8c2b89]100 <quote>Default NLS Option</quote> (<option>CONFIG_NLS_DEFAULT)</option>,
101 <quote>Default Remote NLS Option</quote> (<option>CONFIG_SMB_NLS_DEFAULT</option>),
102 <quote>Default codepage for FAT</quote> (<option>CONFIG_FAT_DEFAULT_CODEPAGE</option>), and
103 <quote>Default iocharset for FAT</quote> (<option>CONFIG_FAT_DEFAULT_IOCHARSET</option>).
[fa21b3d]104 There is no way to specify these settings for the
105 ntfs filesystem at kernel compilation time.</para>
106
[af611557]107 <para>It is possible to make the ext3 filesystem reliable across power
108 failures for some hard disk types. To do this, add the
109 <option>barrier=1</option> mount option to the appropriate entry in
110 <filename>/etc/fstab</filename>. To check if the disk drive supports
[2ca8941]111 this option, run
[0ee07e5]112 <ulink url="&blfs-book;general/hdparm.html">hdparm</ulink>
[af611557]113 on the applicable disk drive. For example, if:</para>
114
[5612386]115<screen role="nodump"><userinput>hdparm -I /dev/sda | grep NCQ</userinput></screen>
[af611557]116
117 <para>returns non-empty output, the option is supported.</para>
118
119 <para>Note: Logical Volume Management (LVM) based partitions cannot use the
120 <option>barrier</option> option.</para>
121
[6370fa6]122</sect1>
Note: See TracBrowser for help on using the repository browser.