2004-05-03 22:28:58 +01:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2005-01-30 18:06:48 +00:00
|
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
|
2004-05-03 22:28:58 +01:00
|
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
|
|
%general-entities;
|
|
|
|
]>
|
2005-02-19 22:16:42 +00:00
|
|
|
<sect1 id="ch-system-devices">
|
2004-07-14 18:58:05 +01:00
|
|
|
<title>Populating /dev</title>
|
2004-05-03 22:28:58 +01:00
|
|
|
<?dbhtml filename="devices.html"?>
|
|
|
|
|
2005-02-24 22:44:34 +00:00
|
|
|
<indexterm zone="ch-system-devices"><primary sortas="e-/dev/">/dev/*</primary></indexterm>
|
2005-02-19 22:16:42 +00:00
|
|
|
|
|
|
|
<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>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
|
|
|
<screen><userinput>mknod -m 600 /dev/console c 5 1
|
|
|
|
mknod -m 666 /dev/null c 1 3</userinput></screen>
|
2005-02-19 22:16:42 +00:00
|
|
|
</sect2>
|
|
|
|
|
|
|
|
<sect2>
|
2005-06-28 00:17:32 +01:00
|
|
|
<title>Mounting tmpfs and Populating /dev</title>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
2005-06-16 17:47:40 +01:00
|
|
|
<para>The recommended method of populating the <filename
|
|
|
|
class="directory">/dev</filename> directory with devices is to mount a virtual
|
2005-06-28 00:17:32 +01:00
|
|
|
filesystem (such as <systemitem class="filesystem">tmpfs</systemitem>) on the
|
|
|
|
<filename class="directory">/dev</filename> directory, and allow the devices to
|
|
|
|
be created dynamically on that virtual filesystem as they are detected or
|
|
|
|
accessed. This is generally done during the boot process. Since this new system
|
2005-07-01 21:39:25 +01:00
|
|
|
has not been booted, it is necessary to do what the LFS-Bootscripts package would
|
|
|
|
otherwise do by mounting <filename class="directory">/dev</filename>:</para>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
2005-06-28 00:17:32 +01:00
|
|
|
<screen><userinput>mount -n -t tmpfs none /dev</userinput></screen>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
2005-06-16 17:47:40 +01:00
|
|
|
<para>The Udev package is what actually creates the devices in the <filename
|
|
|
|
class="directory">/dev</filename> directory. Since it will not be installed
|
|
|
|
until later on in the process, manually create the minimal set of device nodes
|
|
|
|
needed to complete the building of this system:</para>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
2004-10-17 10:12:20 +01:00
|
|
|
<screen><userinput>mknod -m 622 /dev/console c 5 1
|
|
|
|
mknod -m 666 /dev/null c 1 3
|
|
|
|
mknod -m 666 /dev/zero c 1 5
|
|
|
|
mknod -m 666 /dev/ptmx c 5 2
|
2004-11-02 08:54:46 +00:00
|
|
|
mknod -m 666 /dev/tty c 5 0
|
|
|
|
mknod -m 444 /dev/random c 1 8
|
|
|
|
mknod -m 444 /dev/urandom c 1 9
|
|
|
|
chown root:tty /dev/{console,ptmx,tty}</userinput></screen>
|
2005-02-19 22:16:42 +00:00
|
|
|
<!-- -->
|
2004-05-03 22:28:58 +01:00
|
|
|
|
2005-06-28 00:17:32 +01:00
|
|
|
<para>There are some symlinks and directories required by LFS that are created
|
2005-07-01 21:39:25 +01:00
|
|
|
during system startup by the LFS-Bootscripts package. Since this is a chroot
|
|
|
|
environment and not a booted environment, those symlinks and directories need to
|
|
|
|
be created here:</para>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2005-02-19 22:16:42 +00:00
|
|
|
<para>Finally, mount the proper virtual (kernel) file systems on the
|
|
|
|
newly-created directories:</para>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
|
|
|
<screen><userinput>mount -t devpts -o gid=4,mode=620 none /dev/pts
|
|
|
|
mount -t tmpfs none /dev/shm</userinput></screen>
|
2004-12-04 20:53:03 +00:00
|
|
|
|
2005-02-19 22:16:42 +00:00
|
|
|
<para>The <command>mount</command> commands executed above may result
|
|
|
|
in the following warning message:</para>
|
|
|
|
|
|
|
|
<screen><computeroutput>can't open /etc/fstab: No such file or directory.</computeroutput></screen>
|
|
|
|
|
|
|
|
<para>This file—<filename>/etc/fstab</filename>—has not
|
|
|
|
been created yet but is also not required for the file systems to be
|
|
|
|
properly mounted. As such, the warning can be safely ignored.</para>
|
|
|
|
</sect2>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
|
|
|
</sect1>
|
2005-02-19 22:16:42 +00:00
|
|
|
|