<?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>64 Bit Jungle &#187; Ubuntu</title>
	<atom:link href="http://www.64bitjungle.com/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.64bitjungle.com</link>
	<description>Linux and Programming Tips and Tutorials, Technology and Rants from the Jungle</description>
	<lastBuildDate>Tue, 16 Feb 2010 13:33:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quickly archive multiple directories into separate archive files</title>
		<link>http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/</link>
		<comments>http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 12:36:10 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=606</guid>
		<description><![CDATA[I recently needed to quickly archive several hundred directories, and their contents into separate, compressed files named after the directories. The horribly slow way to do this would be to either right-click each directory and select &#8220;create archive&#8221; via the File Manager, or, via the command line, to manually run tar several hundred times &#8211; [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I recently needed to quickly archive several hundred directories, and their contents into separate, compressed files named after the directories. The horribly slow way to do this would be to either right-click each directory and select &#8220;create archive&#8221; via the File Manager, or, via the command line, to manually run tar several hundred times &#8211; once for each directory. Neither option is pleasant, or viable. However, with a simple shell for loop, combined with ls and the relevant archiver command, the task becomes quick and painless:</p>
<p><code>for dir in `ls`;do cd $dir; tar -cvzf $dir.tar.gz *;mv $dir.tar.gz ..; cd ..;done</code></p>
<p>This will run an ls command, and temporarily save the output for use in the For loop. The code loops through each part of the ls output, moves into the current directory (assuming it is a directory), creates the archive and moves the archive file to the parent directory, before moving itself to the parent directory to begin again with the next part of the ls output.</p>
<p>So, for example, if you have the following directory structure:</p>
<p><code>/home<br />
--username<br />
----stuff_to_archive<br />
------dir-to-archive1<br />
------dir-to-archive2<br />
------dir-to-archive3<br />
------dir-to-archive4<br />
------dir-to-archive5</code></p>
<p>and you wish to archive dir-to-archive1 through dir-to-archive5, and all the contents therein, you would run:</p>
<p><code>cd /home/username/stuff_to_archive<br />
for dir in `ls`;do cd $dir; tar -cvzf $dir.tar.gz *;mv $dir.tar.gz ..; cd ..;done</code></p>
<p>The code will loop through each directory and archive its contents into a file named after the directory (e.g. dir-to-archive1.tar.gz), leaving you with:</p>
<p><code>/home<br />
--username<br />
----stuff_to_archive<br />
------dir-to-archive1<br />
------dir-to-archive1.tar.gz<br />
------dir-to-archive2<br />
------dir-to-archive2.tar.gz<br />
------dir-to-archive3<br />
------dir-to-archive3.tar.gz<br />
------dir-to-archive4<br />
------dir-to-archive4.tar.gz<br />
------dir-to-archive5<br />
------dir-to-archive5.tar.gz</code></p>
<p>If you want to use ZIP instead, then run:</p>
<p><code>for dir in `ls`;do cd $dir; zip $dir *;mv $dir.zip ..; cd ..;done</code></p>
<p>or replace the archiver command with whatever you want to use to compress the directory contents.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Quickly archive multiple directories into separate archive files" url="http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;Title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;desc=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;submitHeadline=Quickly+archive+multiple+directories+into+separate+archive+files&amp;submitSummary=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;t=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;t=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Quickly+archive+multiple+directories+into+separate+archive+files+-+http://tinyurl.com/mmyacg+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Quickly%20archive%20multiple%20directories%20into%20separate%20archive%20files%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Quickly%20archive%20multiple%20directories%20into%20separate%20archive%20files%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;summary=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;h=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C&amp;posturl=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;posttitle=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;bm_description=Quickly+archive+multiple+directories+into+separate+archive+files&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;link=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Fubuntu%2Fquickly-archive-multiple-directories-into-separate-archive-files%2F&amp;desc=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C&amp;pcat=Technology&amp;tags=blog,linux,ubuntu,open source,operating system,sysop,sysadmin" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;body=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;lname=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;u_data[name]=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;bmtitle=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;t=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;body=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;T=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Quickly+archive+multiple+directories+into+separate+archive+files&quot;+-+from+http://tinyurl.com/mmyacg" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/+&quot;Quickly+archive+multiple+directories+into+separate+archive+files&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;selection=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;type=Article&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;body=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Quickly+archive+multiple+directories+into+separate+archive+files&amp;u=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;b=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;desc=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files&amp;body=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Quickly+archive+multiple+directories+into+separate+archive+files&amp;text=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C+-+http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;n=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;Title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;title=Quickly+archive+multiple+directories+into+separate+archive+files" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Quickly+archive+multiple+directories+into+separate+archive+files&amp;du=http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/&amp;cn=I%20recently%20needed%20to%20quickly%20archive%20several%20hundred%20directories%2C%20and%20their%20contents%20into%20separate%2C%20compressed%20files%20named%20after%20the%20directories.%20The%20horribly%20slow%20way%20to%20do%20this%20would%20be%20to%20either%20right-click%20each%20directory%20and%20select%20%22create%20archive%22%20via%20the%20File%20Manager%2C%20or%2C%20via%20the%20command%20line%2C" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changes are brewing&#8230;</title>
		<link>http://www.64bitjungle.com/life/changes-are-brewing/</link>
		<comments>http://www.64bitjungle.com/life/changes-are-brewing/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 15:07:30 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=413</guid>
		<description><![CDATA[Just a quick heads up about some changes I&#8217;m making to 64bitjungle.com &#8211; no, no, content will remain the same, and I&#8217;ll be writing as (in?)frequently as usual, but there will be a major design change possibly within the next couple of days.
As much as I love the i3Theme, I&#8217;m getting fidgety, and feel like [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Just a quick heads up about some changes I&#8217;m making to 64bitjungle.com &#8211; no, no, content will remain the same, and I&#8217;ll be writing as (in?)frequently as usual, but there will be a major design change possibly within the next couple of days.</p>
<p>As much as I love the <a href="http://www.i3theme.com/" target="_blank">i3Theme</a>, I&#8217;m getting fidgety, and feel like dressing 64bitjungle up in a new outfit. I&#8217;m just making some tweaks and changes to the new theme, trying to get everything the way I want it &#8211; could take a couple of hours, or a couple of days. We&#8217;ll see!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Changes are brewing..." url="http://www.64bitjungle.com/life/changes-are-brewing/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;Title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;desc=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/life/changes-are-brewing/&amp;submitHeadline=Changes+are+brewing...&amp;submitSummary=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/life/changes-are-brewing/&amp;t=Changes+are+brewing..." rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/life/changes-are-brewing/&amp;t=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Changes+are+brewing...+-+http://tinyurl.com/c5tp8f+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Changes%20are%20brewing...%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Changes%20are%20brewing...%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/life/changes-are-brewing/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;summary=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/life/changes-are-brewing/&amp;h=Changes+are+brewing..." rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20&amp;posturl=http://www.64bitjungle.com/life/changes-are-brewing/&amp;posttitle=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;bm_description=Changes+are+brewing...&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Changes+are+brewing...&amp;link=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Changes+are+brewing...&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Flife%2Fchanges-are-brewing%2F&amp;desc=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20&amp;pcat=Technology&amp;tags=blog,linux,ubuntu,open source,operating system,sysop,sysadmin" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;body=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/life/changes-are-brewing/&amp;lname=Changes+are+brewing..." rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/life/changes-are-brewing/&amp;u_data[name]=Changes+are+brewing..." rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/life/changes-are-brewing/&amp;bmtitle=Changes+are+brewing..." rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/life/changes-are-brewing/&amp;t=Changes+are+brewing..." rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;body=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;T=Changes+are+brewing..." rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Changes+are+brewing...&quot;+-+from+http://tinyurl.com/c5tp8f" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/life/changes-are-brewing/+&quot;Changes+are+brewing...&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;selection=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;type=Article&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;body=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Changes+are+brewing...&amp;u=http://www.64bitjungle.com/life/changes-are-brewing/&amp;b=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;desc=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Changes+are+brewing...&amp;url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing...&amp;body=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Changes+are+brewing...&amp;text=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20+-+http://www.64bitjungle.com/life/changes-are-brewing/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/life/changes-are-brewing/&amp;n=Changes+are+brewing..." rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/life/changes-are-brewing/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;Title=Changes+are+brewing..." rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/life/changes-are-brewing/&amp;title=Changes+are+brewing..." rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Changes+are+brewing...&amp;du=http://www.64bitjungle.com/life/changes-are-brewing/&amp;cn=Just%20a%20quick%20heads%20up%20about%20some%20changes%20I%27m%20making%20to%2064bitjungle.com%20-%20no%2C%20no%2C%20content%20will%20remain%20the%20same%2C%20and%20I%27ll%20be%20writing%20as%20%28in%3F%29frequently%20as%20usual%2C%20but%20there%20will%20be%20a%20major%20design%20change%20possibly%20within%20the%20next%20couple%20of%20days.%0D%0A%0D%0AAs%20much%20as%20I%20love%20the%20i3Theme%2C%20I%27m%20getting%20fidgety%2C%20and%20" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/life/changes-are-brewing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogger&#8217;s Choice Awards 2009</title>
		<link>http://www.64bitjungle.com/life/bloggers-choice-awards-2009/</link>
		<comments>http://www.64bitjungle.com/life/bloggers-choice-awards-2009/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 09:14:17 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=402</guid>
		<description><![CDATA[So, this is a bit of a short and cheekey post, to ask you &#8211; if you have a spare minute or two &#8211; to vote for 64bitjungle.com in this year&#8217;s Blogger&#8217;s Choice Awards, in the Best Geek Blog category. Just click on the badge on the left, and vote.
Thanks for your support!





		
			Submit this to [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bloggerschoiceawards.com/blogs/show/66804/?utm_source=bloggerschoiceawards&amp;utm_medium=badge&amp;utm_content=bestgeekblog" target="_blank"><img style="float:left;" src="http://www.bloggerschoiceawards.com/images/bca_badges/bca_badge_bestgeekblog.gif" border="0" alt="My site was nominated for Best Geek Blog!" /></a>So, this is a bit of a short and cheekey post, to ask you &#8211; if you have a spare minute or two &#8211; to vote for 64bitjungle.com in this year&#8217;s Blogger&#8217;s Choice Awards, in the Best Geek Blog category. Just click on the badge on the left, and vote.</p>
<p>Thanks for your support!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Blogger's Choice Awards 2009" url="http://www.64bitjungle.com/life/bloggers-choice-awards-2009/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;Title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;desc=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;submitHeadline=Blogger%27s+Choice+Awards+2009&amp;submitSummary=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;t=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;t=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Blogger%27s+Choice+Awards+2009+-+http://tinyurl.com/czyvs4+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Blogger%27s%20Choice%20Awards%202009%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Blogger%27s%20Choice%20Awards%202009%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/life/bloggers-choice-awards-2009/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;summary=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;h=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21&amp;posturl=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;posttitle=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;bm_description=Blogger%27s+Choice+Awards+2009&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Blogger%27s+Choice+Awards+2009&amp;link=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Blogger%27s+Choice+Awards+2009&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Flife%2Fbloggers-choice-awards-2009%2F&amp;desc=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21&amp;pcat=Technology&amp;tags=blog,linux,ubuntu,open source,operating system,sysop,sysadmin" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;body=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;lname=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;u_data[name]=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;bmtitle=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;t=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;body=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;T=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Blogger%27s+Choice+Awards+2009&quot;+-+from+http://tinyurl.com/czyvs4" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/life/bloggers-choice-awards-2009/+&quot;Blogger%27s+Choice+Awards+2009&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;selection=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;type=Article&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;body=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Blogger%27s+Choice+Awards+2009&amp;u=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;b=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;desc=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Blogger%27s+Choice+Awards+2009&amp;url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009&amp;body=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Blogger%27s+Choice+Awards+2009&amp;text=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21+-+http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;n=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/life/bloggers-choice-awards-2009/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;Title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;title=Blogger%27s+Choice+Awards+2009" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Blogger%27s+Choice+Awards+2009&amp;du=http://www.64bitjungle.com/life/bloggers-choice-awards-2009/&amp;cn=So%2C%20this%20is%20a%20bit%20of%20a%20short%20and%20cheekey%20post%2C%20to%20ask%20you%20-%20if%20you%20have%20a%20spare%20minute%20or%20two%20-%20to%20vote%20for%2064bitjungle.com%20in%20this%20year%27s%20Blogger%27s%20Choice%20Awards%2C%20in%20the%20Best%20Geek%20Blog%20category.%20Just%20click%20on%20the%20badge%20on%20the%20left%2C%20and%20vote.%0D%0A%0D%0AThanks%20for%20your%20support%21" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/life/bloggers-choice-awards-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Workbench 5.1 Beta Released for Linux</title>
		<link>http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/</link>
		<comments>http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 08:26:09 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=393</guid>
		<description><![CDATA[I&#8217;ve had a play with a few of the previous Alpha releases, and so far so good. Yesterday, MySQL Workbench 5.1 Beta was released, so I decided to download it and give it a go. There is currently no official 64 Bit binary installer available, so we still need to compile from the source. This [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-399" title="mysql-workbench-oss" src="http://www.64bitjungle.com/wp-content/uploads/2009/03/mysql-workbench-oss.png" alt="mysql workbench oss" width="350" height="203" align="left" />I&#8217;ve had a play with a few of the previous Alpha releases, and so far so good. Yesterday, <a href="http://dev.mysql.com/workbench/?p=201" target="_blank">MySQL Workbench 5.1 Beta was released</a>, so I decided to download it and give it a go. There is currently no official 64 Bit binary installer available, so we still need to compile from the source. This has, however, become a much less complicated task since the initial Alpha releases!</p>
<p><strong>32 Bit users</strong></p>
<p>32 Bit users need only download the precompiled deb from one of the <a href="http://dev.mysql.com/get/Downloads/MySQLGUITools/mysql-workbench-oss-5.1.9-1_i386.deb/from/pick" target="_blank">MySQL Mirrors</a>, and once downloaded, the deb can be installed by opening a Terminal and running the following:</p>
<p><code>sudo dpkg -i mysql-workbench-oss-5.1.9-1_i386.deb</code></p>
<p><strong>64 Bit users</strong></p>
<p>To compile MySQL Workbench from source, a bunch of dependencies need to be installed, which can be done easily by running the following in a Terminal:</p>
<p><code>sudo apt-get install build-essential autoconf automake libtool libzip-dev libxml2-dev libsigc++-2.0-dev libglade2-dev libgtkmm-2.4-dev libglu1-mesa-dev libgl1-mesa-glx mesa-common-dev libmysqlclient15-dev uuid-dev liblua5.1-dev libpixman-1-dev libpcre3-dev libgnome2-dev libgtk2.0-dev libpango1.0-dev libcairo2-dev python-dev</code></p>
<p>The source package can be downloaded once again from one of the <a href="http://dev.mysql.com/get/Downloads/MySQLGUITools/mysql-workbench-oss-5.1.9.tar.gz/from/pick" target="_blank">MySQL Mirrors</a>. As usual, I downloaded to my Desktop, and ran the following to compile and install:</p>
<p><code>cd<br />
mkdir mysqlwb-src mysql-workbench<br />
mv Desktop/mysql-workbench-oss-5.1.9.tar.gz mysqlwb-src<br />
cd mysqlwb-src<br />
tar -zxvf mysql-workbench-oss-5.1.9.tar.gz<br />
cd mysql-workbench-oss-5.1.9<br />
./autogen.sh<br />
make install DESTDIR=/home/&lt;username&gt;/mysql-workbench</code></p>
<p>I&#8217;m using the DESTDIR option, since with Workbench being in Beta, I don&#8217;t really want it installing system wide.</p>
<p>Unless you&#8217;re lucky enough to have a machine with ridiculous specs, this will take a while &#8211; so go make a brew, coffee, smoke a cigarette, or [instert short term recreational activity here], and come back in a few.</p>
<p>No, really &#8211; it takes a long time&#8230;</p>
<p>Once installed (took a long time, eh?), running it is easy &#8211; simply navigate to the installation directory and run the executable from the Terminal:</p>
<p><code>cd ~/mysql-workbench/usr/local/bin<br />
./mysql-workbench</code></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="MySQL Workbench 5.1 Beta Released for Linux" url="http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;Title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;desc=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;submitHeadline=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;submitSummary=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;t=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;t=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=MySQL+Workbench+5.1+Beta+Released+for+Linux+-+http://tinyurl.com/dkyh2h+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22MySQL%20Workbench%205.1%20Beta%20Released%20for%20Linux%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22MySQL%20Workbench%205.1%20Beta%20Released%20for%20Linux%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;summary=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;h=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe&amp;posturl=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;posttitle=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;bm_description=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;link=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Fubuntu%2Fmysql-workbench-51-beta-released-for-linux%2F&amp;desc=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;body=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;lname=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;u_data[name]=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;bmtitle=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;t=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;body=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;T=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;MySQL+Workbench+5.1+Beta+Released+for+Linux&quot;+-+from+http://tinyurl.com/dkyh2h" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/+&quot;MySQL+Workbench+5.1+Beta+Released+for+Linux&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;selection=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;type=Article&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;body=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;u=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;b=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;desc=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;body=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;text=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe+-+http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;n=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;Title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;title=MySQL+Workbench+5.1+Beta+Released+for+Linux" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=MySQL+Workbench+5.1+Beta+Released+for+Linux&amp;du=http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/&amp;cn=I%27ve%20had%20a%20play%20with%20a%20few%20of%20the%20previous%20Alpha%20releases%2C%20and%20so%20far%20so%20good.%20Yesterday%2C%20MySQL%20Workbench%205.1%20Beta%20was%20released%2C%20so%20I%20decided%20to%20download%20it%20and%20give%20it%20a%20go.%20There%20is%20currently%20no%20official%2064%20Bit%20binary%20installer%20available%2C%20so%20we%20still%20need%20to%20compile%20from%20the%20source.%20This%20has%2C%20howe" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/ubuntu/mysql-workbench-51-beta-released-for-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>We&#8217;re back!</title>
		<link>http://www.64bitjungle.com/life/were-back/</link>
		<comments>http://www.64bitjungle.com/life/were-back/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 00:56:03 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=386</guid>
		<description><![CDATA[Ok, Server migration went smoothly &#8211; 64 Bit Jungle was in the Ether for a while, but it&#8217;s back!
All good.





		
			Submit this to Script &#38; Style
		
		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Reddit
		
		
			Buzz up!
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Mixx
		
		
			Post this to MySpace
		
		
			Submit [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Ok, Server migration went smoothly &#8211; 64 Bit Jungle was in the Ether for a while, but it&#8217;s back!</p>
<p>All good.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="We're back!" url="http://www.64bitjungle.com/life/were-back/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/life/were-back/&amp;Title=We%27re+back%21" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;desc=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/life/were-back/&amp;submitHeadline=We%27re+back%21&amp;submitSummary=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good.&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/life/were-back/&amp;t=We%27re+back%21" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/life/were-back/&amp;t=We%27re+back%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=We%27re+back%21+-+http://tinyurl.com/d8yjnu+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22We%27re%20back%21%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good.%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22We%27re%20back%21%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good.%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/life/were-back/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;summary=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good.&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/life/were-back/&amp;h=We%27re+back%21" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good.&amp;posturl=http://www.64bitjungle.com/life/were-back/&amp;posttitle=We%27re+back%21" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/life/were-back/&amp;bm_description=We%27re+back%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=We%27re+back%21&amp;link=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=We%27re+back%21&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Flife%2Fwere-back%2F&amp;desc=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good.&amp;pcat=Technology&amp;tags=blog,linux,ubuntu,open source,operating system,sysop,sysadmin" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;body=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/life/were-back/&amp;lname=We%27re+back%21" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/life/were-back/&amp;u_data[name]=We%27re+back%21" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/life/were-back/&amp;bmtitle=We%27re+back%21" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/life/were-back/&amp;t=We%27re+back%21" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;body=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/life/were-back/&amp;T=We%27re+back%21" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;We%27re+back%21&quot;+-+from+http://tinyurl.com/d8yjnu" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/life/were-back/+&quot;We%27re+back%21&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;selection=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/life/were-back/&amp;type=Article&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;body=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=We%27re+back%21&amp;u=http://www.64bitjungle.com/life/were-back/&amp;b=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;desc=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=We%27re+back%21&amp;url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21&amp;body=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=We%27re+back%21&amp;text=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good.+-+http://www.64bitjungle.com/life/were-back/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/life/were-back/&amp;n=We%27re+back%21" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/life/were-back/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/life/were-back/&amp;Title=We%27re+back%21" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/life/were-back/&amp;title=We%27re+back%21" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=We%27re+back%21&amp;du=http://www.64bitjungle.com/life/were-back/&amp;cn=Ok%2C%20Server%20migration%20went%20smoothly%20-%2064%20Bit%20Jungle%20was%20in%20the%20Ether%20for%20a%20while%2C%20but%20it%27s%20back%21%0D%0A%0D%0AAll%20good." rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/life/were-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving to a new server&#8230;</title>
		<link>http://www.64bitjungle.com/life/moving-to-a-new-server/</link>
		<comments>http://www.64bitjungle.com/life/moving-to-a-new-server/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 03:31:53 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=383</guid>
		<description><![CDATA[I&#8217;m just about to move to a new server, so 64 Bit Jungle may be down for a little while &#8211; hopefully not too long!
Thanks to all my valued readers for your loyalty and patience!





		
			Submit this to Script &#38; Style
		
		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Reddit
		
		
			Buzz up!
		
		
			Stumble upon [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just about to move to a new server, so 64 Bit Jungle may be down for a little while &#8211; hopefully not too long!</p>
<p>Thanks to all my valued readers for your loyalty and patience!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Moving to a new server..." url="http://www.64bitjungle.com/life/moving-to-a-new-server/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;Title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;desc=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;submitHeadline=Moving+to+a+new+server...&amp;submitSummary=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;t=Moving+to+a+new+server..." rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;t=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Moving+to+a+new+server...+-+http://tinyurl.com/cv6a3w+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Moving%20to%20a%20new%20server...%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Moving%20to%20a%20new%20server...%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/life/moving-to-a-new-server/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;summary=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;h=Moving+to+a+new+server..." rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21&amp;posturl=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;posttitle=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;bm_description=Moving+to+a+new+server...&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Moving+to+a+new+server...&amp;link=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Moving+to+a+new+server...&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Flife%2Fmoving-to-a-new-server%2F&amp;desc=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21&amp;pcat=Technology&amp;tags=blog,linux,ubuntu,open source,operating system,sysop,sysadmin" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;body=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;lname=Moving+to+a+new+server..." rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;u_data[name]=Moving+to+a+new+server..." rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;bmtitle=Moving+to+a+new+server..." rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;t=Moving+to+a+new+server..." rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;body=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;T=Moving+to+a+new+server..." rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Moving+to+a+new+server...&quot;+-+from+http://tinyurl.com/cv6a3w" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/life/moving-to-a-new-server/+&quot;Moving+to+a+new+server...&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;selection=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;type=Article&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;body=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Moving+to+a+new+server...&amp;u=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;b=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;desc=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Moving+to+a+new+server...&amp;url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server...&amp;body=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Moving+to+a+new+server...&amp;text=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21+-+http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;n=Moving+to+a+new+server..." rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/life/moving-to-a-new-server/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;Title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;title=Moving+to+a+new+server..." rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Moving+to+a+new+server...&amp;du=http://www.64bitjungle.com/life/moving-to-a-new-server/&amp;cn=I%27m%20just%20about%20to%20move%20to%20a%20new%20server%2C%20so%2064%20Bit%20Jungle%20may%20be%20down%20for%20a%20little%20while%20-%20hopefully%20not%20too%20long%21%0D%0A%0D%0AThanks%20to%20all%20my%20valued%20readers%20for%20your%20loyalty%20and%20patience%21" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/life/moving-to-a-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch Export Amarok Album Art to the Album&#8217;s Containing Directory</title>
		<link>http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/</link>
		<comments>http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 14:57:18 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Album Art]]></category>
		<category><![CDATA[Amarok]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=348</guid>
		<description><![CDATA[Despite being a Gnome user, I&#8217;ve been using Amarok &#8211; a KDE application &#8211; as my main music player for some time, and love it. I&#8217;ve also spent a lot of time within Amarok downloading and importing Album art for almost all of my music, with the exception of a few obscure albums for which [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-351" title="am21" src="http://www.64bitjungle.com/wp-content/uploads/2009/02/am21.png" alt="am21" width="200" height="200" align="left" />Despite being a Gnome user, I&#8217;ve been using Amarok &#8211; a KDE application &#8211; as my main music player for some time, and love it. I&#8217;ve also spent a lot of time within Amarok downloading and importing Album art for almost all of my music, with the exception of a few obscure albums for which Amarok couldn&#8217;t find the correct cover from Amazon. The only minor gripe I have so far, is that Amarok stores all the album art it acquires deep in the home directory, with each file named as an MD5 Hash of (I presume) the Artist/Album. No problem, so long as Amarok is the only player I ever use &#8211; but what if I want to try, say, Songbird, or import the album art into the ID3 tags of my music collection? It&#8217;s not a pleasant task to go through hundreds of albums and manually sort the correct images into the relevant album&#8217;s location &#8211; in my case, an external drive. Thankfully, help is at hand, with a handy Python script called <a href="http://www.lunaryorn.de/code/amarokcovers.html" target="_blank">export_amarok_covers</a>. After setting up some prerequisites, the script can be run once, and it will automatically go through all the albums in Amarok&#8217;s database, and copy the correct album art to the respective Album&#8217;s location. This is how to get it up and running.</p>
<p><strong>The script itself, can be downloaded here:</strong> <a href="http://files.lunaryorn.de/download/code/export_amarok_covers" target="_blank">export_amarok_covers</a>. Simply right click and save it to the Desktop.</p>
<p><strong>System Prerequisites</strong></p>
<p>export_amarok_covers requires Python, python-dev and if your Amarok database is in MySQL, the Python&#8217;s MySQL libraries and connectors, as well as python-setuptools which contains scripts such as easy_install. These are easy to set up in Debian/Ubuntu systems. From a Terminal, run:</p>
<p><code>sudo apt-get install python python-dev python-mysqldb python-setuptools</code></p>
<p><strong>Python Libraries</strong></p>
<p>export_amarok_covers also requires several Python libraries and dependencies &#8211; <a href="http://argparse.python-hosting.com/" target="_blank">argparse</a>, <a href="http://www.voidspace.org.uk/python/configobj.html" target="_blank">ConfigObj</a>, <a href="http://www.pythonware.com/products/pil/index.htm" target="_blank">PIL</a>, <a href="http://pypi.python.org/pypi/path.py/2.2" target="_blank">path.py</a> and <a href="http://www.sqlalchemy.org/" target="_blank">SQLAlchemy</a>. Unfortunately, the script <a href="http://www.lunaryorn.de/code/amarokcovers.html" target="_blank">creator&#8217;s suggested method</a> for installing the dependencies as follows:</p>
<p><code>sudo easy_install PIL ConfigObj path.py SQLAlchemy argparse</code></p>
<p>didn&#8217;t work for me, so I manually downloaded each library, then installed with easy_install:</p>
<p><code>wget http://cheeseshop.python.org/packages/source/a/argparse/argparse-0.8.0.zip http://jaist.dl.sourceforge.net/sourceforge/configobj/configobj-4.5.3.zip http://effbot.org/downloads/Imaging-1.1.6.tar.gz http://pypi.python.org/packages/source/p/path.py/path-2.2.zip#md5=941660081788282887f652510d80e64e http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-0.5.2.tar.gz#md5=616893cbfb7b04a4f0ca9587bded3a1c<br />
sudo easy_install argparse-0.8.0.zip configobj-4.5.3.zip Imaging-1.1.6.tar.gz path-2.2.zip SQLAlchemy-0.5.2.tar.gz</code></p>
<p><strong>Final Tweaks</strong></p>
<p>The first time I ran the script, it threw some errors at me, regarding the script&#8217;s MySQL connection variables mapping method, which actually turned out to be a problem with my amarokrc file, in which for some reason, some MySQL connection parameters were missing. To remedy this, I edited the file:</p>
<p><code>gedit ~/.kde/share/config/amarokrc</code></p>
<p>and added to the [MySQL] section the following lines:</p>
<p><code>MySqlHost=localhost<br />
MySqlPort=3306<br />
MySqlDbName=AMAROK_DB_NAME</code></p>
<p><strong>Running export_amarok_covers</strong></p>
<p>Once everything is set up, it&#8217;s just a case of making the script executable and running it, so from a Terminal, run:</p>
<p><code>cd ~/Desktop<br />
chmod +x export_amarok_covers<br />
./export_amarok_covers</code></p>
<p>There are also a number of options, listed on the <a href="http://www.lunaryorn.de/code/amarokcovers.html#cmdoption-export_amarok_covers-n" target="_blank">script creator&#8217;s site</a>, which allow you to specify the name of the output file, create Desktop Entries, and so on.</p>
<p>When the script has finished running (it&#8217;s very fast), you should find each album art image within the location of the respective album.</p>
<p>Now I need to work on batch importing the covers to the MP3&#8217;s ID3 tags!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Batch Export Amarok Album Art to the Album's Containing Directory" url="http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;Title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;desc=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;submitHeadline=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;submitSummary=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;t=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;t=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory+-+http://tinyurl.com/bujc5l+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Batch%20Export%20Amarok%20Album%20Art%20to%20the%20Album%27s%20Containing%20Directory%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Batch%20Export%20Amarok%20Album%20Art%20to%20the%20Album%27s%20Containing%20Directory%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;summary=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;h=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27&amp;posturl=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;posttitle=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;bm_description=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;link=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Fubuntu%2Fbatch-export-amarok-album-art-to-the-albums-containing-directory%2F&amp;desc=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;body=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;lname=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;u_data[name]=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;bmtitle=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;t=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;body=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;T=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&quot;+-+from+http://tinyurl.com/bujc5l" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/+&quot;Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;selection=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;type=Article&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;body=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;u=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;b=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;desc=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;body=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;text=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27+-+http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;n=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;Title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;title=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Batch+Export+Amarok+Album+Art+to+the+Album%27s+Containing+Directory&amp;du=http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/&amp;cn=Despite%20being%20a%20Gnome%20user%2C%20I%27ve%20been%20using%20Amarok%20-%20a%20KDE%20application%20-%20as%20my%20main%20music%20player%20for%20some%20time%2C%20and%20love%20it.%20I%27ve%20also%20spent%20a%20lot%20of%20time%20within%20Amarok%20downloading%20and%20importing%20Album%20art%20for%20almost%20all%20of%20my%20music%2C%20with%20the%20exception%20of%20a%20few%20obscure%20albums%20for%20which%20Amarok%20couldn%27" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/ubuntu/batch-export-amarok-album-art-to-the-albums-containing-directory/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Install Adobe AIR 1.5 and the Google Analytics Reporting Application on Ubuntu</title>
		<link>http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/</link>
		<comments>http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 12:10:17 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[HowTo]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=205</guid>
		<description><![CDATA[Sometimes, I&#8217;m just too lazy to browse to the Google Analytics site &#8211; all that bookmark clicking, logging in, choosing profiles etc. I just can&#8217;t be arsed. I could, of course, leave the page open, and click refresh every now and then, or even bookmark the profile/report and go back later. That&#8217;s too obvious, and [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-206" title="Adobe AIR 1.1 Linix" src="http://www.64bitjungle.com/wp-content/uploads/2008/11/airlinux_fma_557x232.jpg" alt="Adobe AIR 1.1 Linux Beta" width="408" height="75" align="left" />Sometimes, I&#8217;m just too lazy to browse to the <a href="http://www.google.com/analytics" target="_blank">Google Analytics</a> site &#8211; all that bookmark clicking, logging in, choosing profiles etc. I just can&#8217;t be arsed. I could, of course, leave the page open, and click refresh every now and then, or even bookmark the profile/report and go back later. That&#8217;s too obvious, and too easy. I like to complicate things, before they get easy &#8211; it makes me appreciate just how easy things are when they <em>are </em>easy.</p>
<p>I was thinking a while back &#8220;wouldn&#8217;t it be cool if there was a desktop reporting tool for Google Analytics &#8211; I could just run it, and it&#8217;d sit there quietly in the background waiting from me to press Alt+Tab&#8221;, when a friend pointed me to an interesting Bundle on <a href="http://www.youbundle.com" target="_blank">YouBundle</a> &#8211; &#8220;<a href="http://www.youbundle.com/b/best-adobe-air-desktop-applications" target="_blank">Best Adobe AIR Desktop Applications</a>&#8220;. Sat amongst the application list, was the &#8220;<a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;loc=en_us&amp;extid=1282521" target="_blank">Google Analytics Reporting Suite</a>&#8221; &#8211; Just what I need! The only thing is, I didn&#8217;t have Adobe AIR installed&#8230; So, here&#8217;s how I went about getting it installed&#8230;</p>
<p><strong>Installing Adobe AIR 1.5 Linux</strong></p>
<p><strong>64 Bit Users Note:</strong> Adobe AIR is not yet available as a 64 Bit application, so you&#8217;ll need to install 32 bit libraries first. If you haven&#8217;t got them already, in a Terminal, run:</p>
<p><code>sudo apt-get install ia32-libs</code></p>
<p><a href="http://get.adobe.com/air/" target="_blank">Adobe AIR 1.5</a> is available for Linux. The binary can be downloaded from <a href="http://get.adobe.com/air/" target="_blank">http://get.adobe.com/air</a> (it auto detects your system)<a href="http://download.macromedia.com/pub/labs/air/linux/adobeair_linux_b1_091508.bin" target="_blank"></a>. Once the file had downloaded to my desktop, I opened a Terminal (Applications -&gt; Accessories -&gt; Terminal), made the AdobeAIRInstaller.bin executable, and ran the file:</p>
<p><code>cd ~/Desktop<br />
chmod +x AdobeAIRInstaller.bin<br />
sudo ./AdobeAIRInstaller.bin</code></p>
<p>This fires up the Adobe AIR installer GUI, and it&#8217;s installed in a couple of clicks. It needs to be run with sudo, since it installs into /opt. The uninstaller, by the way, is located in the Applications -&gt; Accessories menu.</p>
<p style="text-align: center;"><img class="size-medium wp-image-209 aligncenter" title="Adobe AIR 1.1 Linux Beta Install" src="http://www.64bitjungle.com/wp-content/uploads/2008/11/screenshot-adobe-air-setup-1-300x149.png" alt="Adobe AIR 1.1 Linux Beta Install" width="300" height="149" /></p>
<p><strong>Additional 64 Bit step</strong></p>
<p>I didn&#8217;t actually run this, as everything seems to run fine, but in a Terminal, run:</p>
<p><code>sudo cp /usr/lib/libadobecertstore.so /usr/lib32</code></p>
<p><strong>Installing Google Analytics Reporting Suite</strong></p>
<p>This part should be easy &#8211; it should just be a case of visiting <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;loc=en_us&amp;extid=1282521" target="_blank">http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;loc=en_us&amp;extid=1282521</a> and clicking on &#8220;Install&#8221;. However, for some strange reason, the page wouldn&#8217;t detect my flash plugin properly &#8211; even though I have the latest <a href="http://www.64bitjungle.com/ubuntu/adobe-flash-player-10-alpha-for-64-bit-linux-ubuntu-installation/">64 Bit version (albeit Alpha) installed</a> from Adobe &#8211; so instead of the install box, I just had a box telling me to install Flash. No worries &#8211; with some sifting through the page&#8217;s HTML source code, I found the flash installation application just points to <a href="http://www.aboutnico.be/updates/gas32.air  " target="_blank">http://www.aboutnico.be/updates/gas32.air</a>, so I just entered that into the browser, and when Firefox prompted, selected &#8220;Open with Adobe AIR Application Installer&#8221; &#8211; this downloads the file, and begins the installation.</p>
<p style="text-align: center;"><img class="size-medium wp-image-211 aligncenter" title="screenshot-application-install" src="http://www.64bitjungle.com/wp-content/uploads/2008/11/screenshot-application-install-300x240.png" alt="" width="300" height="240" /></p>
<p>I went through the motions &#8211; enter Admin password, choose location to install etc. and that was it. Once installed, it&#8217;s launched from Applications -&gt; Accessories -&gt; Analytics Reporting Suite. No more pesky logging in (except, of course, for the initial account setup).</p>
<p style="text-align: center;"><img class="size-full wp-image-326 aligncenter" title="adobe-air-google-analytics" src="http://www.64bitjungle.com/wp-content/uploads/2009/02/adobe-air-google-analytics.png" alt="adobe-air-google-analytics" width="300" height="210" /></p>
<p style="text-align: left;"><strong>A Note about TweetDeck</strong></p>
<p style="text-align: left;">Many people seem to be having problems getting TweetDeck to work, so after some digging around (see comments below) I found a solution on  <a rel="nofollow" href="http://beegod.org/tweetdeck-on-hardy-heron-64bit">http://beegod.org/tweetdeck-on-hardy-heron-64bit</a>. It basically involves using getlibs to resolve dependency issues with the libgnome.keyring.so 32 bit library. In a Terminal, run:</p>
<p><code>wget http://www.boundlesssupremacy.com/Cappy/getlibs/getlibs-all.deb<br />
sudo dpkg -i getlibs-all.deb<br />
sudo getlibs -l libgnome-keyring.so.0.1.1</code>
</p>
<p style="text-align: left;"><strong>Postscript:</strong> Some people may be wondering why the image at the head of the post says &#8220;Adobe AIR for Linux beta&#8221;. Well, I originally wrote this post some time ago in November 2008, using Adobe AIR v1.1 Beta, but the whole setup was a little buggy &#8211; i.e. I couldn&#8217;t configure any account information in the Google Analytics application. It seemed a little pointless publishing a post when the software didn&#8217;t work, so I waited until everything did work &#8211; i.e. Adobe AIR v1.5. I just can&#8217;t be bothered to find another image, upload it etc&#8230;</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Install Adobe AIR 1.5 and the Google Analytics Reporting Application on Ubuntu" url="http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;Title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;desc=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;submitHeadline=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;submitSummary=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;t=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;t=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu+-+http://tinyurl.com/atgj64+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Install%20Adobe%20AIR%201.5%20and%20the%20Google%20Analytics%20Reporting%20Application%20on%20Ubuntu%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Install%20Adobe%20AIR%201.5%20and%20the%20Google%20Analytics%20Reporting%20Application%20on%20Ubuntu%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;summary=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;h=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too&amp;posturl=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;posttitle=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;bm_description=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;link=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Fubuntu%2Finstall-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu%2F&amp;desc=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;body=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;lname=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;u_data[name]=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;bmtitle=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;t=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;body=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;T=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&quot;+-+from+http://tinyurl.com/atgj64" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/+&quot;Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;selection=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;type=Article&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;body=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;u=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;b=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;desc=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;body=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;text=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too+-+http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;n=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;Title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;title=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Install+Adobe+AIR+1.5+and+the+Google+Analytics+Reporting+Application+on+Ubuntu&amp;du=http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/&amp;cn=Sometimes%2C%20I%27m%20just%20too%20lazy%20to%20browse%20to%20the%20Google%20Analytics%20site%20-%20all%20that%20bookmark%20clicking%2C%20logging%20in%2C%20choosing%20profiles%20etc.%20I%20just%20can%27t%20be%20arsed.%20I%20could%2C%20of%20course%2C%20leave%20the%20page%20open%2C%20and%20click%20refresh%20every%20now%20and%20then%2C%20or%20even%20bookmark%20the%20profile%2Freport%20and%20go%20back%20later.%20That%27s%20too" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/ubuntu/install-adobe-air-15-and-the-google-analytics-reporting-application-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Finally, Sun release 64 Bit Browser Plugin Support for JRE (almost)</title>
		<link>http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/</link>
		<comments>http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 05:37:43 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JRE]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=309</guid>
		<description><![CDATA[
Update 05/02/09: Sun have actually released the update &#8211; no more beta -  so I&#8217;ve modified &#8220;Install Java JRE 1.6.0 (Update x) in Linux as the Default Java Runtime, including Firefox Browser Plugin&#8221; to reflect this (even the title has changed &#8211; although the URL remains the same!). The following tutorial remains for reference etc.
Back [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-116 alignleft" title="java-logo" src="http://www.64bitjungle.com/wp-content/uploads/2008/08/java-logo.png" alt="Java JRE Logo" width="150" height="279" align="left" /></p>
<p><strong>Update 05/02/09: Sun have actually released the update &#8211; no more beta -  so I&#8217;ve modified &#8220;<a href="http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" target="_self">Install Java JRE 1.6.0 (Update x) in Linux as the Default Java Runtime, including Firefox Browser Plugin</a>&#8221; to reflect this (even the title has changed &#8211; although the URL remains the same!). The following tutorial remains for reference etc.</strong></p>
<p>Back in January 2003, a <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4802695" target="_blank">bug was submitted to Sun</a> pointing out that there is no 64 Bit Browser plugin support for JRE. Almost 6 years later, the issue seems to have been addressed: with the latest <a href="http://download.java.net/jdk6/" target="_blank">Beta release of JRE6 Update 12</a>, Sun have finally developed and included the required Plugin to run 64 Bit Java, in a 64 Bit Web Browser on a 64 Bit OS. So, I decided to give it a try, and see what&#8217;s what. Since this is a Beta release (currently b3), and also deals specifically with 64 Bit, I&#8217;m keeping this post separate from my main HowTo on installing JRE: <a href="http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" target="_self">Install Java JRE 1.6.0 (Update x) on Hardy as the Default Java Runtime</a>, which will be updated to include the new information when JRE6 u12 Final is released &#8211; hopefully sometime early this year (2009).</p>
<p>The first step is to download the installation file, <a href="http://www.java.net/download/jdk6/6u12/promoted/b03/binaries/jre-6u12-ea-bin-b03-linux-amd64-22_dec_2008.bin" target="_blank">jre-6u12-ea-bin-b03-linux-amd64-22_dec_2008.bin</a>, which as usual was saved to my cluttered desktop. I have previous versions of JRE installed in /opt/java, but the directoty can be created as follows, if it doesn&#8217;t already exist:</p>
<p><code>sudo mkdir /opt/java</code></p>
<p>Once the installation file had downloaded, I moved it to the /opt/java directory, made it executable, and ran the setup:</p>
<p><code>cd /opt/java<br />
sudo mv ~/Desktop/jre-6u12-ea-bin-b03-linux-amd64-22_dec_2008.bin /opt/java<br />
sudo chmod 755 jre-6u12-ea-bin-b03-linux-amd64-22_dec_2008.bin<br />
sudo ./jre-6u12-ea-bin-b03-linux-amd64-22_dec_2008.bin</code></p>
<p>After reading and agreeing to the Licensing terms, the executable extracts all the relevant files into a subdirectory: jre1.6.0_12</p>
<p><strong>Setting JRE6 u12 as the Default Java Runtime</strong></p>
<p>To install JRE6 u12 as the default Java for the system, simply run the following two commands:</p>
<p><code>sudo update-alternatives --install "/usr/bin/java" "java" "/opt/java/jre1.6.0_12/bin/java" 1<br />
sudo update-alternatives --set java /opt/java/jre1.6.0_12/bin/java</code></p>
<p>Following the execution of both commands, there should be output along the lines of:</p>
<p><code>Using '/opt/java/jre1.6.0_12/bin/java' to provide 'java'.</code></p>
<p><strong>Installing the Browser Plugin</strong></p>
<p>The part I&#8217;m really interested in for the moment, is getting the 64 Bit JRE Browser Plugin installed, which thankfully is very easy. As with most Firefox plugins, they can be installed in ~/.mozilla/plugins &#8211; if it doesn&#8217;t exist, it can be created:</p>
<p><code> mkdir ~/.mozilla/plugins</code></p>
<p>It may also be necessary to uninstall any previous Java installations, such as IcedTea etc.:</p>
<p><code>sudo apt-get remove icedtea-gcjwebplugin</code></p>
<p>The Plugin can be installed by either copying the file:</p>
<p><code>cp /opt/java/jre1.6.0_12/lib/amd64/libnpjp2.so ~/.mozilla/plugins/</code></p>
<p>or by creating a symbolic link to the file (the best option, since it allows updating to the final release without recopying the file etc.)</p>
<p><code>ln -s /opt/java/jre1.6.0_12/lib/amd64/libnpjp2.so ~/.mozilla/plugins/</code></p>
<p>Once installed, restart Firefox. There are two methods to see if the Plugin is installed &#8211; navigate to <a href="about:plugins" target="_blank">about:plugins</a></p>
<p style="text-align: center;"><a href="http://www.64bitjungle.com/wp-content/uploads/2009/01/jre-64bit-browser-plugin.png"><img class="size-medium wp-image-311 aligncenter" title="jre-64bit-browser-plugin" src="http://www.64bitjungle.com/wp-content/uploads/2009/01/jre-64bit-browser-plugin-300x54.png" alt="jre-64bit-browser-plugin" width="300" height="54" /></a></p>
<p>or to the <a href="http://www.javatester.org/version.html" target="_blank">Java Tester Page</a></p>
<p style="text-align: center;"><a href="http://www.64bitjungle.com/wp-content/uploads/2009/01/jre-64bit-browser-java-tester.png"><img class="size-medium wp-image-312 aligncenter" title="jre-64bit-browser-java-tester" src="http://www.64bitjungle.com/wp-content/uploads/2009/01/jre-64bit-browser-java-tester-300x80.png" alt="jre-64bit-browser-java-tester" width="300" height="80" /></a></p>
<p>Looks good so far &#8211; I can finally upload photos to <a href="http://www.facebook.com/pages/64-Bit-Jungle/48760940378" target="_blank">Facebook</a> using the Java Applet!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Finally, Sun release 64 Bit Browser Plugin Support for JRE (almost)" url="http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;Title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;desc=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;submitHeadline=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;submitSummary=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;t=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;t=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29+-+http://tinyurl.com/dy6e4e+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Finally%2C%20Sun%20release%2064%20Bit%20Browser%20Plugin%20Support%20for%20JRE%20%28almost%29%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Finally%2C%20Sun%20release%2064%20Bit%20Browser%20Plugin%20Support%20for%20JRE%20%28almost%29%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;summary=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;h=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t&amp;posturl=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;posttitle=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;bm_description=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;link=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Fubuntu%2Ffinally-sun-release-64-bit-browser-plugin-support-for-jre-almost%2F&amp;desc=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;body=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;lname=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;u_data[name]=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;bmtitle=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;t=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;body=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;T=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&quot;+-+from+http://tinyurl.com/dy6e4e" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/+&quot;Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;selection=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;type=Article&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;body=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;u=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;b=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;desc=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;body=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;text=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t+-+http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;n=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;Title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;title=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Finally%2C+Sun+release+64+Bit+Browser+Plugin+Support+for+JRE+%28almost%29&amp;du=http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/&amp;cn=%0D%0A%0D%0AUpdate%2005%2F02%2F09%3A%20Sun%20have%20actually%20released%20the%20update%20-%20no%20more%20beta%20-%C2%A0%20so%20I%27ve%20modified%20%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20to%20reflect%20this%20%28even%20the%20title%20has%20changed%20-%20although%20the%20URL%20remains%20the%20same%21%29.%20The%20following%20t" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/ubuntu/finally-sun-release-64-bit-browser-plugin-support-for-jre-almost/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Full 64 Bit (or 32 Bit) Web Development and PHP/MySQL IDE with Eclipse 3.4 Ganymede and PDT 2</title>
		<link>http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/</link>
		<comments>http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 12:16:12 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[PDT]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=304</guid>
		<description><![CDATA[I&#8217;m probably a little late with this article, since PDT2 has been out for a few weeks now! PDT 2 is an improvement  on v1, and of course, Ganymede is also an improvement on Europa -thankfully, the installation process has also improved and is much easier than my previous post on the subject. There is [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-118 alignleft" title="Eclipse 3.4 Ganymede" src="http://www.64bitjungle.com/wp-content/uploads/2008/08/ganymede.png" alt="Eclipse 3.4 Ganymede" width="300" height="195" align="left" />I&#8217;m probably a little late with this article, since PDT2 has been out for a few weeks now! PDT 2 is an improvement  on v1, and of course, Ganymede is also an improvement on Europa -thankfully, the installation process has also improved and is <strong>much</strong> easier than my <a href="http://www.64bitjungle.com/programming/64-bit-eclipse-34-ganymede-ide-with-pdt-and-sqlexplorer-full-php-mysql-web-application-ide/">previous post on the subject</a>. There is no longer any need to download Eclipse Classic, and install a lot of prerequisites, since most of the prerequisites, and more are now included in Eclipse JEE (Eclipse IDE for Java EE Developers) &#8211; WST, RCP/Platform, XML tools, CVS support, Mylin (links to Bugzilla etc.), and Data Tools for MySQL (and other DB) connectivity, and more. Pretty much the only thing missing, is PDT itself, so here&#8217;s how I got it all set up.</p>
<p><strong>Getting JRE set up and Ready (Optional)</strong></p>
<p>If you&#8217;d like to set up 64 Bit (or 32 Bit) JRE to run Eclipse, <a href="http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" target="_blank">follow these instructions</a>.</p>
<p><strong>Installing the Base: Eclipse 3.4 (Ganymede) JEE</strong></p>
<p>First, I downloaded the 64 Bit version of <a href="http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/ganymede/SR1/eclipse-jee-ganymede-SR1-linux-gtk-x86_64.tar.gz" target="_blank">Eclipse IDE for Java EE Developers</a> to my desktop (<a href="http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/ganymede/SR1/eclipse-jee-ganymede-SR1-linux-gtk.tar.gz" target="_blank">32 Bit version here</a>). Once downloaded, I extracted the archive, then moved the files to /opt:</p>
<p><code>cd ~/Desktop<br />
tar -zxvf eclipse-jee-ganymede-SR1-linux-gtk-x86_64.tar.gz<br />
sudo mv eclipse /opt</code></p>
<p>For 32 Bit:</p>
<p><code>cd ~/Desktop<br />
tar -zxvf eclipse-jee-ganymede-SR1-linux-gtk.tar.gz<br />
sudo mv eclipse /opt</code></p>
<p><strong>Installing PDT 2</strong></p>
<p>Simple so far. Once moved (installed), I ran Eclipse for the first time from the command line:</p>
<p><code>cd /opt/eclipse<br />
./eclipse</code></p>
<p>and selected a workspace within my home directory once prompted. From here, installing PDT 2 is an easy task &#8211; adding two sites to the Update Manager (far easier in Ganymede than Europa), and letting Eclipse to the rest. Once Eclipse had started, I went to Help -&gt; Software Updates. The Software Updates and Add-ons window appeared, and I navigated to the Available Software tab. From there, I clicked the &#8220;Manage Sites&#8221; button, followed by &#8220;Add&#8221; once the Site Manager appeared. The only additional prerequisite to install for PDT is the Dynamic Languages Toolkit, or DLTK. So, I added:</p>
<p><code>http://download.eclipse.org/technology/dltk/updates-dev/1.0/</code></p>
<p>in the Dialog, and clicked OK. I then needed to add the PDT update site, so clicked add, and pasted:</p>
<p><code>http://download.eclipse.org/tools/pdt/updates/2.0/interim/</code></p>
<p>Click OK to close the Available Sites Manager. The rest is just as easy &#8211; two new sites should appear in the Available Software sites list. So, I expanded the DLTK site (the small triangle to the left of the site name), then the Dynamic Languages Toolkit option, and checked &#8220;Dynamic Languages Toolkit &#8211; Core Frameworks (Incubation)&#8221;, from the top of the list. Finally, I repeated the process with the PDT Update site &#8211; expanded PDT Update Site -&gt; PDT SDK 2.0.0 and checked &#8220;PDT Runtime Feature&#8221; from the list. That&#8217;s it. Click Install and follow the prompts.</p>
<p>Once installed, Eclipse recommends restarting the application. Accept, restart, and enjoy a shiny new PHP IDE, with PDT 2.</p>
<p><strong>Setting Up the Environment</strong></p>
<p>Once Eclipse Ganymede has reloaded, click on the Workspace icon to open the IDE workspace for the first time. The default Perspective is JEE. To change this, go to Window -&gt; Open Perspective -&gt; Other, then scroll down and select PHP. Other Views, relating to other plugins can be inserted into this perspective, and the perspective saved for future use. Personally, I like to add the SQL Development views, and MyLin, for live access to Bugzilla (Window -&gt; Sow View -&gt; Other).</p>
<p>A new PHP Project can be started by right clicking in Project Explorer (left window pane), and selecting New PHP Project (&#8220;Other&#8221; may need selecting on the first run, followed by navigating to and selecting PHP Project from the list).</p>
<p>That&#8217;s it. Far easier than previous versions, and much less effort required in the process! We like that.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Full 64 Bit (or 32 Bit) Web Development and PHP/MySQL IDE with Eclipse 3.4 Ganymede and PDT 2" url="http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;Title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;desc=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;submitHeadline=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;submitSummary=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;t=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;t=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganym%5B..%5D+-+http://tinyurl.com/7m43me+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Full%2064%20Bit%20%28or%2032%20Bit%29%20Web%20Development%20and%20PHP%2FMySQL%20IDE%20with%20Eclipse%203.4%20Ganymede%20and%20PDT%202%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Full%2064%20Bit%20%28or%2032%20Bit%29%20Web%20Development%20and%20PHP%2FMySQL%20IDE%20with%20Eclipse%203.4%20Ganymede%20and%20PDT%202%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;summary=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;h=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20&amp;posturl=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;posttitle=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;bm_description=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;link=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Fubuntu%2Ffull-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2%2F&amp;desc=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;body=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;lname=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;u_data[name]=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;bmtitle=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;t=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;body=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;T=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganym%5B..%5D&quot;+-+from+http://tinyurl.com/7m43me" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/+&quot;Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;selection=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;type=Article&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;body=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;u=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;b=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;desc=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;body=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;text=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20+-+http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;n=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;Title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;title=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Full+64+Bit+%28or+32+Bit%29+Web+Development+and+PHP%2FMySQL+IDE+with+Eclipse+3.4+Ganymede+and+PDT+2&amp;du=http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/&amp;cn=I%27m%20probably%20a%20little%20late%20with%20this%20article%2C%20since%20PDT2%20has%20been%20out%20for%20a%20few%20weeks%20now%21%20PDT%202%20is%20an%20improvement%C2%A0%20on%20v1%2C%20and%20of%20course%2C%20Ganymede%20is%20also%20an%20improvement%20on%20Europa%20-thankfully%2C%20the%20installation%20process%20has%20also%20improved%20and%20is%20much%20easier%20than%20my%20previous%20post%20on%20the%20subject.%20There%20" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/ubuntu/full-64-bit-or-32-bit-web-development-and-php-mysql-ide-with-eclipse-34-ganymede-and-pdt-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
