While you’re thinking by installing 64 bit linux you’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’t have the 64 bit one. We have to install 32 bit oracle xe since Oracle also didn’t have 64 bit version.
And now I will try explain how to install oracle xe into the 64 bit system, ubuntu way. Of course we couldn’t follow the guide from oracle, since apt-get will detect our system architecture and we won’t get the 32 bit packages list.
Before we start, make sure you have the 32 bit library installed. It’s in reposity, all you have to do is
sudo apt-get install libc6-i386
The next thing to do is download the files needed. It’s libaio_0.3.104-1_i386.deb and oracle-xe-universal_10.2.0.1-1.1_i386.deb. You could use wget for this
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
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.
sudo dpkg -i libaio_0.3.104-1_i386.deb
You’ll get error,
dpkg: error processing libaio_0.3.104-1_i386.deb (--install):
package architecture (i386) does not match system (amd64)
Errors were encountered while processing:
libaio_0.3.104-1_i386.deb
Added guide from Venka A
sudo apt-get install bc
To force the installation, do these
dpkg -i --force-architecture libaio_0.3.104-1_i386.deb
dpkg -i --force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb
And after the installation is finished, you need to configure it
sudo /etc/init.d/oracle-xe configure
and edit your ~/.bashrc
ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
PATH=$PATH:$ORACLE_HOME/bin
export ORACLE_HOME
export ORACLE_SID=XE
export PATH
And, voila, the oracle xe is ready. You could go to http://127.0.0.1:8080/apex from your browser.
References:
[...] trust myself to remember « Installing Oracle on UbuntuInstalling Oracle XE on Ubuntu 64bithttp://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/ Published in:Uncategorized |on May 26th, 2008 |You can leave a response, or trackback from your [...]
[...] trust myself to remember « Installing Oracle on UbuntuInstalling Oracle XE on Ubuntu 64bithttp://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/ Published in:Uncategorized |on May 26th, 2008 |You can leave a response, or trackback from your [...]
Thanks so much for this guide! I have been trying to install compiere, which, of course, only runs with Oracle (for now). I spent hours trying to configure the full version of oracle, until I stumbled across this! It was so easy, then.
Thanks again!
Thanks so much for this guide! I have been trying to install compiere, which, of course, only runs with Oracle (for now). I spent hours trying to configure the full version of oracle, until I stumbled across this! It was so easy, then.
Thanks again!
Thanks so much for this guide! I have been trying to install compiere, which, of course, only runs with Oracle (for now). I spent hours trying to configure the full version of oracle, until I stumbled across this! It was so easy, then.
Thanks again!
Thanks so much for this guide! I have been trying to install compiere, which, of course, only runs with Oracle (for now). I spent hours trying to configure the full version of oracle, until I stumbled across this! It was so easy, then.
Thanks again!
Great guide! I used this to install Oracle XE on an Ubuntu 8 AMD64 linux box. Just wanted to point out that I needed to add the BC package by running this command:
sudo apt-get install bc
before running these commands:
sudo dpkg -i –force-architecture libaio_0.3.104-1_i386.deb
sudo dpkg -i –force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb
Great guide! I used this to install Oracle XE on an Ubuntu 8 AMD64 linux box. Just wanted to point out that I needed to add the BC package by running this command:
sudo apt-get install bc
before running these commands:
sudo dpkg -i –force-architecture libaio_0.3.104-1_i386.deb
sudo dpkg -i –force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb
Great guide! I used this to install Oracle XE on an Ubuntu 8 AMD64 linux box. Just wanted to point out that I needed to add the BC package by running this command:
sudo apt-get install bc
before running these commands:
sudo dpkg -i –force-architecture libaio_0.3.104-1_i386.deb
sudo dpkg -i –force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb
Great guide! I used this to install Oracle XE on an Ubuntu 8 AMD64 linux box. Just wanted to point out that I needed to add the BC package by running this command:
sudo apt-get install bc
before running these commands:
sudo dpkg -i –force-architecture libaio_0.3.104-1_i386.deb
sudo dpkg -i –force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb
thank you
I’ll add to the post
thank you
I’ll add to the post
Hi…This tutorial is invaluable. I followed all the steps and installed Oracle 10g XE on an amd64 Ubuntu Feisty, one problem though.
During the configuration, I chose NOT to start the db upon start up. While everything worked when I installed, once I rebooted, I can not connect to the DB home page from FireFox. I did a little diggin’ and it seems that the listener did not start. When I try to re-configure via:
[b]sudo /etc/init.d/oracle-xe configure[/b]
I get [b]Oracle Database 10g Express Edition is already configured
[/b]
Any idea how to solve this?
did u get any repl for this.. i am encountering the same error now..
me too.
HOW CAN ANYBODY EVER RECONFIGURE A MISTAKEN INSTALLATION ATTEMPT ? ? ?
Hi…This tutorial is invaluable. I followed all the steps and installed Oracle 10g XE on an amd64 Ubuntu Feisty, one problem though.
During the configuration, I chose NOT to start the db upon start up. While everything worked when I installed, once I rebooted, I can not connect to the DB home page from FireFox. I did a little diggin’ and it seems that the listener did not start. When I try to re-configure via:
[b]sudo /etc/init.d/oracle-xe configure[/b]
I get [b]Oracle Database 10g Express Edition is already configured
[/b]
Any idea how to solve this?
did u get any repl for this.. i am encountering the same error now..
me too.
HOW CAN ANYBODY EVER RECONFIGURE A MISTAKEN INSTALLATION ATTEMPT ? ? ?
Hi…This tutorial is invaluable. I followed all the steps and installed Oracle 10g XE on an amd64 Ubuntu Feisty, one problem though.
During the configuration, I chose NOT to start the db upon start up. While everything worked when I installed, once I rebooted, I can not connect to the DB home page from FireFox. I did a little diggin’ and it seems that the listener did not start. When I try to re-configure via:
[b]sudo /etc/init.d/oracle-xe configure[/b]
I get [b]Oracle Database 10g Express Edition is already configured
[/b]
Any idea how to solve this?
Hi…This tutorial is invaluable. I followed all the steps and installed Oracle 10g XE on an amd64 Ubuntu Feisty, one problem though.
During the configuration, I chose NOT to start the db upon start up. While everything worked when I installed, once I rebooted, I can not connect to the DB home page from FireFox. I did a little diggin’ and it seems that the listener did not start. When I try to re-configure via:
[b]sudo /etc/init.d/oracle-xe configure[/b]
I get [b]Oracle Database 10g Express Edition is already configured
[/b]
Any idea how to solve this?
M.B
thank you
have you start the db?
sudo /etc/init.d/oracle-xe startM.B
thank you
have you start the db?
sudo /etc/init.d/oracle-xe startStarting the database does not do anything, still can’t access the home page from FF or Opera.
Starting the database does not do anything, still can’t access the home page from FF or Opera.
Starting the database does not do anything, still can’t access the home page from FF or Opera.
Starting the database does not do anything, still can’t access the home page from FF or Opera.
any spesific error?
any spesific error?
Hi.
At first, thanks for the great tutorial.
It worked great until the next reebot
.
Then I had the same problem like M.B.
The only successfull way to solve the problem, was the following:
dpkg -purge “oracle package name”
and reinstall oracle with the the option “run on startup”.
After that I was able to reconfigure it.
For shure this is not the cleanest way to solve the problem, but after searching for hours the most effective
Hi.
At first, thanks for the great tutorial.
It worked great until the next reebot
.
Then I had the same problem like M.B.
The only successfull way to solve the problem, was the following:
dpkg -purge “oracle package name”
and reinstall oracle with the the option “run on startup”.
After that I was able to reconfigure it.
For shure this is not the cleanest way to solve the problem, but after searching for hours the most effective
Hi.
At first, thanks for the great tutorial.
It worked great until the next reebot
.
Then I had the same problem like M.B.
The only successfull way to solve the problem, was the following:
dpkg -purge “oracle package name”
and reinstall oracle with the the option “run on startup”.
After that I was able to reconfigure it.
For shure this is not the cleanest way to solve the problem, but after searching for hours the most effective
Hi.
At first, thanks for the great tutorial.
It worked great until the next reebot
.
Then I had the same problem like M.B.
The only successfull way to solve the problem, was the following:
dpkg -purge “oracle package name”
and reinstall oracle with the the option “run on startup”.
After that I was able to reconfigure it.
For shure this is not the cleanest way to solve the problem, but after searching for hours the most effective
[...] Pet peeves include: (1) The Microsoft patching progrm auto detects x64 and chooses to install IE x64 when Flash is 32 bit and inoperable with 64 bit browsers; (2) VMWare Workstation disallows installation of 64 bit OS when running on Vista Home x64 (appears to require Vista Business or Ultimate); and (3) the work arounds required to install Oracle XE on Ubuntu x64. [...]
[...] Pet peeves include: (1) The Microsoft patching progrm auto detects x64 and chooses to install IE x64 when Flash is 32 bit and inoperable with 64 bit browsers; (2) VMWare Workstation disallows installation of 64 bit OS when running on Vista Home x64 (appears to require Vista Business or Ultimate); and (3) the work arounds required to install Oracle XE on Ubuntu x64. [...]
Reconfiguring can be done by editing the file /etc/default/oracle-xe.
Change true in the line: ‘CONFIGURE_RUN=true’ to false
i.e.with: sudo gedit /etc.default/oracle-xe
Reconfiguring can be done by editing the file /etc/default/oracle-xe.
Change true in the line: ‘CONFIGURE_RUN=true’ to false
i.e.with: sudo gedit /etc.default/oracle-xe
Reconfiguring can be done by editing the file /etc/default/oracle-xe.
Change true in the line: ‘CONFIGURE_RUN=true’ to false
i.e.with: sudo gedit /etc.default/oracle-xe
Reconfiguring can be done by editing the file /etc/default/oracle-xe.
Change true in the line: ‘CONFIGURE_RUN=true’ to false
i.e.with: sudo gedit /etc.default/oracle-xe
Thanks for this amazing and useful tutorial, it worked like a charm, I now have Oracle XE running on my Ubuntu 8.04.1 AMD 64 box.
Thanks for this amazing and useful tutorial, it worked like a charm, I now have Oracle XE running on my Ubuntu 8.04.1 AMD 64 box.
Thanks for this amazing and useful tutorial, it worked like a charm, I now have Oracle XE running on my Ubuntu 8.04.1 AMD 64 box.
Thanks for this amazing and useful tutorial, it worked like a charm, I now have Oracle XE running on my Ubuntu 8.04.1 AMD 64 box.
[...] ale wersje 32bitowa bardzo ładnie działa pod 64bitowym linuksem. Podziękowania dla autora tego opisu. [...]
[...] ale wersje 32bitowa bardzo ładnie działa pod 64bitowym linuksem. Podziękowania dla autora tego opisu. [...]
[...] needs to be reinstalled, but I can’t find an archive for it.And finally, when I resorted to using this excellent guide instead, I ran into this problem because of the earlier failed installation.dpkg: regarding [...]
[...] needs to be reinstalled, but I can’t find an archive for it.And finally, when I resorted to using this excellent guide instead, I ran into this problem because of the earlier failed installation.dpkg: regarding [...]
You rock, buddy!!!! Thx a million!!!!
You rock, buddy!!!! Thx a million!!!!
You rock, buddy!!!! Thx a million!!!!
You rock, buddy!!!! Thx a million!!!!
Hi,
I followed your instructions to a T and get the following error:
TNS-12537: TNS:connection closed
TNS-12560: TNS:protocol adapter error
TNS-00507: Connection closed
Linux Error: 29: Illegal seek
I’ve searched for a few hours on the “Illegal seek” message which most forums out there blame on the /etc/hosts file not having the following reference:
127.0.0.1 localhost.localdomain localhost
uname -a gives me:
2.6.24-21-generic #1 SMP Tue Oct 21 23:09:30 UTC 2008 x86_64 GNU/Linux
any ideas?
thanks.
Ranbir
Hi,
I followed your instructions to a T and get the following error:
TNS-12537: TNS:connection closed
TNS-12560: TNS:protocol adapter error
TNS-00507: Connection closed
Linux Error: 29: Illegal seek
I’ve searched for a few hours on the “Illegal seek” message which most forums out there blame on the /etc/hosts file not having the following reference:
127.0.0.1 localhost.localdomain localhost
uname -a gives me:
2.6.24-21-generic #1 SMP Tue Oct 21 23:09:30 UTC 2008 x86_64 GNU/Linux
any ideas?
thanks.
Ranbir
Hi,
I followed your instructions to a T and get the following error:
TNS-12537: TNS:connection closed
TNS-12560: TNS:protocol adapter error
TNS-00507: Connection closed
Linux Error: 29: Illegal seek
I’ve searched for a few hours on the “Illegal seek” message which most forums out there blame on the /etc/hosts file not having the following reference:
127.0.0.1 localhost.localdomain localhost
uname -a gives me:
2.6.24-21-generic #1 SMP Tue Oct 21 23:09:30 UTC 2008 x86_64 GNU/Linux
any ideas?
thanks.
Ranbir
Hi,
I followed your instructions to a T and get the following error:
TNS-12537: TNS:connection closed
TNS-12560: TNS:protocol adapter error
TNS-00507: Connection closed
Linux Error: 29: Illegal seek
I’ve searched for a few hours on the “Illegal seek” message which most forums out there blame on the /etc/hosts file not having the following reference:
127.0.0.1 localhost.localdomain localhost
uname -a gives me:
2.6.24-21-generic #1 SMP Tue Oct 21 23:09:30 UTC 2008 x86_64 GNU/Linux
any ideas?
thanks.
Ranbir
Thank you very much. It worked exactly as you told.
Thanks
Gerson
Thank you very much. It worked exactly as you told.
Thanks
Gerson
Thank you very much. It worked exactly as you told.
Thanks
Gerson
Thank you very much. It worked exactly as you told.
Thanks
Gerson
I can find the prayer I want. I thank God for this website.r
I can find the prayer I want. I thank God for this website.r
I can find the prayer I want. I thank God for this website.r
I can find the prayer I want. I thank God for this website.r
short read in buffer_copy (backend dpkg-deb during `./usr/lib/oracle/xe/app/oracle/product/10.2.0/server/jdbc/lib/ojdbc14_g.jar’)
Errors were encountered while processing:
/home/matwol/Desktop/oracle-xe-universal_10.2.0.1-1.1_i386.deb
short read in buffer_copy (backend dpkg-deb during `./usr/lib/oracle/xe/app/oracle/product/10.2.0/server/jdbc/lib/ojdbc14_g.jar’)
Errors were encountered while processing:
/home/matwol/Desktop/oracle-xe-universal_10.2.0.1-1.1_i386.deb
Oracle…
TQM Oracle Datenbank Oracle ist zur Zeit auf dem tqmweb10 in der kostenlosen und abgespeckten Variante OracleXE installiert Oracle starten /etc/init.d/oraclexe start Nachfolgend die Schritte, die früher (alter tqmweb09) notwendig waren bzw…….
Oracle…
TQM Oracle Datenbank Oracle ist zur Zeit auf dem tqmweb10 in der kostenlosen und abgespeckten Variante OracleXE installiert Oracle starten /etc/init.d/oraclexe start Nachfolgend die Schritte, die früher (alter tqmweb09) notwendig waren bzw…….
thank you, worked like a charm.
I am on Ubuntu 8.10 with lib_aio1 installed. It said lib_aio conflicted with lib_aio1, went on anyway and installed ok !
hugo
thank you, worked like a charm.
I am on Ubuntu 8.10 with lib_aio1 installed. It said lib_aio conflicted with lib_aio1, went on anyway and installed ok !
hugo
thank you, worked like a charm.
I am on Ubuntu 8.10 with lib_aio1 installed. It said lib_aio conflicted with lib_aio1, went on anyway and installed ok !
hugo
thank you, worked like a charm.
I am on Ubuntu 8.10 with lib_aio1 installed. It said lib_aio conflicted with lib_aio1, went on anyway and installed ok !
hugo
Not having a problem getting ORacle-xe to run under Ubuntu AMD64 but cannot seem to get PHP5 and OCI8 to work with it. Seems all installs involve InstantClient and not the full XE installed. Anyone have success with AMD64 Ubuntu 9 Oracle-xe 10 and PHP5 with oci?
Not having a problem getting ORacle-xe to run under Ubuntu AMD64 but cannot seem to get PHP5 and OCI8 to work with it. Seems all installs involve InstantClient and not the full XE installed. Anyone have success with AMD64 Ubuntu 9 Oracle-xe 10 and PHP5 with oci?
Not having a problem getting ORacle-xe to run under Ubuntu AMD64 but cannot seem to get PHP5 and OCI8 to work with it. Seems all installs involve InstantClient and not the full XE installed. Anyone have success with AMD64 Ubuntu 9 Oracle-xe 10 and PHP5 with oci?
Not having a problem getting ORacle-xe to run under Ubuntu AMD64 but cannot seem to get PHP5 and OCI8 to work with it. Seems all installs involve InstantClient and not the full XE installed. Anyone have success with AMD64 Ubuntu 9 Oracle-xe 10 and PHP5 with oci?
To solve the problem of oracle starting, just use this commands:
sudo /etc/init.d/oracle-xe enable
sudo /etc/init.d/oracle-xe start
To solve the problem of oracle starting, just use this commands:
sudo /etc/init.d/oracle-xe enable
sudo /etc/init.d/oracle-xe start
To solve the problem of oracle starting, just use this commands:
sudo /etc/init.d/oracle-xe enable
sudo /etc/init.d/oracle-xe start
To solve the problem of oracle starting, just use this commands:
sudo /etc/init.d/oracle-xe enable
sudo /etc/init.d/oracle-xe start
Hi there,
i did all the steps from above and am stuck now with the problem that the listener does not start. i cannot even execute lsnrctl in the command line.
$ sudo /etc/init.d/oracle-xe start
Starting Oracle Net Listener.
Starting Oracle Database 10g Express Edition Instance.
Failed to start Oracle Net Listener using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr and Oracle Express Database using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/sqlplus.
$ lsnrctl
$ bash: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl: No such file or directory
or:
$ sudo /etc/init.d/oracle-xe status
$ bash: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl: No such file or directory
even if i go directly into the bin-dir and execute
$ ./lsnrctl
i get the same error.
This seems pretty weird, does anybody got an idea?
Hi there,
i did all the steps from above and am stuck now with the problem that the listener does not start. i cannot even execute lsnrctl in the command line.
$ sudo /etc/init.d/oracle-xe start
Starting Oracle Net Listener.
Starting Oracle Database 10g Express Edition Instance.
Failed to start Oracle Net Listener using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr and Oracle Express Database using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/sqlplus.
$ lsnrctl
$ bash: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl: No such file or directory
or:
$ sudo /etc/init.d/oracle-xe status
$ bash: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl: No such file or directory
even if i go directly into the bin-dir and execute
$ ./lsnrctl
i get the same error.
This seems pretty weird, does anybody got an idea?
Hi there,
i did all the steps from above and am stuck now with the problem that the listener does not start. i cannot even execute lsnrctl in the command line.
$ sudo /etc/init.d/oracle-xe start
Starting Oracle Net Listener.
Starting Oracle Database 10g Express Edition Instance.
Failed to start Oracle Net Listener using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr and Oracle Express Database using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/sqlplus.
$ lsnrctl
$ bash: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl: No such file or directory
or:
$ sudo /etc/init.d/oracle-xe status
$ bash: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl: No such file or directory
even if i go directly into the bin-dir and execute
$ ./lsnrctl
i get the same error.
This seems pretty weird, does anybody got an idea?
Hi there,
i did all the steps from above and am stuck now with the problem that the listener does not start. i cannot even execute lsnrctl in the command line.
$ sudo /etc/init.d/oracle-xe start
Starting Oracle Net Listener.
Starting Oracle Database 10g Express Edition Instance.
Failed to start Oracle Net Listener using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr and Oracle Express Database using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/sqlplus.
$ lsnrctl
$ bash: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl: No such file or directory
or:
$ sudo /etc/init.d/oracle-xe status
$ bash: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl: No such file or directory
even if i go directly into the bin-dir and execute
$ ./lsnrctl
i get the same error.
This seems pretty weird, does anybody got an idea?
ok, sorry i forgot to execute
> sudo apt-get install libc6-i386
now its working fine … thanks a lot!
ok, sorry i forgot to execute
> sudo apt-get install libc6-i386
now its working fine … thanks a lot!
ok, sorry i forgot to execute
> sudo apt-get install libc6-i386
now its working fine … thanks a lot!
ok, sorry i forgot to execute
> sudo apt-get install libc6-i386
now its working fine … thanks a lot!
Perfect! Thanks so much for sharing your knowledge.
Perfect! Thanks so much for sharing your knowledge.
Perfect! Thanks so much for sharing your knowledge.
Perfect! Thanks so much for sharing your knowledge.
You advise me about
> sudo apt-get install libc6-i386
thanks a lot!
You advise me about
> sudo apt-get install libc6-i386
thanks a lot!
You advise me about
> sudo apt-get install libc6-i386
thanks a lot!
You advise me about
> sudo apt-get install libc6-i386
thanks a lot!
Perfect on Ubuntu Jaunty 64bit edition.
Thanx!
Perfect on Ubuntu Jaunty 64bit edition.
Thanx!
Perfect on Ubuntu Jaunty 64bit edition.
Thanx!
Perfect on Ubuntu Jaunty 64bit edition.
Thanx!
Thanks for the instructions. It worked perfectly on ubuntu 9.04.
Thx
Venkat
Thanks for the instructions. It worked perfectly on ubuntu 9.04.
Thx
Venkat
Thanks for the instructions. It worked perfectly on ubuntu 9.04.
Thx
Venkat
Thanks for the instructions. It worked perfectly on ubuntu 9.04.
Thx
Venkat
Thanks, The instructions work fine with a debian Lenny too. Great job.
Thanks, The instructions work fine with a debian Lenny too. Great job.
Thanks, The instructions work fine with a debian Lenny too. Great job.
Thanks, The instructions work fine with a debian Lenny too. Great job.
[...] 10g.RC2 (10.2.0.1) | Ubuntu 9.04 – Ubuntu Forums
[...] 10g.RC2 (10.2.0.1) | Ubuntu 9.04 – Ubuntu Forums
many thanks!
many thanks!
many thanks!
many thanks!
Thanks, good guide. It Works fine with a ubuntu server 9.04
Thanks, good guide. It Works fine with a ubuntu server 9.04
Thanks, good guide. It Works fine with a ubuntu server 9.04
Thanks, good guide. It Works fine with a ubuntu server 9.04
It also worked perfectly for me, on a debian distrib.
Now, let’s play with Oracle !
thanx a lot !
It also worked perfectly for me, on a debian distrib.
Now, let’s play with Oracle !
thanx a lot !
It also worked perfectly for me, on a debian distrib.
Now, let’s play with Oracle !
thanx a lot !
It also worked perfectly for me, on a debian distrib.
Now, let’s play with Oracle !
thanx a lot !
How To Ubuntu 64
How To Ubuntu 64
How To Ubuntu 64
How To Ubuntu 64
Dude, you need a Nobelprice for peace, i was about to kill somebody over this and you (and fabio) solved it !
Dude, you need a Nobelprice for peace, i was about to kill somebody over this and you (and fabio) solved it !
Dude, you need a Nobelprice for peace, i was about to kill somebody over this and you (and fabio) solved it !
Dude, you need a Nobelprice for peace, i was about to kill somebody over this and you (and fabio) solved it !
Thanks man, this really is the shit!
Thanks man, this really is the shit!
Thanks man, this really is the shit!
Thanks man, this really is the shit!
Vielen Dank (Thanks) für diese Anweisung.
Läuft hervorragend. Allerdings Vorsicht beim einem Kernelwechsel…dann muss die DB neu installiert werden, also vorher sichern!!!
Vielen Dank (Thanks) für diese Anweisung.
Läuft hervorragend. Allerdings Vorsicht beim einem Kernelwechsel…dann muss die DB neu installiert werden, also vorher sichern!!!
Vielen Dank (Thanks) für diese Anweisung.
Läuft hervorragend. Allerdings Vorsicht beim einem Kernelwechsel…dann muss die DB neu installiert werden, also vorher sichern!!!
Vielen Dank (Thanks) für diese Anweisung.
Läuft hervorragend. Allerdings Vorsicht beim einem Kernelwechsel…dann muss die DB neu installiert werden, also vorher sichern!!!
Thanks everybody, because your answers help me to resolve my problems.
Thank a lot, my oracle db works perfect.
Thanks everybody, because your answers help me to resolve my problems.
Thank a lot, my oracle db works perfect.
Thanks everybody, because your answers help me to resolve my problems.
Thank a lot, my oracle db works perfect.
Thanks everybody, because your answers help me to resolve my problems.
Thank a lot, my oracle db works perfect.
I love you man! Hope Santa is nice to you this year. You deserve it for making life easier.
Oracle though… I think Santa has a lump of coal for Larry Ellison
I love you man! Hope Santa is nice to you this year. You deserve it for making life easier.
Oracle though… I think Santa has a lump of coal for Larry Ellison
I love you man! Hope Santa is nice to you this year. You deserve it for making life easier.
Oracle though… I think Santa has a lump of coal for Larry Ellison
I love you man! Hope Santa is nice to you this year. You deserve it for making life easier.
Oracle though… I think Santa has a lump of coal for Larry Ellison
Thank you! Worked like a charm on slicehost.com Debian Lenny 512 slice.
Thank you! Worked like a charm on slicehost.com Debian Lenny 512 slice.
Thank you! Worked like a charm on slicehost.com Debian Lenny 512 slice.
Thank you! Worked like a charm on slicehost.com Debian Lenny 512 slice.
This IS a priceless and great guide. Thank you for publishing it.
This IS a priceless and great guide. Thank you for publishing it.
This IS a priceless and great guide. Thank you for publishing it.
This IS a priceless and great guide. Thank you for publishing it.
Hi Matt W,
short read in buffer_copy … … …
Is caused by a corrupted .deb file.
Redownload the .deb file and run dpkg again.
- Anderson
Hi Matt W,
short read in buffer_copy … … …
Is caused by a corrupted .deb file.
Redownload the .deb file and run dpkg again.
- Anderson
Hi Matt W,
short read in buffer_copy … … …
Is caused by a corrupted .deb file.
Redownload the .deb file and run dpkg again.
- Anderson
Hi Matt W,
short read in buffer_copy … … …
Is caused by a corrupted .deb file.
Redownload the .deb file and run dpkg again.
- Anderson
Thanks it worked perfectly on Ubuntu 9.10 Thanks again for the great article.
Thanks it worked perfectly on Ubuntu 9.10 Thanks again for the great article.
Thanks it worked perfectly on Ubuntu 9.10 Thanks again for the great article.
Thanks it worked perfectly on Ubuntu 9.10 Thanks again for the great article.
[...] http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/ [...]
[...] http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/ [...]
[...] Ubuntu Linux Install Sun Java Development Kit ( JDK ) and Java Runtime Environment ( JRE ) How To Install Oracle XE in Ubuntu 64 Bit Ubuntu上Oracle10g安装指南 ubuntu 910 下安装万能五笔 Ubuntu Linux Install Oracle [...]
[...] Ubuntu Linux Install Sun Java Development Kit ( JDK ) and Java Runtime Environment ( JRE ) How To Install Oracle XE in Ubuntu 64 Bit Ubuntu上Oracle10g安装指南 ubuntu 910 下安装万能五笔 Ubuntu Linux Install Oracle [...]
People%2FAsterites%2FManavMital%2FGSLab%2FUsing_Oracle…
Using Oracle for testing Installation Oracle installation is a little tricky, since the deb package for Oracle is only for i386. Had to do the following steps mentioned in this blog…
People%2FAsterites%2FManavMital%2FGSLab%2FUsing_Oracle…
Using Oracle for testing Installation Oracle installation is a little tricky, since the deb package for Oracle is only for i386. Had to do the following steps mentioned in this blog…
[...] los paquetes para 64 bits, por lo cual debemos seguir otro camino. Yo me basé en la siguiente guía en inglés, y básicamente lo que haremos es descargar algunas librerías adicionales y reparar la [...]
[...] los paquetes para 64 bits, por lo cual debemos seguir otro camino. Yo me basé en la siguiente guía en inglés, y básicamente lo que haremos es descargar algunas librerías adicionales y reparar la [...]
People%2FAsterites%2FManavMital%2FGSLab%2FUsing_Oracle…
Using Oracle for testing Installation Oracle installation is a little tricky, since the deb package for Oracle is only for i386. Had to do the following steps mentioned in this blog…
People%2FAsterites%2FManavMital%2FGSLab%2FUsing_Oracle…
Using Oracle for testing Installation Oracle installation is a little tricky, since the deb package for Oracle is only for i386. Had to do the following steps mentioned in this blog…
[...] I found a great post over at littlebrain.org that describes the process. I wont repeat it here, but head on over and take a [...]
[...] I found a great post over at littlebrain.org that describes the process. I wont repeat it here, but head on over and take a [...]
Worked like a champ, awesome; thanks for the work!
Worked like a champ, awesome; thanks for the work!
Worked like a champ, awesome; thanks for the work!
Worked like a champ, awesome; thanks for the work!
if you get invalid login credentials in apex after doing this, add yourself the dba group (via usermod) and then do “sqlplus / as sysdba”. This will connect you to the DB using OS authentication. Once you connect you can change the password for sys via an alter user statement.
“add yourself the dba group (via usermod)” – can you write an example please
sudo usermod -a -G dba username
then do “sqlplus / as sysdba” — how do i do this?
if you get invalid login credentials in apex after doing this, add yourself the dba group (via usermod) and then do “sqlplus / as sysdba”. This will connect you to the DB using OS authentication. Once you connect you can change the password for sys via an alter user statement.
“add yourself the dba group (via usermod)” – can you write an example please
sudo usermod -a -G dba username
then do “sqlplus / as sysdba” — how do i do this?
It worked perfectly on Ubuntu 10.04 64bits Desktop Edition, but I tried several times in Ubuntu 10.04 64bits Server Edition without success.. Have anyone got it working on server edition??The only thing I did other way is put the paths on the profile.d:sudo vim /etc/profile.d/oracle-xe.shsudo chmod ug+x /etc/profile.d/oracle-xe.sh
Answering myself, it seems that installing the package ia32-libs fixed the problem on Ubuntu 64 Server Edition. It was mentioned here: http://forums.oracle.com/forums/thread.jspa?threadID=436168
You need to reinstall oracle ofter that.
It worked perfectly on Ubuntu 10.04 64bits Desktop Edition, but I tried several times in Ubuntu 10.04 64bits Server Edition without success.. Have anyone got it working on server edition??The only thing I did other way is put the paths on the profile.d:sudo vim /etc/profile.d/oracle-xe.shsudo chmod ug+x /etc/profile.d/oracle-xe.sh
Answering myself, it seems that installing the package ia32-libs fixed the problem on Ubuntu 64 Server Edition. It was mentioned here: http://forums.oracle.com/forums/thread.jspa?threadID=436168
You need to reinstall oracle ofter that.
this is very important info! Thanks a lot!!
this is very important info! Thanks a lot!!
Love it! Man this saved me some headaches!
Love it! Man this saved me some headaches!
Brilliant!
Thanks! Too bad Oracle don’t post this information.
Brilliant!
Thanks! Too bad Oracle don’t post this information.
Impeccable, claire et précis. Un grand merci
Impeccable, claire et précis. Un grand merci
[...] Have you installed Oracle step by step or missed any configuration.Just follow the steps from below, http://littlebrain.org/2008/05/12/ho…ubuntu-64-bit/ [...]
[...] Have you installed Oracle step by step or missed any configuration.Just follow the steps from below, http://littlebrain.org/2008/05/12/ho…ubuntu-64-bit/ [...]
great tutorial, thank you.
I had some problem with swap space while i was trying to install…1024MB is requested by Oracle. So if you don’t have that set already, no worries… here is a forum answers how to do it easly.
http://ubuntuforums.org/showthread.php?t=89782
Thanks
great tutorial, thank you.
I had some problem with swap space while i was trying to install…1024MB is requested by Oracle. So if you don’t have that set already, no worries… here is a forum answers how to do it easly.
http://ubuntuforums.org/showthread.php?t=89782
Thanks
Great Post!…
[...] I found your entry interesting thus I’ve added a Trackback to it on my weblog
[...]…
Great Post!…
[...] I found your entry interesting thus I’ve added a Trackback to it on my weblog
[...]…
You have good information, But try to get one for oracle standard edition or enterprise. I think oracle doesn’t mind it how far if it is used for learning. If you need some help, I can send you some links, from where I got help. But still you have wonderful information. Really Nice.
You have good information, But try to get one for oracle standard edition or enterprise. I think oracle doesn’t mind it how far if it is used for learning. If you need some help, I can send you some links, from where I got help. But still you have wonderful information. Really Nice.
Thanks loads. Now we need to change the oracle-xe deb package names to the latest ones. Can you please update it with following URLs
http://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe-universal_10.2.0.1-1.1_i386.deb
Rajendra Alapaty
Thanks loads. Now we need to change the oracle-xe deb package names to the latest ones. Can you please update it with following URLs
http://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe-universal_10.2.0.1-1.1_i386.deb
Rajendra Alapaty
I don’t use to leave comments when I find any help, but: thank you, you really save my whole week. I really need oracle for a project and I was thinking about formatting my laptop or something to install it.
Thank you again
I don’t use to leave comments when I find any help, but: thank you, you really save my whole week. I really need oracle for a project and I was thinking about formatting my laptop or something to install it.
Thank you again
I have done this steps ten times and every time there was a different error, now I get the oracle interface, but when I type username and password I get error Invalid Login Credentials, I use system as username and I am sure I use the password I gave when I installed Oracle. I would appreciate any help.
I have done this steps ten times and every time there was a different error, now I get the oracle interface, but when I type username and password I get error Invalid Login Credentials, I use system as username and I am sure I use the password I gave when I installed Oracle. I would appreciate any help.
thanks!
thanks!
great tutorial. thanks
great tutorial. thanks
used this page twice now – works a charm.
used this page twice now – works a charm.
Thanks a lot ! Merci beaucoup !
Thanks a lot ! Merci beaucoup !
[...] If you try to follow this tutorial with a ubuntu 64 bit check out the following site http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/. [...]
[...] If you try to follow this tutorial with a ubuntu 64 bit check out the following site http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/. [...]
[...] this post is based on the article form the following site http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/ and an addition to my previous blog how to install Oracle XE and GlassFish on an Ubuntu [...]
[...] this post is based on the article form the following site http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/ and an addition to my previous blog how to install Oracle XE and GlassFish on an Ubuntu [...]
I just installed this on ubuntu 10.10 and it worked flawlessly. Thank you so much for the guide. And now I have some new commands I can look up. I am new to linux so this is quite the adventure.
Peace, Myst.
I just installed this on ubuntu 10.10 and it worked flawlessly. Thank you so much for the guide. And now I have some new commands I can look up. I am new to linux so this is quite the adventure.
Peace, Myst.
Great dude, second time I’m using this in two days
Great dude, second time I’m using this in two days
very much useful!!!
Thanks a lot.
very much useful!!!
Thanks a lot.
trying to install oracle XE10 on new ubuntu 11.0.4 64 bit. Everything looks fine until the step sudo dpkg -i –force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb.
Log looks like:
dpkg: warning: overriding problem because –force enabled:
package architecture (i386) does not match system (amd64)
(Reading database … 148219 files and directories currently installed.)
Preparing to replace oracle-xe-universal:i386 10.2.0.1-1.1 (using oracle-xe-universal_10.2.0.1-1.1_i386.deb) …
Unpacking replacement oracle-xe-universal:i386 …
dpkg: dependency problems prevent configuration of oracle-xe-universal:i386:
oracle-xe-universal:i386 depends on libc6 (>= 2.3.2); however:
Package libc6:i386 is not installed.
oracle-xe-universal:i386 depends on bc; however:
dpkg: error processing oracle-xe-universal:i386 (–install):
dependency problems – leaving unconfigured
…
Errors were encountered while processing:
oracle-xe-universal:i386
there is an error that libc6:386 is not installed but it is in version 2.13:
Package: libc6-i386
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 9268
Maintainer: Ubuntu Core developers
Architecture: amd64
Source: eglibc
Version: 2.13-0ubuntu13
…
pls, any help?
Have you resolved the problem? I have the same error on the same linux version.
Hi I also had this issue and fixed it today. Extract the deb file, open Oracle-xe-universal_10.2.0.1-1.0_i386/DEBIAN/control and remove the dependency for libc6 then cd to the directory that contains the extracted folders and do a dpkg-deb –build oracle-xe-universal_10.2.0.1-1.0_i386 && sudo dpkg -i –force-architecture oracle-xe-universal_10.2.0.1-1.0_i386.deb
Worked for me
Thanks a lot Johan, it works for me too.
thx for help.
Anyway I’ve resolved it in a little bit different way. I’ve installed Oracle 11XE beta. Step by step instructions are here https://confluence.bytesource.net/display/bytesourcepub/2011/04/02/Howto+install+Oracle+11XE+Beta+on+Ubuntu+10.04+x64
I’ve worked on windows for last couple of days, so I haven’t tested it in depth but at first look, it look fine…
What is the command you used to extract the deb file? When I try and do so, it is not structured the way you indicate in your post.
dpkg -x oracle-xe-universal_10.2.0.1-1.1_i386.deb #extracts filesystem structure
dpkg -e oracle-xe-universal_10.2.0.1-1.1_i386.deb #extracts package config files
dpkg-deb –build –nocheck oracle-xe-universal_10.2.0.1-1.1_i386 #biulds package again
My steps to completion. (If my achievement be worthy of this tale, it is only for having trod the shoulders of giants.)
wget -c http://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb mv libaio_0.3*.deb Downloads/ sudo dpkg -i –force-architecture Downloads/libaio*.deb
wget -c http://download.oracle.com/otn/linux/oracle10g/xe/10201/oracle-xe-universal_10.2.0.1-1.0_i386.deb
sudo dpkg -x oracle-xe*_10.2.0.1-1.0_i386.deb oraextract # Extracts filesystem. sudo dpkg -e oracle-xe*_10.2.0.1-1.0_i386.deb oraextract/DEBIAN # Extracts pkg config files. sudo vi oraextract/DEBIAN/control and remove the dependency for libc6 so you end up with:
Depends: libaio (>= 0.3.96) | libaio1 (>= 0.3.96)
Your oraextract folder should now have folders DEBIAN, etc, and usr. If so, proceed.
sudo dpkg-deb –build oraextract sudo dpkg -i –force-architecture oraextract.deb sudo /etc/init.d/oracle-xe configure
Confirm http://127.0.0.1:8080/apex is browsable.
thnks bro it worked for me…
But now what
how to configure it and use it..
I am new to unix
you’re welcome
now browse http://127.0.0.1:8080/apex
trying to install oracle XE10 on new ubuntu 11.0.4 64 bit. Everything looks fine until the step sudo dpkg -i –force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb.
Log looks like:
dpkg: warning: overriding problem because –force enabled:
package architecture (i386) does not match system (amd64)
(Reading database … 148219 files and directories currently installed.)
Preparing to replace oracle-xe-universal:i386 10.2.0.1-1.1 (using oracle-xe-universal_10.2.0.1-1.1_i386.deb) …
Unpacking replacement oracle-xe-universal:i386 …
dpkg: dependency problems prevent configuration of oracle-xe-universal:i386:
oracle-xe-universal:i386 depends on libc6 (>= 2.3.2); however:
Package libc6:i386 is not installed.
oracle-xe-universal:i386 depends on bc; however:
dpkg: error processing oracle-xe-universal:i386 (–install):
dependency problems – leaving unconfigured
…
Errors were encountered while processing:
oracle-xe-universal:i386
there is an error that libc6:386 is not installed but it is in version 2.13:
Package: libc6-i386
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 9268
Maintainer: Ubuntu Core developers
Architecture: amd64
Source: eglibc
Version: 2.13-0ubuntu13
…
pls, any help?
Have you resolved the problem? I have the same error on the same linux version.
Hi I also had this issue and fixed it today. Extract the deb file, open Oracle-xe-universal_10.2.0.1-1.0_i386/DEBIAN/control and remove the dependency for libc6 then cd to the directory that contains the extracted folders and do a dpkg-deb –build oracle-xe-universal_10.2.0.1-1.0_i386 && sudo dpkg -i –force-architecture oracle-xe-universal_10.2.0.1-1.0_i386.deb
Worked for me
Thanks a lot Johan, it works for me too.
thx for help.
Anyway I’ve resolved it in a little bit different way. I’ve installed Oracle 11XE beta. Step by step instructions are here https://confluence.bytesource.net/display/bytesourcepub/2011/04/02/Howto+install+Oracle+11XE+Beta+on+Ubuntu+10.04+x64
I’ve worked on windows for last couple of days, so I haven’t tested it in depth but at first look, it look fine…
What is the command you used to extract the deb file? When I try and do so, it is not structured the way you indicate in your post.
dpkg -x oracle-xe-universal_10.2.0.1-1.1_i386.deb #extracts filesystem structure
dpkg -e oracle-xe-universal_10.2.0.1-1.1_i386.deb #extracts package config files
dpkg-deb –build –nocheck oracle-xe-universal_10.2.0.1-1.1_i386 #biulds package again
My steps to completion. (If my achievement be worthy of this tale, it is only for having trod the shoulders of giants.)
wget -c http://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb mv libaio_0.3*.deb Downloads/ sudo dpkg -i –force-architecture Downloads/libaio*.deb
wget -c http://download.oracle.com/otn/linux/oracle10g/xe/10201/oracle-xe-universal_10.2.0.1-1.0_i386.deb
sudo dpkg -x oracle-xe*_10.2.0.1-1.0_i386.deb oraextract # Extracts filesystem. sudo dpkg -e oracle-xe*_10.2.0.1-1.0_i386.deb oraextract/DEBIAN # Extracts pkg config files. sudo vi oraextract/DEBIAN/control and remove the dependency for libc6 so you end up with:
Depends: libaio (>= 0.3.96) | libaio1 (>= 0.3.96)
Your oraextract folder should now have folders DEBIAN, etc, and usr. If so, proceed.
sudo dpkg-deb –build oraextract sudo dpkg -i –force-architecture oraextract.deb sudo /etc/init.d/oracle-xe configure
Confirm http://127.0.0.1:8080/apex is browsable.
thnks bro it worked for me…
But now what
how to configure it and use it..
I am new to unix
you’re welcome
now browse http://127.0.0.1:8080/apex
Wonderful ! These directions also work for
oracle-xe-universal_10.2.0.1-1.0_i386.deb on Ubuntu 10.04 Lucid Lynx on Intel Core 2 Duo (x86-64). Excellent !
Wonderful ! These directions also work for
oracle-xe-universal_10.2.0.1-1.0_i386.deb on Ubuntu 10.04 Lucid Lynx on Intel Core 2 Duo (x86-64). Excellent !
great man, nice ..
great man, nice ..
[...] installing oracle xe on ubuntu 11.04 (64bit) [...]
[...] installing oracle xe on ubuntu 11.04 (64bit) [...]
milllions of thanks… It works
milllions of thanks… It works
[...] this post is based on the article form the following site http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/ and an addition to my previous blog how to install Oracle XE and GlassFish on an Ubuntu [...]
[...] this post is based on the article form the following site http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/ and an addition to my previous blog how to install Oracle XE and GlassFish on an Ubuntu [...]
[...] and bc although our installed version is newer than it needs. To solve this problem, we referenced here and the steps we tried is listing: 12$sudo dpkg -x oracle-xe-universal_10.2.0.1-1.1_i386.deb [...]
[...] and bc although our installed version is newer than it needs. To solve this problem, we referenced here and the steps we tried is listing: 12$sudo dpkg -x oracle-xe-universal_10.2.0.1-1.1_i386.deb [...]
Excellent… Really excellent Guide… Thank you. Thanks a lot.
Excellent… Really excellent Guide… Thank you. Thanks a lot.
Thanks, helped me a lot.
Thanks, helped me a lot.
Thanks, helped me a lot.
Hello
I’m trying to install this in Ubuntu 11.04 and the oracle-xe script does not work: it requires some files in a directory called /etc/sysconfig which apparently doesn’t exist? Is there some configuration you are supposed to do before installing Oracle to create this directory?
I used the Little Brain script successfully on a Ubuntu Version 9 without any flaws.
Thanks for your help.
Regards,
Richard Katz
Hello
I’m trying to install this in Ubuntu 11.04 and the oracle-xe script does not work: it requires some files in a directory called /etc/sysconfig which apparently doesn’t exist? Is there some configuration you are supposed to do before installing Oracle to create this directory?
I used the Little Brain script successfully on a Ubuntu Version 9 without any flaws.
Thanks for your help.
Regards,
Richard Katz
Thanks a million – I was hunkering down for the long haul but this got me up and running in next to no time. One thing though, it is not clear enough from the post or the comments that you must remove dependencies on bc as well as lib6 (>=2.3.2)This worked for me:
apt-get
install libc6-i386
apt-get
install bc
Change to Downloads directory and download libaio_0.3.104-1_i386.deb
and oracle-xe-universal_10.2.0.1-1.1_i386.deb.
cd Downloads
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
Remove
dependancy on libc6 and
bc
dpkg
-x oracle-xe-universal_10.2.0.1-1.1_i386.deb oraextract
dpkg
-e oracle-xe-universal_10.2.0.1-1.1_i386.deb oraextract/DEBIAN
vi
oraextract/DEBIAN/control
#Edit dependency line to lib6
(>=2.3.2) and
bc
Now
rebuild package and force install
dpkg-deb
–build oraextract
dpkg
-i –force-architecture libaio_0.3.104-1_i386.deb
dpkg
-i –force-architecture oraextract.deb
And
now configure
/etc/init.d/oracle-xe
configure
Thanks a million – I was hunkering down for the long haul but this got me up and running in next to no time. One thing though, it is not clear enough from the post or the comments that you must remove dependencies on bc as well as lib6 (>=2.3.2)This worked for me:
apt-get
install libc6-i386
apt-get
install bc
Change to Downloads directory and download libaio_0.3.104-1_i386.deb
and oracle-xe-universal_10.2.0.1-1.1_i386.deb.
cd Downloads
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
Remove
dependancy on libc6 and
bc
dpkg
-x oracle-xe-universal_10.2.0.1-1.1_i386.deb oraextract
dpkg
-e oracle-xe-universal_10.2.0.1-1.1_i386.deb oraextract/DEBIAN
vi
oraextract/DEBIAN/control
#Edit dependency line to lib6
(>=2.3.2) and
bc
Now
rebuild package and force install
dpkg-deb
–build oraextract
dpkg
-i –force-architecture libaio_0.3.104-1_i386.deb
dpkg
-i –force-architecture oraextract.deb
And
now configure
/etc/init.d/oracle-xe
configure
Hello,
I can’t connect to browser with an LAN IP but I success through 127.0.0.1:8080/apex
Why it’s not possible to connect itself to browser in network, for example with an IP: http://192.168.0.1:8080/apex ? Do you must stop a service network ? which ?
Thanks for your help
Have you tried this?
http://download.oracle.com/docs/cd/B25329_01/doc/admin.102/b25107/network.htm#BHCBCFBA
Yes, it’s that !! Thanks you very much for your help
Hello,
I can’t connect to browser with an LAN IP but I success through 127.0.0.1:8080/apex
Why it’s not possible to connect itself to browser in network, for example with an IP: http://192.168.0.1:8080/apex ? Do you must stop a service network ? which ?
Thanks for your help
Have you tried this?
http://download.oracle.com/docs/cd/B25329_01/doc/admin.102/b25107/network.htm#BHCBCFBA
any update on installing on Ubuntu 11.10?
Hi Drofmij,
I can confirm that my workaround for 11.04 below still works for 11.10.
any update on installing on Ubuntu 11.10?
Hi Drofmij,
I can confirm that my workaround for 11.04 below still works for 11.10.
If after executing /etc/init.d/oracle-xe configure, “Configuring Database…” finish in just few secods, probably instalation didin’t work.
In this case, check if the host in the entry in your tnsnames.ora (/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/tnsnames.ora) exists on /etc/hosts file. If it doesn’t exist, then add it on the 127.0.0.1 line. Then, remove the oracle (dpkg -P oracle-xe-universal) and reinstall oracle.
It fixed the problem for me.
If after executing /etc/init.d/oracle-xe configure, “Configuring Database…” finish in just few secods, probably instalation didin’t work.
In this case, check if the host in the entry in your tnsnames.ora (/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/tnsnames.ora) exists on /etc/hosts file. If it doesn’t exist, then add it on the 127.0.0.1 line. Then, remove the oracle (dpkg -P oracle-xe-universal) and reinstall oracle.
It fixed the problem for me.