source: chapter08/fstab.xml@ 6856842

Last change on this file since 6856842 was 6856842, checked in by Jeremy Huntwork <jhuntwork@…>, 19 years ago

Bring alphabetical branch up-to-speed with trunk

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

  • Property mode set to 100644
File size: 2.9 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[1770019]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
[673b0d8]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[3be4d97]6<sect1 id="ch-bootable-fstab">
[bce08ef]7<title>Creating the /etc/fstab File</title>
[673b0d8]8<?dbhtml filename="fstab.html"?>
9
[81fd230]10<indexterm zone="ch-bootable-fstab"><primary sortas="e-/etc/fstab">/etc/fstab</primary></indexterm>
11
[4b59d59]12<para>The <filename>/etc/fstab</filename> file is used by some programs to
13determine where file systems are to be mounted by default, in which order, and
14which must be checked (for integrity errors) prior to mounting. Create a new
15file systems table like this:</para>
[81fd230]16
[0719866]17<screen><userinput>cat &gt; /etc/fstab &lt;&lt; "EOF"
[d72e04a]18<literal># Begin /etc/fstab
[6370fa6]19
[d72e04a]20# file system mount-point type options dump fsck
21# order
[d5062b8]22
[d72e04a]23/dev/<replaceable>[xxx]</replaceable> / <replaceable>[fff]</replaceable> defaults 1 1
24/dev/<replaceable>[yyy]</replaceable> swap swap pri=1 0 0
25proc /proc proc defaults 0 0
26sysfs /sys sysfs defaults 0 0
[e2c85b1]27devpts /dev/pts devpts gid=4,mode=620 0 0
[d72e04a]28shm /dev/shm tmpfs defaults 0 0
29# End /etc/fstab</literal>
[0719866]30EOF</userinput></screen>
[6370fa6]31
[81fd230]32<para>Replace <replaceable>[xxx]</replaceable>,
33<replaceable>[yyy]</replaceable>, and <replaceable>[fff]</replaceable>
34with the values appropriate for the system, for example, <filename
35class="partition">hda2</filename>, <filename
36class="partition">hda5</filename>, and <systemitem
37class="filesystem">ext2</systemitem>. For details on the six
38fields in this file, see <command>man 5 fstab</command>.</para>
39
40<para>The <filename class="directory">/dev/shm</filename> mount point
41for <systemitem class="filesystem">tmpfs</systemitem> is included to
42allow enabling POSIX-shared memory. The kernel must have the required
43support built into it for this to work (more about this is in the next
44section). Please note that very little software currently uses
45POSIX-shared memory. Therefore, consider the <filename
46class="directory">/dev/shm</filename> mount point optional. For more
47information, see
48<filename>Documentation/filesystems/tmpfs.txt</filename> in the kernel
49source tree.</para>
50
51<para>There are other lines which may be added to the
52<filename>/etc/fstab</filename> file. One example is a line for USB
53devices:</para>
54
55<screen>usbfs /proc/bus/usb usbfs devgid=14,devmode=0660 0 0 </screen>
56
[4d938ef]57<para>This option will only work if <quote>Support for Host-side USB</quote> and
[a4663f0]58<quote>USB device filesystem</quote> are configured in the kernel. If
59<quote>Support for Host-side USB</quote> is compiled as a module, then
60<filename>usbcore</filename> must be listed in
[4d938ef]61<filename>/etc/sysconfig/modules</filename>.</para>
[81fd230]62
[6370fa6]63</sect1>
[81fd230]64
Note: See TracBrowser for help on using the repository browser.