<?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; Featured</title>
	<atom:link href="http://www.64bitjungle.com/category/featured/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>Some Really Useful Linux Command Line Tricks</title>
		<link>http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/</link>
		<comments>http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 07:35:52 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[HowTo]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=361</guid>
		<description><![CDATA[Many people, especially users new to the world of Linux, are afraid of the command line. However, the command line is incredibly powerful, and in many cases can save time, and execute tasks much faster than GUIs. Personally, I love the command line, and what follows is a list of tips and tricks I find [...]


Related posts:<ol><li><a href='http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/' rel='bookmark' title='Permanent Link: Quickly archive multiple directories into separate archive files'>Quickly archive multiple directories into separate archive files</a> <small>I recently needed to quickly archive several hundred directories, and...</small></li>
</ol>

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-362" title="cli" src="http://www.64bitjungle.com/wp-content/uploads/2009/02/cli.png" alt="cli" width="250" height="162" align="left" />Many people, especially users new to the world of Linux, are afraid of the command line. However, the command line is incredibly powerful, and in many cases can save time, and execute tasks much faster than GUIs. Personally, I love the command line, and what follows is a list of tips and tricks I find invaluable in my daily activities. The list is by no means exhaustive (I&#8217;ll certainly be adding to it as and when I find time), and isn&#8217;t limited to built in command line tools, but includes bash utilities, application commands, and combinations of these commands. Some of them I have covered before in previous articles, but are worth listing here &#8211; where this is the case, a link to the relevant article is given for reference and further reading. Finally, I don&#8217;t purport to be an expert &#8211; these are just commands I find particularly useful on a (near) daily basis. If you have any comments, suggestions, additions, or spot any mistakes, please comment below. So, anyway, enough small talk, and on with the show&#8230;</p>
<h3>1. Recursively Search and Replace Text in Multiple Files</h3>
<p>I&#8217;ve already covered this one extensively in a previous article, <a href="http://www.64bitjungle.com/ubuntu/recursively-search-and-replace-terms-in-multiple-files-with-grep-xargs-and-sed/" target="_self">Recursively Search and Replace Terms in Multiple Files with grep, xargs and sed</a>, so I&#8217;ll not go into too much detail here about how the command works, and how arcuments are passed from one command to another. The command basically combines the utilities grep, xargs and sed to recursively find files within a directory (and its sub-directories) containing the desired search term (using grep), then pass them through (via xargs) to sed to replace each instance of the search term with the target term. The command structure is as follows:</p>
<p><code>grep -lr -e '&lt;searchterm&gt;' * | xargs sed -i 's/&lt;searchterm&gt;/&lt;targetterm&gt;/g'</code></p>
<p>Where &lt;searchterm&gt; is the string we are looking for, and &lt;targetterm&gt; is the string we wish to replace it with. For example:</p>
<p><code>grep -lr -e 'apples' * | xargs sed -i 's/apples/oranges/g'</code></p>
<p>will search all the files within the current directory, and its sub-directories for the string &#8220;apples&#8221;, and replace all instances of &#8220;apples&#8221; within those files with &#8220;oranges&#8221;. This already powerful command combination becomes even more powerful with the use of regular expressions in place of &lt;searchterm&gt; and &lt;targetterm&gt;.</p>
<h3>2. Create a Multiple Directory Hierarchy with a Single Command</h3>
<p>A majority of users are familiar with the mkdir command to create a single directory from the command. Howerver, it the -p option, the mkdir command can be told to create multiple directories with a single command. In its most basic form, it can be used to create a single directory, with a single child, grand child and so on:</p>
<p><code>mkdir -p top/lev1/lev2/lev3</code></p>
<p>Will create the directory structure as follows:</p>
<p><code>|-top<br />
|---lev1<br />
|-----lev2<br />
|-------lev3</code></p>
<p>The command&#8217;s -p option becomes really powerful, however, when combined with nested directories structures contained in {curly braces}. The {curly braces} can be used to group directories and sub directories, in order to create a complex directory hierarchy with a single command:</p>
<p><code>mkdir -p coolapp/{docs/{en_uk/{html,text,pdf},en_us/{html,text,pdf}},includes/{functions,language/{en_uk,en_us},classes},templates,tmp}</code></p>
<p>Will produce the following complex hierarchy:</p>
<p><code>|-coolapp<br />
|---docs<br />
|-----en_uk<br />
|-------html<br />
|-------pdf<br />
|-------text<br />
|-----en_us<br />
|-------html<br />
|-------pdf<br />
|-------text<br />
|---includes<br />
|-----classes<br />
|-----functions<br />
|-----language<br />
|-------en_uk<br />
|-------en_us<br />
|---templates<br />
|---tmp</code></p>
<p>Now there&#8217;s no excuse for creating each directory with separate commands &#8211; with careful planning, a whole application structure can be created quickly.</p>
<h3>3. Output a Directory Structure in a Visual Tree Format</h3>
<p>This one, I picked up from <a href="http://www.centerkey.com/tree/" target="_blank">http://www.centerkey.com/tree/</a> and will output a directory structure as shown in the examples above, when run from the current directory! Very cool!</p>
<p><code>ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^/]*//--/g' -e 's/^/   /' -e 's/-/|/'</code></p>
<h3>4. Access and Search Command History, and Execute Commands Quickly</h3>
<p>There are a couple of ways to access your command/bash history in order to re-execute previous commands. If the command was recently executed, using the Up and Down Arrow keys it&#8217;s possible to quickly navigate through your command history. Entering double exclamation marks &#8211; !! &#8211; will run the last command. For commands executed further in the past, you can view them by running:</p>
<p><code>more ~/.bash_history</code></p>
<p>Or more conveniently with the history command:</p>
<p><code>history</code></p>
<p>The history command will output your command line history in two columns, the first being a number, and the second the command itself:</p>
<p><code>1  ls<br />
2  history<br />
3  history | more<br />
4  history<br />
5  pwd<br />
6  cd ~/Documents</code></p>
<p>The reason for the number, is that it allows for quick execution of past commands, when the number is preceded with an ! exclamation mark. So, for example, if I wanted to execute the fifth command in the list above (pwd), I could simply run:</p>
<p><code>!5</code></p>
<p>Running double !! exclamation marks will simple run the previous command:</p>
<p><code>!!</code></p>
<p>Would run cd ~/Documents from the example history list above.</p>
<p>As can be seen in the history list above, history can also be piped | through to more, which is particularly useful if you have executed hundreds of commands, and run history only to see them all stream through the terminal in one go. Piping through to more will allow the history to be viewed page by page:</p>
<p><code>history | more</code></p>
<p>So far so good. But what if you can&#8217;t remember a particular command, or only partially remember a long command? Manually looking through hundreds of lines can be a strain, even without an eye burning theme. The grep command can be used to search for a term, before being piped through to more:</p>
<p><code>history | grep '&lt;searchterm&gt;' | more</code></p>
<p>This will restrict the results to those found with the &lt;searchterm&gt;, so:</p>
<p><code>history | grep 'ls' | more</code></p>
<p>will only return the list of commands found in history containing &#8220;ls&#8221;. As before, the command number is also returned, and thus can easily be executed by preceding the number with an ! exclamation mark.One additional point about running !<em>nn</em> or !! &#8211; it can also be run with sudo, to execute previous commands as root:</p>
<p><code>sudo !!<br />
sudo !5</code></p>
<p>If there are hundreds of commands in history containing &#8220;ls&#8221;, or lots of repeated commands in history containing &#8220;ls&#8221;, the search can be further refined to include only unique results as follows:</p>
<p><code>history | grep 'ls' | sed 's/^[ 0-9]* //' | sort | uniq | more</code></p>
<p>This takes the output from history, pipes it to grep to filter only the output containing &#8220;ls&#8221;, then passes the output from grep to sed, to strip out the command numbers, then through to sort, which, well, sorts the output, then from sort to uniq, which returns only unique lines, and finaly to our friend more (which can be substituted for ess if you prefer). We have to strip out the command numbers for uniq to work, since it will see &#8220;3 ls -la&#8221; and &#8220;67 ls -ls&#8221; as unique values! This does mean copying and pasting the command instead of calling the number with an ! exclamation mark, but that&#8217;s fine for me.</p>
<h3>5. Backup and Restore MySQL Databases with Compression</h3>
<p>This one obviously won&#8217;t work if you don&#8217;t have MySQL installed! While GUI tools such as PHPMyAdmin, MySQL Workbench (currently in Alpha for Linux), and [insert MySQL GUI of Choice here] are great for visuay representing databases, once again, nothing beats the command line for speed when it comes to backing up and restoring databases. Using a combination of MySQL&#8217;s built in dump feature, and the gzip tool, we can quickly backup any database on the system and compress it on the fly. The syntax is as follows:</p>
<p><code>mysqldump -u &lt;uname&gt; -p&lt;pass&gt; &lt;dbname&gt; | gzip -9 &gt; backupfile.sql.gz</code></p>
<p>Note that there is no space between the -p option and the password itself &#8211; this <em>isn&#8217;t</em> a typo! For example:</p>
<p><code>mysqldump -u mydb_username -pmydb_password mydb_dbname | gzip -9 &gt; mydb_dbname-backup.sql.gz</code></p>
<p>It&#8217;s also possible to time/date stamp the output file, by incorporating the date command into the filename:</p>
<p><code>mysqldump -u mydb_username -pmydb_password mydb_dbname | gzip -9 &gt; mydb_dbname-backup-`date +%d-%m-%Y`.sql.gz</code></p>
<p>These commands will create the backup file in the <em>current directory</em>.</p>
<p><strong>Restoring the Database</strong> is just as simple:</p>
<p><code>gunzip &lt; backupfile.sql.gz | mysql -u &lt;uname&gt; -p&lt;pass&gt; &lt;dbname&gt;</code></p>
<p>For example:</p>
<p><code>gunzip mydb_dbname-backup-21-02-2009.sql.gz | mysql -u mydb_username -pmydb_password mydb_dbname</code></p>
<h3>6. Command Line Dictionary</h3>
<p>This is a nice, quick Dictionary reference for writers, and much faster than any online GUI dictionary. It uses cURL to retrieve definitions from <a href="http://dict.org" target="_blank">dict.org</a>, and is executed as follows:</p>
<p><code>curl dict://dict.org/d:&lt;theword&gt;</code></p>
<p>where &lt;theword&gt; is whatever you want to look up:</p>
<p><code>curl dict://dict.org/d:incontrovertible</code></p>
<p>Will output:</p>
<p><code>220 aspen.miranda.org dictd 1.9.15/rf on Linux 2.6.18-6-k7  &lt;39151475.31648.1235199452@aspen.miranda.org&gt;<br />
250 ok<br />
150 1 definitions retrieved<br />
151 "Incontrovertible" gcide "The Collaborative International Dictionary of English v.0.48"<br />
Incontrovertible In*con`tro*ver"ti*ble, a.<br />
Not controvertible; too clear or certain to admit of dispute;<br />
indisputable. --Sir T. Browne. --<br />
{In*con`tro*ver"ti*ble*ness}, n. -- {In*con`tro*ver"ti*bly},<br />
adv.<br />
[1913 Webster]<br />
.<br />
250 ok [d/m/c = 1/0/16; 0.000r 0.000u 0.000s]<br />
221 bye [d/m/c = 0/0/0; 0.000r 0.000u 0.000s]</code></p>
<p>If that&#8217;s too much to remember, it&#8217;s really easy to create a bash function in your .bashrc file, which takes a single argument and outputs the results as above. Just run the following (<em>only once</em>) from a Terminal to create the function:</p>
<p><code>echo 'function mydict() { curl dict://dict.org/d:"$@" ;}' &gt;&gt; ~/.bashrc</code></p>
<p>Then close the Terminal by either pressing Ctrl+D or typing:</p>
<p><code>exit</code></p>
<p>The next time you open a terminal session, you can simply run:</p>
<p><code>mydict incontrovertible</code></p>
<p>which will call the function, query the dictionary and return the results as above.</p>
<p><strong>Update:</strong> Thanks to loomsen, in <a href="http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/comment-page-1/#comment-2551">comment #2</a>, who pointed out that it isn&#8217;t necessary to restart the Terminal. Simply running:</p>
<p><code>source .bashrc</code></p>
<p>from your home directory will reload the edited .bashrc containing the new function.</p>
<h3>7. When it all gets too cluttered&#8230;</h3>
<p>This is so simple and obvious, it strains credulity. When the terminal just gets way too cluttered &#8211; and it probably will be after testing the above &#8211; simply run:</p>
<p><code>clear</code></p>
<p>for a nice clean terminal window.</p>
<p>That&#8217;s all for now &#8211; hope you find something useful in there! Finally, if you have any really useful CLI tips and tricks, please leave a comment below.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Some Really Useful Linux Command Line Tricks" url="http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/"></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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;Title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&amp;desc=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;submitHeadline=Some+Really+Useful+Linux+Command+Line+Tricks&amp;submitSummary=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi&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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;t=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;t=Some+Really+Useful+Linux+Command+Line+Tricks" 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=Some+Really+Useful+Linux+Command+Line+Tricks+-+http://tinyurl.com/dgngox+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Some%20Really%20Useful%20Linux%20Command%20Line%20Tricks%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/" 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%22Some%20Really%20Useful%20Linux%20Command%20Line%20Tricks%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&amp;summary=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi&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/linux/some-really-useful-linux-command-line-tricks/&amp;h=Some+Really+Useful+Linux+Command+Line+Tricks" 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=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi&amp;posturl=http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/&amp;posttitle=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;bm_description=Some+Really+Useful+Linux+Command+Line+Tricks&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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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=Some+Really+Useful+Linux+Command+Line+Tricks&amp;link=http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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=Some+Really+Useful+Linux+Command+Line+Tricks&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Flinux%2Fsome-really-useful-linux-command-line-tricks%2F&amp;desc=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi&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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&amp;body=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;lname=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;u_data[name]=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;bmtitle=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;t=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&amp;body=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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/linux/some-really-useful-linux-command-line-tricks/&amp;T=Some+Really+Useful+Linux+Command+Line+Tricks" 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;Some+Really+Useful+Linux+Command+Line+Tricks&quot;+-+from+http://tinyurl.com/dgngox" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/+&quot;Some+Really+Useful+Linux+Command+Line+Tricks&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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&amp;selection=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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/linux/some-really-useful-linux-command-line-tricks/&amp;type=Article&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&amp;body=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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=Some+Really+Useful+Linux+Command+Line+Tricks&amp;u=http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/&amp;b=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&amp;desc=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&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=Some+Really+Useful+Linux+Command+Line+Tricks&amp;url=http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks&amp;body=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/" 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=Some+Really+Useful+Linux+Command+Line+Tricks&amp;text=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi+-+http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/&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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;n=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;Title=Some+Really+Useful+Linux+Command+Line+Tricks" 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/linux/some-really-useful-linux-command-line-tricks/&amp;title=Some+Really+Useful+Linux+Command+Line+Tricks" 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=Some+Really+Useful+Linux+Command+Line+Tricks&amp;du=http://www.64bitjungle.com/linux/some-really-useful-linux-command-line-tricks/&amp;cn=Many%20people%2C%20especially%20users%20new%20to%20the%20world%20of%20Linux%2C%20are%20afraid%20of%20the%20command%20line.%20However%2C%20the%20command%20line%20is%20incredibly%20powerful%2C%20and%20in%20many%20cases%20can%20save%20time%2C%20and%20execute%20tasks%20much%20faster%20than%20GUIs.%20Personally%2C%20I%20love%20the%20command%20line%2C%20and%20what%20follows%20is%20a%20list%20of%20tips%20and%20tricks%20I%20fi" 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>Related posts:<ol><li><a href='http://www.64bitjungle.com/ubuntu/quickly-archive-multiple-directories-into-separate-archive-files/' rel='bookmark' title='Permanent Link: Quickly archive multiple directories into separate archive files'>Quickly archive multiple directories into separate archive files</a> <small>I recently needed to quickly archive several hundred directories, and...</small></li>
</ol></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/linux/some-really-useful-linux-command-line-tricks/feed/</wfw:commentRss>
		<slash:comments>4</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>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>
		<item>
		<title>Install Java JRE 1.6.0 (Update x) in Linux as the Default Java Runtime, including Firefox Browser Plugin</title>
		<link>http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/</link>
		<comments>http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 11:26:11 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JRE]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/?p=115</guid>
		<description><![CDATA[
I wanted the latest version of Sun&#8217;s JRE installed on my system, and to have it set up as the default Java Runtime Environment whenever I ran a Java executable, or Jar file. It&#8217;s actually a pretty easy process, so this is a relatively short tutorial, but I&#8217;ll cover both the 32 bit and 64 [...]


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-116" style="float: left;" title="java-logo" src="http://www.64bitjungle.com/wp-content/uploads/2008/08/java-logo.png" alt="Java JRE Logo" width="150" height="279" /></p>
<p>I wanted the latest version of <a href="http://java.com/en/download/manual.jsp" target="_blank">Sun&#8217;s JRE</a> installed on my system, and to have it set up as the default Java Runtime Environment whenever I ran a Java executable, or Jar file. It&#8217;s actually a pretty easy process, so this is a relatively short tutorial, but I&#8217;ll cover both the 32 bit and 64 bit installations, since aside from differences in file names, the set up is identical.</p>
<p><strong>Changelog</strong></p>
<p><strong>Update 12/10/09: JRE 1.6.0 u16 now available!</strong></p>
<p><strong>Update 19/08/09: JRE 1.6.0 u15 now available!</strong></p>
<p><strong>Update 29/06/09: JRE 1.6.0 u14 now available!</strong></p>
<p><strong>Update 29/03/09: JRE 1.6.0 u13 now available!</strong></p>
<p><strong>Update 05/02/09: Updated for u12, which now includes the 64 bit Browser Plugin!</strong></p>
<p><strong>Installing JRE</strong></p>
<p>First, decide on which architecture will be installed, and download the relevant file from the main Java website &#8211; if you&#8217;re running a 64 Bit Linux OS, download the 64 Bit JRE.</p>
<p>At the time of writing, 1.6.0 u16 can be downloaded from the following: <a href="http://javadl.sun.com/webapps/download/AutoDL?BundleId=33880" target="_blank">32 bit JRE</a>, and <a href="http://javadl.sun.com/webapps/download/AutoDL?BundleId=33884" target="_blank">64 bit JRE</a>. I wanted to install the x64 version, and so downloaded jre-6u16-linux-x64.bin to my Desktop. I also wanted to install it in its own directory in /opt, and so created a directory for it to sit in:</p>
<p><code>cd /opt<br />
sudo mkdir java</code></p>
<p>I was also experimenting with the 32 and 64 bit versions, so made two extra directories within java:</p>
<p><code>cd java<br />
sudo mkdir 32 64</code></p>
<p>I then moved the relevant file(s) to the respective directories, and made them executable:</p>
<p><em>32 bit:</em></p>
<p><code>sudo mv ~/Desktop/jre-6u16-linux-i586.bin /opt/java/32<br />
sudo chmod 755 /opt/java/32/jre-6u16-linux-i586.bin</code></p>
<p><em>64 bit:</em></p>
<p><code>sudo mv ~/Desktop/jre-6u16-linux-x64.bin /opt/java/64<br />
sudo chmod 755 /opt/java/64/jre-6u16-linux-x64.bin</code></p>
<p>The final part of the installation simply involves executing the binary file:</p>
<p><em>32 bit:</em></p>
<p><code>cd /opt/java/32<br />
sudo ./jre-6u16-linux-i586.bin</code></p>
<p><em>64 bit:</em></p>
<p><code>cd /opt/java/64<br />
sudo ./jre-6u16-linux-x64.bin</code></p>
<p>Regardless of architecture, this should create a sub directory called jre1.6.0_16.</p>
<p><strong>Setting JRE 1.6.0 u16 as Default</strong></p>
<p>The process simply involves telling the system that there is an alternative Java binary available, and to use this binary to execute an &#8220;java&#8221; commands:</p>
<p><em>32 bit:</em></p>
<p><code>sudo update-alternatives --install "/usr/bin/java" "java" "/opt/java/32/jre1.6.0_16/bin/java" 1<br />
sudo update-alternatives --set java /opt/java/32/jre1.6.0_16/bin/java</code></p>
<p><em>64 bit:</em></p>
<p><code>sudo update-alternatives --install "/usr/bin/java" "java" "/opt/java/64/jre1.6.0_16/bin/java" 1<br />
sudo update-alternatives --set java /opt/java/64/jre1.6.0_16/bin/java</code></p>
<p>Follwing the second command, there should be output to the terminal something along the lines of:</p>
<p><code>Using '/opt/java/32/jre1.6.0_16/bin/java' to provide 'java'.</code></p>
<p>or,</p>
<p><code>Using '/opt/java/64/jre1.6.0_16/bin/java' to provide 'java'.</code></p>
<p>depending on the architecture installed.</p>
<p>To double check everything is as it should be, in a Terminal run:</p>
<p><code>java -version</code></p>
<p>This should output something along the lines of:</p>
<p><code>java version "1.6.0_xx"<br />
Java(TM) SE Runtime Environment (build 1.6.0_xx)<br />
Java HotSpot(TM) 64-Bit Server VM (build xxxx, mixed mode)</code></p>
<p>That&#8217;s it. Now every time &#8220;java&#8221; is run, either explicitly from the Terminal, or via a Java executable (such as the <a href="http://www.64bitjungle.com/tech/64-bit-eclipse-linux-installation-including-pdt-wtp-wst-atf-and-mysql-sql-explorer-plugin/#comment-469">Eclipse IDE</a>), the newly installed /opt/java/64/jre1.6.0_16/bin/java binary will be used as opposed to the binary installed by default. Simple, eh?</p>
<p><strong>Installing the Browser Plugin</strong></p>
<p><strong>Note:</strong> For the 64 bit plugin, it is strongly recommended that you use the version of Firefox available for installation via your distribution&#8217;s repositories.<span style="color: #000000;"><br />
</span></p>
<p>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><strong>Note:</strong> if you&#8217;re upgrading from a previous JRE install, remove the old plugin first:</p>
<p><em>32 Bit:</em></p>
<p><code>rm ~/.mozilla/plugins/libjavaplugin_oji.so</code></p>
<p><em>64 Bit:</em></p>
<p><code>rm ~/.mozilla/plugins/libnpjp2.so</code></p>
<p>The Plugin can now be <strong>installed</strong> by either copying the file:</p>
<p><em>32 Bit:</em></p>
<p><code>cp /opt/java/32/jre1.6.0_16/plugin/i386/ns7/libjavaplugin_oji.so ~/.mozilla/plugins/</code></p>
<p><em>64 Bit:</em></p>
<p><code>cp /opt/java/64/jre1.6.0_16/lib/amd64/libnpjp2.so ~/.mozilla/plugins/</code></p>
<p>or by creating a symbolic link to the file (this is the best option)</p>
<p><em>32 Bit:</em></p>
<p><code>ln -s /opt/java/32/jre1.6.0_16/plugin/i386/ns7/libjavaplugin_oji.so ~/.mozilla/plugins/</code></p>
<p><em>64 Bit:</em></p>
<p><code>ln -s /opt/java/64/jre1.6.0_16/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>That&#8217;s it. Enjoy <img src='http://www.64bitjungle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Install Java JRE 1.6.0 (Update x) in Linux as the Default Java Runtime, including Firefox Browser Plugin" url="http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/"></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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;Title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;desc=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;submitHeadline=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;submitSummary=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins&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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;t=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;t=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+includin%5B..%5D+-+http://tinyurl.com/bsu8zl+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Install%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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%20Java%20JRE%201.6.0%20%28Update%20x%29%20in%20Linux%20as%20the%20Default%20Java%20Runtime%2C%20including%20Firefox%20Browser%20Plugin%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;summary=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins&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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;h=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins&amp;posturl=http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;posttitle=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;bm_description=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;link=http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Fubuntu%2Finstall-java-jre-160-update-x-on-hardy-as-the-default-java-runtime%2F&amp;desc=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins&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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;body=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;lname=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;u_data[name]=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;bmtitle=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;t=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;body=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;T=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+includin%5B..%5D&quot;+-+from+http://tinyurl.com/bsu8zl" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/+&quot;Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;selection=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;type=Article&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;body=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;u=http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;b=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;desc=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&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+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;url=http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;body=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;text=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins+-+http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;n=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;Title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;title=Install+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin" 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+Java+JRE+1.6.0+%28Update+x%29+in+Linux+as+the+Default+Java+Runtime%2C+including+Firefox+Browser+Plugin&amp;du=http://www.64bitjungle.com/ubuntu/install-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/&amp;cn=%0D%0A%0D%0AI%20wanted%20the%20latest%20version%20of%20Sun%27s%20JRE%20installed%20on%20my%20system%2C%20and%20to%20have%20it%20set%20up%20as%20the%20default%20Java%20Runtime%20Environment%20whenever%20I%20ran%20a%20Java%20executable%2C%20or%20Jar%20file.%20It%27s%20actually%20a%20pretty%20easy%20process%2C%20so%20this%20is%20a%20relatively%20short%20tutorial%2C%20but%20I%27ll%20cover%20both%20the%2032%20bit%20and%2064%20bit%20ins" 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-java-jre-160-update-x-on-hardy-as-the-default-java-runtime/feed/</wfw:commentRss>
		<slash:comments>80</slash:comments>
		</item>
	</channel>
</rss>
