<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ubuntu Tutorials &#187; java</title>
	<atom:link href="http://ubuntu-tutorials.com/tag/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://ubuntu-tutorials.com</link>
	<description>Enhancing your Ubuntu experience!</description>
	<lastBuildDate>Sat, 28 Jan 2012 20:08:41 +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>How to install Sun&#8217;s Java Development Kit (JDK) v5.0 : Ubuntu (6.06.1 / 6.10)</title>
		<link>http://ubuntu-tutorials.com/2006/11/21/how-to-install-suns-java-development-kit-jdk-v50-ubuntu-6061-610/</link>
		<comments>http://ubuntu-tutorials.com/2006/11/21/how-to-install-suns-java-development-kit-jdk-v50-ubuntu-6061-610/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 14:05:09 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=176</guid>
		<description><![CDATA[I recently started learning Java and found that I needed the Java Development Kit to be able to develop or compile any Java programs. Below is a quick outline on how to install Sun&#8217;s Java Development Kit v5.0 for java development on Ubuntu 6.06.1 or 6.10 machines. sudo aptitude install sun-java5-jdk You will have to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started learning Java and found that I needed the Java Development Kit to be able to develop or compile any Java programs.  Below is a quick outline on how to install Sun&#8217;s Java Development Kit v5.0 for java development on Ubuntu 6.06.1 or 6.10 machines.</p>
<blockquote><p><code>sudo aptitude install sun-java5-jdk</code></p></blockquote>
<p>You will have to accept the license agreement to install the JDK.  For more on this please see my previous post entitled: <a href="http://ubuntu-tutorials.com/index.php/2006/11/20/how-to-install-java-runtime-environment-jre-with-firefox-plugin-ubuntu-6061-610/">How to install Java Runtime Environment (JRE)</a> which includes a link to the DLJ license terms.</p>
<p>You may also want to set Sun&#8217;s JDK as the default Java version on your machine.  You can do so using the following command.</p>
<blockquote><p><code>sudo update-java-alternatives -s java-1.5.0-sun</code></p></blockquote>
<p>..and lastly you&#8217;ll need to move <strong>java-1.5.0-sun</strong> to the top of the JVMs offered within the file /etc/jvm.  This needs to be done manually using:</p>
<blockquote><p><code>sudo gedit /etc/jvm</code></p></blockquote>
<p>Below is an example of my completed /etc/jvm file after following this tutorial.  Yours should look similar:</p>
<blockquote><p><code># This file defines the default system JVM search order. Each<br />
# JVM should list their JAVA_HOME compatible directory in this file.<br />
# The default system JVM is the first one available from top to<br />
# bottom.</code></p>
<p>/usr/lib/jvm/java-1.5.0-sun<br />
/usr/lib/jvm/java-gcj<br />
/usr/lib/jvm/ia32-java-1.5.0-sun<br />
/usr</p></blockquote>
<p>At this point, enjoy your new JDK powered machine and start developing!<!-- technorati tags begin --></p>
<p style="font-size: 10px; text-align: right;">technorati tags:<a rel="tag" href="http://technorati.com/tag/java">java</a>, <a rel="tag" href="http://technorati.com/tag/JDK">JDK</a>, <a rel="tag" href="http://technorati.com/tag/sun">sun</a>, <a rel="tag" href="http://technorati.com/tag/ubuntu">ubuntu</a>, <a rel="tag" href="http://technorati.com/tag/JVM">JVM</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2006/11/21/how-to-install-suns-java-development-kit-jdk-v50-ubuntu-6061-610/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to install Java Runtime Environment (JRE) with Firefox Plugin : Ubuntu (6.06.1 / 6.10)</title>
		<link>http://ubuntu-tutorials.com/2006/11/20/how-to-install-java-runtime-environment-jre-with-firefox-plugin-ubuntu-6061-610/</link>
		<comments>http://ubuntu-tutorials.com/2006/11/20/how-to-install-java-runtime-environment-jre-with-firefox-plugin-ubuntu-6061-610/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 22:56:28 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=175</guid>
		<description><![CDATA[The Java Runtime Environment (JRE) is required if you need to run any java-based applications on your Ubuntu machine. Many times this is required for certain websites and is always a good addition to your installed package base. To install the Java Runtime Environment including the plugin for Mozilla Firefox simply run the following command. [...]]]></description>
			<content:encoded><![CDATA[<p>The Java Runtime Environment (JRE) is required if you need to run any java-based applications on your Ubuntu machine.  Many times this is required for certain websites and is always a good addition to your installed package base.  To install the Java Runtime Environment including the plugin for Mozilla Firefox simply run the following command.  (note: you will need to have additional repositories enabled.  See <a href="http://ubuntu-tutorials.com/index.php/2006/11/19/how-to-add-extra-repositories-ubuntu-510-6061-610/">How to add extra repositories</a>.</p>
<blockquote><p><code>sudo aptitude install sun-java6-jre sun-java6-plugin sun-java6-bin</code></p></blockquote>
<p>You will have to agree to the DLJ license terms to install this package.  To find out more about the terms of the DLJ visit the <a href="http://download.java.net/dlj/DLJ-FAQ.html">DLJ FAQ</a>.</p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2006/11/20/how-to-install-java-runtime-environment-jre-with-firefox-plugin-ubuntu-6061-610/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash &amp; Java Plugins for Flock : Ubuntu (6.06 / 6.10)</title>
		<link>http://ubuntu-tutorials.com/2006/10/22/flash-java-plugins-for-flock-ubuntu-606-610/</link>
		<comments>http://ubuntu-tutorials.com/2006/10/22/flash-java-plugins-for-flock-ubuntu-606-610/#comments</comments>
		<pubDate>Sun, 22 Oct 2006 23:47:29 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flock]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=161</guid>
		<description><![CDATA[Many of you might be familiar with my post concerning How to install Flock on Ubuntu. I&#8217;ve been using Flock now for months and I really enjoy it. Recently, however, I noticed that a few multimedia functions that I had supported in Firefox were not supported in Flock, despite the fact that the correct plugins [...]]]></description>
			<content:encoded><![CDATA[<p>Many of you might be familiar with my post concerning How to install <a title="Flock on Ubuntu" href="http://ubuntu-tutorials.com/index.php/2006/08/26/flock-on-ubuntu/">Flock on Ubuntu</a>.  I&#8217;ve been using Flock now for months and I really enjoy it.  Recently, however, I noticed that a few multimedia functions that I had supported in Firefox were not supported in Flock, despite the fact that the correct plugins were installed.  After a little research I realized that this was due to Flock merely not knowing where to find them.  Below is a quick one-line command to make sure Flock matches any multimedia support that Firefox has, whether this be <a title="Flash Player 9 on Ubuntu" href="http://ubuntu-tutorials.com/index.php/2006/10/19/how-to-install-flash-player-9-for-linux/">Flash Player 9 Beta on Ubuntu</a>, Java, etc.</p>
<blockquote><p><code><code>sudo ln -s /usr/lib/mozilla/plugins/* /opt/flock/plugins</code></code></p></blockquote>
<p>Basically, if you didn&#8217;t follow what that command does, it simply creates a symbolic link inside the flock/plugins folder to any plugin available in firefox.  Running this command will make sure that anything supported as a Firefox plugin will also be supported as a Flock plugin (this, of course, is based on the fact that Flock is based on Firefox).</p>
<p>note: if you&#8217;ve added or updated any plugins for Firefox you may need to repeat the command to re-sync anything new to your Flock plugins.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2006/10/22/flash-java-plugins-for-flock-ubuntu-606-610/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic (User agent is rejected)
Database Caching 2/20 queries in 0.011 seconds using disk: basic
Object Caching 307/338 objects using disk: basic

Served from: ubuntu-tutorials.com @ 2012-02-09 12:10:06 -->
