DokuWiki

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
sources:source-tarballs:start [2020/05/28 22:41] danger89sources:source-tarballs:start [Unknown date] (current) – external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
 +====== Tarball releases ======
 +
 +Note: this documentation pre-requisites that you have the sudo tool installed on your system and that you have the system privilege of becoming the Super-User root by using sudo.
 +
 +===== Download =====
 +
 +People who want to install X2go from source resp. package X2go for other distributions may be interested in our tarball releases. Please visit this URL to obtain tarballs (''.tar.gz''):
 +
 +<code>
 +http://code.x2go.org/releases/source
 +</code>
 +
 +or obtain code directly from out [[wiki:development:git|Git repository]]:
 +
 +<code>
 +http://git.x2go.org/
 +</code>
 +
 +===== Installation from Tarball =====
 +
 +To install an X2go project from a provided tarball release, please use the following commands:
 +
 +<code>
 +$ tar -vzcf <x2go-tarball_version.tar.gz> .
 +$ cd <x2go-tarball_version>
 +$ make && sudo make install
 +</code>
 +
 +By default the $PREFIX for installation is /usr/local, so basically your (e.g.) x2goclient application will be found in /usr/local/bin if the above command series finishes successfully.
 +
 +NOTE: many code projects have an INSTALL file in their base project folder that contains extra instructions for the installation process.
 +
 +===== Uninstallation =====
 +
 +<code>
 +$ cd </path/to>/<x2go-tarball_version>
 +$ sudo make uninstall
 +</code>
 +
 +AGAIN NOTE: many code projects have an UNINSTALL file in their base project folder that contains extra instructions for the uninstallation process.
 +
 +
 +===== Code projects installable from Tarball =====
 +
 +The following X2go projects support tarball installation. If you find a reference to a release version here that has not yet been release (i.e. is not available as tarball) then this means that it will be available in the code project's next upcoming release.
 +
 +^  Code Project  ^   Release    ^
 +| x2goclient      >= 3.0.1.19 |
 +| x2goserver      >= 3.0.99.1 |
 +| x2gothinclient |              |
 +| nx-libs        |              |
 +| pyhoca-cli                  |
 +| pyhoca-gui                  |
 +| x2go-keyring                |
 +| x2gobroker                  |
 +| cups-x2go      |              |
 +
 +[[https://code.x2go.org/releases/source/|See full available list]]
 +