Changeset 40330fcd


Ignore:
Timestamp:
09/24/2003 01:20:44 AM (21 years ago)
Author:
Larry Lawrence <larry@…>
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, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
cce6b02e
Parents:
19234f1
Message:

update samba intro

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

Location:
server/other
Files:
21 edited

Legend:

Unmodified
Added
Removed
  • server/other/bind.xml

    r19234f1 r40330fcd  
    11<sect1 id="bind" xreflabel="bind-&bind-version;">
    22<?dbhtml filename="bind.html" dir="server"?>
    3 <title>BIND &bind-version;</title>
     3<title><acronym>BIND</acronym>-&bind-version;</title>
    44
    55&bind-intro;
  • server/other/cvsserver/cvsserver-intro.xml

    r19234f1 r40330fcd  
    55a <acronym>CVS</acronym> server.</para>
    66
    7 <screen>CVS server depends on:
    8 <xref linkend="cvs"/> and <xref linkend="openssh"/>
    9 </screen>
     7<sect3><title><application>template</application> dependencies</title>
     8<sect4><title>Required</title>
     9<para><xref linkend="cvs"/> and <xref linkend="openssh"/></para></sect4>
     10</sect3>
    1011
    1112</sect2>
  • server/other/dhcp.xml

    r19234f1 r40330fcd  
    1 <sect1 id="dhcp" xreflabel="dhcp-&dhcp-version;">
     1<sect1 id="dhcp" xreflabel="DHCP-&dhcp-version;">
    22<?dbhtml filename="dhcp.html" dir="server"?>
    3 <title>dhcp-&dhcp-version;</title>
     3<title><acronym>DHCP</acronym>-&dhcp-version;</title>
    44
    55&dhcp-intro;
  • server/other/dhcp/dhcp-config.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Configuring dhcp</title>
     2<title>Configuring <application><acronym>DHCP</acronym></application></title>
    33
    44<sect3><title>Config files</title>
     
    88<sect3><title>Configuration Information</title>
    99
    10 <para>Information on configuring the dhcp client can be found in
    11 Chapter 14.</para>
     10<para>Information on configuring the <acronym>DHCP</acronym> client can be
     11found in Chapter 14.</para>
    1212
    13 <para>Note that you only want to start the dhcp server if you want to
    14 issue LAN addresses over your network.  The dhcp client doesn't need
    15 this script to be used.  Also note that this script is coded for the
    16 'eth1' INTERFACE, which may need to be modified for your hardware
    17 configuration. With that in mind the dhcp init.d script can be created
     13<para>Note that you only want to start the <acronym>DHCP</acronym> server if
     14you want to issue <acronym>LAN</acronym> addresses over your network.  The
     15<acronym>DHCP</acronym> client doesn't need this script to be used.  Also note
     16that this script is coded for the <emphasis role="strong">eth1</emphasis>
     17interface, which may need to be modified for your hardware configuration.
     18With that in mind the <command>dhcp</command> init.d script can be created
    1819using the following commands.</para>
    1920
    20 <para><screen><userinput>cat &gt; /etc/rc.d/init.d/dhcp &lt;&lt; "EOF"</userinput>
     21<screen><userinput><command>cat &gt; /etc/rc.d/init.d/dhcp &lt;&lt; "EOF"</command>
    2122#!/bin/sh
    2223# Begin $rc_base/init.d/dhcp
     
    6162
    6263# End $rc_base/init.d/dhcp
    63 <userinput>EOF
    64 chmod 755 /etc/rc.d/init.d/dhcp</userinput></screen></para>
     64<command>EOF
     65chmod 755 /etc/rc.d/init.d/dhcp</command></userinput></screen>
    6566
    6667<para>The lease file must exist on startup.  The following command will
    6768satisfy that requirement:</para>
    6869
    69 <para><screen><userinput>touch /var/state/dhcp/dhcpd.leases</userinput></screen></para>
     70<screen><userinput><command>touch /var/state/dhcp/dhcpd.leases</command></userinput></screen>
    7071
    7172<para>The follow commands will create a base configuration file for a
    72 dhcp server.  There are several options that you may want to
    73 add (information that is passed back to the dhcp client) and those are
    74 covered in the man pages for <filename>dhcp.conf</filename>.</para>
     73<acronym>DHCP</acronym> server.  There are several options that you may want to
     74add (information that is passed back to the <acronym>DHCP</acronym> client) and
     75those are covered in the man pages for <filename>dhcp.conf</filename>.</para>
    7576
    76 <para><screen><userinput>cat &gt; /etc/dhcpd.conf &lt;&lt; "EOF"</userinput>
     77<screen><userinput><command>cat &gt; /etc/dhcpd.conf &lt;&lt; "EOF"</command>
    7778default-lease-time 72000;
    7879max-lease-time 144000;
     
    8485  option routers 192.168.5.1;
    8586}
    86 <userinput>EOF</userinput></screen></para>
     87<command>EOF</command></userinput></screen>
    8788
    8889<para>All addresses should be changed to meet your circumstance.</para>
  • server/other/dhcp/dhcp-desc.xml

    r19234f1 r40330fcd  
    22<title>Contents</title>
    33
    4 <para>The dhcp package contains <userinput>dhclient</userinput>,
    5 <userinput>dhcpd</userinput>
    6 and <userinput>dhcrelay</userinput>.</para>
     4<para>The <application><acronym>DHCP</acronym></application> package contains
     5<command>dhclient</command>, <command>dhcpd</command> and <command>dhcrelay
     6</command>.</para>
    77
    88</sect2>
     
    1111
    1212<sect3><title>dhclient</title>
    13 <para>dhclient is the implementation of the DHCP client.</para></sect3>
     13<para><command>dhclient</command> is the implementation of the
     14<acronym>DHCP</acronym> client.</para></sect3>
    1415
    1516<sect3><title>dhcpd</title>
    16 <para>dhcpd implements Dynamic Host Configuration Protocol (DHCP)
    17 and Internet Bootstrap Protocol (BOOTP) requests for network
    18 addresses.</para></sect3>
     17<para><command>dhcpd</command> implements Dynamic Host Configuration Protocol
     18(<acronym>DHCP</acronym>) and Internet Bootstrap Protocol
     19(<acronym>BOOTP</acronym>) requests for network addresses.</para></sect3>
    1920
    2021<sect3><title>dhcrelay</title>
    21 <para>dhcrelay provides a means to accept DHCP and BOOTP requests on a
    22 subnet without a DHCP server and relay them to a DHCP server on another
    23 subnet.</para></sect3>
     22<para><command>dhcrelay</command> provides a means to accept <acronym>DHCP
     23</acronym> and <acronym>BOOTP</acronym> requests on a subnet without a
     24<acronym>DHCP</acronym> server and relay them to a <acronym>DHCP</acronym>
     25server on another subnet.</para></sect3>
    2426
    2527</sect2>
  • server/other/dhcp/dhcp-exp.xml

    r19234f1 r40330fcd  
    22<title>Command explanations</title>
    33
    4 <para><userinput>LIBDIR=/usr/lib INCDIR=/usr/include</userinput> : This
     4<para><command>LIBDIR=/usr/lib INCDIR=/usr/include</command> : This
    55command installs the library and include files in <filename
    66class="directory">/usr</filename> instead of <filename
  • server/other/dhcp/dhcp-inst.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Installation of dhcp</title>
     2<title>Installation of <application><acronym>DHCP</acronym></application></title>
    33
    4 <para>Install dhcp by running the following commands:</para>
     4<note><para>You must have Packet Socket support compiled in the kernel and
     5Socket Filtering either compiled in or as a kernel module.</para></note>
     6                                                                               
     7<para>Install <application><acronym>DHCP</acronym></application> by running the following commands:</para>
    58
    6 <para><screen><userinput>./configure &amp;&amp;
     9<screen><userinput><command>./configure &amp;&amp;
    710make &amp;&amp;
    8 make LIBDIR=/usr/lib INCDIR=/usr/include install</userinput></screen></para>
     11make LIBDIR=/usr/lib INCDIR=/usr/include install</command></userinput></screen>
    912
    1013</sect2>
  • server/other/dhcp/dhcp-intro.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Introduction to dhcp</title>
     2<title>Introduction to <application><acronym>DHCP</acronym></application></title>
    33
    4 <screen>Download location (HTTP):       <ulink url="&dhcp-download-http;"/>
    5 Download location (FTP):        <ulink url="&dhcp-download-ftp;"/>
    6 Version used:                   &dhcp-version;
    7 Package size:                   &dhcp-size;
    8 Estimated Disk space required:  &dhcp-buildsize;</screen>
     4<para>The <application><acronym>DHCP</acronym></application> package contains
     5both the client and server programs for <acronym>DHCP</acronym>.
     6<command>dhclient</command> (the client) is useful for connecting your computer
     7to a network which uses <acronym>DHCP</acronym> to assign network addresses.
     8<command>dhcpd</command> (the server) is useful for assigning network addresses
     9on your private network.</para>
    910
    10 <para>The dhcp package contains both the client and server programs for
    11 DHCP. dhclient (the client) is useful for connecting your computer to a
    12 network which uses DHCP to assign network addresses. dhcpd (the server)
    13 is useful for assigning network addresses on your private network.</para>
     11<sect3><title>Package information</title>
     12<itemizedlist spacing='compact'>
     13<listitem><para>Download (HTTP): <ulink
     14url="&dhcp-download-http;"/></para></listitem>
     15<listitem><para>Download (FTP): <ulink
     16url="&dhcp-download-ftp;"/></para></listitem>
     17<listitem><para>Download size: &dhcp-size;</para></listitem>
     18<listitem><para>Estimated Disk space required:
     19&dhcp-buildsize;</para></listitem>
     20<listitem><para>Estimated build time:
     21&dhcp-time;</para></listitem></itemizedlist>
     22</sect3>
    1423
    15 <screen>dhcp needs nothing to compile but you must have Packet Socket
    16 support compiled in the kernel and Socket Filtering either compiled in
    17 or as a kernel module to use it.</screen>
    1824
    1925</sect2>
  • server/other/leafnode.xml

    r19234f1 r40330fcd  
    1 <sect1 id="leafnode" xreflabel="leafnode-&leafnode-version;">
     1<sect1 id="leafnode" xreflabel="Leafnode-&leafnode-version;">
    22<?dbhtml filename="leafnode.html" dir="server"?>
    3 <title>leafnode-&leafnode-version;</title>
     3<title>Leafnode-&leafnode-version;</title>
    44
    55&leafnode-intro;
  • server/other/leafnode/leafnode-config.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Configuring leafnode</title>
     2<title>Configuring <application>Leafnode</application></title>
    33
    44<sect3><title>Config files</title>
     
    77<filename>/etc/xinetd.conf</filename></para>
    88
    9 <para>leafnode may be configured to use inetd by adding a leafnode entry
     9<para><application>Leafnode</application> may be configured to use
     10<command>inetd</command> by adding an entry
    1011to the <filename>/etc/inetd.conf</filename> file with the following
    1112command:</para>
     
    1415&gt;&gt; /etc/inetd.conf</command></userinput></screen>
    1516
    16 <para>Alternatively, leafnode may be configured to use xinetd by
    17 adding a leafnode entry to the <filename>/etc/xinetd.conf</filename>
    18 file with the following command:</para>
     17<para>Alternatively, <application>Leafnode</application> may be configured to
     18use <command>xinetd</command> by adding an entry to the <filename>
     19/etc/xinetd.conf</filename> file with the following command:</para>
    1920
    20 <screen><userinput><command>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
     21<screen><userinput><command>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF" </command>
    2122        service nntp
    2223        {
     
    3132           per_source      = 3
    3233        }
    33 EOF</command></userinput></screen>
     34<command>EOF</command></userinput></screen>
    3435
    3536<para>The <filename>/etc/news/config</filename> file must be
     
    3940and save the original for reference: </para>
    4041
    41 <screen><userinput><command>cp /etc/news/config.example /etc/news/config</command>
    42 </userinput></screen>
     42<screen><userinput><command>cp /etc/news/config.example /etc/news/config
     43</command></userinput></screen>
    4344
    4445<para>Change the
    45 <screen><userinput><command>server = </command></userinput></screen>
     46<screen><userinput>server = </userinput></screen>
    4647entry to reflect your news provider.</para>
    4748
    48 <para>The <envar>NNTPSERVER</envar> environment variable must be set to 127.0.0.1 to
    49 prevent news clients from reading news from the upstream feed, add the
    50 following to <filename>/etc/profile</filename> or
     49<para>The <envar>NNTPSERVER</envar> environment variable must be set to
     50127.0.0.1 to prevent news clients from reading news from the upstream feed,
     51add the following to <filename>/etc/profile</filename> or
    5152<filename>$HOME/.bash_profile</filename>:</para>
    5253
  • server/other/leafnode/leafnode-desc.xml

    r19234f1 r40330fcd  
    22<title>Contents</title>
    33
    4 <para>The leafnode package contains
     4<para>The <application>Leafnode</application> package contains
    55<command>leafnode-version</command>,
    66<command>leafnode</command>,
  • server/other/leafnode/leafnode-inst.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Installation of <application>leafnode</application></title>
     2<title>Installation of <application>Leafnode</application></title>
    33
    44<para>Create the group and user news, if not present:</para>
     
    77useradd -g news news</command></userinput></screen>
    88
    9 <para>Install <application>leafnode</application> by running the following commands:</para>
     9<para>Install <application>Leafnode</application> by running the following
     10commands:</para>
    1011
    1112<screen><userinput><command>./configure --prefix=/usr --localstatedir=/var \
  • server/other/leafnode/leafnode-intro.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Introduction to <application>leafnode</application></title>
     2<title>Introduction to <application>Leafnode</application></title>
    33
    4 <para><application>leafnode</application> is an <acronym>NNTP</acronym>
     4<para><application>Leafnode</application> is an <acronym>NNTP</acronym>
    55server designed for small sites to provide a local USENET spool.</para>
    66
     
    1414</sect3>
    1515
    16 <sect3><title><application>leafnode</application> dependencies</title>
     16<sect3><title><application>Leafnode</application> dependencies</title>
    1717<sect4><title>Required</title>
    1818<para><xref linkend="pcre"/>
  • server/other/openssh.xml

    r19234f1 r40330fcd  
    11<sect1 id="openssh" xreflabel="OpenSSH-&openssh-version;">
    22<?dbhtml filename="openssh.html" dir="server"?>
    3 <title>OpenSSH-&openssh-version;</title>
     3<title>Open<acronym>SSH</acronym>-&openssh-version;</title>
    44
    55&openssh-intro;
  • server/other/samba.xml

    r19234f1 r40330fcd  
    1 <sect1 id="samba" xreflabel="samba-&samba-version;">
     1<sect1 id="samba" xreflabel="Samba-&samba-version;">
    22<?dbhtml filename="samba.html" dir="server"?>
    33<title>Samba-&samba-version;</title>
  • server/other/samba/samba-config-exp.xml

    r19234f1 r40330fcd  
    11<sect2>
    22<title>Configuration command explanations</title>
    3 <para><userinput>cat &gt; /etc/samba/smb.conf &lt;&lt; "EOF"</userinput>
    4 : Create a default Samba configuration file.  This configuration will
    5 allow Samba to act as a Primary Domain Controller for a Microsoft
    6 Windows based network.  If this is not desired, a simpler default
    7 smb.conf file is bundled with the Samba distribution.  See the
     3<para><command>cat &gt; /etc/samba/smb.conf &lt;&lt; "EOF"</command>
     4: Create a default <application>Samba</application> configuration file.  This
     5configuration will allow <application>Samba</application> to act as a Primary
     6Domain Controller for a Microsoft Windows based network.  If this is not
     7desired, a simpler default <filename>smb.conf</filename> file is bundled with
     8the Samba distribution.  See the
    89<filename>samba&samba-version;/examples/smb.conf.default</filename>
    910file.  Primary Domain Controller configuration is slightly more
    1011complicated than ordinary member server configuration, so instructions
    11 for PDC configuration will be given here.</para>
     12for <acronym>PDC</acronym> configuration will be given here.</para>
    1213
    1314
    14 <para><userinput>cat &gt; /etc/rc.d/init.d/samba &lt;&lt;
    15 "EOF"</userinput> : Create the Samba boot script, used to start and stop Samba
    16 automatically on machine startup and shutdown.</para>
     15<para><command>cat &gt; /etc/rc.d/init.d/samba &lt;&lt;
     16"EOF"</command> : Create the <application>Samba</application> boot script,
     17used to start and stop <application>Samba</application> automatically on
     18machine startup and shutdown.</para>
    1719
    18 <para><screen><userinput>/usr/sbin/useradd -g 100 -d /dev/null -c \
    19     "Win2k Server" -s /bin/false win2kbox$</userinput></screen>
     20<para><screen><command>/usr/sbin/useradd -g 100 -d /dev/null -c \
     21    "Win2k Server" -s /bin/false win2kbox$</command></screen>
    2022This command creates a machine trust account, necessary only for
    21 Windows 2000/NT servers to authenticate to our new PDC.  Machine trust
    22 accounts are not necessary for Win95/98 clients.</para>
     23Windows 2000/NT servers to authenticate to our new <acronym>PDC</acronym>. 
     24Machine trust accounts are not necessary for Win95/98 clients.</para>
    2325
    24 <para>
    25 <userinput>echo "swat 901/tcp" &gt;&gt; /etc/services</userinput> : Register the swat service to run on port 901.</para>
     26<para><command>echo "swat 901/tcp" &gt;&gt; /etc/services</command> : Register
     27the swat service to run on port 901.</para>
    2628
    27 <para><userinput>echo "swat stream tcp nowait.400 root /usr/sbin/swat swat" &gt;&gt;
    28 /etc/inetd.conf</userinput> : Instruct inetd where to find and how to
     29<para><command>echo "swat stream tcp nowait.400 root /usr/sbin/swat swat"
     30&gt;&gt; /etc/inetd.conf</command> : Instruct <command>inetd</command> where to find and how to
    2931run swat.</para>
    3032
    31 <para>
    32 <userinput>ln -s  /etc/rc.d/init.d/samba
    33 /etc/rc.d/rc3.d/S600samba</userinput> etc. : Create the Samba boot scripts, used to start and stop Samba
    34 automatically on machine startup and shutdown.</para>
     33<para><command>ln -s  /etc/rc.d/init.d/samba /etc/rc.d/rc3.d/S600samba
     34</command> etc. : Create the <application>Samba</application> boot scripts,
     35used to start and stop <application>Samba</application> automatically on
     36machine startup and shutdown.</para>
    3537</sect2>
    3638
  • server/other/samba/samba-config.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Configuring Samba</title>
    3 <para>We will configure one Samba server (SAMBABOX) to act as a primary
    4 domain controller, as well as configure one domain client running
    5 Windows 2000 Server(WIN2KBOX) and acting as a member server of the
     2<title>Configuring <application>Samba</application></title>
     3<para>We will configure one <application>Samba</application> server (SAMBABOX)
     4to act as a primary domain controller, as well as configure one domain client
     5running Windows 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
     
    99documentation by pointing a web browser to:</para>
    1010
    11 <screen><userinput><command>file:///usr/share/samba/swat/using_samba/ch03_01.html#ch03-55770.</command></userinput></screen>
     11<screen><userinput>file:///usr/share/samba/swat/using_samba/ch03_01.html#ch03-55770.</userinput></screen>
    1212
    1313<sect3><title>Config files</title>
     
    1515<filename>/etc/rc.d/init.d/samba </filename></para>
    1616
    17 <para>First we set up some directories needed by Samba:</para>
     17<para>First we set up some directories needed by <application>Samba
     18</application>:</para>
    1819<screen><userinput><command>mkdir /var/lib/samba &amp;&amp;
    1920mkdir /var/lib/samba/netlogon &amp;&amp;
     
    2223chmod -R 1777 /var/lib/samba</command></userinput></screen>
    2324
    24 <para>And the Samba configuration file: </para>
     25<para>And the <application>Samba</application> configuration file: </para>
    2526<screen><userinput><command>cat &gt; /etc/samba/smb.conf &lt;&lt; "EOF"</command>
    2627[global]
     
    6869smbpasswd -a -m win2kbox</command></userinput></screen>
    6970
    70 <para>Create the Samba boot script:</para>
     71<para>Create the <application>Samba</application> boot script:</para>
    7172<screen><userinput><command>cat &gt; /etc/rc.d/init.d/samba &lt;&lt; "EOF"</command>
    7273#!/bin/bash
     
    121122ln -s  /etc/rc.d/init.d/samba /etc/rc.d/rc6.d/K48samba</userinput></screen>
    122123
    123 <para>Now, we'll use our new boot script to start Samba: </para>
     124<para>Now, we'll use our new boot script to start <application>Samba
     125</application>: </para>
    124126<screen><userinput><command>/etc/rc.d/init.d/samba start</command></userinput></screen>
    125 <para>We have to add the SAMBABOX root account to the Samba user list
    126 first in order to join WIN2KBOX to the DOMAIN01 domain: </para>
     127<para>We have to add the SAMBABOX root account to the <application>Samba
     128</application> user list first in order to join WIN2KBOX to the DOMAIN01
     129domain: </para>
    127130
    128131<screen><userinput><command>smbpasswd -a root</command></userinput></screen>
    129132
    130 <para>After starting Samba and adding root to the Samba user list, the
    131 first machine we'll join to DOMAIN01 will be WIN2KBOX, the Windows
    132 2000 Server box we created the machine trust account for.  On
    133 WIN2KBOX:</para>
     133<para>After starting <application>Samba</application> and adding root to
     134the <application>Samba</application> user list, the first machine we'll join
     135to DOMAIN01 will be WIN2KBOX, the Windows 2000 Server box we created the
     136machine trust account for.  On WIN2KBOX:</para>
    134137<screen><userinput>1.  Right click on My Computer.
    1351382.  Click on Properties.
     
    186189<command>EOF</command></userinput></screen>
    187190
    188 <para>The Samba Web Administration Tool, swat, can be launched with the
    189 following command on SAMBABOX: </para>
     191<para>The Samba Web Administration Tool, <acronym>SWAT</acronym>, can be
     192launched with the following command on SAMBABOX: </para>
    190193<screen><userinput><command>lynx http://localhost:901</command></userinput></screen>
    191 <note><para>Be sure inetd is running, and issue a killall -HUP inetd
    192 before starting swat.</para></note>
    193 <para>The lynx browser is used in this demonstration, but is not
    194 necessary.</para></sect3>
     194<note><para>Be sure <command>inetd</command> is running, and issue a
     195<command>killall -HUP inetd</command> before starting
     196<acronym>SWAT</acronym>.</para></note>
     197<para>The <application>Lynx</application> browser is used in this
     198demonstration, but is not necessary.</para></sect3>
    195199
    196200</sect2>
  • server/other/samba/samba-desc.xml

    r19234f1 r40330fcd  
    22<title>Contents</title>
    33
    4 <para>The Samba package contains
    5 <userinput>make_smbcodepage</userinput>,
    6 <userinput>make_unicodemap</userinput>,
    7 <userinput>mount.smbfs</userinput>,
    8 <userinput>nmbd</userinput>,
    9 <userinput>nmblookup</userinput>,
    10 <userinput>rpcclient</userinput>,
    11 <userinput>smbcacls</userinput>,
    12 <userinput>smbclient</userinput>,
    13 <userinput>smbcontrol</userinput>,
    14 <userinput>smbd</userinput>,
    15 <userinput>smbpasswd</userinput>,
    16 <userinput>smbspool</userinput>,
    17 <userinput>smbstatus</userinput>,
    18 <userinput>swat</userinput>,
    19 <userinput>testparm</userinput>,
    20 <userinput>testprns</userinput>,
    21 <userinput>wbinfo</userinput> and
    22 <userinput>winbindd.</userinput></para>
     4<para>The <application>Samba</application> package contains
     5<command>make_smbcodepage</command>,
     6<command>make_unicodemap</command>,
     7<command>mount.smbfs</command>,
     8<command>nmbd</command>,
     9<command>nmblookup</command>,
     10<command>rpcclient</command>,
     11<command>smbcacls</command>,
     12<command>smbclient</command>,
     13<command>smbcontrol</command>,
     14<command>smbd</command>,
     15<command>smbpasswd</command>,
     16<command>smbspool</command>,
     17<command>smbstatus</command>,
     18<command>swat</command>,
     19<command>testparm</command>,
     20<command>testprns</command>,
     21<command>wbinfo</command> and
     22<command>winbindd.</command></para>
    2323
    2424</sect2>
     
    2727
    2828<sect3><title>make_smbcodepage</title>
    29 <para>make_smbcodepage converts text descriptions of code pages to
    30 binary code page files and vice versa.</para></sect3>
     29<para><command>make_smbcodepage</command> converts text descriptions of code
     30pages to binary code page files and vice versa.</para></sect3>
    3131<sect3><title>make_unicodemap</title>
    32 <para>make_unicodemap converts text unicode map files to binary, for
    33 use in mapping characters to 16 bit unicode.</para></sect3>
     32<para><command>make_unicodemap</command> converts text unicode map files to
     33binary, for use in mapping characters to 16 bit unicode.</para></sect3>
    3434<sect3><title>mount.smbfs</title>
    35 <para>mount.smbfs provides /bin/mount with a way to mount remote
    36 windows (or samba) fileshares.</para></sect3>
     35<para><command>mount.smbfs</command> provides <command>/bin/mount</command>
     36with a way to mount remote windows (or samba) fileshares.</para></sect3>
    3737<sect3><title>nmbd</title>
    38 <para>nmbd is the Samba NetBIOS name server.</para></sect3>
     38<para><command>nmbd</command> is the Samba Net<acronym>BIOS</acronym> name
     39server.</para></sect3>
    3940<sect3><title>nmblookup</title>
    40 <para>nmblookup is used to query NetBIOS names and map them to IP
     41<para><command>nmblookup</command> is used to query
     42Net<acronym>BIOS</acronym> names and map them to <acronym>IP</acronym>
    4143addresses.</para></sect3>
    4244<sect3><title>rpcclient</title>
    43 <para>rpcclient is used to execute MS-RPC client side
    44 functions.</para></sect3>
     45<para><command>rpcclient</command> is used to execute
     46MS-<acronym>RPC</acronym> client side functions.</para></sect3>
    4547<sect3><title>smbcacls</title>
    46 <para>smbcacls is used to manipulate NT access control
     48<para><command>smbcacls</command> is used to manipulate NT access control
    4749lists.</para></sect3>
    4850<sect3><title>smbclient</title>
    49 <para>smbclient is a SMB/CIFS access utility, similar to
    50 FTP.</para></sect3>
     51<para><command>smbclient</command> is a <acronym>SMB</acronym>/<acronym>CIFS
     52</acronym> access utility, similar to <acronym>FTP</acronym>.</para></sect3>
    5153<sect3><title>smbcontrol</title>
    52 <para>smbcontrol is used to control running smbd, nmbd and winbindd
     54<para><command>smbcontrol</command> is used to control running <command>smbd
     55</command>, <command>nmbd</command> and <command>winbindd</command>
    5356daemons.</para></sect3>
    5457<sect3><title>smbd</title>
    55 <para>smbd is the main Samba daemon.</para></sect3>
     58<para><command>smbd</command> is the main
     59<application>Samba</application> daemon.</para></sect3>
    5660<sect3><title>smbpasswd</title>
    57 <para>smbpasswd changes a user's Samba password.</para></sect3>
     61<para><command>smbpasswd</command> changes a user's <application>Samba
     62</application> password.</para></sect3>
    5863<sect3><title>smbspool</title>
    59 <para>smbspool sends a print job to an SMB printer.</para></sect3>
     64<para><command>smbspool</command> sends a print job to an <acronym>SMB
     65</acronym> printer.</para></sect3>
    6066<sect3><title>smbstatus</title>
    61 <para>smbstatus reports current Samba connections.</para></sect3>
     67<para><command>smbstatus</command> reports current
     68<application>Samba</application> connections.</para></sect3>
    6269<sect3><title>swat</title>
    63 <para>swat is the Samba Web Administration Tool.</para></sect3>
     70<para><command>swat</command> is the Samba Web Administration Tool.</para>
     71</sect3>
    6472<sect3><title>testparm</title>
    65 <para>testparm checks an smb.conf file for proper
    66 syntax.</para></sect3>
     73<para><command>testparm</command> checks an <filename>smb.conf</filename> file
     74for proper syntax.</para></sect3>
    6775<sect3><title>testprns</title>
    68 <para>testprns tests printer names.</para></sect3>
     76<para><command>testprns</command> tests printer names.</para></sect3>
    6977<sect3><title>wbinfo</title>
    70 <para>wbinfo queries a running winbindd daemon.</para></sect3>
     78<para><command>wbinfo</command> queries a running <command>winbindd</command>
     79daemon.</para></sect3>
    7180<sect3><title>winbindd</title>
    72 <para>winbindd resolves names from NT servers.</para></sect3>
     81<para><command>winbindd</command> resolves names from NT servers.</para></sect3>
    7382</sect2>
    7483
  • server/other/samba/samba-exp.xml

    r19234f1 r40330fcd  
    22<title>Installation command explanations</title>
    33
    4 <para><screen><userinput>mkdir -p /etc/samba/private
    5 mkdir -p /var/cache/samba</userinput></screen>
    6 Directories needed for proper operation of the smbd and nmbd daemons.</para>
     4<para><screen><command>mkdir -p /etc/samba/private
     5mkdir -p /var/cache/samba</command></screen>
     6Directories needed for proper operation of the <command>smbd</command>
     7and <command>nmbd</command> daemons.</para>
    78
    8 <para><userinput>--prefix=/usr</userinput> : Sets the prefix for almost
     9<para><command>--prefix=/usr</command> : Sets the prefix for almost
    910all the file paths to <filename>/usr</filename>.</para>
    1011
    11 <para><userinput>--sysconfdir=/etc</userinput> : Sets the configuration
     12<para><command>--sysconfdir=/etc</command> : Sets the configuration
    1213file directory to avoid the default of <filename>/usr/etc</filename>.</para>
    1314
    14 <para><userinput>--localstatedir=/var</userinput> : Sets the variable
     15<para><command>--localstatedir=/var</command> : Sets the variable
    1516data directory to avoid the default of <filename>/usr/var</filename>.</para>
    1617
    17 <para><userinput>--with-fhs</userinput> : Assigns all other file paths in a manner compliant with the Filesystem Hierarchy Standard.</para>
     18<para><command>--with-fhs</command> : Assigns all other file paths in a manner
     19compliant with the Filesystem Hierarchy Standard (FHS).</para>
    1820
    19 <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>
     21<para><command>--with-smbmount</command> : Orders the creation of an extra
     22binary for use by the <command>mount</command> command so that mounting remote
     23<acronym>SMB</acronym> (windows) shares becomes no more complex than mounting
     24remote <acronym>NFS</acronym> shares.</para>
    2025
    21 <para><userinput>rm -rf /usr/private</userinput> : Removes a directory
     26<para><command>rm -rf /usr/private</command> : Removes a directory
    2227erroneously created by <filename>source/scripts/installbin.sh</filename> during the make install.</para>
    2328
  • server/other/samba/samba-inst.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Installation of Samba</title>
     2<title>Installation of <application>Samba</application></title>
    33
    4 <para>Install Samba by running the following commands:</para>
    5 <note><para>
    6 Samba is installed from the <filename
    7 class="directory">samba-&samba-version;/source</filename> directory.
     4<para>Install <application>Samba</application> by running the following
     5commands:</para>
     6
     7<note><para><application>Samba</application> is installed from the
     8<filename class="directory">samba-&samba-version;/source</filename> directory.
    89</para></note>
    910
    10 <para><screen><userinput>mkdir -p /etc/samba/private &amp;&amp;
     11<screen><userinput><command>mkdir -p /etc/samba/private &amp;&amp;
    1112mkdir -p /var/cache/samba &amp;&amp;
    1213./configure \
     
    2324echo "swat 901/tcp" &gt;&gt; /etc/services &amp;&amp;
    2425echo "swat stream tcp nowait.400 root /usr/sbin/swat swat" &gt;&gt; \
    25    /etc/inetd.conf</userinput></screen></para>
     26   /etc/inetd.conf</command></userinput></screen>
    2627</sect2>
    2728
  • server/other/samba/samba-intro.xml

    r19234f1 r40330fcd  
    11<sect2>
    2 <title>Introduction to Samba</title>
     2<title>Introduction to <application>Samba</application></title>
    33
    4 <screen>Download location (HTTP):       <ulink url="&samba-download-http;"/>
    5 Download location (FTP):        <ulink url="&samba-download-ftp;"/>
    6 Version used:                   &samba-version;
    7 Package size:                   &samba-size;
    8 Estimated Disk space required:  &samba-buildsize;
    9 Estimated build time:           &samba-time;</screen>
     4<para>The <application>Samba</application> package provides file and print
     5services to <acronym>SMB</acronym>/<acronym>CIFS</acronym> clients.</para>
    106
    11 <para>The Samba package provides file and print services to SMB/CIFS
    12 clients.</para></sect2>
     7<sect3><title>Package information</title>
     8<itemizedlist spacing='compact'>
     9<listitem><para>Download (HTTP): <ulink
     10url="&samba-download-http;"/></para></listitem>
     11<listitem><para>Download (FTP): <ulink
     12url="&samba-download-ftp;"/></para></listitem>
     13<listitem><para>Download size: &samba-size;</para></listitem>
     14<listitem><para>Estimated Disk space required:
     15&samba-buildsize;</para></listitem>
     16<listitem><para>Estimated build time:
     17&samba-time;</para></listitem></itemizedlist>
     18</sect3>
     19
     20
     21</sect2>
Note: See TracChangeset for help on using the changeset viewer.