Obtaining Samba

From SambaWiki
Revision as of 14:36, 19 August 2016 by Mmuehlfeld (talk | contribs) (Rewrote "Obtaining Samba".)

Stable Version (recommended)

Always download the Samba sources from https://www.samba.org/.

Samba always maintains three release series:

The Samba team recommends that you always install the latest version of a supported release. This guarantees that your installation contains all available security fixes.

In case you discover any problem, please update your installation to the latest version of the current stable release before. This ensures that the problem has not been fixed in the meanti me and reduces duplicate bug reports and unnecessary questions on the Samba Mailing List.

For further information about the release planning and the Samba life cycle, see Samba Release Planning.



Development Versions

Warning: Never install a development version in a production environment. It can contain untested features, cause damages and data! Use development version only for testing purposes!


The samba-master Branch

The "samba-master" branch contains the source code of the next release series. To download, run:

$ git clone git://git.samba.org/samba.git samba-master


Development Version of a Specific Branch

The "v*-test" branches contain the latest fixes and enhancements since the last release of the version source tree.

For example, to clone the latest development branch for Samba 4.5 using the git protocol, run:

$ git clone -b v4-5-test git://git.samba.org/samba.git samba-v4-5-test

To clone the same branch using the http protocol, run:

$ git clone -b v4-5-test http://git.samba.org/samba.git samba-v4-5-test


Updating a Local Git Repository

To update a local cloned repository, run from in the source directory:

$ git pull