<?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>Spind.net Blog &#187; 64bit</title>
	<atom:link href="http://blog.spind.net/tag/64bit/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.spind.net</link>
	<description>Stories from the trenches of System Administration</description>
	<lastBuildDate>Mon, 19 Dec 2011 09:21:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Skype on Fedora 16 64-bit</title>
		<link>http://blog.spind.net/2011/12/19/skype-on-fedora-16-64-bit/</link>
		<comments>http://blog.spind.net/2011/12/19/skype-on-fedora-16-64-bit/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 09:21:50 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[x86_64]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=247</guid>
		<description><![CDATA[For some odd reason, the guys over at Skype is refusing to release a pure 64-bit version of Skype for Fedora. Instead they ship an i586 version, without any dependencies defined for the 32-bit libraries is require. Here is what you need to install to make it work: 1yum install -y libXv.i686 libXScrnSaver.i686 qt.i686 qt-x11.i686]]></description>
			<content:encoded><![CDATA[<p>For some odd reason, the guys over at Skype is refusing to release a pure 64-bit version of Skype for Fedora. Instead they ship an i586 version, without any dependencies defined for the 32-bit libraries is require. Here is what you need to install to make it work:</p>
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:590px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">yum install -y libXv.i686 libXScrnSaver.i686 qt.i686 qt-x11.i686</div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2011/12/19/skype-on-fedora-16-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sun JRE on Firefox</title>
		<link>http://blog.spind.net/2009/02/19/sun-jre-on-firefox/</link>
		<comments>http://blog.spind.net/2009/02/19/sun-jre-on-firefox/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 11:48:31 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Fedora10]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=94</guid>
		<description><![CDATA[I rarely need a Java plugin for my 64-bit Firefox browser, but once in a rare while I need to use certain government services that require a digital signature and the original Sun Java plugin &#8211; OpenJDK just doesn&#8217;t cut it. Sun changed a couple of things recently, so many of the howto&#8217;s are outdated [...]]]></description>
			<content:encoded><![CDATA[<p>I rarely need a Java plugin for my 64-bit Firefox browser, but once in a rare while I need to use certain government services that require a digital signature and the original Sun Java plugin &#8211; <a href="http://www.openjdk.org/">OpenJDK</a> just doesn&#8217;t cut it. Sun changed a couple of things recently, so many of the howto&#8217;s are outdated &#8211; this will work though:</p>
<p>Make sure you remove/disable OpenJDK:</p>
<div class="codebox">
$ rpm -e java-1.6.0-openjdk-plugin
</div>
<p>Get the latest <b>Java SE Runtime Environment (JRE)</b> <a href="http://java.sun.com/javase/downloads/">here</a>. Make sure it&#8217;s the 64-bit non-RPM version. The RPM might work too, I just didn&#8217;t test it. We&#8217;ll assume it&#8217;s version 1.6.0-12. Execute the following commands to unpack it:</p>
<div class="codebox">
$ umask 022<br />
$ chmod +x jre-6u12-linux-x64.bin<br />
$ ./jre-6u12-linux-x64.bin
</div>
<p>Accept the license agreement. The directory <tt>jre1.6.0_12</tt> is created. Execute the following commands to move JRE and make a symbolic link to the plugin:</p>
<div class="codebox">
$ mv jre1.6.0_12 /opt<br />
$ cd /usr/lib64/mozilla/plugins<br />
$ ln -s /opt/jre1.6.0_12/lib/amd64/libnpjp2.so .
</div>
<p>The new thing here is that they recently renamed the plugin from <tt>libjavaplugin_oji.so</tt> to <tt>libnpjp2.so</tt> &#8211; that set me off track for a while.</p>
<p>Restart Firefox and type in <tt>about:plugins</tt> and look for Java &#8211; if it&#8217;s there, you&#8217;re all set.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2009/02/19/sun-jre-on-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

