Changeset 03e6a40 for BOOK/chroot/common/pwdgroup.xml
- Timestamp:
- Apr 20, 2014, 8:57:39 AM (11 years ago)
- Children:
- 0be79ea
- Parents:
- 88ef769 (diff), 578ca586 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/chroot/common/pwdgroup.xml
r88ef769 r03e6a40 9 9 <?dbhtml filename="pwdgroup.html"?> 10 10 11 <title>Creating the passwd , group, and logFiles</title>11 <title>Creating the passwd and group Files</title> 12 12 13 13 <indexterm zone="ch-chroot-pwdgroup"> … … 17 17 <indexterm zone="ch-chroot-pwdgroup"> 18 18 <primary sortas="e-/etc/group">/etc/group</primary> 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>35 19 </indexterm> 36 20 … … 44 28 <screen><userinput>cat > /etc/passwd << "EOF" 45 29 <literal>root:x:&uid-root;:&gid-root;:root:/root:/bin/bash</literal> 30 <literal>bin:x:&uid-bin;:&gid-bin;:/bin:/bin/false</literal> 31 <literal>daemon:x:&uid-daemon;:&gid-daemon;:/sbin:/bin/false</literal> 32 <literal>messagebus:x:&uid-messagebus;:&gid-messagebus;:D-Bus Message Daemon User:/dev/null:/bin/false</literal> 33 <literal>nobody:x:&uid-nobody;:&gid-nogroup;:Unprivileged User:/dev/null:/bin/false</literal> 46 34 EOF</userinput></screen> 47 35 … … 73 61 utmp:x:&gid-utmp;: 74 62 usb:x:&gid-usb;: 75 cdrom:x:&gid-cdrom;:</literal> 63 cdrom:x:&gid-cdrom;: 64 adm:x:&gid-adm;: 65 messagebus:x:&gid-messagebus;: 66 systemd-journal:x:&gid-systemd-journal;: 67 mail:x:&gid-mail;: 68 wheel:x:&gid-wheel;: 69 nogroup:x:&gid-nogroup;:</literal> 76 70 EOF</userinput></screen> 77 71 … … 99 93 for the duration of the next chapters.</para> 100 94 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/lastlog107 chmod -v 664 /var/run/utmp /var/log/lastlog108 chmod -v 600 /var/log/btmp</userinput></screen>109 110 <para>The <filename>/var/run/utmp</filename> file records the users that111 are currently logged in. The <filename>/var/log/wtmp</filename> file records112 all logins and logouts. The <filename>/var/log/lastlog</filename> file113 records when each user last logged in. The <filename>/var/log/btmp</filename>114 file records the bad login attempts.</para>115 116 95 </sect1>
Note:
See TracChangeset
for help on using the changeset viewer.