Changeset e683065


Ignore:
Timestamp:
09/23/2003 06:27:36 AM (21 years ago)
Author:
Greg Schafer <greg@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
3993087
Parents:
ccaabde
Message:

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rccaabde re683065  
    5757<listitem><para>gcc-2.95.3</para></listitem>
    5858<listitem><para>gcc-2.95.3-2.patch</para></listitem>
     59<listitem><para>gcc-2.95.3-no-fixinc.patch</para></listitem>
    5960<listitem><para>gcc-2.95.3-returntype-fix.patch</para></listitem>
    6061<listitem><para>gcc-3.3.1-no_fixincludes-2.patch</para></listitem>
     
    9596</para></listitem>
    9697
     98<listitem><para>September 22nd, 2003 [greg]: Chapter 8 - Creating the /etc/fstab
     99file: Made mounting devpts the default.</para></listitem>
     100
    97101<listitem><para>September 22nd, 2003 [jeremy]: Added net-tools patch to fix
    98102mii-tool compilation</para></listitem>
     
    120124<listitem><para>September 22nd, 2003 [greg]: Chapter 5 - Setting up the
    121125environment: Added unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD to
    122 .bash_profile to stop accidental build breakge.</para></listitem>
     126.bash_profile to stop accidental build breakage.</para></listitem>
    123127
    124128<listitem><para>September 20th, 2003 [greg]: Chapter 5 - GCC Pass 2: Updated
  • chapter08/fstab.xml

    rccaabde re683065  
    1111# Begin /etc/fstab
    1212
    13 # filesystem  mount-point  fs-type  options     dump  fsck-order
     13# filesystem  mount-point  fs-type  options         dump  fsck-order
    1414
    15 /dev/xxx      /            fff      defaults    1     1
    16 /dev/yyy      swap         swap     pri=1       0     0
    17 proc          /proc        proc     defaults    0     0
    18 shm           /dev/shm     tmpfs    defaults    0     0
     15/dev/xxx      /            fff      defaults        1     1
     16/dev/yyy      swap         swap     pri=1           0     0
     17proc          /proc        proc     defaults        0     0
     18devpts        /dev/pts     devpts   gid=4,mode=620  0     0
     19shm           /dev/shm     tmpfs    defaults        0     0
    1920
    2021# End /etc/fstab
     
    3738
    3839<para>There are other lines which you may consider adding to your
    39 <filename>fstab</filename> file.  One example is the line which you must have
    40 if you are using devpts:</para>
     40<filename>fstab</filename> file. One example is a line to use if you intend to
     41use USB devices:</para>
    4142
    42 <para><screen>devpts        /dev/pts     devpts   gid=4,mode=620  0     0</screen></para>
    43 
    44 <para>Another example is a line to use if you intend to use USB
    45 devices:</para>
    4643<para><screen>usbfs       /proc/bus/usb  usbfs    defaults    0     0</screen></para>
    4744
    48 <para>Both of these options will of course only work if you have the relevant
    49 support compiled into your kernel.</para>
     45<para>This option will of course only work if you have the relevant support
     46compiled into your kernel.</para>
    5047
    5148</sect1>
Note: See TracChangeset for help on using the changeset viewer.