source: chapter06/pwdgroup.xml@ 360e2c4

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v5_0 v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 360e2c4 was 360e2c4, checked in by Alex Gronenwoud <alex@…>, 21 years ago

Adding some markup and doing miscellaneous shuffles.

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

  • Property mode set to 100644
File size: 2.2 KB
Line 
1<sect1 id="ch06-pwdgroup">
2<title>Creating the passwd and group files</title>
3<?dbhtml filename="pwdgroup.html" dir="chapter06"?>
4
5<para>In order for <emphasis>root</emphasis> to be able to login and for the
6name "root" to be recognized, there need to be relevant entries in the
7<filename>/etc/passwd</filename> and <filename>/etc/group</filename> files.</para>
8
9<para>Create the <filename>/etc/passwd</filename> file by running the following
10command:</para>
11
12<screen><userinput>cat &gt; /etc/passwd &lt;&lt; "EOF"</userinput>
13root:x:0:0:root:/root:/bin/bash
14<userinput>EOF</userinput></screen>
15
16<para>The actual password for <emphasis>root</emphasis> (the "x" here is just a
17placeholder) will be set later.</para>
18
19<para>Create the <filename>/etc/group</filename> file by running the following
20command:</para>
21
22<screen><userinput>cat &gt; /etc/group &lt;&lt; "EOF"</userinput>
23root:x:0:
24bin:x:1:
25sys:x:2:
26kmem:x:3:
27tty:x:4:
28tape:x:5:
29daemon:x:6:
30floppy:x:7:
31disk:x:8:
32lp:x:9:
33dialout:x:10:
34audio:x:11:
35<userinput>EOF</userinput></screen>
36
37<para>The created groups aren't part of any standard -- they are the groups
38that the MAKEDEV script in the next section uses. Besides the group "root", the
39LSB (<ulink url="http://www.linuxbase.org"/>) recommends only a group "bin",
40with a GID of 1, be present. All other group names and GIDs can be chosen
41freely by the user, as well-written packages don't depend on GID numbers but
42use the group's name.</para>
43
44<para>Lastly, we re-login to the chroot environment. User name and group name
45resolution will start working immediately after the
46<filename>/etc/passwd</filename> and <filename>/etc/group</filename> files are
47created, because we installed a full Glibc in Chapter 5. This will get rid of
48the <quote>I have no name!</quote> prompt.</para>
49
50<screen><userinput>exec /tools/bin/bash --login +h</userinput></screen>
51
52<para>Note the use of the <userinput>+h</userinput> directive. This tells
53<userinput>bash</userinput> not to use its internal path hashing. Without this
54directive, <userinput>bash</userinput> would remember the paths to binaries it
55has executed. Since as we go through this chapter, we want to use our newly
56compiled binaries as soon as they are installed, we turn off this function.</para>
57
58</sect1>
59
Note: See TracBrowser for help on using the repository browser.