source: chapter06/devices.xml@ 1b87a5e

Last change on this file since 1b87a5e was 2256873, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Last edit round.

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

  • Property mode set to 100644
File size: 2.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-devices">
7<title>Populating /dev</title>
8<?dbhtml filename="devices.html"?>
9
10<indexterm zone="ch-system-devices"><primary sortas="e-Devices">Devices</primary></indexterm>
11
12<sect2>
13<title>Creating Initial Device Nodes</title>
14
15<para>When the kernel boots the system, it requires the presence of a few device
16nodes, in particular the <filename class="devicefile">console</filename> and
17<filename class="devicefile">null</filename> devices. Create these by
18running the following commands:</para>
19
20<screen><userinput>mknod -m 600 /dev/console c 5 1
21mknod -m 666 /dev/null c 1 3</userinput></screen>
22</sect2>
23
24<sect2>
25<title>Mounting ramfs and Populating /dev</title>
26
27<para>The ideal way to populate <filename
28class="directory">/dev</filename> is to mount a <systemitem
29class="filesystem">ramfs</systemitem> onto <filename
30class="directory">/dev</filename>, like <systemitem
31class="filesystem">tmpfs</systemitem>, and create the devices on there
32during each bootup. Since the system has not been booted, it is
33necessary to do what the bootscripts would otherwise do and populate
34<filename class="directory">/dev</filename>. Begin by mounting
35<filename class="directory">/dev</filename>:</para>
36
37<screen><userinput>mount -n -t ramfs none /dev</userinput></screen>
38
39<para>Run the installed <command>udevstart</command> program to
40create the initial devices based on all the information in <filename
41class="directory">/sys</filename>:</para>
42
43<screen><userinput>/tools/sbin/udevstart</userinput></screen>
44
45<para>There are some symlinks and directories required by LFS that are
46not created by Udev, so create those here:</para>
47
48<screen><userinput>ln -s /proc/self/fd /dev/fd
49ln -s /proc/self/fd/0 /dev/stdin
50ln -s /proc/self/fd/1 /dev/stdout
51ln -s /proc/self/fd/2 /dev/stderr
52ln -s /proc/kcore /dev/core
53mkdir /dev/pts
54mkdir /dev/shm</userinput></screen>
55
56<para>Finally, mount the proper virtual (kernel) file systems on the
57newly-created directories:</para>
58
59<screen><userinput>mount -t devpts -o gid=4,mode=620 none /dev/pts
60mount -t tmpfs none /dev/shm</userinput></screen>
61
62<para>The <command>mount</command> commands executed above may result
63in the following warning message:</para>
64
65<screen><computeroutput>can't open /etc/fstab: No such file or directory.</computeroutput></screen>
66
67<para>This file&mdash;<filename>/etc/fstab</filename>&mdash;has not
68been created yet but is also not required for the file systems to be
69properly mounted. As such, the warning can be safely ignored.</para>
70</sect2>
71
72</sect1>
73
Note: See TracBrowser for help on using the repository browser.