<?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>Tech Blog &#187; eclipse</title>
	<atom:link href="http://informationideas.com/news/tag/eclipse/feed/" rel="self" type="application/rss+xml" />
	<link>http://informationideas.com/news</link>
	<description>Using technology to help your business</description>
	<lastBuildDate>Sat, 17 Mar 2012 02:14:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Where to install Eclipse on Ubuntu</title>
		<link>http://informationideas.com/news/2008/11/16/where-to-install-eclipse-on-ubuntu/</link>
		<comments>http://informationideas.com/news/2008/11/16/where-to-install-eclipse-on-ubuntu/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 21:21:27 +0000</pubDate>
		<dc:creator>howie</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[where to install eclipse]]></category>
		<category><![CDATA[where to put eclipse]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=66</guid>
		<description><![CDATA[If you're like me, accustomed to installing most packages via Ubuntu's package manager, you might be a bit confused as to where to install Eclipse since it should be in a place thats accessible by every user on your system.Â  Sure you can install it in your user home directory but that wouldn't be very [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>If you're like me, accustomed to installing most packages via Ubuntu's package manager, you might be a bit confused as to where to install Eclipse since it should be in a place thats accessible by every user on your system.Â  Sure you can install it in your user home directory but that wouldn't be very tidy.</p>
<p>I extracted part of these instructions from: <a href="http://flurdy.com/docs/eclipse/install.html">http://flurdy.com/docs/eclipse/install.html</a></p>
<p>These instructions assume you've downloaded and extracted the Eclipse tarball:</p>
<blockquote><p>sudo mv eclipse /opt/eclipse cd /opt sudo chown -R root:root eclipse<br />
sudo mv eclipse /opt/eclipse cd /opt sudo chown -R root:root eclipse<br />
sudo chmod -R +r eclipse<br />
sudo chmod +x `sudo find eclipse -type d`</p>
<p>Then create an eclipse executable in your path</p>
<p>sudo touch /usr/bin/eclipse<br />
sudo chmod 755 /usr/bin/eclipse</p>
<p>sudoedit /usr/bin/eclipse</p>
<p>With these contents:</p>
<p>#!/bin/sh<br />
export ECLIPSE_HOME="/opt/eclipse"<br />
$ECLIPSE_HOME/eclipse $*</p></blockquote>
<p>Now you can execute Eclipse from anywhere in your bash shell.  Check out the original article for generating a desktop icon.  In the tarball I downloaded, it didn't come with the icon.xpm that contains the Eclipse icon but no worries for me.</p>
<p>The take-home lesson here is that /opt is meant as a place to install application software packages. The topic is Filesystem Heirarchy Standard (FHS) .. these folks seem to be the standard authority on it:</p>
<p><a href="http://www.pathname.com/fhs/pub/fhs-2.3.html#OPTADDONAPPLICATIONSOFTWAREPACKAGES">http://www.pathname.com/fhs/pub/fhs-2.3.html#OPTADDONAPPLICATIONSOFTWAREPACKAGES</a></p>
<p>However it's not to say that this standard is the most progressive one we have today.Â  I found GoboLinux to be particularly interesting: <a href="http://en.wikipedia.org/wiki/GoboLinux#The_GoboLinux_hierarchy">http://en.wikipedia.org/wiki/GoboLinux#The_GoboLinux_hierarchy</a></p>
<div class="shr-publisher-66"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2008/11/16/where-to-install-eclipse-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Installing Eclipse IDE and Android SDK on Ubuntu 8.10</title>
		<link>http://informationideas.com/news/2008/11/16/installing-eclipse-ide-and-android-sdk-on-ubuntu-810/</link>
		<comments>http://informationideas.com/news/2008/11/16/installing-eclipse-ide-and-android-sdk-on-ubuntu-810/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 20:59:52 +0000</pubDate>
		<dc:creator>howie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adt plugin]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[gcj]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[java-gcj]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[sun jdk]]></category>
		<category><![CDATA[ubuntu 8.10]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=65</guid>
		<description><![CDATA[This blog gives pointers on getting the Android development environment working on a base Ubuntu 8.10 installation. This assumes you're familiar with google's installation instructions (see http://code.google.com/android/intro/installing.html) and might still be having some problems. This also assumes you've installed Sun JDK 1.6. So here are some tips and gotcha's: Don't install Eclipse with Ubuntu's package [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>This blog gives pointers on getting the Android development environment working on a base Ubuntu 8.10 installation.</p>
<p>This assumes you're familiar with google's installation instructions (see <a href="http://code.google.com/android/intro/installing.html">http://code.google.com/android/intro/installing.html</a>) and might still be having some problems.</p>
<p>This also assumes you've installed Sun JDK 1.6.</p>
<p>So here are some tips and gotcha's:</p>
<ul>
<li>Don't install Eclipse with Ubuntu's package manager. At time of writing, Eclipse 3.2.2.2 is in the distro. Make you sure have the latest Eclipse version by downloading directly from Eclipse's site. See http://www.eclipse.org/downloads/</li>
<li>With most (if not all) base Ubuntu installations, <strong>java-6-openjdk</strong> or java-gcj is used, not Sun's JDK. You don't want to uninstall <strong>java-6-openjdk</strong> either because other apps in your system will be uninstalled along with it. In your Ubuntu filesystem, JVM tools (e.g.<strong> javac, javah, javadoc, java</strong>) are actually symlinks to the actual JDK. So what you want to do is update these symbolic links. There are at least 2 tools I've come across to help do this. I found the following:</li>
<blockquote>
<li><strong>sudo update-alternatives --config java</strong></li>
<li><strong>sudo galternatives</strong></li>
</blockquote>
</ul>
<ul>
<li>In Eclipse, for some reason I've not been able to add the ADT plugin via add site.Â  I had to download the SDK zip file and install as a local archive.</li>
<li>If you don't know where to install Eclipse, check out my post on <a href="http://informationideas.com/news/2008/11/16/where-to-install-eclipse-on-ubuntu/">where to install eclipse</a> since we're not using the comfy package manager to take care of things for us. <img src='http://informationideas.com/news/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<p>That's it for now.</p>
<div class="shr-publisher-65"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2008/11/16/installing-eclipse-ide-and-android-sdk-on-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.283 seconds -->

