mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2026-05-20 05:10:27 -04:00
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4000 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
%general-entities;
|
|
]>
|
|
<sect1 id="ch-system-devices" xreflabel="devices">
|
|
<title>Populating /dev</title>
|
|
<?dbhtml filename="devices.html"?>
|
|
|
|
<indexterm zone="ch-system-devices"><primary sortas="e-Devices">Devices</primary></indexterm>
|
|
|
|
<sect2>
|
|
<title>Creating Initial Device Nodes</title>
|
|
|
|
<para>When the kernel boots the system, it requires the presence of a few device
|
|
nodes, in particular the <filename class="devicefile">console</filename> and
|
|
<filename class="devicefile">null</filename> devices. Create these by
|
|
running the following commands:</para>
|
|
|
|
<screen><userinput>mknod -m 600 /dev/console c 5 1
|
|
mknod -m 666 /dev/null c 1 3</userinput></screen>
|
|
</sect2>
|
|
|
|
<sect2>
|
|
<title>Mounting ramfs and populating /dev</title>
|
|
|
|
<para>The ideal way to populate <filename
|
|
class="directory">/dev</filename> is to mount a ramfs onto <filename
|
|
class="directory">/dev</filename> like <systemitem
|
|
class="filesystem">tmpfs</systemitem>, and create the devices on there
|
|
during each bootup. Since the system has not been booted, it is
|
|
necessary to do what the bootscripts would otherwise do and populate
|
|
<filename class="directory">/dev</filename>. Begin by mounting
|
|
<filename class="directory">/dev</filename>:</para>
|
|
|
|
<screen><userinput>mount -n -t ramfs none /dev</userinput></screen>
|
|
|
|
<para>Now run the installed <command>udevstart</command> program to
|
|
create the initial devices based on all the information in <filename
|
|
class="directory">/sys</filename>:</para>
|
|
|
|
<screen><userinput>/tools/sbin/udevstart</userinput></screen>
|
|
|
|
<para>There are some symlinks and directories required by LFS that are
|
|
not created by Udev, so create those here:</para>
|
|
|
|
<screen><userinput>ln -s /proc/self/fd /dev/fd
|
|
ln -s /proc/self/fd/0 /dev/stdin
|
|
ln -s /proc/self/fd/1 /dev/stdout
|
|
ln -s /proc/self/fd/2 /dev/stderr
|
|
ln -s /proc/kcore /dev/core
|
|
mkdir /dev/pts
|
|
mkdir /dev/shm</userinput></screen>
|
|
|
|
<para>Finally, mount the proper virtual (kernel) file systems on the
|
|
newly-created directories:</para>
|
|
|
|
<screen><userinput>mount -t devpts -o gid=4,mode=620 none /dev/pts
|
|
mount -t tmpfs none /dev/shm</userinput></screen>
|
|
</sect2>
|
|
|
|
</sect1>
|
|
|