X2Go KDrive is a new kdrive X Server for X2Go. It could be used instead of x2goagent. X2Go KDrive works similar to Xephyr and based on it's code. It won't replace x2goagent, users will be able to chose if they want to run their sessions in x2goagent or in X2Go KDrive.
The main reason - we want to be able to run modern desktops such as Unity, KDE-5, Gnome-3 and the applications built with the latest toolkits without limitations.
x2goagent (or nxagent) is based on NX technologies. It's basically kind of X-proxy (like Xnest). It accepting X-protocol requests from X-Client and forwarding them to remote X-Server. In opposite, X2Go KDrive is a real X-Server (like Xephyr). It's processing the requests from X-Client and rendering images on the remote display, like normal X-Server rendering them into the graphic display, using the video driver. You could say, that the difference between x2goagent and X2Go KDrive it's the same as difference between Xnest and Xephyr.
x2goagent (also called nxagent) is using the NX protocol, an optimized version of the X protocol. That means that instead of sending images over the network, it forwards the X-requests like “create window” or “move window from one position to another” or “write text in the window”. This leads to a very good performance even over slow networks old (legacy X applications). In contrast x2gokdrive does not make use of this protocol and its optimizations.
On the other hand there is also a disadvantage: x2goagent currently does not support some (nowadays) important X extensions like XInputExtension 2 or Composite. Some modern Desktop Environments require them and can therefor not work on x2goagent.
Unlike the x2goagent, which is based on a rather old version of the X.Org sample server (somewhere between 7.0/7.1), X2Go KDrive is based on the recent X.Org-7, bringing multiple advantages:
While x2goagent is some kind of proxy between two X servers (on on the server and one on client side), X2Go KDrive is a standalone X server. That brings a lot of advantages over using the NX protocol:
X2Go KDrive works similar to Xephyr with only difference, that it's not rendering frames in the X-window but transferring them instead over the network to x2gokdriveclient. x2gokdriveclient running on the client computer, rendering the frames, capturing the input events and sending them back to the server.
x2gokdriveclient and x2gokdrive binaries are designed as drop-in replacements for nxproxy and nxagent/x2goagent. You can just rename x2gokdriveclient to nxproxy and x2gokdrive to x2goagent and start the X2Go session using X2Go Client. It works only if X2Go Client is running on Linux. Versions of X2Go Client and X2Go Server that can run both x2goagent and X2Go KDrive sessions will come soon.
Please keep in mind:
We don't have a binary builds yet. If you want to try it, you need to build it by yourself or wait until binary packages are ready.
Or just take a look at screenshots:
download the x2gokdrive from git:
We assuming, that you are familiar with make, Xorg and know how to build software from sources.
You'll need a xorg-server sources (1.19.2), zlib, libpng and libjpeg.
Configure Xorg to build xkdrive and start a build process (make). After that copy x2gokdrive directories in
xorg-server/hw/kdrive
, than change to xorg-server/hw/kdrive/x2gokdrive
and run make x2go
. This should build x2gokdrive binary.
The simplest way to build x2gokdrive if you are using your system source packages. I'll give some examples for Debian, SLE12sp1 and OpenSUSE Leap 42.3
apt-build source xorg-server
dpkg-buildpackage
xorg-server-1.19.2/hw/kdrive/
xorg-server-1.19.2/debian/build/main/hw/kdrive/
xorg-server-1.19.2/hw/kdrive/x2gokdrive
to xorg-server-1.19.2/debian/build/main/hw/kdrive/x2gokdrive
xorg-server-1.19.2/debian/build/main/hw/kdrive/x2gokdrive
and run make x2go
BUILD/xorg-server-<your version>/hw/kdrive
patch -p1 < patches/osuse_42.3.patch
or patch -p1 < patches/sles12sp1.patch
make x2go
To build x2gokdriveclient you'll need QT-5.
qmake && make