diff options
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/createfiles.xml | 7 | ||||
-rw-r--r-- | chapter06/glibc.xml | 13 | ||||
-rw-r--r-- | chapter06/mpfr.xml | 4 |
3 files changed, 12 insertions, 12 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 diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index 0b25d61cb..819a13dee 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -90,7 +90,6 @@ cd build</userinput></screen> <para>Prepare Glibc for compilation:</para> <screen><userinput remap="configure">../configure --prefix=/usr \ - --disable-profile \ --enable-kernel=&min-kernel; \ --enable-obsolete-rpc</userinput></screen> @@ -413,7 +412,7 @@ mkdir -pv /etc/ld.so.conf.d</userinput></screen> <seglistitem> <seg>catchsegv, gencat, getconf, getent, iconv, iconvconfig, ldconfig, - ldd, lddlibc4, locale, localedef, makedb, mtrace, nscd, pcprofiledump, + ldd, lddlibc4, locale, localedef, makedb, mtrace, nscd, pldd, rpcgen, sln, sotruss, sprof, tzselect, xtrace, zdump, and zic</seg> <seg>ld-&glibc-version;.so, libBrokenLocale.{a,so}, libSegFault.so, libanl.{a,so}, @@ -421,7 +420,7 @@ mkdir -pv /etc/ld.so.conf.d</userinput></screen> libcrypt.{a,so}, libdl.{a,so}, libg.a, libieee.a, libm.{a,so}, libmcheck.a, libmemusage.so, libnsl.{a,so}, libnss_compat.so, libnss_dns.so, libnss_files.so, libnss_hesiod.so, libnss_nis.so, - libnss_nisplus.so, libpcprofile.so, libpthread.{a,so}, + libnss_nisplus.so, libpthread.{a,so}, libpthread_nonshared.a, libresolv.{a,so}, librpcsvc.a, librt.{a,so}, libthread_db.so, and libutil.{a,so}</seg> <seg>/usr/include/arpa, /usr/include/bits, /usr/include/gnu, @@ -586,7 +585,7 @@ mkdir -pv /etc/ld.so.conf.d</userinput></screen> </indexterm> </listitem> </varlistentry> - +<!-- <varlistentry id="pcprofiledump"> <term><command>pcprofiledump</command></term> <listitem> @@ -596,7 +595,7 @@ mkdir -pv /etc/ld.so.conf.d</userinput></screen> </indexterm> </listitem> </varlistentry> - +--> <varlistentry id="pldd"> <term><command>pldd</command></term> <listitem> @@ -861,7 +860,7 @@ mkdir -pv /etc/ld.so.conf.d</userinput></screen> </indexterm> </listitem> </varlistentry> - +<!-- <varlistentry id="libpcprofile"> <term><filename class="libraryfile">libpcprofile</filename></term> <listitem> @@ -872,7 +871,7 @@ mkdir -pv /etc/ld.so.conf.d</userinput></screen> </indexterm> </listitem> </varlistentry> - +--> <varlistentry id="libpthread"> <term><filename class="libraryfile">libpthread</filename></term> <listitem> diff --git a/chapter06/mpfr.xml b/chapter06/mpfr.xml index 582e76bbe..b43c3d9aa 100644 --- a/chapter06/mpfr.xml +++ b/chapter06/mpfr.xml @@ -40,12 +40,12 @@ <sect2 role="installation"> <title>Installation of MPFR</title> - +<!-- <para>First, apply the following patch to fix various bugs that have been addressed upstream:</para> <screen><userinput remap="pre">patch -Np1 -i ../&mpfr-upstream-patch;</userinput></screen> - +--> <para>Prepare MPFR for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr \ |