Changes in BOOK/chroot/common/pwdgroup.xml [24b004c:dabbced]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/chroot/common/pwdgroup.xml
r24b004c rdabbced 9 9 <?dbhtml filename="pwdgroup.html"?> 10 10 11 <title>Creating the passwd and groupFiles</title>11 <title>Creating the passwd, group, and log Files</title> 12 12 13 13 <indexterm zone="ch-chroot-pwdgroup"> 14 14 <primary sortas="e-/etc/passwd">/etc/passwd</primary> 15 <secondary>chroot</secondary>16 15 </indexterm> 17 16 18 17 <indexterm zone="ch-chroot-pwdgroup"> 19 18 <primary sortas="e-/etc/group">/etc/group</primary> 20 <secondary>chroot</secondary> 19 </indexterm> 20 21 <indexterm zone="ch-chroot-pwdgroup"> 22 <primary sortas="e-/var/run/utmp">/var/run/utmp</primary> 23 </indexterm> 24 25 <indexterm zone="ch-chroot-pwdgroup"> 26 <primary sortas="e-/var/log/btmp">/var/log/btmp</primary> 27 </indexterm> 28 29 <indexterm zone="ch-chroot-pwdgroup"> 30 <primary sortas="e-/var/log/lastlog">/var/log/lastlog</primary> 31 </indexterm> 32 33 <indexterm zone="ch-chroot-pwdgroup"> 34 <primary sortas="e-/var/log/wtmp">/var/log/wtmp</primary> 21 35 </indexterm> 22 36 … … 24 38 href="../../boot/common/pwdgroup.xml" 25 39 xpointer="xpointer(//*[@os='a'])"/> 26 40 27 41 <para>Create the <filename>/etc/passwd</filename> file by running the 28 42 following command:</para> … … 30 44 <screen><userinput>cat > /etc/passwd << "EOF" 31 45 <literal>root:x:&uid-root;:&gid-root;:root:/root:/bin/bash</literal> 32 <literal>bin:x:&uid-bin;:&gid-bin;:/bin:/bin/false</literal>33 <literal>daemon:x:&uid-daemon;:&gid-daemon;:/sbin:/bin/false</literal>34 <literal>messagebus:x:&uid-messagebus;:&gid-messagebus;:D-Bus Message Daemon User:/dev/null:/bin/false</literal>35 <literal>nobody:x:&uid-nobody;:&gid-nogroup;:Unprivileged User:/dev/null:/bin/false</literal>36 46 EOF</userinput></screen> 37 47 … … 63 73 utmp:x:&gid-utmp;: 64 74 usb:x:&gid-usb;: 65 cdrom:x:&gid-cdrom;: 66 adm:x:&gid-adm;: 67 messagebus:x:&gid-messagebus;: 68 systemd-journal:x:&gid-systemd-journal;: 69 mail:x:&gid-mail;: 70 wheel:x:&gid-wheel;: 71 nogroup:x:&gid-nogroup;:</literal> 75 cdrom:x:&gid-cdrom;:</literal> 72 76 EOF</userinput></screen> 73 77 … … 95 99 for the duration of the next chapters.</para> 96 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><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 <para>The <filename>/var/run/utmp</filename> file records the users that 111 are currently logged in. The <filename>/var/log/wtmp</filename> file records 112 all logins and logouts. The <filename>/var/log/lastlog</filename> file 113 records when each user last logged in. The <filename>/var/log/btmp</filename> 114 file records the bad login attempts.</para> 115 97 116 </sect1>
Note:
See TracChangeset
for help on using the changeset viewer.