source: BOOK/chroot/common/pwdgroup.xml@ 143011b

sysvinit
Last change on this file since 143011b was 1e08a9b, checked in by Chris Staub <chris@…>, 10 years ago

No need to create /var/run/utmp

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