Ignore:
Timestamp:
06/28/2005 05:50:11 PM (19 years ago)
Author:
Archaic <archaic@…>
Branches:
6.1, 6.1.1
Children:
07da7ec
Parents:
286db8f
Message:

Minor wording change. (merged from trunk r6208 nd r6209)

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/devices.xml

    r286db8f rd16b770c  
    2323
    2424<sect2>
    25 <title>Mounting ramfs and Populating /dev</title>
     25<title>Mounting tmpfs and Populating /dev</title>
    2626
    2727<para>The recommended method of populating the <filename
    2828class="directory">/dev</filename> directory with devices is to mount a virtual
    29 filesystem (such as <systemitem class="filesystem">ramfs</systemitem> or
    30 <systemitem class="filesystem">tmpfs</systemitem>) on the <filename
    31 class="directory">/dev</filename> directory, and allow the devices to be created
    32 dynamically on that virtual filesystem as they are detected or accessed. This is
    33 generally done during the boot process. Since this new system has not been
    34 booted, it is necessary to do what the bootscripts would otherwise do by
    35 mounting <filename class="directory">/dev</filename>:</para>
     29filesystem (such as <systemitem class="filesystem">tmpfs</systemitem>) on the
     30<filename class="directory">/dev</filename> directory, and allow the devices to
     31be created dynamically on that virtual filesystem as they are detected or
     32accessed. This is generally done during the boot process. Since this new system
     33has not been booted, it is necessary to do what the bootscripts would otherwise
     34do by mounting <filename class="directory">/dev</filename>:</para>
    3635
    37 <screen><userinput>mount -n -t ramfs none /dev</userinput></screen>
     36<screen><userinput>mount -n -t tmpfs none /dev</userinput></screen>
    3837
    3938<para>The Udev package is what actually creates the devices in the <filename
     
    5251<!-- -->
    5352
    54 <para>There are some symlinks and directories required by LFS that are
    55 not created by Udev, so create those here:</para>
     53<para>There are some symlinks and directories required by LFS that are created
     54during system startup by the bootscripts. Since this is a chroot environment and
     55not a booted environment, those symlinks and directories need to be created
     56here:</para>
    5657
    5758<screen><userinput>ln -s /proc/self/fd /dev/fd
Note: See TracChangeset for help on using the changeset viewer.