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-chroot-pwdgroup">
|
---|
9 | <?dbhtml filename="pwdgroup.html"?>
|
---|
10 |
|
---|
11 | <title>Creating the passwd, group, and log Files</title>
|
---|
12 |
|
---|
13 | <indexterm zone="ch-chroot-pwdgroup">
|
---|
14 | <primary sortas="e-/etc/passwd">/etc/passwd</primary>
|
---|
15 | <secondary>chroot</secondary>
|
---|
16 | </indexterm>
|
---|
17 |
|
---|
18 | <indexterm zone="ch-chroot-pwdgroup">
|
---|
19 | <primary sortas="e-/etc/group">/etc/group</primary>
|
---|
20 | <secondary>chroot</secondary>
|
---|
21 | </indexterm>
|
---|
22 |
|
---|
23 | <indexterm zone="ch-boot-pwdgroup">
|
---|
24 | <primary sortas="e-/var/run/utmp">/var/run/utmp</primary>
|
---|
25 | <secondary>chroot</secondary>
|
---|
26 | </indexterm>
|
---|
27 |
|
---|
28 | <indexterm zone="ch-boot-pwdgroup">
|
---|
29 | <primary sortas="e-/var/log/btmp">/var/log/btmp</primary>
|
---|
30 | <secondary>chroot</secondary>
|
---|
31 | </indexterm>
|
---|
32 |
|
---|
33 | <indexterm zone="ch-boot-pwdgroup">
|
---|
34 | <primary sortas="e-/var/log/lastlog">/var/log/lastlog</primary>
|
---|
35 | <secondary>chroot</secondary>
|
---|
36 | </indexterm>
|
---|
37 |
|
---|
38 | <indexterm zone="ch-boot-pwdgroup">
|
---|
39 | <primary sortas="e-/var/log/wtmp">/var/log/wtmp</primary>
|
---|
40 | <secondary>chroot</secondary>
|
---|
41 | </indexterm>
|
---|
42 |
|
---|
43 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
44 | href="../../boot/common/pwdgroup.xml"
|
---|
45 | xpointer="xpointer(//*[@os='a'])"/>
|
---|
46 |
|
---|
47 | <para>Create the <filename>/etc/passwd</filename> file by running the
|
---|
48 | following command:</para>
|
---|
49 |
|
---|
50 | <screen><userinput>cat > /etc/passwd << "EOF"
|
---|
51 | <literal>root:x:&uid-root;:&gid-root;:root:/root:/bin/bash</literal>
|
---|
52 | <literal>bin:x:&uid-bin;:&gid-bin;:/bin:/bin/false</literal>
|
---|
53 | <literal>daemon:x:&uid-daemon;:&gid-daemon;:/sbin:/bin/false</literal>
|
---|
54 | <literal>messagebus:x:&uid-messagebus;:&gid-messagebus;:D-Bus Message Daemon User:/dev/null:/bin/false</literal>
|
---|
55 | <literal>nobody:x:&uid-nobody;:&gid-nogroup;:Unprivileged User:/dev/null:/bin/false</literal>
|
---|
56 | EOF</userinput></screen>
|
---|
57 |
|
---|
58 | <para os="b">The actual password for
|
---|
59 | <systemitem class="username">root</systemitem> (the <quote>x</quote>
|
---|
60 | used here is just a placeholder) will be set later.</para>
|
---|
61 |
|
---|
62 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
63 | href="../../boot/common/pwdgroup.xml"
|
---|
64 | xpointer="xpointer(//*[@os='c'])"/>
|
---|
65 |
|
---|
66 | <para>Create the <filename>/etc/group</filename> file by running the
|
---|
67 | following command:</para>
|
---|
68 |
|
---|
69 | <screen><userinput>cat > /etc/group << "EOF"
|
---|
70 | <literal>root:x:0:
|
---|
71 | bin:x:&gid-bin;:
|
---|
72 | sys:x:&gid-sys;:
|
---|
73 | kmem:x:&gid-kmem;:
|
---|
74 | tty:x:&gid-tty;:
|
---|
75 | tape:x:&gid-tape;:
|
---|
76 | daemon:x:&gid-daemon;:
|
---|
77 | floppy:x:&gid-floppy;:
|
---|
78 | disk:x:&gid-disk;:
|
---|
79 | lp:x:&gid-lp;:
|
---|
80 | dialout:x:&gid-dialout;:
|
---|
81 | audio:x:&gid-audio;:
|
---|
82 | video:x:&gid-video;:
|
---|
83 | utmp:x:&gid-utmp;:
|
---|
84 | usb:x:&gid-usb;:
|
---|
85 | cdrom:x:&gid-cdrom;:
|
---|
86 | adm:x:&gid-adm;:
|
---|
87 | messagebus:x:&gid-messagebus;:
|
---|
88 | mail:x:&gid-mail;:
|
---|
89 | wheel:x:&gid-wheel;:
|
---|
90 | nogroup:x:&gid-nogroup;:</literal>
|
---|
91 | EOF</userinput></screen>
|
---|
92 |
|
---|
93 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
94 | href="../../boot/common/pwdgroup.xml"
|
---|
95 | xpointer="xpointer(//*[@os='d'])"/>
|
---|
96 |
|
---|
97 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
98 | href="../../boot/common/pwdgroup.xml"
|
---|
99 | xpointer="xpointer(//*[@os='e'])"/>
|
---|
100 |
|
---|
101 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
102 | href="../../boot/common/pwdgroup.xml"
|
---|
103 | xpointer="xpointer(//*[@os='f'])"/>
|
---|
104 |
|
---|
105 | <screen os="g"><userinput>touch /var/run/utmp /var/log/{btmp,lastlog,wtmp}
|
---|
106 | chgrp -v utmp /var/run/utmp /var/log/lastlog
|
---|
107 | chmod -v 664 /var/run/utmp /var/log/lastlog
|
---|
108 | chmod -v 600 /var/log/btmp</userinput></screen>
|
---|
109 |
|
---|
110 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
111 | href="../../boot/common/pwdgroup.xml"
|
---|
112 | xpointer="xpointer(//*[@os='h'])"/>
|
---|
113 |
|
---|
114 | <para>To remove the <quote>I have no name!</quote> prompt, start a
|
---|
115 | new shell. Since a full Glibc was installed in <xref
|
---|
116 | linkend="chapter-cross-tools"/> and the <filename>/etc/passwd</filename>
|
---|
117 | and <filename>/etc/group</filename> files have been created, user name
|
---|
118 | and group name resolution will now work.</para>
|
---|
119 |
|
---|
120 | <screen role="nodump"><userinput>exec /tools/bin/bash --login +h</userinput></screen>
|
---|
121 |
|
---|
122 | <para>Note the use of the <parameter>+h</parameter> directive. This tells
|
---|
123 | <command>bash</command> not to use its internal path hashing. Without this
|
---|
124 | directive, <command>bash</command> would remember the paths to binaries it
|
---|
125 | has executed. To ensure the use of the newly compiled binaries as soon as
|
---|
126 | they are installed, the <parameter>+h</parameter> directive will be used
|
---|
127 | for the duration of the next chapters.</para>
|
---|
128 |
|
---|
129 | </sect1>
|
---|