Obtaining Samba: Difference between revisions

From SambaWiki
m (Fixed typo)
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= Stable version (recommended) =
= Stable Version =


Running only stable versions of Samba is recommended.
You can download the latest version of Samba from [https://www.samba.org/ https://www.samba.org/].


Download the Samba sources only from [https://www.samba.org/ https://www.samba.org/].
It is always recommended that you install the latest version of the [[Samba_Release_Planning#Current_Stable_Release|current stable release]]. If you need to use a previous series, always choose the last version from the [[Samba_Release_Planning#Maintenance_Mode|Maintainance Mode series]] or at least from the [[Samba_Release_Planning#Security_Fixes_Only_Mode|Security Fixes Only Mode]]. Older version may not contain all improvements, bug and security fixes. If you find that you require help and ask e. g. on the [https://lists.samba.org/mailman/listinfo/samba Samba Mailing List], you will typically be told to try a recent version, to ensure that the problem isn't fixed in the meantime.


Samba always maintains three release series:
Further information about Samba Release Planning and Supported Release Lifetime, can be found on the [[Samba_Release_Planning|Samba Release Planning]] page.
* [[Samba_Release_Planning#Current_Stable_Release|current stable]]
* [[Samba_Release_Planning#Maintenance_Mode|maintenance mode]]
* [[Samba_Release_Planning#Security_Fixes_Only_Mode|security fixes only mode]]


The Samba team recommends that you always install the latest version of a [[Samba_Release_Planning|supported release]]. This guarantees that your installation contains all available security fixes.
= Development versions =


In case you discover any problem, please update your installation to the latest version of the [[Samba_Release_Planning#Current_Stable_Release|current stable]] release before. This ensures that the problem has not been fixed in the meantime and reduces duplicate bug reports and unnecessary questions on the [https://lists.samba.org/mailman/listinfo/samba Samba Mailing List].
== samba-master ==


For further information about the release planning and the Samba life cycle, see [[Samba_Release_Planning|Samba Release Planning]].
'''Warning: Never install a development version in production! It may contain untested features and can cause damages to your installation! Development releases are for testing purposes only!'''


„samba-master“ contains the source of the [[Samba_Release_Planning#Upcoming_Release|upcoming release series]].


To download the latest samba-master repository, run


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




= Development Versions =


{{Imbox
== Development version of a specific branch ==
| type = warning
| text = Never run a development version in a production environment. They contain untested features that can cause damages and data loss. Use development version only for testing purposes.
}}


The v*-test branches contain the latest changes and patches since the last official release of that source tree.


The following example demonstrates the checkout of the latest sources of Samba 4.1, scheduled for the next 4.1.x release:


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


== The samba-master Branch ==
alternatively:


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


The <code>samba-master</code> branch contains the source code of the [[Samba_Release_Planning#Upcoming_Release|next release series]]. To download:


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


== Updating a local git repository ==


If you already have downloaded a development source tree via „git“ and want to update it to the latest version, run the following command out of your corresponding git source directory:


== Development Version of a Specific Branch ==
$ git pull


The <code>v*-test</code> branches contain the latest fixes and enhancements since the last release of the version source tree.
If you receive the following error


For example, to clone the latest development branch for Samba 4.5 using the git protocol:
fatal: Unable to create '[...]/.git/index.lock': File exists.


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


To clone the same branch using the HTTP protocol:
$ git clean -x -f -d


$ git clone -b v4-5-test http://git.samba.org/samba.git samba-v4-5-test
to reset your tree.



== Updating a Local Git Repository ==

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

$ git pull

Latest revision as of 20:16, 2 November 2016

Stable Version

Running only stable versions of Samba is recommended.

Download the Samba sources only 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 meantime 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



The samba-master Branch

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

$ 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:

$ 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:

$ 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 in the source directory:

$ git pull