dhclient script update and dhcp-gcc-3.4.3 patch, jdk symlink

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4632 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
DJ Lucas 2005-06-19 05:18:07 +00:00
parent d4eb6ba504
commit 61e058b61e
5 changed files with 30 additions and 5 deletions

View File

@ -62,7 +62,15 @@ cat > /etc/sysconfig/network-devices/ifconfig.eth0/dhclient << "EOF"
<literal>ONBOOT="yes"
SERVICE="dhclient"
DHCP_START="-q <replaceable>[add additional start parameters here]</replaceable>"
DHCP_STOP="-q -r <replaceable>[add additional stop parameters here]</replaceable>"</literal>
DHCP_STOP="-q -r <replaceable>[add additional stop parameters here]</replaceable>"
# Set PRINTIP="yes" to have the script print
# the DHCP assigned IP address
PRINTIP="no"
# Set PRINTALL="yes" to print the DHCP assigned values for
# IP, SM, DG, and 1st NS. This requires PRINTIP="yes".
PRINTALL="no"</literal>
EOF</userinput></screen>
<para>For more information on the appropriate

View File

@ -21,7 +21,7 @@
<!ENTITY publisher "Unknown">
<!ENTITY blfs-bootscripts-version "20050613">
<!ENTITY blfs-bootscripts-version "20050618">
<!ENTITY blfs-bootscripts-download "&downloads-root;/blfs-bootscripts-&blfs-bootscripts-version;.tar.bz2">
<!-- Part II -->

View File

@ -239,7 +239,8 @@ cd ../build/linux-i?86</userinput></screen>
install the <application>JDK</application>:</para>
<screen role="root"><userinput>cp -v -a j2sdk-image /opt/jdk/jdk-&jdk-src-version; &amp;&amp;
chown -v -R root:root /opt/jdk/jdk-&jdk-src-version;</userinput></screen>
chown -v -R root:root /opt/jdk/jdk-&jdk-src-version; &amp;&amp;
ln -sf motif21/libmawt.so /opt/jdk/jdk/jre/lib/i386/</userinput></screen>
<para>Restore the environment using the following commands:</para>
@ -302,6 +303,11 @@ unset ALT_CACERTS_FILE</userinput></screen>
certificate file to use (from the installed binary
<application>JDK</application>).</para>
<para><command>ln -sf motif21/libmawt.so
/opt/jdk/jdk/jre/lib/i386/</command>: This fixes linking issues with
other applications that expect to find the <application>motif</application>
libraries with the other <application>JDK</application> libraries.</para>
</sect2>
<sect2 role="configuration">

View File

@ -24,6 +24,12 @@
<itemizedlist>
<listitem>
<para>Jun 18th, 2005 [dj]: Added dhcp-3.0.2-gcc_3.4.3-2.patch,
updated dhclient instructions to print settings obtained in
bootscript, and added libmawt.so symlink to JDK instructions.</para>
</listitem>
<listitem>
<para>June 18th, 2005 [djensen]: Updated to Fluxbox-0.9.13</para>
</listitem>

View File

@ -63,7 +63,7 @@
<para><xref linkend="net-tools"/> (you may omit
<application>net-tools</application> by using the following patch
to utilize <application>iproute2</application>:
<ulink url="&patch-root;/dhcp-&dhcp-version;-iproute2-2.patch"/>)</para>
<ulink url="&patch-root;/dhcp-&dhcp-version;-iproute2-3.patch"/>)</para>
</sect2>
@ -83,10 +83,15 @@
<sect2 role="installation">
<title>Installation of DHCP</title>
<para>If you chose not to install net-tools, apply the
iproute2 patch:</para>
<screen><userinput>patch -Np1 -i ../dhcp-&dhcp-version;-iproute2-3.patch</userinput></screen>
<para>Install <application>DHCP</application> by running
the following commands:</para>
<screen><userinput>patch -Np1 -i ../dhcp-&dhcp-version;-iproute2-2.patch &amp;&amp;
<screen><userinput>patch -Np1 -i ../dhcp-&dhcp-version;-gcc_3.4.3-2.patch &amp;&amp;
./configure &amp;&amp;
make</userinput></screen>