source: BOOK/chroot/common/pwdgroup.xml@ 9cdb9bf

clfs-3.0.0-sysvinit sysvinit
Last change on this file since 9cdb9bf was 2b15ca5, checked in by Chris Staub <chris@…>, 10 years ago

Added log file creation

  • Property mode set to 100644
File size: 4.4 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/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 &gt; /etc/passwd &lt;&lt; "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>
56EOF</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 &gt; /etc/group &lt;&lt; "EOF"
70<literal>root:x:0:
71bin:x:&gid-bin;:
72sys:x:&gid-sys;:
73kmem:x:&gid-kmem;:
74tty:x:&gid-tty;:
75tape:x:&gid-tape;:
76daemon:x:&gid-daemon;:
77floppy:x:&gid-floppy;:
78disk:x:&gid-disk;:
79lp:x:&gid-lp;:
80dialout:x:&gid-dialout;:
81audio:x:&gid-audio;:
82video:x:&gid-video;:
83utmp:x:&gid-utmp;:
84usb:x:&gid-usb;:
85cdrom:x:&gid-cdrom;:
86adm:x:&gid-adm;:
87messagebus:x:&gid-messagebus;:
88mail:x:&gid-mail;:
89wheel:x:&gid-wheel;:
90nogroup:x:&gid-nogroup;:</literal>
91EOF</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}
106chgrp -v utmp /var/run/utmp /var/log/lastlog
107chmod -v 664 /var/run/utmp /var/log/lastlog
108chmod -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>
Note: See TracBrowser for help on using the repository browser.