source: chapter06/createfiles.xml@ a07a34d

multilib-10.1
Last change on this file since a07a34d was a07a34d, checked in by Thomas Trepl <thomas@…>, 4 years ago

MultiLib: Merge changes from trunk

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

  • Property mode set to 100644
File size: 13.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-createfiles">
9 <?dbhtml filename="createfiles.html"?>
10
11 <title>Creating Essential Files and Symlinks</title>
12
13 <indexterm zone="ch-system-createfiles">
14 <primary sortas="e-/etc/passwd">/etc/passwd</primary>
15 </indexterm>
16
17 <indexterm zone="ch-system-createfiles">
18 <primary sortas="e-/etc/group">/etc/group</primary>
19 </indexterm>
20
21 <indexterm zone="ch-system-createfiles">
22 <primary sortas="e-/var/run/utmp">/var/run/utmp</primary>
23 </indexterm>
24
25 <indexterm zone="ch-system-createfiles">
26 <primary sortas="e-/var/log/btmp">/var/log/btmp</primary>
27 </indexterm>
28
29 <indexterm zone="ch-system-createfiles">
30 <primary sortas="e-/var/log/lastlog">/var/log/lastlog</primary>
31 </indexterm>
32
33 <indexterm zone="ch-system-createfiles">
34 <primary sortas="e-/var/log/wtmp">/var/log/wtmp</primary>
35 </indexterm>
36
37 <para>Some programs use hard-wired paths to programs which do not exist yet.
38 In order to satisfy these programs, create a number of symbolic links which
39 will be replaced by real files throughout the course of this chapter after the
40 software has been installed:</para>
41
42<screen><userinput>ln -sv /tools/bin/{bash,cat,chmod,dd,echo,ln,mkdir,pwd,rm,stty,touch} /bin
43ln -sv /tools/bin/{env,install,perl,printf} /usr/bin
44ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib
45ln -sv /tools/lib/libstdc++.{a,so{,.6}} /usr/lib
46ln -sv /tools/lib/libfl.so* /usr/lib
47
48ln -sv bash /bin/sh
49for lib in blkid mount uuid fdisk
50do
51 ln -sv /tools/lib/lib$lib.so* /usr/lib
52 sed 's|/tools|/usr|' /tools/lib/pkgconfig/${lib}.pc \
53 &gt; /usr/lib/pkgconfig/${lib}.pc
54done
55for incdir in blkid libmount uuid libfdisk
56do
57 ln -svf /tools/include/$incdir /usr/include
58done</userinput></screen>
59
60 <para arch="ml_32,ml_all">32-bit builds also require these links:</para>
61
62<screen arch="ml_32,ml_all"><userinput>ln -sv /tools/lib32/libgcc_s.so{,.1} /usr/lib32
63ln -sv /tools/lib32/libstdc++.{a,so{,.6}} /usr/lib32</userinput></screen>
64
65 <para arch="ml_x32,ml_all">x32-bit builds also require these links:</para>
66
67<screen arch="ml_x32,ml_all"><userinput>ln -sv /tools/libx32/libgcc_s.so{,.1} /usr/libx32
68ln -sv /tools/libx32/libstdc++.{a,so{,.6}} /usr/libx32
69ln -sv /usr/libx32 /</userinput></screen>
70
71 <variablelist>
72 <title>The purpose of each link:</title>
73
74 <varlistentry>
75 <term><parameter><filename>/bin/bash</filename></parameter></term>
76 <listitem>
77 <para>Many <command>bash</command> scripts specify
78 <filename>/bin/bash</filename>.</para>
79 </listitem>
80 </varlistentry>
81
82 <varlistentry>
83 <term><parameter><filename>/bin/cat</filename></parameter></term>
84 <listitem>
85 <para>This pathname is hard-coded into Glibc's configure script.</para>
86 </listitem>
87 </varlistentry>
88
89 <varlistentry>
90 <term><parameter><filename>/bin/dd</filename></parameter></term>
91 <listitem>
92 <para>The path to <filename>dd</filename> will be hard-coded into the
93 <filename>/usr/bin/libtool</filename> utility.</para>
94 </listitem>
95 </varlistentry>
96
97 <varlistentry>
98 <term><parameter><filename>/bin/echo</filename></parameter></term>
99 <listitem>
100 <para>This is to satisfy one of the tests in Glibc's test suite, which
101 expects <filename>/bin/echo</filename>.</para>
102 </listitem>
103 </varlistentry>
104
105 <varlistentry>
106 <term><parameter><filename>/usr/bin/env</filename></parameter></term>
107 <listitem>
108 <para>This pathname is hard-coded into some packages build procedures.
109 <!-- systemd This may not be needed if we move sysd to the end--></para>
110 </listitem>
111 </varlistentry>
112
113 <varlistentry>
114 <term><parameter><filename>/usr/bin/install</filename></parameter></term>
115 <listitem>
116 <para>The path to <filename>install</filename> will be hard-coded into
117 the <filename>/usr/lib/bash/Makefile.inc</filename> file.</para>
118 </listitem>
119 </varlistentry>
120
121 <varlistentry>
122 <term><parameter><filename>/bin/ln</filename></parameter></term>
123 <listitem>
124 <para>The path to <filename>ln</filename> will be hard-coded into the
125 <filename>/usr/lib/perl5/&perl-version;/&lt;target-triplet&gt;/Config_heavy.pl</filename>
126 file.</para>
127 </listitem>
128 </varlistentry>
129
130 <varlistentry>
131 <term><parameter><filename>/bin/pwd</filename></parameter></term>
132 <listitem>
133 <para>Some <command>configure</command> scripts, particularly Glibc's,
134 have this pathname hard-coded.</para>
135 </listitem>
136 </varlistentry>
137
138 <varlistentry>
139 <term><parameter><filename>/bin/rm</filename></parameter></term>
140 <listitem>
141 <para>The path to <filename>rm</filename> will be hard-coded into the
142 <filename>/usr/lib/perl5/&perl-version;/&lt;target-triplet&gt;/Config_heavy.pl</filename>
143 file.</para>
144 </listitem>
145 </varlistentry>
146
147 <varlistentry>
148 <term><parameter><filename>/bin/stty</filename></parameter></term>
149 <listitem>
150 <para>This pathname is hard-coded into Expect, therefore it is needed
151 for Binutils and GCC test suites to pass.</para>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry>
156 <term><parameter><filename>/usr/bin/perl</filename></parameter></term>
157 <listitem>
158 <para>Many Perl scripts hard-code this path to the
159 <command>perl</command> program.</para>
160 </listitem>
161 </varlistentry>
162
163 <varlistentry>
164 <term><parameter><filename>/usr/lib/libgcc_s.so{,.1}</filename></parameter></term>
165 <listitem>
166 <para>Glibc needs this for the pthreads library to work.</para>
167 </listitem>
168 </varlistentry>
169
170 <varlistentry>
171 <term><parameter><filename>/usr/lib/libstdc++{,.6}</filename></parameter></term>
172 <listitem>
173 <para>This is needed by several tests in Glibc's test suite, as well as
174 for C++ support in GMP.</para>
175 </listitem>
176 </varlistentry>
177
178 <varlistentry>
179 <term><parameter><filename>/bin/sh</filename></parameter></term>
180 <listitem>
181 <para>Many shell scripts hard-code <filename>/bin/sh</filename>.</para>
182 </listitem>
183 </varlistentry>
184
185 <varlistentry>
186 <term>
187 <parameter><filename>/usr/lib/libfl.so*</filename></parameter>
188 </term>
189 <listitem>
190 <para>This link allows binutils to find the flex library, and to
191 build enhanced versions of ar and ranlib.</para>
192 </listitem>
193 </varlistentry>
194
195 <varlistentry>
196 <term>
197 <parameter>
198 <filename>/usr/lib/lib{blkid,fdisk,mount,uuid}.so*</filename>,
199 <filename>/usr/include/{blkid,libfdisk,libmount,uuid}</filename>,
200 <filename>/usr/lib/pkgconfig/{blkid,fdisk,mount,uuid}.pc</filename>
201 </parameter>
202 </term>
203 <listitem>
204 <para>These links and files allow
205 <phrase revision="sysv">eudev</phrase>
206 <phrase revision="systemd">systemd</phrase> to find the
207 util-linux libraries installed in chapter 5, without creating
208 wrong references to /tools. The uuid library is also needed for
209 building a python module.</para>
210 </listitem>
211 </varlistentry>
212
213 </variablelist>
214
215 <para>Historically, Linux maintains a list of the mounted file systems in the
216 file <filename>/etc/mtab</filename>. Modern kernels maintain this list
217 internally and exposes it to the user via the <filename
218 class="directory">/proc</filename> filesystem. To satisfy utilities that
219 expect the presence of <filename>/etc/mtab</filename>, create the following
220 symbolic link:</para>
221
222<screen><userinput>ln -sv /proc/self/mounts /etc/mtab</userinput></screen>
223
224 <para>In order for user <systemitem class="username">root</systemitem> to be
225 able to login and for the name <quote>root</quote> to be recognized, there
226 must be relevant entries in the <filename>/etc/passwd</filename> and
227 <filename>/etc/group</filename> files.</para>
228
229 <para>Create the <filename>/etc/passwd</filename> file by running the following
230 command:</para>
231
232<screen revision="sysv"><userinput>cat &gt; /etc/passwd &lt;&lt; "EOF"
233<literal>root:x:0:0:root:/root:/bin/bash
234bin:x:1:1:bin:/dev/null:/bin/false
235daemon:x:6:6:Daemon User:/dev/null:/bin/false
236messagebus:x:18:18:D-Bus Message Daemon User:/var/run/dbus:/bin/false
237nobody:x:99:99:Unprivileged User:/dev/null:/bin/false</literal>
238EOF</userinput></screen>
239
240<screen revision="systemd"><userinput>cat &gt; /etc/passwd &lt;&lt; "EOF"
241<literal>root:x:0:0:root:/root:/bin/bash
242bin:x:1:1:bin:/dev/null:/bin/false
243daemon:x:6:6:Daemon User:/dev/null:/bin/false
244messagebus:x:18:18:D-Bus Message Daemon User:/var/run/dbus:/bin/false
245systemd-bus-proxy:x:72:72:systemd Bus Proxy:/:/bin/false
246systemd-journal-gateway:x:73:73:systemd Journal Gateway:/:/bin/false
247systemd-journal-remote:x:74:74:systemd Journal Remote:/:/bin/false
248systemd-journal-upload:x:75:75:systemd Journal Upload:/:/bin/false
249systemd-network:x:76:76:systemd Network Management:/:/bin/false
250systemd-resolve:x:77:77:systemd Resolver:/:/bin/false
251systemd-timesync:x:78:78:systemd Time Synchronization:/:/bin/false
252systemd-coredump:x:79:79:systemd Core Dumper:/:/bin/false
253nobody:x:99:99:Unprivileged User:/dev/null:/bin/false</literal>
254EOF</userinput></screen>
255
256 <para>The actual password for <systemitem class="username">root</systemitem>
257 (the <quote>x</quote> used here is just a placeholder) will be set later.</para>
258
259 <para>Create the <filename>/etc/group</filename> file by running the following
260 command:</para>
261
262<screen revision="sysv"><userinput>cat &gt; /etc/group &lt;&lt; "EOF"
263<literal>root:x:0:
264bin:x:1:daemon
265sys:x:2:
266kmem:x:3:
267tape:x:4:
268tty:x:5:
269daemon:x:6:
270floppy:x:7:
271disk:x:8:
272lp:x:9:
273dialout:x:10:
274audio:x:11:
275video:x:12:
276utmp:x:13:
277usb:x:14:
278cdrom:x:15:
279adm:x:16:
280messagebus:x:18:
281input:x:24:
282mail:x:34:
283kvm:x:61:
284wheel:x:97:
285nogroup:x:99:
286users:x:999:</literal>
287EOF</userinput></screen>
288
289<screen revision="systemd"><userinput>cat &gt; /etc/group &lt;&lt; "EOF"
290<literal>root:x:0:
291bin:x:1:daemon
292sys:x:2:
293kmem:x:3:
294tape:x:4:
295tty:x:5:
296daemon:x:6:
297floppy:x:7:
298disk:x:8:
299lp:x:9:
300dialout:x:10:
301audio:x:11:
302video:x:12:
303utmp:x:13:
304usb:x:14:
305cdrom:x:15:
306adm:x:16:
307messagebus:x:18:
308systemd-journal:x:23:
309input:x:24:
310mail:x:34:
311kvm:x:61:
312systemd-bus-proxy:x:72:
313systemd-journal-gateway:x:73:
314systemd-journal-remote:x:74:
315systemd-journal-upload:x:75:
316systemd-network:x:76:
317systemd-resolve:x:77:
318systemd-timesync:x:78:
319systemd-coredump:x:79:
320wheel:x:97:
321nogroup:x:99:
322users:x:999:</literal>
323EOF</userinput></screen>
324
325 <para>The created groups are not part of any standard&mdash;they are groups
326 decided on in part by the requirements of the Udev configuration in this
327 chapter, and in part by common convention employed by a number of existing
328 Linux distributions. In addition, some test suites rely on specific users
329 or groups. The Linux Standard Base (LSB, available at <ulink
330 url="http://www.linuxbase.org"/>) recommends only that, besides the group
331 <systemitem class="groupname">root</systemitem> with a Group ID (GID) of 0,
332 a group <systemitem class="groupname">bin</systemitem> with a GID of 1 be
333 present. All other group names and GIDs can be chosen freely by the system
334 administrator since well-written programs do not depend on GID numbers, but
335 rather use the group's name.</para>
336
337 <para>To remove the <quote>I have no name!</quote> prompt, start a new
338 shell. Since a full Glibc was installed in <xref
339 linkend="chapter-temporary-tools"/> and the
340 <filename>/etc/passwd</filename> and <filename>/etc/group</filename>
341 files have been created, user name and group name resolution will now
342 work:</para>
343
344<screen role="nodump"><userinput>exec /tools/bin/bash --login +h</userinput></screen>
345
346 <para>Note the use of the <parameter>+h</parameter> directive. This tells
347 <command>bash</command> not to use its internal path hashing. Without this
348 directive, <command>bash</command> would remember the paths to binaries it has
349 executed. To ensure the use of the newly compiled binaries as soon as they are
350 installed, the <parameter>+h</parameter> directive will be used for the duration
351 of this chapter.</para>
352
353 <para>The <command>login</command>, <command>agetty</command>, and
354 <command>init</command> programs (and others) use a number of log
355 files to record information such as who was logged into the system and
356 when. However, these programs will not write to the log files if they
357 do not already exist. Initialize the log files and give them
358 proper permissions:</para>
359
360<screen><userinput>touch /var/log/{btmp,lastlog,faillog,wtmp}
361chgrp -v utmp /var/log/lastlog
362chmod -v 664 /var/log/lastlog
363chmod -v 600 /var/log/btmp</userinput></screen>
364
365 <para>The <filename>/var/log/wtmp</filename> file records all logins and
366 logouts. The <filename>/var/log/lastlog</filename> file records when each
367 user last logged in. The <filename>/var/log/faillog</filename> file records
368 failed login attempts. The <filename>/var/log/btmp</filename> file records
369 the bad login attempts.</para>
370
371 <note><para>The <filename>/run/utmp</filename> file records the users that
372 are currently logged in. This file is created dynamically in the boot
373 scripts.</para></note>
374
375</sect1>
Note: See TracBrowser for help on using the repository browser.