diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2016-03-09 04:50:28 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2016-03-09 04:50:28 +0000 |
commit | 5bf238b8b413a43d2539d435e4ab3387299b8541 (patch) | |
tree | c7ee4462fc45313c33e6e968e6a586be1f04a77c /chapter06/createfiles.xml | |
parent | 30bd808c2c16df09d668e73d4811370b69fdec4e (diff) |
Update to mpfr-3.1.4.
Update to linux-4.4.4.
Update to pkg-config-0.29.1.
Update to tcl-6.8.5.
Remove --disable-profile from Glibc instructions.
Create /var/log/faillog.
Remove --enable-obsolete-rpc from Chapter 5 glibc
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11034 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/createfiles.xml')
-rw-r--r-- | chapter06/createfiles.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chapter06/createfiles.xml b/chapter06/createfiles.xml index 152dd31b4..842336ab2 100644 --- a/chapter06/createfiles.xml +++ b/chapter06/createfiles.xml @@ -221,15 +221,16 @@ EOF</userinput></screen> do not already exist. Initialize the log files and give them proper permissions:</para> -<screen><userinput>touch /var/log/{btmp,lastlog,wtmp} +<screen><userinput>touch /var/log/{btmp,lastlog,faillog,wtmp} chgrp -v utmp /var/log/lastlog chmod -v 664 /var/log/lastlog chmod -v 600 /var/log/btmp</userinput></screen> <para>The <filename>/var/log/wtmp</filename> file records all logins and logouts. The <filename>/var/log/lastlog</filename> file records when each - user last logged in. The <filename>/var/log/btmp</filename> file records the - bad login attempts.</para> + user last logged in. The <filename>/var/log/faillog</filename> file records + failed login attempts. The <filename>/var/log/btmp</filename> file records + the bad login attempts.</para> <note><para>The <filename>/run/utmp</filename> file records the users that are currently logged in. This file is created dynamically in the boot |