<?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>Ubuntu Hacker &#187; Gutsy Gibbon</title>
	<atom:link href="http://www.ubuntuhacker.com/index.php/category/gutsy-gibbon/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ubuntuhacker.com</link>
	<description>Ubuntu Linux Tips, Tricks, and Hacks</description>
	<lastBuildDate>Wed, 28 Jan 2009 16:31:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Patch Ubuntu for openSSL and openSSH Vulnerability</title>
		<link>http://www.ubuntuhacker.com/index.php/2008/05/14/how-to-patch-ubuntu-for-openssl-and-openssh-vulnerability/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2008/05/14/how-to-patch-ubuntu-for-openssl-and-openssh-vulnerability/#comments</comments>
		<pubDate>Wed, 14 May 2008 20:30:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Gutsy Gibbon]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2008/05/14/how-to-patch-ubuntu-for-openssl-and-openssh-vulnerability/</guid>
		<description><![CDATA[I’m sure you have heard by now that there is a reported vulnerability in openSSL and openSSH. This only affects Debian and its variants for now (ie:Ubuntu). This is a pretty serious issue so it should be patched ASAP. Follow the instructions below to guard your Debian and Ubuntu machines from the vulnerability. Run the [...]]]></description>
			<content:encoded><![CDATA[<p><div style="float: right; margin: 3px;"><script type="text/javascript"><!--
google_ad_client = "pub-2379632312816710";
google_ad_width = 300;
google_ad_height = 250;
google_ad_format = "300x250_as";
google_ad_type = "text_image";
//2007-05-11: ubuntuhacker
google_ad_channel = "4281120205";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "3D81EE";
google_color_text = "000000";
google_color_url = "efefef";
//-->
</script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div></p>
<p>I’m sure you have heard by now that there is a reported <a title="openssl key vulnerability" href="http://www.ubuntu.com/usn/usn-612-1">vulnerability in openSSL</a> and <a title="openssh key vulnerability" href="http://www.ubuntu.com/usn/usn-612-2">openSSH</a>. This only affects Debian and its variants for now (ie:Ubuntu).</p>
<p>This is a pretty serious issue so it should be patched ASAP.</p>
<p>Follow the instructions below to guard your Debian and Ubuntu machines from the vulnerability.</p>
<p>Run the following to find out if you are affected:</p>
<blockquote><p><strong><code>wget -c http://security.debian.org/project/extra/dowkd/dowkd.pl.gz<br />
gunzip dowkd.pl.gz<br />
chmod u+x dowkd.pl<br />
./dowkd.pl user<br />
./dowkd.pl host hostname</code></strong></p></blockquote>
<p>If either the 2nd to last or the last command issued above shows something similar to the following:</p>
<blockquote><p><strong><code>.ssh/id_dsa.pub:1: weak key</code></strong></p></blockquote>
<p>…then you are affected by the vulnerability.  If you do not see “weak key” reported then you are OK.<strong><br />
</strong></p>
<p>Otherwise follow below:<br />
<strong></strong></p>
<p><strong></strong></p>
<p>Apply any updates by entering the following at a command line:</p>
<blockquote><p><strong><code>sudo apt-get update<br />
sudo apt-get upgrade<br />
sudo apt-get dist-upgrade</code></strong></p></blockquote>
<p>You should see an update for openssl and openssh packages (along with anything else available).</p>
<p>After these new packages have been installed you will want to regenerate any keys that you’ve generated (ie; openssh keys, CA cert, etc).</p>
<p>To generate a new openssh key for your user: (This only required if ‘<code>./dowkd.pl user</code>‘ reports weak)</p>
<blockquote><p><strong><code>ssh-keygen -t dsa -b 1024</code></strong></p></blockquote>
<p>To generate a new openssh key for your server: (This only required if <code>./dowkd.pl host hostname</code> reports weak)</p>
<blockquote><p><strong><code>sudo rm /etc/ssh/ssh_host_{dsa,rsa}_key*<br />
sudo dpkg-reconfigure -plow openssh-server</code></strong></p></blockquote>
<p>You should now run the validation script again and make sure it does not report any errors.  If you still see reported warnings such as:</p>
<blockquote><p><strong><code>.ssh/authorized_hosts:1: weak key</code></strong></p></blockquote>
<p>…this means that you have keys saved that are still affected, in this case in the authorized_host file. The easiest way to solve this is issue the following:</p>
<blockquote><p><strong><code>rm .ssh/authorized_hosts</code></strong></p></blockquote>
<p>This will remove the file, which will be recreated the next time it is needed or you can delete the line in the affected file using your favorite text editor. The line is indicated by the ending &#8220;:1&#8243; which maps to the affected line number.</p>
<p>Continue to run the ./dowkd.pl script until no weaknesses are reported.</p>
<div id="crp_related"><h2>Related Posts:</h2><ul><li><a href="http://www.ubuntuhacker.com/index.php/2007/10/30/how-to-hide-partition-volumes/" rel="bookmark" class="crp_title">How to Hide Partition Volumes</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/14/how-to-update-ubuntu/" rel="bookmark" class="crp_title">How to Update Ubuntu</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/16/linux-commands-working-with-files/" rel="bookmark" class="crp_title">Linux Commands &#8211; Working with Files</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/22/correct-syntax-for-using-ssh-and-sftp-on-irregular-ports/" rel="bookmark" class="crp_title">Correct syntax for using SSH and SFTP on irregular ports</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/12/17/how-to-connect-to-linux-hosts-without-a-password-key-authentication/" rel="bookmark" class="crp_title">How to Connect To Linux Hosts Without a Password (Key Authentication)</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.ubuntuhacker.com/index.php/2008/05/14/how-to-patch-ubuntu-for-openssl-and-openssh-vulnerability/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Time to Update &#8211; Now!</title>
		<link>http://www.ubuntuhacker.com/index.php/2008/02/13/time-to-update-now/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2008/02/13/time-to-update-now/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 16:31:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Gutsy Gibbon]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2008/02/13/time-to-update-now/</guid>
		<description><![CDATA[I can&#8217;t add anymore than wonderful Mackenzie already did: A new kernel update just went out yesterday or the day before (not sure), but it fixes the vmsplice proof-of-concept exploit that was released two days ago. The exploit would allow someone at a non-root console to elevate themself to root without using sudo or su [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t add anymore than wonderful Mackenzie already did:</p>
<p><em>A new kernel update just went out yesterday or the day before (not<br />
sure), but it fixes the vmsplice proof-of-concept exploit that was<br />
released two days ago. The exploit would allow someone at a non-root<br />
console to elevate themself to root without using sudo or su or knowing<br />
any passwords at all.</em></p>
<p>Check out Mackenzie&#8217;s site: <a href="http://ubuntulinuxtipstricks.blogspot.com/2008/02/please-update.html">Ubuntu Linux Tips &amp; Tricks</a></p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/update" rel="tag">update</a>, <a class="performancingtags" href="http://technorati.com/tag/vulnerability" rel="tag">vulnerability</a></p>
<div id="crp_related"><h2>Related Posts:</h2><ul><li><a href="http://www.ubuntuhacker.com/index.php/2007/09/24/webmin-vulnerability/" rel="bookmark" class="crp_title">Webmin Vulnerability</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/14/how-to-update-ubuntu/" rel="bookmark" class="crp_title">How to Update Ubuntu</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2008/05/14/how-to-patch-ubuntu-for-openssl-and-openssh-vulnerability/" rel="bookmark" class="crp_title">How to Patch Ubuntu for openSSL and openSSH Vulnerability</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/18/linux-commands-permissions/" rel="bookmark" class="crp_title">Linux Commands &#8211; Permissions</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/11/26/cool-ubuntu-wallpapers/" rel="bookmark" class="crp_title">Cool Ubuntu Wallpapers</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.ubuntuhacker.com/index.php/2008/02/13/time-to-update-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How-To: Migrating Amarok Playlists and Collection Data to a New Computer</title>
		<link>http://www.ubuntuhacker.com/index.php/2008/02/09/how-to-migrating-amarok-playlists-and-collection-data-to-a-new-computer/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2008/02/09/how-to-migrating-amarok-playlists-and-collection-data-to-a-new-computer/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 23:42:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Gutsy Gibbon]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2008/02/09/how-to-migrating-amarok-playlists-and-collection-data-to-a-new-computer/</guid>
		<description><![CDATA[So you have your Amarok playlists and collection set up all how you want and now you want to migrate everything over to a new computer, but don&#8217;t want to start from scratch? Read on for instructions on how to pull off this task with ease. In my example I had all my music saved [...]]]></description>
			<content:encoded><![CDATA[<p><div style="float: right; margin: 3px;"><script type="text/javascript"><!--
google_ad_client = "pub-2379632312816710";
google_ad_width = 300;
google_ad_height = 250;
google_ad_format = "300x250_as";
google_ad_type = "text_image";
//2007-05-11: ubuntuhacker
google_ad_channel = "4281120205";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "3D81EE";
google_color_text = "000000";
google_color_url = "efefef";
//-->
</script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>So you have your Amarok playlists and collection set up all how you want and now you want to migrate everything over to a new computer, but don&#8217;t want to start from scratch? Read on for instructions on how to pull off this task with ease.</p>
<p>In my example I had all my music saved on an external hard drive that mounted itself as &#8220;disk&#8221;. I wanted to change it over to a new computer and a new external drive that mounts itself as &#8220;OneTouch1&#8243; (Maxtor external drive). It doesn&#8217;t matter where your music is and where you want it to go (maybe you just want to connect the same drive to a new computer) but in either case this is how I did it:</p>
<p>First off I mounted both drives on the computer that had the current configuration I wanted to save.</p>
<p>Then I ran an rsync command to transfer all my music from the old external drive to the new one:</p>
<p><b>rsync -av /media/disk/Music/ /media/OneTouch1/Music</b></p>
<p>This copied all my music from disk/Music to OneTouch1/Music.</p>
<p>Then I needed to grab the current mySQL database, so I fired up webmin on the localhost and did a backup of my &#8220;amarok&#8221; database I had all my collection data stored in. One more thing you will need for all your playlist and configuration settings is the app settings folder located in your home directory in a hidden directory. You can grab it like so:</p>
<p><b>rsync -av /home/<em>yourusername</em>/.kde/share/apps/amarok/ /media/<em>OneTouch1</em>/amarok</b></p>
<p>Make sure you substitute your username and new drive name above.</p>
<p>Now we should be ready to configure the new computer with your old computer&#8217;s settings. The next steps assume you have Amarok installed and running.</p>
<p>Make sure Amarok is closed and not running and then plug in your external drive. </p>
<p>Create a symbolic link to map everything up like it was before. In my case it was done like so:</p>
<p><b>ln -s /media/OneTouch1/ /media/disk</p>
<p></b>The above is needed even if you want to use the same drive, but only in the case that it mounts itself on the new computer with a different name than it does on the old computer.<b></p>
<p></b>Now we want to create an empty database called amarok (or whatever your previous db was called) (I used webmin for ease of use) and create the same user id and credentials that you had used on your previous computer.</p>
<p>The next step is open your home directory and hit <em>ctrl &#8220;h&#8221;</em> to show hidden files and browse to <em>.kde/share/apps</em> and rename the amorak folder to amorak_old (just so we can revert later if needed). Then copy the amorak folder we had backed up from your old computer onto the external drive to replace the folder we just renamed.</p>
<p>Once this is all complete, we can open Amarok and go to <em>Settings -&gt; Configure Amaro</em>k and navigate to the <em>Collection</em> tab on the left. Make sure that the correct directory is selected (using the symbolic link to select it) and also that the correct db and user credentials are entered.</p>
<p>After the above is done, go to <em>Tools -&gt; Rescan Collection</em>. This may take awhile, depending on the size of your collection, but when it is complete you should see that everything is how it was on your old computer!</p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/Amarok" rel="tag">Amarok</a>, <a class="performancingtags" href="http://technorati.com/tag/migrate" rel="tag">migrate</a>, <a class="performancingtags" href="http://technorati.com/tag/music" rel="tag">music</a>, <a class="performancingtags" href="http://technorati.com/tag/collection" rel="tag">collection</a>, <a class="performancingtags" href="http://technorati.com/tag/playlists" rel="tag">playlists</a></p>
<div id="crp_related"><h2>Related Posts:</h2><ul><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/15/linux-commands-working-with-directories/" rel="bookmark" class="crp_title">Linux Commands &#8211; Working with Directories</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/06/13/how-to-create-iso-files-from-cddvd/" rel="bookmark" class="crp_title">How to Create .iso files from CD/DVD</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/16/linux-commands-working-with-files/" rel="bookmark" class="crp_title">Linux Commands &#8211; Working with Files</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/11/ubuntu-linux-explained/" rel="bookmark" class="crp_title">Ubuntu Linux Explained</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/06/18/adding-terminal-aliases-to-ubuntu/" rel="bookmark" class="crp_title">Adding Terminal Aliases to Ubuntu</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.ubuntuhacker.com/index.php/2008/02/09/how-to-migrating-amarok-playlists-and-collection-data-to-a-new-computer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cool Ubuntu Wallpapers</title>
		<link>http://www.ubuntuhacker.com/index.php/2007/11/26/cool-ubuntu-wallpapers/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2007/11/26/cool-ubuntu-wallpapers/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 22:23:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Gutsy Gibbon]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2007/11/26/cool-ubuntu-wallpapers/</guid>
		<description><![CDATA[If you are looking to score some cool Ubuntu wallpapers, look no further. Technorati Tags: wallpapers Related Posts:Time to Update &#8211; Now!How-To: Migrating Amarok Playlists and Collection Data to a New ComputerHow to Unzip a Directory Filled with Zip FilesLinux Commands &#8211; PermissionsUbuntu Linux ExplainedPowered by Contextual Related Posts]]></description>
			<content:encoded><![CDATA[<p>If you are looking to score some cool Ubuntu wallpapers, <a href="http://ubuntucorner.blogspot.com/2007/08/ubuntu-wallpapers-collection.html">look no further</a>.</p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/wallpapers" rel="tag">wallpapers</a></p>
<div id="crp_related"><h2>Related Posts:</h2><ul><li><a href="http://www.ubuntuhacker.com/index.php/2008/02/13/time-to-update-now/" rel="bookmark" class="crp_title">Time to Update &#8211; Now!</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2008/02/09/how-to-migrating-amarok-playlists-and-collection-data-to-a-new-computer/" rel="bookmark" class="crp_title">How-To: Migrating Amarok Playlists and Collection Data to a New Computer</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/30/how-to-unzip-a-directory-filled-with-zip-files/" rel="bookmark" class="crp_title">How to Unzip a Directory Filled with Zip Files</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/18/linux-commands-permissions/" rel="bookmark" class="crp_title">Linux Commands &#8211; Permissions</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/11/ubuntu-linux-explained/" rel="bookmark" class="crp_title">Ubuntu Linux Explained</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.ubuntuhacker.com/index.php/2007/11/26/cool-ubuntu-wallpapers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How-To Install VMware Server on Gutsy Gibbon</title>
		<link>http://www.ubuntuhacker.com/index.php/2007/11/17/how-to-install-vmware-server-on-gutsy-gibbon/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2007/11/17/how-to-install-vmware-server-on-gutsy-gibbon/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 17:02:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gutsy Gibbon]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2007/11/17/how-to-install-vmware-server-on-gutsy-gibbon/</guid>
		<description><![CDATA[So you want to create a VMware Server on Ubuntu Gutsy Gibbon 7.10? And you want to run it without the graphical user interface (GUI)? Well today you are in luck. VMware Server (free), allows you to connect graphically to administer a VMware&#160; Server so there is no need to install a GUI on your [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense-->So you want to create a VMware Server on Ubuntu Gutsy Gibbon 7.10? And you want to run it without the graphical user interface (GUI)?</p>
<p>Well today you are in luck. VMware Server (free), allows you to connect graphically to administer a VMware&nbsp; Server so there is no need to install a GUI on your VMware Server and waste precious RAM.</p>
<p>Let&#8217;s get started.</p>
<p>First off, I assume that you already have an install of Gutsy Gibbon server version installed and set to a static IP address. From here on out it is pretty easy.</p>
<p>All we have to do is run the following command to install a few prerequisites before we get started.</p>
<p>First jump to the root account:</p>
<p><b>sudo su</b></p>
<p>then:</p>
<p><b>apt-get install build-essential linux-headers-`uname -r` xinetd xorg-dev<br /></b><br />After that is installed we grab the install tar file from VMware.com:</p>
<p><b>wget http://vmware.com/whatever-the-current-release-url-is</b></p>
<p>extract the tar:</p>
<p><b>tar xfz VMware-server-1.*</b></p>
<p>then move into the newly created directory:</p>
<p><b>cd vmware-server-distrib</b></p>
<p>Then run the install script:</p>
<p><b>./vmware-install.pl</b></p>
<p>Accept all the default options (unless you have reason not to) and you will return back to the command prompt after installation is complete.</p>
<p>At this point you can connect to the server via the VMware console by entering the IP address of your new VMware Server and the login credentials.</p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/VMware" rel="tag">VMware</a>, <a class="performancingtags" href="http://technorati.com/tag/server" rel="tag">server</a>, <a class="performancingtags" href="http://technorati.com/tag/Gutsy" rel="tag">Gutsy</a>, <a class="performancingtags" href="http://technorati.com/tag/Gibbon" rel="tag">Gibbon</a>, <a class="performancingtags" href="http://technorati.com/tag/Ubuntu" rel="tag">Ubuntu</a></p>
<div id="crp_related"><h2>Related Posts:</h2><ul><li><a href="http://www.ubuntuhacker.com/index.php/2007/12/17/how-to-connect-to-linux-hosts-without-a-password-key-authentication/" rel="bookmark" class="crp_title">How to Connect To Linux Hosts Without a Password (Key Authentication)</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/22/correct-syntax-for-using-ssh-and-sftp-on-irregular-ports/" rel="bookmark" class="crp_title">Correct syntax for using SSH and SFTP on irregular ports</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/11/ubuntu-linux-explained/" rel="bookmark" class="crp_title">Ubuntu Linux Explained</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2008/05/14/how-to-patch-ubuntu-for-openssl-and-openssh-vulnerability/" rel="bookmark" class="crp_title">How to Patch Ubuntu for openSSL and openSSH Vulnerability</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/06/20/how-to-run-internet-explorer-on-linux/" rel="bookmark" class="crp_title">How to Run Internet Explorer on Linux</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.ubuntuhacker.com/index.php/2007/11/17/how-to-install-vmware-server-on-gutsy-gibbon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
