To get started you'll need to configure your local system to access the official X2Go Raspbian repository. Please keep in mind that this installation manual will guide you through the installation on a Raspbian jessie, stretch or buster system. Only the armhf architecture is supported.
Please switch to a user which has administrator privileges on your system in your preferred command line client:
su -
or
sudo -s
The following command will ensure that your system will be able to work with the repository archive key.
$ apt-key adv --recv-keys --keyserver keys.gnupg.net E1F958385BFE2B6E
Please add the file x2go.list
to the folder /etc/apt/sources.list.d/
.
This can be done by using your preferred editor.
/etc/apt/sources.list.d/
add the lines to /etc/apt/sources.list
.
$ editor /etc/apt/sources.list.d/x2go.list
Then add the X2Go repository (binaries and sources) as a couple of new lines (example for Raspbian buster):
# X2Go Repository (release builds) deb http://packages.x2go.org/raspbian buster main # X2Go Repository (sources of release builds) deb-src http://packages.x2go.org/raspbian buster main # X2Go Repository (Saimaa ESR builds) #deb http://packages.x2go.org/raspbian buster saimaa # X2Go Repository (sources of release builds) #deb-src http://packages.x2go.org/raspbian buster saimaa # X2Go Repository (nightly builds) #deb http://packages.x2go.org/raspbian buster heuler # X2Go Repository (sources of nightly builds) #deb-src http://packages.x2go.org/raspbian buster heuler
Edit this new data and make sure to uncomment desired components and comment non-desired components. Only one group may be active at a given time.
oldstable
, stable
, testing
and unstable
for convenience, you should not use them. Our pseudo-codename setup is not guaranteed to be in sync with Debian's releases, so using the stable
codename might mean that you will actually get packages for what Debian calls oldstable
after a new Debian distro release for a considerable amount of time.
Please perform an update of your APT package database:
$ apt-get update
$ apt-get update --allow-insecure-repositories
Otherwise, please try to first fetch the key again as outlined in the bootstrapping instructions.
After the update you should be able to access the X2Go packages via the apt command family. As a first action you should install our x2go-keyring
package and refresh the apt cache:
$ apt-get install x2go-keyring && apt-get update
Now you can search for X2Go related packages that are now available for your APT system:
$ apt-cache search x2go
Congratulations, you are now able to access the X2Go packages. You may continue by installing x2goserver, x2goclient or pyhoca-gui or any other of the available packages.
The packages in this repository can be mirrored via rsync
:
rsync -avP packages.x2go.org::raspbian </dest/path/of/local/mirror/raspbian>