Changeset b5d1d872


Ignore:
Timestamp:
04/12/2005 08:34:43 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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:
780aa528
Parents:
dab5bda
Message:

Updated to Samba-3.0.13

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rdab5bda rb5d1d872  
    255255<!-- rsync (chaptet 18) -->         
    256256<!ENTITY openldap-version             "2.2.24">
    257 <!ENTITY samba3-version               "3.0.11">
     257<!ENTITY samba3-version               "3.0.13">
    258258<!ENTITY xinetd-version               "2.3.13">
    259259                                     
  • introduction/welcome/changelog.xml

    rdab5bda rb5d1d872  
    2222
    2323<itemizedlist>
     24
     25<listitem><para>April 12th, 2005 [randy]: Updated to
     26Samba-3.0.13.</para></listitem>
    2427
    2528<listitem><para>April 12th, 2005 [bdubbs]: Finish server reorganization.
  • server/major/samba3.xml

    rdab5bda rb5d1d872  
    77<!ENTITY samba3-download-http "http://us1.samba.org/samba/ftp/samba-&samba3-version;.tar.gz">
    88<!ENTITY samba3-download-ftp "ftp://ftp.samba.org/pub/samba/samba-&samba3-version;.tar.gz">
    9 <!ENTITY samba3-md5sum "217e489646a474b4fb69d5802c14bc6e">
    10 <!ENTITY samba3-size "15.3 MB">
    11 <!ENTITY samba3-buildsize "143 MB">
    12 <!ENTITY samba3-time "2.12 SBU">
     9<!ENTITY samba3-md5sum "262c9f8b2f2d6910f5b3472e215eddf6">
     10<!ENTITY samba3-size "15.5 MB">
     11<!ENTITY samba3-buildsize "230 MB">
     12<!ENTITY samba3-time "3.07 SBU">
    1313]>
    1414
     
    7979
    8080<screen><userinput><command>cd source &amp;&amp;
    81 install -d /var/cache/samba &amp;&amp;
    8281./configure \
    8382    --prefix=/usr \
     
    9190<para>Now, as the root user:</para>
    9291
    93 <screen><userinput role='root'><command>make install &amp;&amp;
    94 mv /usr/lib/samba/libsmbclient.so /usr/lib &amp;&amp;
    95 ln -sf ../libsmbclient.so /usr/lib/samba &amp;&amp;
    96 chmod 644 /usr/include/libsmbclient.h \
    97           /usr/lib/samba/libsmbclient.a &amp;&amp;
    98 install -m755 nsswitch/libnss_win{s,bind}.so /lib &amp;&amp;
    99 ln -sf libnss_winbind.so /lib/libnss_winbind.so.2 &amp;&amp;
    100 ln -sf libnss_wins.so /lib/libnss_wins.so.2 &amp;&amp;
    101 cp ../examples/smb.conf.default /etc/samba &amp;&amp;
    102 install -m644 ../docs/*.pdf /usr/share/samba &amp;&amp;
     92<screen><userinput role='root'><command>install -v -m755 -d /var/cache/samba &amp;&amp;
     93make install &amp;&amp;
     94mv -v /usr/lib/samba/libsmbclient.so /usr/lib &amp;&amp;
     95ln -v -sf ../libsmbclient.so /usr/lib/samba &amp;&amp;
     96chmod -v 644 /usr/include/libsmbclient.h &amp;&amp;
     97install -v -m755 nsswitch/libnss_win{s,bind}.so /lib &amp;&amp;
     98ln -v -sf libnss_winbind.so /lib/libnss_winbind.so.2 &amp;&amp;
     99ln -v -sf libnss_wins.so /lib/libnss_wins.so.2 &amp;&amp;
    103100if [ -f nsswitch/pam_winbind.so ]; then
    104     install -m755 nsswitch/pam_winbind.so /lib/security
    105 fi</command></userinput></screen>
     101    install -v -m755 nsswitch/pam_winbind.so /lib/security
     102fi &amp;&amp;
     103install -v -m644 ../examples/smb.conf.default /etc/samba &amp;&amp;
     104install -v -m644 ../docs/*.pdf /usr/share/samba</command></userinput></screen>
    106105
    107106<note><para>You may want to run <command>configure</command> with the
     
    113112<sect2>
    114113<title>Command explanations</title>
    115 
    116 <para><command>install -d /var/cache/samba</command>: This directory is
    117 needed for proper operation of the <command>smbd</command> and
    118 <command>nmbd</command> daemons.</para>
    119114
    120115<para><parameter>--sysconfdir=/etc</parameter>: Sets the configuration
     
    142137<command>man winbindd</command>.</para>
    143138
    144 <para><command>mv /usr/lib/samba/libsmbclient.so ...; ln -sf
     139<para><command>install -v -d /var/cache/samba</command>: This directory is
     140needed for proper operation of the <command>smbd</command> and
     141<command>nmbd</command> daemons.</para>
     142
     143<para><command>mv -v /usr/lib/samba/libsmbclient.so ...; ln -v -sf
    145144../libsmbclient.so ...</command>: The
    146145<filename class='libraryfile'>libsmbclient.so</filename> library is needed
     
    148147can find it.</para>
    149148
    150 <para><command>install -m755 nsswitch/libnss_win{s,bind}.so /lib</command>:
     149<para><command>install -v -m755 nsswitch/libnss_win{s,bind}.so /lib</command>:
    151150The nss libraries are not installed by default.  If you intend to use
    152151winbindd for domain auth, and/or <acronym>WINS</acronym> name resolution,
    153152you need these libraries.</para>
    154153
    155 <para><command>ln -sf libnss_winbind.so /lib/libnss_winbind.so.2</command>
     154<para><command>ln -v -sf libnss_winbind.so /lib/libnss_winbind.so.2</command>
    156155and <command>ln -sf libnss_wins.so /lib/libnss_wins.so.2</command>:
    157 These symlinks are required by glibc to use the nss libraries.</para>
    158 
    159 <para><command>cp ../examples/smb.conf.default /etc/samba</command>:
    160 This copies a default <filename>smb.conf </filename>into
     156These symlinks are required by glibc to use the <acronym>NSS</acronym>
     157libraries.</para>
     158
     159<para><command>install -v -m644 ../examples/smb.conf.default
     160/etc/samba</command>: This copies a default <filename>smb.conf</filename> into
    161161<filename>/etc/samba</filename>.  This sample configuration will not
    162162work unless edited for your site, and renamed
     
    220220for basic configuration of the <application>Samba</application> installation, 
    221221but because it may be inconvenient, undesireable or perhaps even impossible
    222 to gain access to the console, BLFS recommends setting up access to
    223 <acronym>SWAT</acronym> using <application>Stunnel</application>.</para>
     222to gain access to the console, <acronym>BLFS</acronym> recommends setting up
     223access to <acronym>SWAT</acronym> using
     224<application>Stunnel</application>.</para>
    224225<indexterm zone="samba3 samba3-swat-config">
    225226<primary sortas="g-SWAT">SWAT</primary></indexterm>
     
    249250
    250251<para>If <command>inetd</command> is used, the following command will add the
    251 swat_tunnel entry to <filename>/etc/inetd.conf</filename> (as user root):</para>
     252swat_tunnel entry to <filename>/etc/inetd.conf</filename> (as user
     253root):</para>
    252254
    253255<screen><userinput role='root'><command>echo "swat_tunnel stream tcp nowait.400 root /usr/sbin/swat swat" \
     
    256258changed <filename>inetd.conf</filename> file.</para>
    257259
    258 <para>If you use <command>xinetd</command>, the following command will create the
    259 <application>Samba</application> file as <filename>/etc/xinetd.d/swat_tunnel</filename>:
    260 (you may need to modify or remove the
    261 <quote>only_from</quote> line to include the desired host[s]):</para>
     260<para>If you use <command>xinetd</command>, the following command will create
     261the <application>Samba</application> file as
     262<filename>/etc/xinetd.d/swat_tunnel</filename> (you may need to modify or
     263remove the <quote>only_from</quote> line to include the desired
     264host[s]):</para>
    262265
    263266<screen><userinput role='root'><command>cat &gt;&gt; /etc/xinetd.d/swat_tunnel &lt;&lt; "EOF"</command>
     
    330333root user:</para>
    331334
    332 <screen><userinput><command>ln -sf /usr/bin/smbspool /usr/lib/cups/backend/smb</command></userinput></screen>
     335<screen><userinput><command>ln -v -sf /usr/bin/smbspool /usr/lib/cups/backend/smb</command></userinput></screen>
    333336</sect3>
    334337
     
    377380smbmount, smbpasswd, smbspool, smbstatus, smbtar, smbtree, smbumount, swat,
    378381tdbbackup, tdbdump, tdbtool, testparm, testprns, wbinfo and winbindd</seg>
    379 <seg>libnss_winbind.so, libnss_wins.so, libsmbclient.[so,a], the
     382<seg>libnss_winbind.so, libnss_wins.so, libsmbclient.so, the
    380383pam_winbind.so <acronym>PAM</acronym> library and assorted character set,
    381384filesystem and support modules.</seg>
     
    661664</indexterm></listitem>
    662665</varlistentry>
    663 
    664666</variablelist>
    665667
Note: See TracChangeset for help on using the changeset viewer.