<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Install SUN JDK on Fedora 10</title>
	<atom:link href="http://dougdiego.com/2008/12/04/install-sun-jdk-on-fedora-10/feed/" rel="self" type="application/rss+xml" />
	<link>http://dougdiego.com/2008/12/04/install-sun-jdk-on-fedora-10/</link>
	<description></description>
	<lastBuildDate>Thu, 03 Nov 2011 18:47:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Suresh</title>
		<link>http://dougdiego.com/2008/12/04/install-sun-jdk-on-fedora-10/comment-page-1/#comment-39</link>
		<dc:creator>Suresh</dc:creator>
		<pubDate>Tue, 30 Dec 2008 12:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://dougdiego.com/?p=147#comment-39</guid>
		<description>Thanks a lot! it worked.</description>
		<content:encoded><![CDATA[<p>Thanks a lot! it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doug</title>
		<link>http://dougdiego.com/2008/12/04/install-sun-jdk-on-fedora-10/comment-page-1/#comment-38</link>
		<dc:creator>doug</dc:creator>
		<pubDate>Mon, 29 Dec 2008 13:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://dougdiego.com/?p=147#comment-38</guid>
		<description>To make javac available to any individual user, just add the following to each user&#039;s path:

export JAVA_HOME=/usr/local/jdk1.6.0_11
export PATH=$PATH:$JAVA_HOME/bin

For example, if you have a user called suresh, you&#039;d open:
/home/suresh/.bashrc

And add the 2 export command.  (This assume you are using bash and the /home/suresh is your home directory)

If you want to make is available to all users, as root edit the file:
/etc/profile 

And again add:
export JAVA_HOME=/usr/local/jdk1.6.0_11
export PATH=$PATH:$JAVA_HOME/bin

If your shell is tcsh, you can add it here:
/etc/csh.cshrc</description>
		<content:encoded><![CDATA[<p>To make javac available to any individual user, just add the following to each user&#8217;s path:</p>
<p>export JAVA_HOME=/usr/local/jdk1.6.0_11<br />
export PATH=$PATH:$JAVA_HOME/bin</p>
<p>For example, if you have a user called suresh, you&#8217;d open:<br />
/home/suresh/.bashrc</p>
<p>And add the 2 export command.  (This assume you are using bash and the /home/suresh is your home directory)</p>
<p>If you want to make is available to all users, as root edit the file:<br />
/etc/profile </p>
<p>And again add:<br />
export JAVA_HOME=/usr/local/jdk1.6.0_11<br />
export PATH=$PATH:$JAVA_HOME/bin</p>
<p>If your shell is tcsh, you can add it here:<br />
/etc/csh.cshrc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suresh</title>
		<link>http://dougdiego.com/2008/12/04/install-sun-jdk-on-fedora-10/comment-page-1/#comment-37</link>
		<dc:creator>Suresh</dc:creator>
		<pubDate>Mon, 29 Dec 2008 09:34:36 +0000</pubDate>
		<guid isPermaLink="false">http://dougdiego.com/?p=147#comment-37</guid>
		<description>Thanks for the useful info posted above. Could you please tell me how to make &quot;javac&quot; accessible to all users. At the moment I can compile programs only if I login as root. Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for the useful info posted above. Could you please tell me how to make &#8220;javac&#8221; accessible to all users. At the moment I can compile programs only if I login as root. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doug</title>
		<link>http://dougdiego.com/2008/12/04/install-sun-jdk-on-fedora-10/comment-page-1/#comment-33</link>
		<dc:creator>doug</dc:creator>
		<pubDate>Tue, 23 Dec 2008 17:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://dougdiego.com/?p=147#comment-33</guid>
		<description>You need to manuallly install the plugin.  See this thread here:

http://www.e-graviton.com/ird/node/195 

It says:

On my Linux box, the plugins directory does not exist. So I have to create a new one first. Here is the sequence.
------------------------------
[yuz@localhost .mozilla]$ mkdir plugins
[yuz@localhost plugins]$ pwd
/home/yuz/.mozilla/plugins
[yuz@localhost plugins]$ ln -s /home/yuz/jdk1.5.0_03/jre/plugin/i386/ns7/libjavaplugin_oji.so ./libjavaplugin_oji.so
[yuz@localhost plugins]$ ls
libjavaplugin_oji.so
[yuz@localhost plugins]$
------------------------------
Then I added the following lines to my .bash_profile
------------------------------
MOZ_PLUGIN_PATH=$HOME/.mozilla/plugins
export MOZ_PLUGIN_PATH
------------------------------
Log off and log on again, start the firefox, and I can run the java applet on linux!</description>
		<content:encoded><![CDATA[<p>You need to manuallly install the plugin.  See this thread here:</p>
<p><a href="http://www.e-graviton.com/ird/node/195" rel="nofollow">http://www.e-graviton.com/ird/node/195</a> </p>
<p>It says:</p>
<p>On my Linux box, the plugins directory does not exist. So I have to create a new one first. Here is the sequence.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
[yuz@localhost .mozilla]$ mkdir plugins<br />
[yuz@localhost plugins]$ pwd<br />
/home/yuz/.mozilla/plugins<br />
[yuz@localhost plugins]$ ln -s /home/yuz/jdk1.5.0_03/jre/plugin/i386/ns7/libjavaplugin_oji.so ./libjavaplugin_oji.so<br />
[yuz@localhost plugins]$ ls<br />
libjavaplugin_oji.so<br />
[yuz@localhost plugins]$<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Then I added the following lines to my .bash_profile<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
MOZ_PLUGIN_PATH=$HOME/.mozilla/plugins<br />
export MOZ_PLUGIN_PATH<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Log off and log on again, start the firefox, and I can run the java applet on linux!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mechdude</title>
		<link>http://dougdiego.com/2008/12/04/install-sun-jdk-on-fedora-10/comment-page-1/#comment-32</link>
		<dc:creator>mechdude</dc:creator>
		<pubDate>Tue, 23 Dec 2008 00:14:31 +0000</pubDate>
		<guid isPermaLink="false">http://dougdiego.com/?p=147#comment-32</guid>
		<description>Any differences installing from Sun&#039;s RPM?

I&#039;d installed from Sun&#039;s RPM, however any browser (Opera, Firefox, Konqueror) can&#039;t run any Java content. Also Opera does not open the Java Console.

(Fedora 10 x86_64 with RPMs installed jdk-1.6.0_11-fcs.i586 firefox-3.0.4-1.fc10.i386)</description>
		<content:encoded><![CDATA[<p>Any differences installing from Sun&#8217;s RPM?</p>
<p>I&#8217;d installed from Sun&#8217;s RPM, however any browser (Opera, Firefox, Konqueror) can&#8217;t run any Java content. Also Opera does not open the Java Console.</p>
<p>(Fedora 10 x86_64 with RPMs installed jdk-1.6.0_11-fcs.i586 firefox-3.0.4-1.fc10.i386)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

