diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-09-23 06:27:36 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-09-23 06:27:36 +0000 |
commit | e683065ebee9cedb40000840c7a37af547782e15 (patch) | |
tree | 4abff898b6ee5a92cee1b3888e7834e2fe9d9ddb | |
parent | ccaabde9fa61eef979216eb0b68c4ffae54d97a8 (diff) |
Chapter 8 - Creating the /etc/fstab file: Made mounting devpts the default.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2872 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 6 | ||||
-rw-r--r-- | chapter08/fstab.xml | 23 |
2 files changed, 15 insertions, 14 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index eba096d7a..92386c18b 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -56,6 +56,7 @@ <listitem><para>gawk-3.1.3.patch</para></listitem> <listitem><para>gcc-2.95.3</para></listitem> <listitem><para>gcc-2.95.3-2.patch</para></listitem> +<listitem><para>gcc-2.95.3-no-fixinc.patch</para></listitem> <listitem><para>gcc-2.95.3-returntype-fix.patch</para></listitem> <listitem><para>gcc-3.3.1-no_fixincludes-2.patch</para></listitem> <listitem><para>gcc-&gcc-specs-version;.patch</para></listitem> @@ -94,6 +95,9 @@ </itemizedlist> </para></listitem> +<listitem><para>September 22nd, 2003 [greg]: Chapter 8 - Creating the /etc/fstab +file: Made mounting devpts the default.</para></listitem> + <listitem><para>September 22nd, 2003 [jeremy]: Added net-tools patch to fix mii-tool compilation</para></listitem> @@ -119,7 +123,7 @@ and diffutils, since these tests perform no actions.</para></listitem> <listitem><para>September 22nd, 2003 [greg]: Chapter 5 - Setting up the environment: Added unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD to -.bash_profile to stop accidental build breakge.</para></listitem> +.bash_profile to stop accidental build breakage.</para></listitem> <listitem><para>September 20th, 2003 [greg]: Chapter 5 - GCC Pass 2: Updated to gcc-3.3.1-specs-2.patch. Ncurses: added --enable-overwrite and description. diff --git a/chapter08/fstab.xml b/chapter08/fstab.xml index 188bc8633..4c38ede0e 100644 --- a/chapter08/fstab.xml +++ b/chapter08/fstab.xml @@ -10,12 +10,13 @@ this:</para> <para><screen><userinput>cat > /etc/fstab << "EOF"</userinput> # Begin /etc/fstab -# filesystem mount-point fs-type options dump fsck-order +# filesystem mount-point fs-type options dump fsck-order -/dev/xxx / fff defaults 1 1 -/dev/yyy swap swap pri=1 0 0 -proc /proc proc defaults 0 0 -shm /dev/shm tmpfs defaults 0 0 +/dev/xxx / fff defaults 1 1 +/dev/yyy swap swap pri=1 0 0 +proc /proc proc defaults 0 0 +devpts /dev/pts devpts gid=4,mode=620 0 0 +shm /dev/shm tmpfs defaults 0 0 # End /etc/fstab <userinput>EOF</userinput></screen></para> @@ -36,17 +37,13 @@ see <filename>Documentation/filesystems/tmpfs.txt</filename> in the kernel source tree.</para> <para>There are other lines which you may consider adding to your -<filename>fstab</filename> file. One example is the line which you must have -if you are using devpts:</para> +<filename>fstab</filename> file. One example is a line to use if you intend to +use USB devices:</para> -<para><screen>devpts /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:</para> <para><screen>usbfs /proc/bus/usb usbfs defaults 0 0</screen></para> -<para>Both of these options will of course only work if you have the relevant -support compiled into your kernel.</para> +<para>This option will of course only work if you have the relevant support +compiled into your kernel.</para> </sect1> |