<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >

<channel>
	<title>Michael Vogt&#039;s blog &#187; Ubuntu</title>
	<atom:link href="http://mvogt.wordpress.com/category/ubuntu/feed/?mrss=off" rel="self" type="application/rss+xml" />
	<link>http://mvogt.wordpress.com</link>
	<description>I like tea and free software</description>
	<lastBuildDate>Fri, 17 May 2013 09:23:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mvogt.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Michael Vogt&#039;s blog &#187; Ubuntu</title>
		<link>http://mvogt.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mvogt.wordpress.com/osd.xml" title="Michael Vogt&#039;s blog" />
	<atom:link rel='hub' href='http://mvogt.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Webkitgtk &amp; SSL</title>
		<link>http://mvogt.wordpress.com/2013/04/30/webkitgtk-ssl/</link>
		<comments>http://mvogt.wordpress.com/2013/04/30/webkitgtk-ssl/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 18:03:18 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=237</guid>
		<description><![CDATA[For a project of mine I created a small app based on webkitgtk that talks to a SSL server. And I almost forgot about the libsoup default behavior for SSL certificates checking. By default libsoup and therefore webkitgtk will not do any SSL certificate checks. You need to put something like the following snippet into [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=237&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>For a project of mine I created a small app based on webkitgtk that talks to a SSL server.</p>
<p>
And I almost forgot about the libsoup <a href="https://bugzilla.gnome.org/show_bug.cgi?id=666280">default behavior</a> for SSL certificates checking. By default libsoup and therefore webkitgtk will not do any SSL certificate checks. You need to put something like the following snippet into your code (adjust for your language of choice):</p>
<pre>
from gi.repository import WebKit

session = WebKit.get_default_session()
session.set_property("ssl-use-system-ca-file", True)
</pre>
<p>If you don&#8217;t do this it will accept any certificate (including self-signed ones).</p>
<p>This is documented behavior in libsoup and they don&#8217;t want to change it for compatiblity reasons in libsoup. But for webkit its unexpected behavior (at least to me) and I hope the webkitgtk developers will consider changing this default in webkit. I filed <a href="https://bugs.webkit.org/show_bug.cgi?id=114945">a bug</a> about it. So if you use webkitgtk and SSL, remember to set the above property.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/237/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=237&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/04/30/webkitgtk-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PassHash cmdline</title>
		<link>http://mvogt.wordpress.com/2013/04/18/passhash-cmdline/</link>
		<comments>http://mvogt.wordpress.com/2013/04/18/passhash-cmdline/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 20:45:50 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=214</guid>
		<description><![CDATA[I use the PassHash firefox extension to generate site-specific strong passwords. The idea behind the extension is that a master password and a siteTag (e.g. the domain name) is used to generate a sha1 hash. This hash is used as the password for the website. In python its essentially this code: h = hmac.new(master_pass, site_tag, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=214&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I use the <a href="http://github.com/wijjo/PassHash">PassHash firefox extension</a> to  generate site-specific strong passwords. The idea behind the extension is that a master password and a siteTag (e.g. the domain name) is used to generate a sha1 hash. This hash is used as the password for the website. In python its essentially this code:</p>
<pre>
h = hmac.new(master_pass, site_tag, hashlib.sha1)
print(b64encode(h.digest())[:hash_len])
</pre>
<p>
I want a commandline utility that can output me PassHash compatible hashes when I use w3m (or if the extension stops working for some reason).
</p>
<p>
To my delight I discovered that the upstream git repNice and hard to brute-force.o of PassHash already has a <a href="https://github.com/wijjo/PassHash/blob/master/tools/passhash.py">python helper</a>  to generate passhash compatible password. I added some tweaks to add pythons argparse <a href="https://github.com/mvo5/PassHash/blob/master/tools/passhash.py">[1]</a> and now I&#8217;m really happy with it:
</p>
<pre>
$ ./tools/passhash.py --hash-size 14 slashdot.org
Please enter the master key: 
KPXveo7bq7j1%X
</pre>
<p>Hard to brute-force and matches what the extension generates.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=214&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/04/18/passhash-cmdline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>squid-deb-proxy for Debian</title>
		<link>http://mvogt.wordpress.com/2013/04/11/squid-deb-proxy-for-debian/</link>
		<comments>http://mvogt.wordpress.com/2013/04/11/squid-deb-proxy-for-debian/#comments</comments>
		<pubDate>Thu, 11 Apr 2013 18:05:48 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=207</guid>
		<description><![CDATA[I uploaded squid-deb-proxy into Debian unstable today and its in the NEW queue. I created it back in the days of Ubuntu 10.04 and some people voiced interest in having it in Debian as well so I spend a bit of time to get it customized for Debian. Squid-deb-proxy uses the well known squid proxy [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=207&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I uploaded squid-deb-proxy into Debian unstable today and its in the NEW queue. I created it back in the days of Ubuntu 10.04 and some people voiced interest in having it in Debian as well so I spend a bit of time to get it customized for Debian.</p>
<p>Squid-deb-proxy uses the well known squid proxy with a custom configuration to cache deb package and Indexfiles (like Packages.gz) that will allow caching from the default archives and mirrors and reject anything else by default.</p>
<p>The basic philosophy is that &#8220;it just works&#8221;. You run on your server:</p>
<pre>
root@server# apt-get install squid-deb-proxy
</pre>
<p>and on your clients:</p>
<pre>
root@client# apt-get install squid-deb-proxy-client
</pre>
<p>and that&#8217;s it. It does not require any fiddling with configuration (unless you want to <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). The default will let you connect to .debian.org and nothing else.</p>
<p>The server will announce itself via avahi as _apt_proxy._tcp and the<br />
client will hook into apt to use Acquire::http::ProxyAutoDetect. The<br />
client is useful for other servers that announce themself via avahi.</p>
<p>Packaging was a bit more work than anticipated because there is a bit of setup and teardown work in the initscript. For Debian as sysvinit script was needed, Ubuntu uses upstart so it took a bit of refactoring to extract the code into a common helper.</p>
<p>If you want to try it now, its available via:</p>
<pre>
$ bzr branch lp:squid-deb-proxy
$ cd squid-deb-proxy
$ bzr-buildpackage
</pre>
<p>and in unstable once it leaves the NEW queue.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=207&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/04/11/squid-deb-proxy-for-debian/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using gdebi to install build-dependencies</title>
		<link>http://mvogt.wordpress.com/2013/03/22/using-gdebi-to-install-build-dependencies/</link>
		<comments>http://mvogt.wordpress.com/2013/03/22/using-gdebi-to-install-build-dependencies/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 14:23:52 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=141</guid>
		<description><![CDATA[I wrote gdebi a long time ago to make it really easy to install .deb package with proper dependency resolution from the commandline and via a gtk (and kde) UI. But another neat (but not very well known) feature of the gdebi-core cli tool is to install the build-dependencies of a debian source package. If [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=141&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I wrote gdebi a long time ago to make it really easy to install .deb package with proper dependency resolution from the commandline and via a gtk (and kde) UI. But another neat (but not very well known) feature of the gdebi-core cli tool is to install the build-dependencies of a debian source package. If you run:</p>
<pre>
$ gdebi debian/control
</pre>
<p>in a unpacked debian source package it will check for missing build-dependencies and offer to install them. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=141&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/03/22/using-gdebi-to-install-build-dependencies/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>mvo at ubuntu.com mail not working currently (hopefully back soon)</title>
		<link>http://mvogt.wordpress.com/2013/01/05/mvo-at-ubuntu-com-mail-not-working-currently-hopefully-back-soon/</link>
		<comments>http://mvogt.wordpress.com/2013/01/05/mvo-at-ubuntu-com-mail-not-working-currently-hopefully-back-soon/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 08:30:28 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=151</guid>
		<description><![CDATA[If you tried to reach me via my ubuntu.com mail in the last couple of days you got a 550 error. There seems to be some misconfiguration on the ubuntu.com mailserver, I hope it gets fixed soon. You can use my mvo at debian.org in the meantime.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=151&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>If you tried to reach me via my ubuntu.com mail in the last couple of days you got a 550 error. There seems to be some misconfiguration on the ubuntu.com mailserver, I hope it gets fixed soon. You can use my mvo at debian.org in the meantime.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=151&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/01/05/mvo-at-ubuntu-com-mail-not-working-currently-hopefully-back-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sqlite3-debversions</title>
		<link>http://mvogt.wordpress.com/2011/08/16/sqlite3-debversions/</link>
		<comments>http://mvogt.wordpress.com/2011/08/16/sqlite3-debversions/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 19:31:45 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=129</guid>
		<description><![CDATA[I created a small extension for sqlite3 today to allow order by debian version easily. This allows writing: .load "./debversions.so"; SELECT * FROM packages ORDER BY version COLLAT debversion_compare; And it will do the right ordering. Its available on launchpad.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=129&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I created a small extension for sqlite3 today to allow order by debian version easily. This allows writing:<br />
<code><br />
.load "./debversions.so";<br />
SELECT * FROM packages ORDER BY version COLLAT debversion_compare;<br />
</code><br />
And it will do the right ordering. Its available on <a href="https://launchpad.net/sqlite3-debversions">launchpad</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=129&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2011/08/16/sqlite3-debversions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New apt hits oneiric</title>
		<link>http://mvogt.wordpress.com/2011/08/08/new-apt-hits-oneiric/</link>
		<comments>http://mvogt.wordpress.com/2011/08/08/new-apt-hits-oneiric/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 16:47:14 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=125</guid>
		<description><![CDATA[I just uploaded a new apt to oneiric. Its a ABI break so there will be short time that the archive is in a state of churn while the packages are rebuild against the new ABI. But the good news is that apt finally got dpointers so we will require less ABI breaks in the [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=125&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I just uploaded a new apt to oneiric. Its a ABI break so there will be short time that the archive is in a state of churn while the packages are rebuild against the new ABI. But the good news is that apt finally got dpointers so we will require less ABI breaks in the future. Plus we moved the library into a proper library package making the transitions much easier from now on.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=125&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2011/08/08/new-apt-hits-oneiric/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>apt-clone</title>
		<link>http://mvogt.wordpress.com/2011/05/07/apt-clone/</link>
		<comments>http://mvogt.wordpress.com/2011/05/07/apt-clone/#comments</comments>
		<pubDate>Sat, 07 May 2011 07:11:31 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=121</guid>
		<description><![CDATA[In natty we got a new tool called &#8220;apt-clone&#8221;. Its a commandline application that can be used to clone the packages state of a system and restore it on another system. It will save the full state (sources.list, packages/versions installed, auto-installed inforrmation) and optionally using dpkg-repack in order to save not/no-longer downloadable package (like debs [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=121&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In natty we got a new tool called &#8220;apt-clone&#8221;. Its a commandline application that can be used to clone the packages state of a system and restore it on another system. It will save the full state (sources.list, packages/versions installed, auto-installed inforrmation) and optionally using dpkg-repack in order to save not/no-longer downloadable package (like debs that got installed manually via e.g. gdebi or dpkg -i). The file is pretty small because it just stores references to the files in the archive. One nice feature of the restore is that it can be applied to a different root directory (creating a chroot). I use this to reproduce upgrade issues and its really handy for this. Whats missing currently is modified conffiles detection, but there is some work on this in trunk.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=121&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2011/05/07/apt-clone/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>update-manager &amp; unity</title>
		<link>http://mvogt.wordpress.com/2011/05/03/update-manager-unity/</link>
		<comments>http://mvogt.wordpress.com/2011/05/03/update-manager-unity/#comments</comments>
		<pubDate>Tue, 03 May 2011 07:46:30 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=112</guid>
		<description><![CDATA[I merged a branch from Bilal Akhtar for update-manager the other day to add unity quicklist support (thanks Bilal!). While at it I added the updates count to the launcher too. Small change, but I really like it<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=112&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I merged a branch from Bilal Akhtar for update-manager the other day to add unity quicklist support (thanks Bilal!). While at it I added the updates count to the launcher too. Small change, but I really like it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://mvogt.files.wordpress.com/2011/05/u-m-unity.png"><img src="http://mvogt.files.wordpress.com/2011/05/u-m-unity.png?w=450" alt="" title="u-m-unity"   class="alignnone size-full wp-image-113" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=112&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2011/05/03/update-manager-unity/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Software-center &amp; weblive</title>
		<link>http://mvogt.wordpress.com/2011/03/25/software-center-weblive/</link>
		<comments>http://mvogt.wordpress.com/2011/03/25/software-center-weblive/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 21:48:46 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=101</guid>
		<description><![CDATA[There is another cool feature in software-center in natty that I would like to show today. If you have the package &#8220;qtnx&#8221; (in universe) installed you will be able to &#8220;test-drive&#8221; a lot of the available applications in software-center without having to actually install them. They are run via the NX protocol on a remove [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=101&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>There is another cool feature in software-center in natty that I would like to show today. If you have the package &#8220;qtnx&#8221; (in universe) installed you will be able to &#8220;test-drive&#8221; a lot of the available applications in software-center without having to actually install them. They are run via the NX protocol on a remove server with pretty good speed. Its all possible thanks to Stéphane Grabers <a href="http://www.stgraber.org/2011/03/06/introducing-the-weblive-api/">Weblive</a>.</p>
<p>This is what it loks like (notice the &#8220;Test drive&#8221; button below the screenshot):<br />
<a href="http://mvogt.files.wordpress.com/2011/03/screenshot-ubuntu-software-center.png"><img src="http://mvogt.files.wordpress.com/2011/03/screenshot-ubuntu-software-center.png?w=450&#038;h=240" alt="" title="Screenshot-Ubuntu Software Center with weblive" width="450" height="240" class="alignnone size-full wp-image-102" /></a> </p>
<p>And here what happens when I press test-drive and its connected (connecting takes about a minute currently).<br />
<a href="http://mvogt.files.wordpress.com/2011/03/screenshot-usc-with-qtnx.png"><img src="http://mvogt.files.wordpress.com/2011/03/screenshot-usc-with-qtnx.png?w=450&#038;h=242" alt="" title="Screenshot USC with qtnx" width="450" height="242" class="alignnone size-full wp-image-103" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=101&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2011/03/25/software-center-weblive/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
	</channel>
</rss>
