diff options
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/fstab.xml | 14 |
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> |