aboutsummaryrefslogtreecommitdiffstats
path: root/chapter08
diff options
context:
space:
mode:
authorMark Hymers <markh@linuxfromscratch.org>2001-08-16 22:26:29 +0000
committerMark Hymers <markh@linuxfromscratch.org>2001-08-16 22:26:29 +0000
commit987aa009028dc0e036b3f40b70452f2fa9161a0c (patch)
tree3c4591b43bc85787e1dfb54862c7a4e53eb9b84e /chapter08
parentea57e1b0d1a4372b2e310e04c73d4a0dfa3c0c1d (diff)
Bug 78: MAKEDEV-1.2
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@985 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08')
-rw-r--r--chapter08/fstab.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/chapter08/fstab.xml b/chapter08/fstab.xml
index 27249ff3e..90a772231 100644
--- a/chapter08/fstab.xml
+++ b/chapter08/fstab.xml
@@ -29,5 +29,19 @@ the end of the line should be replaced with <userinput>0 0</userinput>.</para>
<para>For more information on the various fields which are in the fstab
file, see <userinput>man 5 fstab</userinput>.</para>
+<para>There are other lines which you may consider adding to your fstab
+file. One example is the line which you must have if you are using
+devpts, note that you must also create the /dev/pts directory for this
+to work:</para>
+<para><screen>none /dev/pts devpts gid=4,mode=620 0 0</screen></para>
+
+<para>Another example is a line to use if you intend to use USB
+devices. This time, you don't create the directory as it's part of the
+proc virtual filesystem:</para>
+<para><screen>none /proc/bus/usb usbdevfs defaults 0 0</screen></para>
+
+<para>Both of these options will only work if you have the relevant
+support compiled into your kernel.</para>
+
</sect1>