<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>X2Go - everywhere@home</title>
	<atom:link href="http://blog.x2go.org/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.x2go.org</link>
	<description>server based computing</description>
	<lastBuildDate>Sun, 28 Apr 2013 19:17:48 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Unity Greeter with X2Go Remote Login Support</title>
		<link>http://blog.x2go.org/index.php/2013/04/28/289/</link>
		<comments>http://blog.x2go.org/index.php/2013/04/28/289/#comments</comments>
		<pubDate>Sun, 28 Apr 2013 19:15:11 +0000</pubDate>
		<dc:creator>Mike Gabriel</dc:creator>
				<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=289</guid>
		<description><![CDATA[For the Danish company Fleten.net [1] the X2Go project has recently developed X2Go integration into the Unity Greeter [3] theme of LightDM [4] in Ubuntu. Fleten.net&#8211;as a Canonical Partner&#8211;is providing FOSS based IT-services to schools and municipalities in Denmark and Norway, based on Ubuntu and X2Go. &#160; This blog entry will provide a quick howto [...]]]></description>
				<content:encoded><![CDATA[<p>For the Danish company Fleten.net [1] the X2Go project has recently developed X2Go integration into the Unity Greeter [3] theme of LightDM [4] in Ubuntu. Fleten.net&#8211;as a Canonical Partner&#8211;is providing FOSS based IT-services to schools and municipalities in Denmark and Norway, based on Ubuntu and X2Go.</p>
<p>&nbsp;</p>
<p>This blog entry will provide a quick howto that explains how you can test this new Unity Greeter feature. Patches have already been sent upstream [5] (Canonical) and I am quite hopeful that they get accepted for inclusion, so the feature may become available in Ubuntu 13.10 and then in the next LTS release of Ubuntu.</p>
<p>&nbsp;</p>
<p>[1] http://fleten.net<br />
[2] http://wiki.x2go.org<br />
[3] https://launchpad.net/unity-greeter<br />
[4] https://launchpad.net/lightdm<br />
[5] https://bugs.launchpad.net/unity-greeter/+bug/1172928</p>
<p>&nbsp;</p>
<p><strong>Installation HowTo</strong></p>
<p>&nbsp;</p>
<p>The following steps are needed to test the X2Go remote login on Ubuntu 13.04 on your own notebook. You will need a virtualization tool like qemu/KVM or Virtualbox for this setup.</p>
<ul>
<li>Server-side (your notebook): Install X2Go Session Broker 0.0.2.0 or newer (from ppa:x2go/stable or from [6]) and configure the UCCS WebUI frontend
<ol>
<li>Install a Ubuntu/Debian based server system.</li>
<li>Add the X2Go package archive to APT [6,7] and install the packages <tt>x2gobroker-daemon</tt> and <tt>x2gobroker-authservice</tt>:
<pre>$ sudo apt-get install python-software-properties # if on Ubuntu
$ sudo add-apt-repository ppa:x2go/stable # if on Ubuntu
$ sudo apt-get install x2gobroker-daemon x2gobroker-authservice</pre>
</li>
<li>Edit <tt>/etc/x2go/x2gobroker.conf</tt> in the depicted way:
<pre>--- a/x2gobroker.conf       2013-04-26 00:51:20.000000000 +0200
+++ b/x2gobroker.conf     2013-04-24 18:59:26.000000000 +0200
@@ -72,9 +72,9 @@
 #enable-plain-output = true

 # enable {base_url}/uccs/
-#enable-uccs-output = false
+enable-uccs-output = true
 # use this URL base to create URL field in UCCS-style JSON output
-#my-uccs-url-base = http://localhost:8080/
+my-uccs-url-base = http://x2gobroker.localdomain:8080/

 # enable {base_url}/json/ (THIS IS FUTURE, mg-20121129)
 #enable-json-output = false
@@ -219,7 +219,7 @@
 #desktop-shell = KDE

 [inifile]
-#enable = false
+enable = true
 #session-profiles = /etc/x2go/broker/x2gobroker-sessionprofiles.conf

 [ldap]</pre>
</li>
<li>Configure your X2Go Server session profiles in <tt>/etc/x2go/broker/x2gobroker-sessionprofiles.conf</tt>. Read the comments in that config file carefully to get a clue on how to modify the file to your needs. A simple example is this:
<pre>[x2go-server-1]
user=
host=x2goserver1.somewhere.com
sshport=22
name=X2Go Server 1
command=KDE

[x2go-server-2]
user=
host=x2goserver2.somewhere.else
sshport=22
name=X2Go Server 2
command=GNOME

[WINDOWS]
user=
host=winbox.here.or.there
name=MS Windows
command=rdesktop
directrdp=true</pre>
<p>Note that at the time of writing of the manifold X2Go session parameters only the parameter <tt>command</tt> is handled by the UCCS WebUI.</li>
<li>Optional: Enable debug mode of the X2Go Session Broker Daemon in <tt>/etc/defaults/x2gobroker-daemon</tt> while you are still testing the whole thing.</li>
<li>Server-side: DONE</li>
</ol>
</li>
<li>Client-side (a virtual machine running on your notebook): Install a Ubuntu workstation (13.04) in Virtualbox or KVM. Use NAT&#8217;ed networking, thus in VirtualBox your notebook&#8217;s host IP will be (if you use the defaults) 10.0.2.2.
<ol>
<li>Make sure you can nmap port 8080 on IP 10.0.2.2. That is the address port that the X2Go Session Broker Daemon is listening on. (The broker daemon is a http server implemented with Python Tornado.)</li>
<li>Add an entry to <tt>/etc/hosts</tt> for <tt>10.0.2.2 x2gobroker.localdomain x2gobroker</tt>.</li>
<li>Test the session broker via http protocol. Enter <tt>http://x2gobroker.localdomain:8080/uccs/inifile/api/4</tt> in your browser. The browser should then request authorization. Use your local user on your notebook and its password for authentication (X2Go Session Broker uses PAM to authenticate against). After successful authentication, some JSON data object should appear in your browser window.</li>
<li>Now, also test this from the command line: <tt>echo &lt;mypassword&gt; | thin-client-config-agent &lt;myuserid&gt;</tt></li>
<li>After the connectivity has been tested you need to obtain a patched Unity Greeter and a patched Remote Login Service from Launchpad and build those packages from source:
<pre>$ sudo apt-get install bzr
$ sudo apt-get install devscripts debhelper ubuntu-dev-tools build-essential
$ mkdir x2go
$ cd x2go
$ bzr branch lp:~m-gabriel/remote-login-service/x2go remote-login-service
$ cd remote-login-service &amp;&amp; get-build-deps debian/control &amp;&amp; debuild -uc -us &amp;&amp; cd ..
$ bzr branch lp:~m-gabriel/unity-greeter/x2go unity-greeter
$ cd unity-greeter &amp;&amp; get-build-deps debian/control &amp;&amp; debuild -uc -us &amp;&amp; cd ..
$ sudo dpkg -i unity-greeter*.deb remote-login-service*.deb</pre>
</li>
<li>Additionally, you need two further packages provided in the X2Go package archive (PPA) on Launchpad:
<pre>$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:x2go/stable
$ sudo apt-get install lightdm-remote-session-x2go libpam-x2go</pre>
</li>
<li>Finally, you have to teach the Remote Login Service not to talk to Canonical&#8217;s UCCS site, but to the X2Go Session Broker installed on your notebook:
<pre>[Remote Login Service]
Servers=MyUCCSTest

[Server MyUCCSTest]
Name=Remote Login
URI=http://x2gobroker.localdomain:8080/uccs/inifile/</pre>
</li>
<li>After an <tt>invoke-rc.d lightdm restart</tt> you should have a <i>Remote Login</i> login option on your Unity Greeter screen. Clicking that will request a username and password. As username use &lt;myuser&gt;@intern and &lt;mypassword&gt; where &lt;myuser&gt; and &lt;mypassword&gt; are the user account credentials of the user you normally use on your local notebook. With this action you logon to the UCCS-like WebUI of the X2Go Session Broker.</li>
<li>After successful logon to the X2Go Session Broker, you should be presented the three server logons that we configured further above.</li>
<li>Select one of the X2Go Servers (you of course have adapted the <tt>x2gobroker-sessionprofiles.conf</tt> file above to your needs&#8230;) for login.</li>
<li>Watch the X2Go Session coming up on your screen&#8230;</li>
<li>Client-side: DONE</li>
</ol>
</li>
</ul>
<p>&nbsp;</p>
<p>Please note that the X2Go Session Broker still is a very young project and you might stumble over the unexpected. Please report any errors to http://bugs.x2go.org (Debbugs BTS Software).</p>
<p>&nbsp;</p>
<p>light+love,</p>
<p>Mike Gabriel</p>
<p>&nbsp;</p>
<p>[6] http://wiki.x2go.org/doku.php/wiki:repositories:debian</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2013/04/28/289/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Co-operation between Canonical, X2Go, Edubuntu and Fleten.net in Denmark</title>
		<link>http://blog.x2go.org/index.php/2012/11/07/co-operation-between-canonical-x2go-edubuntu-and-fleten-net-in-denmark/</link>
		<comments>http://blog.x2go.org/index.php/2012/11/07/co-operation-between-canonical-x2go-edubuntu-and-fleten-net-in-denmark/#comments</comments>
		<pubDate>Wed, 07 Nov 2012 12:47:46 +0000</pubDate>
		<dc:creator>Mike Gabriel</dc:creator>
				<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=278</guid>
		<description><![CDATA[On the last Ubuntu Developer Summit (autumn 2012 in Copenhagen) a customer of mine (Fleten.net) arranged a meeting among people from Canonical, Fleten.net, Edubuntu and X2Go (presented by me). Thanks to the CEO of Fleten.net (Kjetil Fleten) for making this meeting possible. &#160; The quest is: how can X2Go become part of a Thinclient solution [...]]]></description>
				<content:encoded><![CDATA[<p>On the last Ubuntu Developer Summit (autumn 2012 in Copenhagen) a customer of mine (Fleten.net) arranged a meeting among people from Canonical, Fleten.net, Edubuntu and X2Go (presented by me). Thanks to the CEO of Fleten.net (Kjetil Fleten) for making this meeting possible.</p>
<p>&nbsp;</p>
<p>The quest is: how can X2Go become part of a Thinclient solution based on Ubuntu. In Ubuntu 12.10 it has become possible to seamlessly integrate RDP or Citrix based applications (running on MS Windows servers) into the Ubuntu Desktop (via the Remote Login feature). This is not yet possible for Linux applications running on Linux servers. We are at the edge of making this possible in the future.</p>
<p>&nbsp;</p>
<p>After a one hour meeting the first steps of a cooperation between Canonical and X2Go had been taken. The plan is to provide an X2Go/PyHoca Client (probably based on Python X2Go) integration into the Remote Login concept of Ubuntu, so that also Linux Terminal Server sessions based on X2Go can be in the product portfolio of Canonical partner companies (and others) deploying X2Go in cloud scenarios.</p>
<p>&nbsp;</p>
<p>The first communication on this new subproject of X2Go will take place this week. If you have any question on this journey, please feel free to contact us via our mailing list: x2go-user@lists.berlios.de. (subscription URL: http://lists.berlios.de/mailman/listinfo/x2go-user).</p>
<p>&nbsp;</p>
<p>light+love,</p>
<p>Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2012/11/07/co-operation-between-canonical-x2go-edubuntu-and-fleten-net-in-denmark/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>X2Go has a new bug tracker</title>
		<link>http://blog.x2go.org/index.php/2012/09/14/x2go-has-a-new-bug-tracker/</link>
		<comments>http://blog.x2go.org/index.php/2012/09/14/x2go-has-a-new-bug-tracker/#comments</comments>
		<pubDate>Fri, 14 Sep 2012 22:01:09 +0000</pubDate>
		<dc:creator>Mike Gabriel</dc:creator>
				<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=271</guid>
		<description><![CDATA[After unofficially having tried the Horde bug tracker ,,Whups&#8221; for while, we now have switched to a new and official X2Go BTS (X2Go Bug Tracking System). &#160; The X2Go Bug Tracker is based on debbugs, the software behind the Debian BTS. The system can be controlled by mail, the webfrontend is read-only. &#160; For filing [...]]]></description>
				<content:encoded><![CDATA[<p>After unofficially having tried the Horde bug tracker ,,Whups&#8221; for while, we now have switched to a new and official X2Go BTS (X2Go Bug Tracking System).</p>
<p>&nbsp;</p>
<p>The X2Go Bug Tracker is based on debbugs, the software behind the Debian BTS. The system can be controlled by mail, the webfrontend is read-only.</p>
<p>&nbsp;</p>
<p>For filing bugs, please send a mail to submit@bugs.x2go.org and provide at least these two lines at the beginning of  your mail:</p>
<p>&nbsp;</p>
<p>Package: &lt;package-name&gt;</p>
<p>Version: &lt;upstream-version&gt;</p>
<p>&nbsp;</p>
<p>Below these two lines try to give as precise as possible the observed problem / issue you have with the X2Go component referred to by &lt;package-name&gt;.</p>
<p>&nbsp;</p>
<p>Thanks for your contributions to X2Go,</p>
<p>Mike Gabriel</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2012/09/14/x2go-has-a-new-bug-tracker/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>X2Go Session Startups for server-side Users with non-bash-like Shells (e.g. tcsh and alike)</title>
		<link>http://blog.x2go.org/index.php/2012/07/26/x2go-sessions-startups-for-users-with-non-bash-like-shells-e-g-tcsh-and-alike/</link>
		<comments>http://blog.x2go.org/index.php/2012/07/26/x2go-sessions-startups-for-users-with-non-bash-like-shells-e-g-tcsh-and-alike/#comments</comments>
		<pubDate>Thu, 26 Jul 2012 09:19:17 +0000</pubDate>
		<dc:creator>Mike Gabriel</dc:creator>
				<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=262</guid>
		<description><![CDATA[On the X2Go user mailing list a new contributor brought up the issue that one of his users could not start up X2Go sessions. The user&#8217;s default shell is set to /usr/bin/tcsh and this cannot be changed for internal reasons. &#160; I dived into that issue and discovered that it occurs with both clients (X2Go [...]]]></description>
				<content:encoded><![CDATA[<p>On the X2Go user mailing list a new contributor brought up the issue that one of his users could not start up X2Go sessions. The user&#8217;s default shell is set to /usr/bin/tcsh and this cannot be changed for internal reasons.</p>
<p>&nbsp;</p>
<p>I dived into that issue and discovered that it occurs with both clients (X2Go Client, PyHoca-*). The issue got fixed today, nightly built packages are available very soon from now. The fixes will be in these to-be-released versions: python-x2go &gt;= 0.2.0.9,  x2goclient &gt;= 3.99.2.2.</p>
<p>&nbsp;</p>
<p>light+love,</p>
<p>Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2012/07/26/x2go-sessions-startups-for-users-with-non-bash-like-shells-e-g-tcsh-and-alike/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Qt (&gt;=4.8, and possibly other) applications regained window decorations (bug fix release of nxagent/x2goagent)</title>
		<link>http://blog.x2go.org/index.php/2012/06/28/246/</link>
		<comments>http://blog.x2go.org/index.php/2012/06/28/246/#comments</comments>
		<pubDate>Thu, 28 Jun 2012 16:40:44 +0000</pubDate>
		<dc:creator>Mike Gabriel</dc:creator>
				<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=246</guid>
		<description><![CDATA[Today Alex and I could eliminate another bug (introduced by ourselves) in nxagent/x2goagent. A new release of NX redistributed (3.5.0.14) has been prepared today. &#160; A couple of applications had lost their window decorations when launched in rootless mode (rootless = single window sessions). This issue occurs if the server is Debian wheezy or newer [...]]]></description>
				<content:encoded><![CDATA[<p>Today Alex and I could eliminate another bug (introduced by ourselves) in nxagent/x2goagent. <strong>A new <a href="http://code.x2go.org/gitweb?p=nx-libs.git;a=blob;f=debian/changelog;h=d98e9825a7453c5368cb512cf2f231bc5dbb4bcd;hb=136375188303a9c8d775fb7555085cfd24e544d4">release</a> of NX redistributed (3.5.0.14) has been prepared today.</strong></p>
<p>&nbsp;</p>
<p>A couple of applications had lost their window decorations when launched in rootless mode (rootless = single window sessions). This issue occurs if the server is Debian wheezy or newer (for FreeNX also reports exist on the web that refer to the problem having been introduced with Ubuntu 10.10). Mostly affected were Qt applications.</p>
<p>&nbsp;</p>
<p><strong>@FreeNX developers:</strong> Please note, this bug is also present in current FreeNX nx-X11 code (<a href="https://code.launchpad.net/~freenx-team">as found on Launchpad</a>). We have removed the following patch from our patchset to get this fixed:<br />
<a href="http://code.x2go.org/gitweb?p=nx-libs.git;a=blob;f=debian/patches-refused/109_nxagent_locale-utf8-compound-text.full.patch">http://code.x2go.org/gitweb?p=nx-libs.git;a=blob;f=debian/patches-refused/109_nxagent_locale-utf8-compound-text.full.patch</a></p>
<p>&nbsp;</p>
<p><strong>Still open issue:</strong><br />
Unfortunately, there is still no fix for the resume problem in current nx-X11.</p>
<p>&nbsp;</p>
<p>The Debian+Ubuntu packages of this NX (redistributed) release are already available in the known (<a href="http://wiki.x2go.org/doku.php/download:start">http://wiki.x2go.org/doku.php/download:start</a>) repositories.</p>
<p>&nbsp;</p>
<p>Greets,<br />
Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2012/06/28/246/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New X2Go releases: x2goclient, pyhoca-gui, pyhoca-cli, python-x2go</title>
		<link>http://blog.x2go.org/index.php/2012/06/11/new-x2go-releases-x2goclient-pyhoca-gui-pyhoca-cli-python-x2go/</link>
		<comments>http://blog.x2go.org/index.php/2012/06/11/new-x2go-releases-x2goclient-pyhoca-gui-pyhoca-cli-python-x2go/#comments</comments>
		<pubDate>Sun, 10 Jun 2012 23:22:38 +0000</pubDate>
		<dc:creator>Mike Gabriel</dc:creator>
				<category><![CDATA[announcements]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=237</guid>
		<description><![CDATA[&#160; The X2Go Project is proud to announce a couple of new X2Go component releases: x2goclient (3.99.2.1) pyhoca-gui (0.2.0.0) pyhoca-cli (0.2.0.1) python-x2go (0.2.0.3) All new packages will be available in our stable repositories (Debian,   Ubuntu) within the next 24h. &#160; The Mac OS version of x2goclient will be available within the next couple of days, [...]]]></description>
				<content:encoded><![CDATA[<p>&nbsp;</p>
<p>The X2Go Project is proud to announce a couple of new X2Go component releases:</p>
<ul>
<li>x2goclient (3.99.2.1)</li>
<li>pyhoca-gui (0.2.0.0)</li>
<li>pyhoca-cli (0.2.0.1)</li>
<li>python-x2go (0.2.0.3)</li>
</ul>
<p>All new packages will be available in our stable repositories (Debian,   Ubuntu) within the next 24h.</p>
<p>&nbsp;</p>
<p>The Mac OS version of x2goclient will be available within the next couple of days, the Windows client takes a little more time due to heavy workload on the developers&#8217; side.</p>
<p>&nbsp;</p>
<p>Sources and binary releases will be downloadable under this URL as  soon as they are provided by the packagers.<br />
<a href="http://code.x2go.org/releases/" target="_blank">http://code.x2go.org/releases/</a></p>
<p>&nbsp;</p>
<p>I personally am very proud to be able to present a long-waited-for major release of Python X2Go and PyHoca-GUI. Thanks to Dick Kniep (<a href="http://www.lindix.nl" target="_blank">http://www.lindix.nl</a>) for sponsoring this piece of software.</p>
<p>&nbsp;</p>
<p>The latest API documentation of Python X2Go can be read here:<br />
<a href="http://code.x2go.org/doc/python-x2go" target="_blank">http://code.x2go.org/doc/python-x2go</a></p>
<p>&nbsp;</p>
<p>Note: for Python X2Go, PyHoca-GUI and PyHoca-CLI, there has been a license change with this release. The three projects since 0.2.0.0 are versioned under the GNU Affero General Public License 3 (or higher) / AGPL-3+.</p>
<p>&nbsp;</p>
<p>light+love,<br />
Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2012/06/11/new-x2go-releases-x2goclient-pyhoca-gui-pyhoca-cli-python-x2go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unscheduled bugfix release of NX (redistributed) aka nxagent/x2goagent</title>
		<link>http://blog.x2go.org/index.php/2012/05/11/227/</link>
		<comments>http://blog.x2go.org/index.php/2012/05/11/227/#comments</comments>
		<pubDate>Fri, 11 May 2012 22:17:33 +0000</pubDate>
		<dc:creator>Mike Gabriel</dc:creator>
				<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=227</guid>
		<description><![CDATA[Due to the great contribution of Jim Burnes the X2Go team is able to bump an unscheduled bugfix release of NX (redistributed) aka x2goagent. The provided patch  fixes recently observed crashes of X2Go occuring on systems that had been upgraded to libcairo &#62;= 1.12.1. The patch&#8211;as stated by its author&#8211;is still in alpha development state [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">Due to the great contribution of Jim Burnes the X2Go team is able to bump an unscheduled bugfix release of NX (redistributed) aka x2goagent.</p>
<p style="text-align: left;">The provided patch  fixes recently observed crashes of X2Go occuring on systems that had been upgraded to libcairo &gt;= 1.12.1.</p>
<p style="text-align: left;">The patch&#8211;as stated by its author&#8211;is still in alpha development state but it definitely fixes crashes of GTK applications under KDE, resp. startup failures of the GNOME3 fallback desktop of recent Debian wheezy/sid X2Go installations. The X2Go developers will take a closer look at the patch and&#8211;if needed&#8211;will help to improve it.</p>
<p style="text-align: left;">Thanks, Jim for your contribution to X2Go.</p>
<p style="text-align: left;">Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2012/05/11/227/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X2Go server-side packages backported for Debian lenny</title>
		<link>http://blog.x2go.org/index.php/2012/04/05/x2go-server-side-packages-backported-for-debian-lenny/</link>
		<comments>http://blog.x2go.org/index.php/2012/04/05/x2go-server-side-packages-backported-for-debian-lenny/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 15:09:59 +0000</pubDate>
		<dc:creator>Mike Gabriel</dc:creator>
				<category><![CDATA[announcements]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=212</guid>
		<description><![CDATA[You all really should have upgraded your X2Go servers to Debian squeeze&#8230; For those who have not: we have just provided the latest releases of all server-side X2Go packages for Debian lenny. Such package backporting occurs in irregular intervals and is mostly related to some contractor who needs latest X2Go packages for not-yet upgraded servers. [...]]]></description>
				<content:encoded><![CDATA[<p>You all really should have upgraded your X2Go servers to Debian squeeze&#8230;</p>
<p>For those who have not: we have just provided the latest releases of all server-side X2Go packages for Debian lenny. Such package backporting occurs in irregular intervals and is mostly related to some contractor who needs latest X2Go packages for not-yet upgraded servers.</p>
<p>Happy installation!</p>
<p>Mike</p>
<p>&nbsp;</p>
<p>Debian lenny backport packages:</p>
<p>deb http://packages.x2go.org/debian lenny main</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2012/04/05/x2go-server-side-packages-backported-for-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linuxtag 2011 Berlin</title>
		<link>http://blog.x2go.org/index.php/2011/05/09/linuxtag-2011-berlin/</link>
		<comments>http://blog.x2go.org/index.php/2011/05/09/linuxtag-2011-berlin/#comments</comments>
		<pubDate>Mon, 09 May 2011 19:08:07 +0000</pubDate>
		<dc:creator>h1</dc:creator>
				<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=193</guid>
		<description><![CDATA[We will be again exhibitor on the Linuxtag 2011 Berlin. We will show the most recent developments, a complete installation our cooperative work with skolelinux and our little phoca. Please feel free to visit us, ask questions and talk about our and your ideas about the future of remote computing. See you (again) in Berlin! [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://blog.x2go.org/wp-content/uploads/2011/05/LinuxTag-Logo-Claim-plain-blue.jpg"><img class="alignnone size-medium wp-image-194" title="LinuxTag Logo" src="http://blog.x2go.org/wp-content/uploads/2011/05/LinuxTag-Logo-Claim-plain-blue-300x66.jpg" alt="Linuxtag 2011 Berlin" width="300" height="66" /></a></p>
<p>We will be again exhibitor on the Linuxtag 2011 Berlin. We will show the most recent developments, a complete installation our cooperative work with skolelinux and our little phoca. Please feel free to visit us, ask questions and talk about our and your ideas about the future of remote computing. See you (again) in Berlin! You&#8217;ll find us in &#8220;Halle 7.2a, Stand 117&#8243;.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2011/05/09/linuxtag-2011-berlin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>x2go presentation in munich (09-22-2010)</title>
		<link>http://blog.x2go.org/index.php/2010/09/19/x2go-presentation-in-munich-09-22-2010/</link>
		<comments>http://blog.x2go.org/index.php/2010/09/19/x2go-presentation-in-munich-09-22-2010/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 11:59:39 +0000</pubDate>
		<dc:creator>h1</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.x2go.org/?p=124</guid>
		<description><![CDATA[x2go to be shown on Linux-Stammtisch-Muenchen on 09-22-2010 (Wednesday)]]></description>
				<content:encoded><![CDATA[<p>Following an invitation of the xing group <a title="Linux Stammtisch München" href="http://www.xing.com/net/linux-muenchen/">Linux-Stammtisch-Muenchen</a> x2go will be presented in Munich on 09-22-2010 (Wednesday). If you wan&#8217;t to visit this Event, you&#8217;ll can do this for free by visiting the rooms of <a title="Unionsbräu München" href="http://www.unionsbraeu.de/so-finden-sie-uns/">Unionsbraeu Munich</a>. As our presentation is just one of a bunch of topics like red hat&#8217;s spice, this might be an interesting event.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.x2go.org/index.php/2010/09/19/x2go-presentation-in-munich-09-22-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
