<?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; Edgy Eft</title>
	<atom:link href="http://www.ubuntuhacker.com/index.php/category/ubuntu/edgy-eft/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 Hide Partition Volumes</title>
		<link>http://www.ubuntuhacker.com/index.php/2007/10/30/how-to-hide-partition-volumes/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2007/10/30/how-to-hide-partition-volumes/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 15:12:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2007/10/30/how-to-hide-partition-volumes/</guid>
		<description><![CDATA[Gnome users only&#8230; Run gconf-editor (by hitting Alt+F2 or from terminal). Browse to apps-&#62;nautilus-&#62;desktop in the left-hand folders window Uncheck the &#8220;volumes_visible&#8221; option Careful, as this will also hide portable storage volumes also&#8230; Related Posts:How to Patch Ubuntu for openSSL and openSSH VulnerabilityHow to refresh Gnome PanelGoogle Releases Desktop Search for LinuxHow to Update UbuntuHow-To: [...]]]></description>
			<content:encoded><![CDATA[<p>Gnome users only&#8230;</p>
<blockquote><ul>
<li>Run <em>gconf-editor</em> (by hitting Alt+F2 or from terminal).</li>
<li>Browse to <em>apps-&gt;nautilus-&gt;desktop</em> in the left-hand folders window</li>
<li>Uncheck the &#8220;volumes_visible&#8221; option</li>
</ul>
</blockquote>
<p>Careful, as this will also hide portable storage volumes also&#8230;</p>
<div id="crp_related"><h2>Related Posts:</h2><ul><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/23/how-to-refresh-gnome-panel/" rel="bookmark" class="crp_title">How to refresh Gnome Panel</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/06/28/google-releases-desktop-search-for-linux/" rel="bookmark" class="crp_title">Google Releases Desktop Search for Linux</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/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>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/10/30/how-to-hide-partition-volumes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Releases Desktop Search for Linux</title>
		<link>http://www.ubuntuhacker.com/index.php/2007/06/28/google-releases-desktop-search-for-linux/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2007/06/28/google-releases-desktop-search-for-linux/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 21:06:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2007/06/28/google-releases-desktop-search-for-linux/</guid>
		<description><![CDATA[Today Google announced the release of their desktop search engine &#8220;Google Desktop&#8221; for the Linux platform. Ubuntu is fully supported. Get it here: http://desktop.google.com/linux/ Related Posts:How to refresh Gnome PanelUbuntu Search EngineHow to Hide Partition VolumesUbuntu Linux ExplainedHow to Update UbuntuPowered by Contextual Related Posts]]></description>
			<content:encoded><![CDATA[<p>Today Google announced the release of their desktop search engine &#8220;Google Desktop&#8221; for the Linux platform.</p>
<p>Ubuntu is fully supported.</p>
<p>Get it here:</p>
<p><a href="http://desktop.google.com/linux/">http://desktop.google.com/linux/</a></p>
<div id="crp_related"><h2>Related Posts:</h2><ul><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/23/how-to-refresh-gnome-panel/" rel="bookmark" class="crp_title">How to refresh Gnome Panel</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/06/06/ubuntu-search-engine/" rel="bookmark" class="crp_title">Ubuntu Search Engine</a></li><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/11/ubuntu-linux-explained/" rel="bookmark" class="crp_title">Ubuntu Linux Explained</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>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/06/28/google-releases-desktop-search-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Ubuntu Usage Videos</title>
		<link>http://www.ubuntuhacker.com/index.php/2007/06/21/free-ubuntu-usage-videos/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2007/06/21/free-ubuntu-usage-videos/#comments</comments>
		<pubDate>Thu, 21 Jun 2007 16:22:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2007/06/21/free-ubuntu-usage-videos/</guid>
		<description><![CDATA[If you are one of those people that learn by watching, I&#8217;ve got a deal for you! Ubuntu Clips, a new found site by yours truly, takes a great approach to teaching new Ubuntu users the ins and outs of the Linux operating system. If you are a recent Windows to Linux convert and want [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense-->If you are one of those people that learn by watching, I&#8217;ve got a deal for you!</p>
<p><a href="http://ubuntuclips.org/">Ubuntu Clips</a>, a new found site by yours truly, takes a great approach to teaching new Ubuntu users the ins and outs of the Linux operating system.</p>
<p>If you are a recent Windows to Linux convert and want to get up and running fast, I highly recommend this site.</p>
<p>Head over and watch a video or two and increase your Ubuntu knowledge!</p>
<div id="crp_related"><h2>Related Posts:</h2><ul><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/20/how-to-run-internet-explorer-on-linux/" rel="bookmark" class="crp_title">How to Run Internet Explorer on Linux</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/06/08/kflickr-for-uploading-to-flickr/" rel="bookmark" class="crp_title">Kflickr for uploading to Flickr</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/17/ubuntu-and-automatix/" rel="bookmark" class="crp_title">Ubuntu and Automatix</a></li><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>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/06/21/free-ubuntu-usage-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Run Internet Explorer on Linux</title>
		<link>http://www.ubuntuhacker.com/index.php/2007/06/20/how-to-run-internet-explorer-on-linux/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2007/06/20/how-to-run-internet-explorer-on-linux/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 21:42:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2007/06/20/how-to-run-internet-explorer-on-linux/</guid>
		<description><![CDATA[If you have a website or two that doesn&#8217;t play nice with Firefox, all is not lost. IEs 4 Linux offers a free solution to run IE 6 and releases before 6 with a simply install utilizing wine. Their install instructions are for edgy but by changing the relevant code areas to feisty, it works [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense-->If you have a website or two that doesn&#8217;t play nice with Firefox, all is not lost.</p>
<p>IEs 4 Linux offers a free solution to run IE 6 and releases before 6 with a simply install utilizing wine.</p>
<p>Their install instructions are for edgy but by changing the relevant code areas to feisty, it works just fine in the latest release of Ubuntu.</p>
<p>Head over to their site for detailed install instructions and happy surfing!</p>
<p><a href="http://www.tatanka.com.br/ies4linux/page/Installation">IEs for Linux</a></p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/Internet%20Explorer" rel="tag">Internet Explorer</a>, <a class="performancingtags" href="http://technorati.com/tag/Linux" rel="tag">Linux</a>, <a class="performancingtags" href="http://technorati.com/tag/IE" rel="tag">IE</a></p>
<div id="crp_related"><h2>Related Posts:</h2><ul><li><a href="http://www.ubuntuhacker.com/index.php/2007/05/17/ubuntu-and-automatix/" rel="bookmark" class="crp_title">Ubuntu and Automatix</a></li><li><a href="http://www.ubuntuhacker.com/index.php/2007/11/17/how-to-install-vmware-server-on-gutsy-gibbon/" rel="bookmark" class="crp_title">How-To Install VMware Server on Gutsy Gibbon</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/21/free-ubuntu-usage-videos/" rel="bookmark" class="crp_title">Free Ubuntu Usage Videos</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>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/06/20/how-to-run-internet-explorer-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Terminal Aliases to Ubuntu</title>
		<link>http://www.ubuntuhacker.com/index.php/2007/06/18/adding-terminal-aliases-to-ubuntu/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2007/06/18/adding-terminal-aliases-to-ubuntu/#comments</comments>
		<pubDate>Mon, 18 Jun 2007 21:42: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[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2007/06/18/adding-terminal-aliases-to-ubuntu/</guid>
		<description><![CDATA[If you spend any time at all in the terminal you will soon discover that re-typing common commands gets old very quickly. Linux has come up with a great solution to an age old problem. The alias command. This command allows you to create an alias or shortcut if you will to calling a longer [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--><br />If you spend any time at all in the terminal you will soon discover that re-typing common commands gets old very quickly.</p>
<p>Linux has come up with a great solution to an age old problem.</p>
<p>The alias command.</p>
<p>This command allows you to create an alias or shortcut if you will to calling a longer command.</p>
<p>Let&#8217;s say you vnc another machine a lot. That machine happens to not have a DNS host name associated with it. You are always trying to remember the IP of that machine so you can VNC it.</p>
<p>The command to VNC our imaginary machine goes something like this:</p>
<p><b>vncviewer admin@192.168.245.231</p>
<p></b>That is a lot of typing for a common task.</p>
<p>Let&#8217;s simplify that. Type the following:<br /><b><br />alias vncmybox=&#8217;</b><b>vncviewer admin@192.168.245.231&#8242;</p>
<p></b>Now you have created your first alias. Anytime during the session you type <b>vncmybox </b>it will run the command we assigned to that alias.</p>
<p>Here is the catch, as soon as you close the terminal all is lost.</p>
<p>Let&#8217;s make this change permanent.</p>
<p>Go to you home folder and create a file named:</p>
<p><b>.bash_aliases</p>
<p></b>(This can also be done via the terminal like so:</p>
<p><b>touch ~/.bash_aliases</b></p>
<p>Then add the alias we created earlier on the first line of this text file as so: (Remember to open this file from your home folder you will have to show hidden files by pressing ctrl + h when in your home directory)</p>
<p><b>alias vncmybox=&#8217;</b><b>vncviewer admin@192.168.245.231&#8242;</p>
<p></b>Save the file and open the file named:</p>
<p><b>.bashrc</p>
<p></b>Find the section that is commented out (lines preceded with #&#8217;s) to looks like this:</p>
<p><b>if [ -f ~/.bash_aliases ]; then<br />&nbsp;&nbsp;&nbsp; . ~/.bash_aliases<br />fi</b></p>
<p>Uncomment those lines. Save and close and then open a new terminal window.</p>
<p>Now type:</p>
<p><b>alias</p>
<p></b>It will list your aliases including the one we just added. Now you can go back and add other commonly used commands to your .bash_aliases file to ease your terminal tasks.</p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/alias" rel="tag">alias</a>, <a class="performancingtags" href="http://technorati.com/tag/Ubuntu" rel="tag">Ubuntu</a>, <a class="performancingtags" href="http://technorati.com/tag/Linux" rel="tag">Linux</a>, <a class="performancingtags" href="http://technorati.com/tag/terminal" rel="tag">terminal</a></p>
<div id="crp_related"><h2>Related Posts:</h2><ul><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/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/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/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/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/2007/06/18/adding-terminal-aliases-to-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Create .iso files from CD/DVD</title>
		<link>http://www.ubuntuhacker.com/index.php/2007/06/13/how-to-create-iso-files-from-cddvd/</link>
		<comments>http://www.ubuntuhacker.com/index.php/2007/06/13/how-to-create-iso-files-from-cddvd/#comments</comments>
		<pubDate>Wed, 13 Jun 2007 20:50:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dapper Drake]]></category>
		<category><![CDATA[Edgy Eft]]></category>
		<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ubuntuhacker.com/index.php/2007/06/13/how-to-create-iso-files-from-cddvd/</guid>
		<description><![CDATA[Have a CD or DVD lying around that you are sic of putting in the drive every time you need something on the disc? How about just making an .iso file that you can mount as you need? Or maybe you just want a &#8220;master&#8221; copy of the media so you can create another copy [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--> <br />Have a CD or DVD lying around that you are sic of putting in the drive every time you need something on the disc?</p>
<p>How about just making an .iso file that you can mount as you need? Or maybe you just want a &#8220;master&#8221; copy of the media so you can create another copy at a future date.</p>
<p>At any rate it is rather easy to accomplish in Ubuntu:</p>
<p><b>sudo umount /dev/cdrom<br />dd if=/dev/cdrom of=file.iso bs=1024</b></p>
<p>You can also do the same with folders:</p>
<p><b>mkisofs -r -o file.iso /location_of_folder/</b></p>
<p>Don&#8217;t forget to make a checksum:</p>
<p><b>md5sum file.iso &gt; file.iso.md5</b></p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/.iso" rel="tag">.iso</a>, <a class="performancingtags" href="http://technorati.com/tag/file" rel="tag">file</a>, <a class="performancingtags" href="http://technorati.com/tag/iso" rel="tag">iso</a></p>
<div id="crp_related"><h2>Related Posts:</h2><ul><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/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/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/06/18/adding-terminal-aliases-to-ubuntu/" rel="bookmark" class="crp_title">Adding Terminal Aliases to 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>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/06/13/how-to-create-iso-files-from-cddvd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
