source: chapter06/udev.xml@ 00cc7ce

6.0
Last change on this file since 00cc7ce was 00cc7ce, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Line wrap in screen blocks to fit the line length in PDF output.

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

  • Property mode set to 100644
File size: 5.2 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-udev" role="wrap">
7<title>Udev-&udev-version;</title>
8<?dbhtml filename="udev.html"?>
9
10<indexterm zone="ch-system-udev"><primary sortas="a-Udev">Udev</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Udev package contains programs for dynamic creation of device nodes.</para>
14
15<segmentedlist>
16<segtitle>&buildtime;</segtitle>
17<segtitle>&diskspace;</segtitle>
18<seglistitem><seg>0.2 SBU</seg><seg>5.2 MB</seg></seglistitem>
19</segmentedlist>
20
21<segmentedlist>
22<segtitle>Udev installation depends on</segtitle>
23<seglistitem><seg>Coreutils and Make</seg></seglistitem>
24</segmentedlist>
25
26</sect2>
27
28<sect2 role="installation">
29<title>Installation of Udev</title>
30
31<para>Compile Udev:</para>
32
33<screen><userinput>make udevdir=/dev</userinput></screen>
34
35<variablelist>
36<varlistentry>
37<term><parameter>udevdir=/dev</parameter></term>
38<listitem><para>This tells <command>udev</command> in which directory
39devices nodes are to be created.</para></listitem>
40</varlistentry>
41</variablelist>
42
43<para>This package does not come with a test suite.</para>
44
45<para>Install the package:</para>
46
47<screen><userinput>make udevdir=/dev install</userinput></screen>
48
49<para>Udev's configuration is far from ideal by default, so install
50the configuration files here:</para>
51
52<screen><userinput>cp ../udev-config-2.permissions \
53 /etc/udev/permissions.d/25-lfs.permissions
54cp ../udev-config-1.rules /etc/udev/rules.d/25-lfs.rules</userinput></screen>
55
56</sect2>
57
58<sect2 id="contents-udev" role="content"><title>Contents of Udev</title>
59
60<segmentedlist>
61<segtitle>Installed programs</segtitle>
62<seglistitem><seg>udev, udevd, udevsend, udevstart, udevinfo, and udevtest</seg></seglistitem>
63</segmentedlist>
64
65<variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
66<?dbfo list-presentation="list"?>
67
68<varlistentry id="udev">
69<term><command>udev</command></term>
70<listitem>
71<para>creates device nodes in <filename
72class="directory">/dev</filename> or renames network interfaces (not
73in LFS) in response to hotplug events.</para>
74<indexterm zone="ch-system-udev udev"><primary sortas="b-udev">udev</primary></indexterm>
75</listitem></varlistentry>
76
77<varlistentry id="udevd">
78<term><command>udevd</command></term>
79<listitem>
80<para>a daemon that reorders hotplug events before submitting them to
81<command>udev</command>,
82thus avoiding various race conditions.</para>
83<indexterm zone="ch-system-udev udevd"><primary sortas="b-udevd">udevd</primary></indexterm>
84</listitem></varlistentry>
85
86<varlistentry id="udevsend">
87<term><command>udevsend</command></term>
88<listitem>
89<para>delivers hotplug events to <command>udevd</command>.</para>
90<indexterm zone="ch-system-udev udevsend"><primary sortas="b-udevsend">udevsend</primary></indexterm>
91</listitem></varlistentry>
92
93<varlistentry id="udevstart">
94<term><command>udevstart</command></term>
95<listitem>
96<para>creates device nodes in <filename
97class="directory">/dev</filename> that correspond to drivers compiled directly
98into the kernel. It performs that task by simulating hotplug events presumably
99dropped by the kernel before invocation of this program (e.g., because the root
100filesystem has not been mounted) and submitting such synthetic hotplug events
101to <command>udev</command>.</para>
102<indexterm zone="ch-system-udev udevstart"><primary sortas="b-udevstart">udevstart</primary></indexterm>
103</listitem>
104</varlistentry>
105
106<varlistentry id="udevinfo">
107<term><command>udevinfo</command></term>
108<listitem>
109<para>allows users to query the <command>udev</command> database for
110information on any device currently present on the system. It also
111provides a way to query any device in the <systemitem
112class="filesystem">sysfs</systemitem> tree to help create udev
113rules.</para>
114<indexterm zone="ch-system-udev udevinfo"><primary sortas="b-udevinfo">udevinfo</primary></indexterm>
115</listitem></varlistentry>
116
117<varlistentry id="udevtest">
118<term><command>udevtest</command></term>
119<listitem>
120<para>simulates a <command>udev</command> run for the given device,
121and prints out the name of the node the real <command>udev</command> would
122have created or (not in LFS) the name of the renamed network interface.</para>
123<indexterm zone="ch-system-udev udevtest"><primary sortas="b-udevtest">udevtest</primary></indexterm>
124</listitem></varlistentry>
125
126<varlistentry id="etc-dev-d">
127<term><filename class="directory">/etc/dev.d</filename></term>
128<listitem>
129<para>contains user-written handlers for device
130creation hotplug events.</para>
131<indexterm zone="ch-system-udev etc-dev-d"><primary sortas="e-etc-dev-d">/etc/dev.d</primary></indexterm>
132</listitem></varlistentry>
133
134<varlistentry id="etc-udev">
135<term><filename class="directory">/etc/udev</filename></term>
136<listitem>
137<para>contains <command>udev</command> configuation files,
138device permissions, and rules for device naming.</para>
139<indexterm zone="ch-system-udev etc-udev"><primary sortas="e-etc-udev">/etc/udev</primary></indexterm>
140</listitem></varlistentry>
141</variablelist>
142</sect2>
143
144</sect1>
145
Note: See TracBrowser for help on using the repository browser.