source: chapter08/fstab.xml@ 2f2b6d6

Last change on this file since 2f2b6d6 was 673b0d8, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Merged newxml into HEAD

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3435 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-bootable-fstab">
7<title>Creating the /etc/fstab file</title>
8<?dbhtml filename="fstab.html"?>
9
10<indexterm zone="ch-bootable-fstab"><primary sortas="e-/etc/fstab">/etc/fstab</primary></indexterm>
11
12<para>The <filename>/etc/fstab</filename> file is used by some programs to
13determine where file systems are to be mounted by default, which
14must be checked and in which order. Create a new file systems table like
15this:</para>
16
17<screen><userinput>cat &gt; /etc/fstab &lt;&lt; "EOF"</userinput>
18# Begin /etc/fstab
19
20# file system mount-point fs-type options dump fsck-order
21
22/dev/xxx / fff defaults 1 1
23/dev/yyy swap swap pri=1 0 0
24proc /proc proc defaults 0 0
25devpts /dev/pts devpts gid=4,mode=620 0 0
26shm /dev/shm tmpfs defaults 0 0
27
28# End /etc/fstab
29<userinput>EOF</userinput></screen>
30
31<para>Of course, replace <filename>xxx</filename>, <filename>yyy</filename>
32and <filename>fff</filename> with the values appropriate for your system --
33for example <filename>hda2</filename>, <filename>hda5</filename> and
34<filename>reiserfs</filename>. For all the details on the six fields in this
35table, see <command>man 5 fstab</command>.</para>
36
37<para>When using a reiserfs partition, the <emphasis>1 1</emphasis> at the
38end of the line should be replaced with <emphasis>0 0</emphasis>, as such a
39partition does not need to be dumped or checked</para>
40
41<para>The <filename>/dev/shm</filename> mount point for tmpfs is included to
42allow enabling POSIX shared memory. Your kernel must have the required support
43built into it for this to work -- more about this in the next section. Please
44note that currently very little software actually uses POSIX shared memory.
45Therefore you can consider the <filename>/dev/shm</filename> mount point
46optional. For more information, see
47<filename>Documentation/filesystems/tmpfs.txt</filename> in the kernel source
48tree.</para>
49
50<para>There are other lines which you may consider adding to your
51<filename>fstab</filename> file. One example is a line to use if you intend to
52use USB devices:</para>
53
54<screen>usbfs /proc/bus/usb usbfs defaults 0 0</screen>
55
56<para>This option will of course only work if you have the relevant support
57compiled into your kernel.</para>
58
59</sect1>
Note: See TracBrowser for help on using the repository browser.