<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Little Brain &#187; oracle</title>
	<atom:link href="http://justalittlebrain.wordpress.com/tag/oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://justalittlebrain.wordpress.com</link>
	<description>just a little brain</description>
	<lastBuildDate>Fri, 27 Jan 2012 09:05:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='justalittlebrain.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Little Brain &#187; oracle</title>
		<link>http://justalittlebrain.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://justalittlebrain.wordpress.com/osd.xml" title="Little Brain" />
	<atom:link rel='hub' href='http://justalittlebrain.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How To Install Oracle XE in Ubuntu 64 Bit</title>
		<link>http://justalittlebrain.wordpress.com/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/#comments</comments>
		<pubDate>Mon, 12 May 2008 15:42:20 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=163</guid>
		<description><![CDATA[While you&#8217;re thinking by installing 64 bit linux you&#8217;re standing in the edge of new technology era, it sucks knowing our 64 bit system is less supported than the old 32 bit system. We have to install 32 bit flash since Adobe didn&#8217;t have the 64 bit one. We have to install 32 bit oracle [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=163&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While you&#8217;re thinking by installing 64 bit linux you&#8217;re standing in the edge of new technology era, it sucks knowing our 64 bit system is less supported than the old 32 bit system. We have to install 32 bit flash since Adobe didn&#8217;t have the 64 bit one. We have to install 32 bit oracle xe since Oracle also didn&#8217;t have 64 bit version.</p>
<p>And now I will try explain how to install oracle xe into the 64 bit system, ubuntu way. Of course we couldn&#8217;t follow the <a href="http://www.oracle.com/technology/tech/linux/install/xe-on-kubuntu.html">guide from oracle</a>, since apt-get will detect our system architecture and we won&#8217;t get the 32 bit packages list.</p>
<p>Before we start, make sure you have the 32 bit library installed. It&#8217;s in reposity, all you have to do is</p>
<p><code>sudo apt-get install libc6-i386</code></p>
<p>The next thing to do is download the files needed. It&#8217;s <a href="http://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb">libaio_0.3.104-1_i386.deb</a> and <a href="http://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe-universal_10.2.0.1-1.1_i386.deb">oracle-xe-universal_10.2.0.1-1.1_i386.deb</a>. You could use wget for this</p>
<p><code>wget -c http://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb http://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe-universal_10.2.0.1-1.1_i386.deb</code></p>
<p>After your downloads are finished, we continue to the main issue, forcing the package to be installed. You could try to install with usual dpkg -i first to make sure your system is really 64 bit.</p>
<p><code>sudo dpkg -i libaio_0.3.104-1_i386.deb</code></p>
<p>You&#8217;ll get error,</p>
<p><code>dpkg: error processing libaio_0.3.104-1_i386.deb (--install):<br />
package architecture (i386) does not match system (amd64)<br />
Errors were encountered while processing:<br />
libaio_0.3.104-1_i386.deb</code></p>
<p><em>Added guide from <strong>Venka A</strong></em></p>
<p><code>sudo apt-get install bc</code></p>
<p>To force the installation, do these</p>
<p><code>dpkg -i --force-architecture libaio_0.3.104-1_i386.deb</code><br />
<code>dpkg -i --force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb</code></p>
<p>And after the installation is finished, you need to configure it</p>
<p><code>sudo /etc/init.d/oracle-xe configure</code></p>
<p>and edit your ~/.bashrc</p>
<p><code>ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server<br />
PATH=$PATH:$ORACLE_HOME/bin<br />
export ORACLE_HOME<br />
export ORACLE_SID=XE<br />
export PATH</code></p>
<p>And, voila, the oracle xe is ready. You could go to <a href="http://127.0.0.1:8080/apex">http://127.0.0.1:8080/apex</a> from your browser.</p>
<p>References:</p>
<ul>
<li><a href="http://dballester.blogspot.com/2007/04/oracle-xe-en-ubuntu-edgy-amd64-em64t.html">Oracle XE en Ubuntu Edgy amd64 / em64t ( x86-64 )</a></li>
<li><a href="https://help.ubuntu.com/community/Oracle10g#head-310ffbf270536395fae3c8f74c7817a60ef7c3f1">Oracle Express Edition / on Ubuntu Edgy 6.10</a></li>
<li><a href="http://www.oracle.com/technology/tech/linux/install/xe-on-kubuntu.html">Installing Oracle Database XE on Debian, Ubuntu, and Kubuntu</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justalittlebrain.wordpress.com/163/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justalittlebrain.wordpress.com/163/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=163&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/feed/</wfw:commentRss>
		<slash:comments>282</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
	</channel>
</rss>
