aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Utley <jeremy@linuxfromscratch.org>2003-08-27 22:33:30 +0000
committerJeremy Utley <jeremy@linuxfromscratch.org>2003-08-27 22:33:30 +0000
commitcfd08b432de20ef7b9a7fac103379816aeb9a4b3 (patch)
treeab1c04950dfcc1f29bc5a632b2d2380138ed6905
parent96e0ac7d03930da807c04c30469c004c830c4a84 (diff)
Inetutils: Added --sysconfdir=/etc --localstatedir=/var and moved the ping binary from /usr/bin to /bin
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2685 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter01/changelog.xml5
-rw-r--r--chapter06/inetutils-inst.xml13
-rw-r--r--index.xml4
3 files changed, 19 insertions, 3 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 5fbc47e6e..dc86b70c7 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -6,6 +6,11 @@
<itemizedlist>
+<listitem><para>August 27, 2003 [jeremy] - Chapter 06 -
+Inetutils: Added --sysconfdir=/etc --localstatedir=/var
+and moved the ping binary from /usr/bin to /bin</para>
+</listitem>
+
<listitem><para>August 26, 2003 [jeremy] - Chapter 07 -
Creating /etc/hosts: Changed www.mydomain.org to
&lt;value of HOSTNAME&gt;.mydomain.org</para></listitem>
diff --git a/chapter06/inetutils-inst.xml b/chapter06/inetutils-inst.xml
index 080ce8411..b5b0a9935 100644
--- a/chapter06/inetutils-inst.xml
+++ b/chapter06/inetutils-inst.xml
@@ -6,7 +6,9 @@
<para>Prepare Inetutils to be compiled:</para>
<para><screen><userinput>./configure --prefix=/usr --disable-syslogd \
-&nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/sbin --disable-logger</userinput></screen></para>
+&nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/sbin --disable-logger \
+&nbsp;&nbsp;&nbsp;&nbsp;--sysconfdir=/etc --localstatedir=/var
+</userinput></screen></para>
<para>The meanings of the configure options are:</para>
@@ -19,6 +21,11 @@ installed with the Sysklogd package.</para></listitem>
prevents inetutils from installing the logger program, which is used by
scripts to pass messages to the System Log Daemon. We do not install it
because Util-linux installs a better version later.</para></listitem>
+
+<listitem><para><userinput>--sysconfdir=/etc</userinput>: This option
+tells the binaries created by the package to look in /etc for their
+configuration files</para></listitem>
+
</itemizedlist>
<para>Continue with compiling the package:</para>
@@ -29,5 +36,9 @@ because Util-linux installs a better version later.</para></listitem>
<para><screen><userinput>make install</userinput></screen></para>
+<para>Put the ping command into the appropriate place:</para>
+
+<para><screen><userinput>mv /usr/bin/ping /bin</userinput></screen></para>
+
</sect2>
diff --git a/index.xml b/index.xml
index 122aa5a66..9a7f0a3a7 100644
--- a/index.xml
+++ b/index.xml
@@ -4,8 +4,8 @@
<!ENTITY book SYSTEM "book/book.xml">
-<!ENTITY version "20030826">
-<!ENTITY releasedate "August 26th, 2003">
+<!ENTITY version "20030827">
+<!ENTITY releasedate "August 27th, 2003">
<!ENTITY nbsp " ">
<!ENTITY ftp-root "ftp://ftp.linuxfromscratch.org">