1 <chapter id=
"compiling">
5 <orgname>Samba Team
</orgname>
10 <pubdate> (
22 May
2001)
</pubdate>
11 <pubdate> 18 March
2003 </pubdate>
14 <title>How to compile SAMBA
</title>
16 <para>You can obtain the samba source from the
<ulink url=
"http://samba.org/">samba website
</ulink>. To obtain a development version,
17 you can download samba from CVS or using rsync.
</para>
20 <title>Access Samba source code via CVS
</title>
23 <title>Introduction
</title>
26 Samba is developed in an open environment. Developers use CVS
27 (Concurrent Versioning System) to
"checkin" (also known as
28 "commit") new source code. Samba's various CVS branches can
29 be accessed via anonymous CVS using the instructions
30 detailed in this chapter.
34 This chapter is a modified version of the instructions found at
35 <ulink url=
"http://samba.org/samba/cvs.html">http://samba.org/samba/cvs.html
</ulink>
41 <title>CVS Access to samba.org
</title>
44 The machine samba.org runs a publicly accessible CVS
45 repository for access to the source code of several packages,
46 including samba, rsync and jitterbug. There are two main ways of
47 accessing the CVS server on this host.
51 <title>Access via CVSweb
</title>
54 You can access the source code via your
55 favourite WWW browser. This allows you to access the contents of
56 individual files in the repository and also to look at the revision
57 history and commit logs of individual files. You can also ask for a diff
58 listing between any two versions on the repository.
63 url=
"http://samba.org/cgi-bin/cvsweb">http://samba.org/cgi-bin/cvsweb
</ulink>
68 <title>Access via cvs
</title>
71 You can also access the source code via a
72 normal cvs client. This gives you much more control over you can
73 do with the repository and allows you to checkout whole source trees
74 and keep them up to date via normal cvs commands. This is the
75 preferred method of access if you are a developer and not
76 just a casual browser.
80 To download the latest cvs source code, point your
81 browser at the URL :
<ulink url=
"http://www.cyclic.com/">http://www.cyclic.com/
</ulink>.
82 and click on the 'How to get cvs' link. CVS is free software under
83 the GNU GPL (as is Samba). Note that there are several graphical CVS clients
84 which provide a graphical interface to the sometimes mundane CVS commands.
85 Links to theses clients are also available from http://www.cyclic.com.
89 To gain access via anonymous cvs use the following steps.
90 For this example it is assumed that you want a copy of the
91 samba source code. For the other source code repositories
92 on this system just substitute the correct package name
98 Install a recent copy of cvs. All you really need is a
99 copy of the cvs client binary.
110 <userinput>cvs -d :pserver:cvs@samba.org:/cvsroot login
</userinput>
114 When it asks you for a password type
<userinput>cvs
</userinput>.
125 <userinput>cvs -d :pserver:cvs@samba.org:/cvsroot co samba
</userinput>
129 This will create a directory called samba containing the
130 latest samba source code (i.e. the HEAD tagged cvs branch). This
131 currently corresponds to the
3.0 development tree.
135 CVS branches other HEAD can be obtained by using the
<parameter>-r
</parameter>
136 and defining a tag name. A list of branch tag names can be found on the
137 "Development" page of the samba web site. A common request is to obtain the
138 latest
2.2 release code. This could be done by using the following userinput.
142 <userinput>cvs -d :pserver:cvs@samba.org:/cvsroot co -r SAMBA_2_2 samba
</userinput>
148 Whenever you want to merge in the latest code changes use
149 the following command from within the samba directory:
153 <userinput>cvs update -d -P
</userinput>
164 <title>Accessing the samba sources via rsync and ftp
</title>
167 pserver.samba.org also exports unpacked copies of most parts of the CVS tree at
<ulink url=
"ftp://pserver.samba.org/pub/unpacked">ftp://pserver.samba.org/pub/unpacked
</ulink> and also via anonymous rsync at rsync://pserver.samba.org/ftp/unpacked/. I recommend using rsync rather than ftp.
168 See
<ulink url=
"http://rsync.samba.org/">the rsync homepage
</ulink> for more info on rsync.
172 The disadvantage of the unpacked trees
173 is that they do not support automatic
174 merging of local changes like CVS does.
175 rsync access is most convenient for an
181 <title>Building the Binaries
</title>
183 <para>To do this, first run the program
<userinput>./configure
184 </userinput> in the source directory. This should automatically
185 configure Samba for your operating system. If you have unusual
186 needs then you may wish to run
</para>
188 <para><prompt>root#
</prompt><userinput>./configure --help
191 <para>first to see what special options you can enable.
192 Then executing
</para>
194 <para><prompt>root#
</prompt><userinput>make
</userinput></para>
196 <para>will create the binaries. Once it's successfully
197 compiled you can use
</para>
199 <para><prompt>root#
</prompt><userinput>make install
</userinput></para>
201 <para>to install the binaries and manual pages. You can
202 separately install the binaries and/or man pages using
</para>
204 <para><prompt>root#
</prompt><userinput>make installbin
209 <para><prompt>root#
</prompt><userinput>make installman
212 <para>Note that if you are upgrading for a previous version
213 of Samba you might like to know that the old versions of
214 the binaries will be renamed with a
".old" extension. You
215 can go back to the previous version with
</para>
217 <para><prompt>root#
</prompt><userinput>make revert
220 <para>if you find this version a disaster!
</para>
223 <title>Compiling samba with Active Directory support
</title>
225 <para>In order to compile samba with ADS support, you need to have installed
228 <member>the MIT kerberos development libraries (either install from the sources or use a package). The heimdal libraries will not work.
</member>
229 <member>the OpenLDAP development libraries.
</member>
232 <para>If your kerberos libraries are in a non-standard location then
233 remember to add the configure option --with-krb5=DIR.
</para>
235 <para>After you run configure make sure that
<filename>include/config.h
</filename> it generates contains lines like this:
</para>
237 <para><programlisting>
240 </programlisting></para>
242 <para>If it doesn't then configure did not find your krb5 libraries or
243 your ldap libraries. Look in config.log to figure out why and fix
247 <title>Installing the required packages for Debian
</title>
249 <para>On Debian you need to install the following packages:
</para>
252 <member>libkrb5-dev
</member>
253 <member>krb5-user
</member>
259 <title>Installing the required packages for RedHat
</title>
261 <para>On RedHat this means you should have at least:
</para>
264 <member>krb5-workstation (for kinit)
</member>
265 <member>krb5-libs (for linking with)
</member>
266 <member>krb5-devel (because you are compiling from source)
</member>
270 <para>in addition to the standard development environment.
</para>
272 <para>Note that these are not standard on a RedHat install, and you may need
273 to get them off CD2.
</para>
282 <title>Starting the smbd and nmbd
</title>
284 <para>You must choose to start smbd and nmbd either
285 as daemons or from
<application>inetd
</application>Don't try
286 to do both! Either you can put them in
<filename>
287 inetd.conf
</filename> and have them started on demand
288 by
<application>inetd
</application>, or you can start them as
289 daemons either from the command line or in
<filename>
290 /etc/rc.local
</filename>. See the man pages for details
291 on the command line options. Take particular care to read
292 the bit about what user you need to be in order to start
293 Samba. In many cases you must be root.
</para>
295 <para>The main advantage of starting
<application>smbd
</application>
296 and
<application>nmbd
</application> using the recommended daemon method
297 is that they will respond slightly more quickly to an initial connection
301 <title>Starting from inetd.conf
</title>
303 <para>NOTE; The following will be different if
304 you use NIS, NIS+ or LDAP to distribute services maps.
</para>
306 <para>Look at your
<filename>/etc/services
</filename>.
307 What is defined at port
139/tcp. If nothing is defined
308 then add a line like this:
</para>
310 <para><userinput>netbios-ssn
139/tcp
</userinput></para>
312 <para>similarly for
137/udp you should have an entry like:
</para>
314 <para><userinput>netbios-ns
137/udp
</userinput></para>
316 <para>Next edit your
<filename>/etc/inetd.conf
</filename>
317 and add two lines something like this:
</para>
319 <para><programlisting>
320 netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd
321 netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd
322 </programlisting></para>
324 <para>The exact syntax of
<filename>/etc/inetd.conf
</filename>
325 varies between unixes. Look at the other entries in inetd.conf
328 <note><para>Some unixes already have entries like netbios_ns
329 (note the underscore) in
<filename>/etc/services
</filename>.
330 You must either edit
<filename>/etc/services
</filename> or
331 <filename>/etc/inetd.conf
</filename> to make them consistent.
</para></note>
333 <note><para>On many systems you may need to use the
334 <command>interfaces
</command> option in &smb.conf; to specify the IP address
335 and netmask of your interfaces. Run
<application>ifconfig
</application>
336 as root if you don't know what the broadcast is for your
337 net.
&nmbd; tries to determine it at run
338 time, but fails on some unixes.
341 <warning><para>Many unixes only accept around
5
342 parameters on the command line in
<filename>inetd.conf
</filename>.
343 This means you shouldn't use spaces between the options and
344 arguments, or you should use a script, and start the script
345 from
<command>inetd
</command>.
</para></warning>
347 <para>Restart
<command>inetd
</command>, perhaps just send
348 it a HUP. If you have installed an earlier version of
<application>
349 nmbd
</application> then you may need to kill nmbd as well.
</para>
353 <title>Alternative: starting it as a daemon
</title>
355 <para>To start the server as a daemon you should create
356 a script something like this one, perhaps calling
357 it
<filename>startsmb
</filename>.
</para>
359 <para><programlisting>
361 /usr/local/samba/bin/smbd -D
362 /usr/local/samba/bin/nmbd -D
363 </programlisting></para>
365 <para>then make it executable with
<command>chmod
366 +x startsmb
</command></para>
368 <para>You can then run
<command>startsmb
</command> by
369 hand or execute it from
<filename>/etc/rc.local
</filename>
372 <para>To kill it send a kill signal to the processes
373 <command>nmbd
</command> and
<command>smbd
</command>.
</para>
375 <note><para>If you use the SVR4 style init system then
376 you may like to look at the
<filename>examples/svr4-startup
</filename>
377 script to make Samba fit into that system.
</para></note>