Changeset d40e1a4 for networking


Ignore:
Timestamp:
11/29/2011 03:53:39 AM (12 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
cda0a69
Parents:
dc0d766
Message:

Added rpcbind-0.2.0
Changed libtirpc to install dynamic libraries in /lib
Partial changes to TeX Live

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@9030 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
networking
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • networking/netlibs/libtirpc.xml

    rdc0d766 rd40e1a4  
    8888    <title>Installation of libtirpc</title>
    8989
     90    <para>Glibc-2.14 and later do not install NIS and RPC related headers by
     91    default.  If needed, install them here:</para>
     92
     93<screen><userinput>if [ ! -r /usr/include/rpc/rpc.h ]; then
     94   tar -xvf ../rpcnis-headers.tar.bz2 -C /usr/include
     95fi</userinput></screen>
     96
    9097    <para>Install <application>libtirpc</application> by running the following
    9198    commands:</para>
    9299
    93 <screen><userinput>tar -xvf ../rpcnis-headers.tar.bz2 -C /usr/include &amp;&amp;
    94 patch -Np1 -i ../libtirpc-&libtirpc-version;-remove-nis-2.patch &amp;&amp;
    95 autoreconf                &amp;&amp;
    96 ./configure --prefix=/usr &amp;&amp;
     100<screen><userinput>patch -Np1 -i ../libtirpc-&libtirpc-version;-remove-nis-2.patch &amp;&amp;
     101autoreconf                              &amp;&amp;
     102./configure --prefix=/usr --libdir=/lib &amp;&amp;
    97103make</userinput></screen>
    98104
     
    101107    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    102108
    103 <screen role='root'><userinput>make install</userinput></screen>
     109<screen role='root'><userinput>make pkgconfigdir=/usr/lib/pkgconfig install &amp;&amp;
     110mv -v /lib/libtirpc.*a /usr/lib</userinput></screen>
    104111
    105112  </sect2>
     
    108115    <title>Command Explanations</title>
    109116
    110     <para><userinput>tar -xvf ../rpcnis-headers.tar.bz2 -C
    111     /usr/include</userinput>: This command replaces the rpc and nis header
    112     files no longer installed by <application>glibc</application>.  If the
    113     headers have already been added by other means, this will only overwrite
    114     them and not do any harm.</para>
    115 
    116117    <para><userinput>patch -Np1 -i
    117118    ../libtirpc-&libtirpc-version;-remove-nis-2.patch</userinput>: This patch
    118119    removes references to nis functions no longer in
    119120    <application>glibc</application>.</para>
     121
     122    <para><option>--libdir=/lib</option>: Since this library may be used before
     123    /usr is mounted, place the library in /lib.</para>
     124
     125    <para><option>pkgconfigdir=/usr/lib/pkgconfig</option>: Ensure the .pc file
     126    is placed in the proper location.</para>
     127
     128    <para><option>mv -v /lib/libtirpc.*a</option>: Static libraries and .la files
     129    belong in /usr/lib.</para>
    120130
    121131  </sect2>
  • networking/netprogs/netprogs.xml

    rdc0d766 rd40e1a4  
    2727<!--  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ncpfs.xml"/> -->
    2828  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="net-tools.xml"/>
    29 <!--  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="nfs-utils.xml"/> -->
     29  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="nfs-utils.xml"/>
    3030<!--  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="nfs-utils-client.xml"/> -->
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="netfs.xml"/>
    3232  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ntp.xml"/>
    3333  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="portmap.xml"/>
     34  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="rpcbind.xml"/>
    3435<!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="rsync-client.xml"/> -->
    3536  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="rsync.xml"/>
     
    3738<!--  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="samba3-client.xml"/> -->
    3839<!--  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="subversion.xml"/> -->
    39 <!--  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="tcpwrappers.xml"/> -->
    4040  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="wget.xml"/>
    4141  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="wireless-tools.xml"/>
  • networking/netprogs/nfs-utils.xml

    rdc0d766 rd40e1a4  
    77  <!ENTITY nfs-utils-download-http "&sourceforge-repo;/nfs/nfs-utils-&nfs-utils-version;.tar.bz2">
    88  <!ENTITY nfs-utils-download-ftp  " ">
    9   <!ENTITY nfs-utils-md5sum        "3ed5b9cb73fd1c9b358c7bfa7a6ae150">
    10   <!ENTITY nfs-utils-size          "574 KB">
    11   <!ENTITY nfs-utils-buildsize     "8.2 MB">
     9  <!ENTITY nfs-utils-md5sum        "8395ac770720b83c5c469f88306d7765">
     10  <!ENTITY nfs-utils-size          "688 KB">
     11  <!ENTITY nfs-utils-buildsize     "14 MB">
    1212  <!ENTITY nfs-utils-time          "0.2 SBU">
    1313]>
     
    3535    network.</para>
    3636
     37    &lfs70_checked;
     38
    3739    <bridgehead renderas="sect3">Package information</bridgehead>
    3840    <itemizedlist spacing='compact'>
     
    7072
    7173    <bridgehead renderas="sect4">Required</bridgehead>
    72     <para role="required"><xref linkend="portmap"/> (Runtime dependency)</para>
     74    <para role="required"><xref linkend="rpcbind"/> (Runtime dependency)</para>
    7375
    7476    <bridgehead renderas="sect4">Optional</bridgehead>
     
    147149    the following commands:</para>
    148150
    149 <screen><userinput>./configure --prefix=/usr \
     151<screen><userinput>./configure --prefix=/usr     \
    150152            --sysconfdir=/etc \
    151             --disable-nfsv4 \
     153            --disable-nfsv4   \
     154            --disable-nfsv41  \
    152155            --disable-gss &amp;&amp;
    153156make</userinput></screen>
     
    170173    <title>Command Explanations</title>
    171174
    172     <para><parameter>--disable-nfsv4</parameter>: Disables support
    173     for NFS version 4.</para>
     175    <para><parameter>--disable-nfsv4</parameter> and
     176          <parameter>--disable-nfsv41</parameter>: Disables support
     177    for NFS version 4 and version 4.1.</para>
    174178
    175179    <para><parameter>--disable-gss</parameter>: Disables support for
     
    296300
    297301      <seglistitem>
    298         <seg>exportfs, mount.nfs, mount.nfs4, nfsstat, rpc.mountd, rpc.nfsd, rpc.statd, rpcdebug,
    299         showmount, sm-notify, start-statd and umount.nfs as well as umount.nfs4</seg>
     302        <seg>exportfs, mountstats, mount.nfs, mount.nfs4 (link to mount.nfs),
     303        nfsiostat, nfsstat, rpc.mountd, rpc.nfsd, rpc.statd, rpcdebug,
     304        showmount, sm-notify, start-statd, umount.nfs (link to mount.nfs),
     305        and umount.nfs4  (link to mount.nfs)</seg>
    300306        <seg>None</seg>
    301307        <seg>/var/lib/nfs</seg>
     
    318324      </varlistentry>
    319325
     326      <varlistentry id="mountstats">
     327        <term><command>mountstats</command></term>
     328        <listitem>
     329          <para>displays NFS client per-mount statistics.</para>
     330          <indexterm zone="nfs-utils mountstats">
     331            <primary sortas="b-mountstats">mountstats</primary>
     332          </indexterm>
     333        </listitem>
     334      </varlistentry>
     335
    320336      <varlistentry id="mountnfs">
    321337        <term><command>mount.nfs</command></term>
     
    338354      </varlistentry>
    339355
     356      <varlistentry id="nfsiostat-nfs-utils">
     357        <term><command>nfsiostat</command></term>
     358        <listitem>
     359          <para>Report input/output statistics for network filesystems.</para>
     360          <indexterm zone="nfs-utils nfsiostat-nfs-utils">
     361            <primary sortas="b-nfsiostat-nfs-utils">nfsiostat</primary>
     362          </indexterm>
     363        </listitem>
     364      </varlistentry>
     365
    340366      <varlistentry id="nfsstat">
    341367        <term><command>nfsstat</command></term>
    342368        <listitem>
    343           <para>prints NFS statistics.</para>
     369          <para>displays statistics kept about NFS client and server activity.</para>
    344370          <indexterm zone="nfs-utils nfsstat">
    345371            <primary sortas="b-nfsstat">nfsstat</primary>
Note: See TracChangeset for help on using the changeset viewer.