Changeset 2bbb5bda


Ignore:
Timestamp:
11/22/2002 12:31:25 AM (21 years ago)
Author:
Billy O 'Connor <billyoc@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 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, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2bf01d4
Parents:
17ad2b3d
Message:

Version increment and FHS ./configure opts.

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

Location:
server/other/samba
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • server/other/samba/samba-config.xml

    r17ad2b3d r2bbb5bda  
    11<sect2>
    22<title>Configuring Samba</title>
    3 <para>We will configure 1 Samba server(SAMBABOX) to act as a primary
    4 domain controller, as well as configure 1 domain client running
     3<para>We will configure one Samba server (SAMBABOX) to act as a primary
     4domain controller, as well as configure one domain client running
    55Windows 2000 Server(WIN2KBOX) and acting as a member server of the
    66domain.  Detailed instructions will be given for adding WIN2KBOX to
    77the domain due to the extra steps necessary.  Instructions for adding
    88Windows 95/98/XP clients can be found in the newly installed
    9 documentation by pointing a web browser to : </para>
    10 
    11 <para><screen><userinput>
    12 file:///var/www/swat/using_samba/ch03_01.html#ch03-55770
     9documentation by pointing a web browser to:</para>
     10
     11<para><screen><userinput>
     12file:///usr/share/samba/swat/using_samba/ch03_01.html#ch03-55770
    1313.</userinput></screen></para>
    1414
  • server/other/samba/samba-desc.xml

    r17ad2b3d r2bbb5bda  
    55<userinput>make_smbcodepage</userinput>,
    66<userinput>make_unicodemap</userinput>,
     7<userinput>mount.smbfs</userinput>,
    78<userinput>nmbd</userinput>,
    89<userinput>nmblookup</userinput>,
     
    3132<para>make_unicodemap converts text unicode map files to binary, for
    3233use in mapping characters to 16 bit unicode.</para></sect3>
     34<sect3><title>mount.smbfs</title>
     35<para>mount.smbfs provides /bin/mount with a way to mount remote
     36windows (or samba) fileshares</para></sect3>
    3337<sect3><title>nmbd</title>
    3438<para>nmbd is the Samba NetBIOS name server.</para></sect3>
  • server/other/samba/samba-exp.xml

    r17ad2b3d r2bbb5bda  
    22<title>Installation command explanations</title>
    33
    4 <para><screen><userinput>mkdir /var/www
    5 mkdir /var/www/swat :</userinput></screen>
    6 Directories needed for Samba Web Administration tool.</para>
     4<para><screen><userinput>mkdir -p /etc/samba/private
     5mkdir -p /var/cache/samba :</userinput></screen>
     6Directories needed for proper operation of the smbd and nmbd daemons.</para>
    77
    8 <para><userinput>--sysconfigdir=/etc/samba :</userinput> Samba configuration file directory.</para>
     8<para><userinput>--prefix=/usr :</userinput> Sets the prefix for almost all the file paths to /usr.</para>
    99
    10 <para><userinput>--with-privatedir=/etc/samba/private :</userinput> Location of Samba <filename>smbpasswd</filename> and <filename>secrets.tdb</filename> file.</para>
     10<para><userinput>--sysconfdir=/etc :</userinput> Sets the configuration file directory to avoid the default of /usr/etc.</para>
    1111
    12 <para><userinput>--with-swatdir=/var/www/swat :</userinput> Location of Samba Web Administration Tool files.</para>
     12<para><userinput>--localstatedir=/var :</userinput> Sets the variable data directory to avoid the default of /usr/var.</para>
     13
     14<para><userinput>--with-fhs :</userinput> Assigns all other file paths in a manner compliant with the Filesystem Hierarchy Standard.</para>
     15
     16<para><userinput>--with-smbmount :</userinput> Orders the creation of an extra binary for use by the mount command so that mounting remote SMB (windows) shares becomes no more complex than mounting remote NFS shares.</para>
     17
     18<para><userinput>rm -rf /usr/private : </userinput> Removes a directory erroneously created by source/scripts/installbin.sh during the make install.</para>
    1319
    1420</sect2>
  • server/other/samba/samba-inst.xml

    r17ad2b3d r2bbb5bda  
    88
    99<para><screen><userinput>
    10 mkdir /var/www &&
    11 mkdir /var/www/swat &&
     10mkdir -p /etc/samba/private &&
     11mkdir -p /var/cache/samba &&
    1212./configure \
    1313   --prefix=/usr \
    14    --with-logfilebase=/var/log \
    15    --libexecdir=/usr \
    16    --sysconfdir=/etc/samba \
    17    --with-privatedir=/etc/samba/private \
    18    --with-lockdir=/var/lock \
    19    --with-piddir=/var/run \
    20    --with-swatdir=/var/www/swat \
    21    --with-configdir=/etc/samba &amp;&amp;
     14   --sysconfdir=/etc \
     15   --localstatedir=/var \
     16   --with-fhs \
     17   --with-smbmount &amp;&amp;
    2218make &amp;&amp;
    2319make install &amp;&amp;
    24 mkdir /etc/samba &amp;&amp;
    25 mkdir /etc/samba/private &amp;&amp;
     20mv /usr/bin/smbmount /usr/bin/mount.smbfs &amp;&amp;
     21rm -rf /usr/private &amp;&amp;
     22echo "swat 901/tcp" >> /etc/services &amp;&amp;
     23echo "swat stream tcp nowait.400 root /usr/sbin/swat swat" >> \
     24   /etc/inetd.conf
    2625</userinput></screen></para>
    2726</sect2>
  • server/other/samba/samba.ent

    r17ad2b3d r2bbb5bda  
    77<!ENTITY samba-config SYSTEM "samba-config.xml">
    88<!ENTITY samba-buildsize "37 MB">
    9 <!ENTITY samba-version "2.2.6">
     9<!ENTITY samba-version "2.2.7">
    1010<!ENTITY samba-download-http
    11 "http://us1.samba.org/samba/ftp/samba-latest.tar.gz">
     11"http://us1.samba.org/samba/ftp/samba-&samba-version;.tar.gz">
    1212<!ENTITY samba-download-ftp "">
    1313<!ENTITY samba-size "5.3 MB">
Note: See TracChangeset for help on using the changeset viewer.