[[TracNav(DocTOC)]] = Getting Stable Source = Check '''Releases''' at http://xcache.lighttpd.net/. ====== Get source package ====== {{{ #!ShellExample ~ $ mkdir ~/src ~ $ cd ~/src ~/src $ wget http://... (the release url) ~/src $ tar -zxf xcache-*.tar.gz (or) ~/src $ gzip -dc xcache-*.tar.gz | tar -x ~/src $ cd xcache ~/src/xcache $ ls }}} Most of you should stick with stable-release, for production server, while some of you may download pre-release, snapsnots, or even get it from svn repo. See also: GettingSource (prev), BuildingFromSource (next) = Checkout Source With SVN = make sure you have [http://subversion.tigris.org/ svn] installed. ====== Checkout SVN source ====== {{{ #!ShellExample ~ $ mkdir ~/src ~ $ cd ~/src ~/src $ svn co svn://svn.lighttpd.net/xcache/trunk xcache-trunk ~/src $ cd xcache-trunk ~/src/xcache-trunk $ ls }}} See also: BuildingFromSource (next), SvnSnapShots, [wiki:Win32AutoBuilds]