Changeset 40330fcd
- Timestamp:
- 09/24/2003 01:20:44 AM (21 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 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, gimp3, 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/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- cce6b02e
- Parents:
- 19234f1
- Location:
- server/other
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
server/other/bind.xml
r19234f1 r40330fcd 1 1 <sect1 id="bind" xreflabel="bind-&bind-version;"> 2 2 <?dbhtml filename="bind.html" dir="server"?> 3 <title> BIND&bind-version;</title>3 <title><acronym>BIND</acronym>-&bind-version;</title> 4 4 5 5 &bind-intro; -
server/other/cvsserver/cvsserver-intro.xml
r19234f1 r40330fcd 5 5 a <acronym>CVS</acronym> server.</para> 6 6 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> 10 11 11 12 </sect2> -
server/other/dhcp.xml
r19234f1 r40330fcd 1 <sect1 id="dhcp" xreflabel=" dhcp-&dhcp-version;">1 <sect1 id="dhcp" xreflabel="DHCP-&dhcp-version;"> 2 2 <?dbhtml filename="dhcp.html" dir="server"?> 3 <title> dhcp-&dhcp-version;</title>3 <title><acronym>DHCP</acronym>-&dhcp-version;</title> 4 4 5 5 &dhcp-intro; -
server/other/dhcp/dhcp-config.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Configuring dhcp</title>2 <title>Configuring <application><acronym>DHCP</acronym></application></title> 3 3 4 4 <sect3><title>Config files</title> … … 8 8 <sect3><title>Configuration Information</title> 9 9 10 <para>Information on configuring the dhcp client can be found in11 Chapter 14.</para>10 <para>Information on configuring the <acronym>DHCP</acronym> client can be 11 found in Chapter 14.</para> 12 12 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 14 you 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 16 that this script is coded for the <emphasis role="strong">eth1</emphasis> 17 interface, which may need to be modified for your hardware configuration. 18 With that in mind the <command>dhcp</command> init.d script can be created 18 19 using the following commands.</para> 19 20 20 < para><screen><userinput>cat > /etc/rc.d/init.d/dhcp << "EOF"</userinput>21 <screen><userinput><command>cat > /etc/rc.d/init.d/dhcp << "EOF"</command> 21 22 #!/bin/sh 22 23 # Begin $rc_base/init.d/dhcp … … 61 62 62 63 # End $rc_base/init.d/dhcp 63 < userinput>EOF64 chmod 755 /etc/rc.d/init.d/dhcp</ userinput></screen></para>64 <command>EOF 65 chmod 755 /etc/rc.d/init.d/dhcp</command></userinput></screen> 65 66 66 67 <para>The lease file must exist on startup. The following command will 67 68 satisfy that requirement:</para> 68 69 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> 70 71 71 72 <para>The follow commands will create a base configuration file for a 72 dhcpserver. There are several options that you may want to73 add (information that is passed back to the dhcp client) and those are74 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 74 add (information that is passed back to the <acronym>DHCP</acronym> client) and 75 those are covered in the man pages for <filename>dhcp.conf</filename>.</para> 75 76 76 < para><screen><userinput>cat > /etc/dhcpd.conf << "EOF"</userinput>77 <screen><userinput><command>cat > /etc/dhcpd.conf << "EOF"</command> 77 78 default-lease-time 72000; 78 79 max-lease-time 144000; … … 84 85 option routers 192.168.5.1; 85 86 } 86 < userinput>EOF</userinput></screen></para>87 <command>EOF</command></userinput></screen> 87 88 88 89 <para>All addresses should be changed to meet your circumstance.</para> -
server/other/dhcp/dhcp-desc.xml
r19234f1 r40330fcd 2 2 <title>Contents</title> 3 3 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> 7 7 8 8 </sect2> … … 11 11 12 12 <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> 14 15 15 16 <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> 19 20 20 21 <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> 25 server on another subnet.</para></sect3> 24 26 25 27 </sect2> -
server/other/dhcp/dhcp-exp.xml
r19234f1 r40330fcd 2 2 <title>Command explanations</title> 3 3 4 <para>< userinput>LIBDIR=/usr/lib INCDIR=/usr/include</userinput> : This4 <para><command>LIBDIR=/usr/lib INCDIR=/usr/include</command> : This 5 5 command installs the library and include files in <filename 6 6 class="directory">/usr</filename> instead of <filename -
server/other/dhcp/dhcp-inst.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Installation of dhcp</title>2 <title>Installation of <application><acronym>DHCP</acronym></application></title> 3 3 4 <para>Install dhcp by running the following commands:</para> 4 <note><para>You must have Packet Socket support compiled in the kernel and 5 Socket 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> 5 8 6 < para><screen><userinput>./configure &&9 <screen><userinput><command>./configure && 7 10 make && 8 make LIBDIR=/usr/lib INCDIR=/usr/include install</ userinput></screen></para>11 make LIBDIR=/usr/lib INCDIR=/usr/include install</command></userinput></screen> 9 12 10 13 </sect2> -
server/other/dhcp/dhcp-intro.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Introduction to dhcp</title>2 <title>Introduction to <application><acronym>DHCP</acronym></application></title> 3 3 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 5 both the client and server programs for <acronym>DHCP</acronym>. 6 <command>dhclient</command> (the client) is useful for connecting your computer 7 to a network which uses <acronym>DHCP</acronym> to assign network addresses. 8 <command>dhcpd</command> (the server) is useful for assigning network addresses 9 on your private network.</para> 9 10 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 14 url="&dhcp-download-http;"/></para></listitem> 15 <listitem><para>Download (FTP): <ulink 16 url="&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> 14 23 15 <screen>dhcp needs nothing to compile but you must have Packet Socket16 support compiled in the kernel and Socket Filtering either compiled in17 or as a kernel module to use it.</screen>18 24 19 25 </sect2> -
server/other/leafnode.xml
r19234f1 r40330fcd 1 <sect1 id="leafnode" xreflabel=" leafnode-&leafnode-version;">1 <sect1 id="leafnode" xreflabel="Leafnode-&leafnode-version;"> 2 2 <?dbhtml filename="leafnode.html" dir="server"?> 3 <title> leafnode-&leafnode-version;</title>3 <title>Leafnode-&leafnode-version;</title> 4 4 5 5 &leafnode-intro; -
server/other/leafnode/leafnode-config.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Configuring leafnode</title>2 <title>Configuring <application>Leafnode</application></title> 3 3 4 4 <sect3><title>Config files</title> … … 7 7 <filename>/etc/xinetd.conf</filename></para> 8 8 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 10 11 to the <filename>/etc/inetd.conf</filename> file with the following 11 12 command:</para> … … 14 15 >> /etc/inetd.conf</command></userinput></screen> 15 16 16 <para>Alternatively, leafnode may be configured to use xinetd by17 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 18 use <command>xinetd</command> by adding an entry to the <filename> 19 /etc/xinetd.conf</filename> file with the following command:</para> 19 20 20 <screen><userinput><command>cat >> /etc/xinetd.conf << "EOF" 21 <screen><userinput><command>cat >> /etc/xinetd.conf << "EOF" </command> 21 22 service nntp 22 23 { … … 31 32 per_source = 3 32 33 } 33 EOF</command></userinput></screen>34 <command>EOF</command></userinput></screen> 34 35 35 36 <para>The <filename>/etc/news/config</filename> file must be … … 39 40 and save the original for reference: </para> 40 41 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> 43 44 44 45 <para>Change the 45 <screen><userinput> <command>server = </command></userinput></screen>46 <screen><userinput>server = </userinput></screen> 46 47 entry to reflect your news provider.</para> 47 48 48 <para>The <envar>NNTPSERVER</envar> environment variable must be set to 127.0.0.1 to49 prevent news clients from reading news from the upstream feed, add the 50 following to <filename>/etc/profile</filename> or49 <para>The <envar>NNTPSERVER</envar> environment variable must be set to 50 127.0.0.1 to prevent news clients from reading news from the upstream feed, 51 add the following to <filename>/etc/profile</filename> or 51 52 <filename>$HOME/.bash_profile</filename>:</para> 52 53 -
server/other/leafnode/leafnode-desc.xml
r19234f1 r40330fcd 2 2 <title>Contents</title> 3 3 4 <para>The leafnodepackage contains4 <para>The <application>Leafnode</application> package contains 5 5 <command>leafnode-version</command>, 6 6 <command>leafnode</command>, -
server/other/leafnode/leafnode-inst.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Installation of <application> leafnode</application></title>2 <title>Installation of <application>Leafnode</application></title> 3 3 4 4 <para>Create the group and user news, if not present:</para> … … 7 7 useradd -g news news</command></userinput></screen> 8 8 9 <para>Install <application>leafnode</application> by running the following commands:</para> 9 <para>Install <application>Leafnode</application> by running the following 10 commands:</para> 10 11 11 12 <screen><userinput><command>./configure --prefix=/usr --localstatedir=/var \ -
server/other/leafnode/leafnode-intro.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Introduction to <application> leafnode</application></title>2 <title>Introduction to <application>Leafnode</application></title> 3 3 4 <para><application> leafnode</application> is an <acronym>NNTP</acronym>4 <para><application>Leafnode</application> is an <acronym>NNTP</acronym> 5 5 server designed for small sites to provide a local USENET spool.</para> 6 6 … … 14 14 </sect3> 15 15 16 <sect3><title><application> leafnode</application> dependencies</title>16 <sect3><title><application>Leafnode</application> dependencies</title> 17 17 <sect4><title>Required</title> 18 18 <para><xref linkend="pcre"/> -
server/other/openssh.xml
r19234f1 r40330fcd 1 1 <sect1 id="openssh" xreflabel="OpenSSH-&openssh-version;"> 2 2 <?dbhtml filename="openssh.html" dir="server"?> 3 <title>Open SSH-&openssh-version;</title>3 <title>Open<acronym>SSH</acronym>-&openssh-version;</title> 4 4 5 5 &openssh-intro; -
server/other/samba.xml
r19234f1 r40330fcd 1 <sect1 id="samba" xreflabel=" samba-&samba-version;">1 <sect1 id="samba" xreflabel="Samba-&samba-version;"> 2 2 <?dbhtml filename="samba.html" dir="server"?> 3 3 <title>Samba-&samba-version;</title> -
server/other/samba/samba-config-exp.xml
r19234f1 r40330fcd 1 1 <sect2> 2 2 <title>Configuration command explanations</title> 3 <para><userinput>cat > /etc/samba/smb.conf << "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 > /etc/samba/smb.conf << "EOF"</command> 4 : Create a default <application>Samba</application> configuration file. This 5 configuration will allow <application>Samba</application> to act as a Primary 6 Domain Controller for a Microsoft Windows based network. If this is not 7 desired, a simpler default <filename>smb.conf</filename> file is bundled with 8 the Samba distribution. See the 8 9 <filename>samba&samba-version;/examples/smb.conf.default</filename> 9 10 file. Primary Domain Controller configuration is slightly more 10 11 complicated than ordinary member server configuration, so instructions 11 for PDCconfiguration will be given here.</para>12 for <acronym>PDC</acronym> configuration will be given here.</para> 12 13 13 14 14 <para><userinput>cat > /etc/rc.d/init.d/samba << 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 > /etc/rc.d/init.d/samba << 16 "EOF"</command> : Create the <application>Samba</application> boot script, 17 used to start and stop <application>Samba</application> automatically on 18 machine startup and shutdown.</para> 17 19 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> 20 22 This command creates a machine trust account, necessary only for 21 Windows 2000/NT servers to authenticate to our new PDC. Machine trust22 accounts are not necessary for Win95/98 clients.</para>23 Windows 2000/NT servers to authenticate to our new <acronym>PDC</acronym>. 24 Machine trust accounts are not necessary for Win95/98 clients.</para> 23 25 24 <para> 25 <userinput>echo "swat 901/tcp" >> /etc/services</userinput> : Registerthe swat service to run on port 901.</para>26 <para><command>echo "swat 901/tcp" >> /etc/services</command> : Register 27 the swat service to run on port 901.</para> 26 28 27 <para>< userinput>echo "swat stream tcp nowait.400 root /usr/sbin/swat swat" >>28 /etc/inetd.conf</userinput> : Instruct inetdwhere to find and how to29 <para><command>echo "swat stream tcp nowait.400 root /usr/sbin/swat swat" 30 >> /etc/inetd.conf</command> : Instruct <command>inetd</command> where to find and how to 29 31 run swat.</para> 30 32 31 <para> 32 < userinput>ln -s /etc/rc.d/init.d/samba33 /etc/rc.d/rc3.d/S600samba</userinput> etc. : Create the Samba boot scripts, used to start and stop Samba 34 automatically onmachine 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, 35 used to start and stop <application>Samba</application> automatically on 36 machine startup and shutdown.</para> 35 37 </sect2> 36 38 -
server/other/samba/samba-config.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Configuring Samba</title>3 <para>We will configure one Samba server (SAMBABOX) to act as a primary4 domain controller, as well as configure one domain client running 5 Windows 2000 Server(WIN2KBOX) and acting as a member server of the2 <title>Configuring <application>Samba</application></title> 3 <para>We will configure one <application>Samba</application> server (SAMBABOX) 4 to act as a primary domain controller, as well as configure one domain client 5 running Windows 2000 Server(WIN2KBOX) and acting as a member server of the 6 6 domain. Detailed instructions will be given for adding WIN2KBOX to 7 7 the domain due to the extra steps necessary. Instructions for adding … … 9 9 documentation by pointing a web browser to:</para> 10 10 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> 12 12 13 13 <sect3><title>Config files</title> … … 15 15 <filename>/etc/rc.d/init.d/samba </filename></para> 16 16 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> 18 19 <screen><userinput><command>mkdir /var/lib/samba && 19 20 mkdir /var/lib/samba/netlogon && … … 22 23 chmod -R 1777 /var/lib/samba</command></userinput></screen> 23 24 24 <para>And the Sambaconfiguration file: </para>25 <para>And the <application>Samba</application> configuration file: </para> 25 26 <screen><userinput><command>cat > /etc/samba/smb.conf << "EOF"</command> 26 27 [global] … … 68 69 smbpasswd -a -m win2kbox</command></userinput></screen> 69 70 70 <para>Create the Sambaboot script:</para>71 <para>Create the <application>Samba</application> boot script:</para> 71 72 <screen><userinput><command>cat > /etc/rc.d/init.d/samba << "EOF"</command> 72 73 #!/bin/bash … … 121 122 ln -s /etc/rc.d/init.d/samba /etc/rc.d/rc6.d/K48samba</userinput></screen> 122 123 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> 124 126 <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 129 domain: </para> 127 130 128 131 <screen><userinput><command>smbpasswd -a root</command></userinput></screen> 129 132 130 <para>After starting Samba and adding root to the Samba user list, the131 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 134 the <application>Samba</application> user list, the first machine we'll join 135 to DOMAIN01 will be WIN2KBOX, the Windows 2000 Server box we created the 136 machine trust account for. On WIN2KBOX:</para> 134 137 <screen><userinput>1. Right click on My Computer. 135 138 2. Click on Properties. … … 186 189 <command>EOF</command></userinput></screen> 187 190 188 <para>The Samba Web Administration Tool, swat, can be launched with the189 following command on SAMBABOX: </para>191 <para>The Samba Web Administration Tool, <acronym>SWAT</acronym>, can be 192 launched with the following command on SAMBABOX: </para> 190 193 <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 198 demonstration, but is not necessary.</para></sect3> 195 199 196 200 </sect2> -
server/other/samba/samba-desc.xml
r19234f1 r40330fcd 2 2 <title>Contents</title> 3 3 4 <para>The Sambapackage contains5 < 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> and22 < 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> 23 23 24 24 </sect2> … … 27 27 28 28 <sect3><title>make_smbcodepage</title> 29 <para> make_smbcodepage converts text descriptions of code pages to30 binary code page files and vice versa.</para></sect3>29 <para><command>make_smbcodepage</command> converts text descriptions of code 30 pages to binary code page files and vice versa.</para></sect3> 31 31 <sect3><title>make_unicodemap</title> 32 <para> make_unicodemap converts text unicode map files to binary, for33 use in mapping characters to 16 bit unicode.</para></sect3>32 <para><command>make_unicodemap</command> converts text unicode map files to 33 binary, for use in mapping characters to 16 bit unicode.</para></sect3> 34 34 <sect3><title>mount.smbfs</title> 35 <para> mount.smbfs provides /bin/mount with a way to mount remote36 wi ndows (or samba) fileshares.</para></sect3>35 <para><command>mount.smbfs</command> provides <command>/bin/mount</command> 36 with a way to mount remote windows (or samba) fileshares.</para></sect3> 37 37 <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 39 server.</para></sect3> 39 40 <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 42 Net<acronym>BIOS</acronym> names and map them to <acronym>IP</acronym> 41 43 addresses.</para></sect3> 42 44 <sect3><title>rpcclient</title> 43 <para> rpcclient is used to execute MS-RPC client side44 functions.</para></sect3>45 <para><command>rpcclient</command> is used to execute 46 MS-<acronym>RPC</acronym> client side functions.</para></sect3> 45 47 <sect3><title>smbcacls</title> 46 <para> smbcaclsis used to manipulate NT access control48 <para><command>smbcacls</command> is used to manipulate NT access control 47 49 lists.</para></sect3> 48 50 <sect3><title>smbclient</title> 49 <para> smbclient is a SMB/CIFS access utility, similar to50 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> 51 53 <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> 53 56 daemons.</para></sect3> 54 57 <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> 56 60 <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> 58 63 <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> 60 66 <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> 62 69 <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> 64 72 <sect3><title>testparm</title> 65 <para> testparm checks an smb.conf file for proper66 syntax.</para></sect3>73 <para><command>testparm</command> checks an <filename>smb.conf</filename> file 74 for proper syntax.</para></sect3> 67 75 <sect3><title>testprns</title> 68 <para> testprnstests printer names.</para></sect3>76 <para><command>testprns</command> tests printer names.</para></sect3> 69 77 <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> 79 daemon.</para></sect3> 71 80 <sect3><title>winbindd</title> 72 <para> winbinddresolves names from NT servers.</para></sect3>81 <para><command>winbindd</command> resolves names from NT servers.</para></sect3> 73 82 </sect2> 74 83 -
server/other/samba/samba-exp.xml
r19234f1 r40330fcd 2 2 <title>Installation command explanations</title> 3 3 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 5 mkdir -p /var/cache/samba</command></screen> 6 Directories needed for proper operation of the <command>smbd</command> 7 and <command>nmbd</command> daemons.</para> 7 8 8 <para>< userinput>--prefix=/usr</userinput> : Sets the prefix for almost9 <para><command>--prefix=/usr</command> : Sets the prefix for almost 9 10 all the file paths to <filename>/usr</filename>.</para> 10 11 11 <para>< userinput>--sysconfdir=/etc</userinput> : Sets the configuration12 <para><command>--sysconfdir=/etc</command> : Sets the configuration 12 13 file directory to avoid the default of <filename>/usr/etc</filename>.</para> 13 14 14 <para>< userinput>--localstatedir=/var</userinput> : Sets the variable15 <para><command>--localstatedir=/var</command> : Sets the variable 15 16 data directory to avoid the default of <filename>/usr/var</filename>.</para> 16 17 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 19 compliant with the Filesystem Hierarchy Standard (FHS).</para> 18 20 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 22 binary for use by the <command>mount</command> command so that mounting remote 23 <acronym>SMB</acronym> (windows) shares becomes no more complex than mounting 24 remote <acronym>NFS</acronym> shares.</para> 20 25 21 <para>< userinput>rm -rf /usr/private</userinput> : Removes a directory26 <para><command>rm -rf /usr/private</command> : Removes a directory 22 27 erroneously created by <filename>source/scripts/installbin.sh</filename> during the make install.</para> 23 28 -
server/other/samba/samba-inst.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Installation of Samba</title>2 <title>Installation of <application>Samba</application></title> 3 3 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 5 commands:</para> 6 7 <note><para><application>Samba</application> is installed from the 8 <filename class="directory">samba-&samba-version;/source</filename> directory. 8 9 </para></note> 9 10 10 < para><screen><userinput>mkdir -p /etc/samba/private &&11 <screen><userinput><command>mkdir -p /etc/samba/private && 11 12 mkdir -p /var/cache/samba && 12 13 ./configure \ … … 23 24 echo "swat 901/tcp" >> /etc/services && 24 25 echo "swat stream tcp nowait.400 root /usr/sbin/swat swat" >> \ 25 /etc/inetd.conf</ userinput></screen></para>26 /etc/inetd.conf</command></userinput></screen> 26 27 </sect2> 27 28 -
server/other/samba/samba-intro.xml
r19234f1 r40330fcd 1 1 <sect2> 2 <title>Introduction to Samba</title>2 <title>Introduction to <application>Samba</application></title> 3 3 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 5 services to <acronym>SMB</acronym>/<acronym>CIFS</acronym> clients.</para> 10 6 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 10 url="&samba-download-http;"/></para></listitem> 11 <listitem><para>Download (FTP): <ulink 12 url="&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.