How To Install Oracle XE in Ubuntu 64 Bit

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:

Tagged ,

334 thoughts on “How To Install Oracle XE in Ubuntu 64 Bit

  1. […] 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 […]

  2. […] 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 […]

  3. addchild314 says:

    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!

  4. addchild314 says:

    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!

  5. addchild314 says:

    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!

  6. addchild314 says:

    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!

  7. Venka A says:

    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

  8. Venka A says:

    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

  9. Venka A says:

    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

  10. Venka A says:

    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

  11. little brain says:

    thank you 🙂
    I’ll add to the post

  12. little brain says:

    thank you 🙂
    I’ll add to the post

  13. M.B. says:

    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?

  14. M.B. says:

    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?

  15. M.B. says:

    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?

  16. M.B. says:

    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?

  17. little brain says:

    M.B
    thank you 😉
    have you start the db?

    sudo /etc/init.d/oracle-xe start

  18. little brain says:

    M.B
    thank you 😉
    have you start the db?

    sudo /etc/init.d/oracle-xe start

  19. M.B. says:

    Starting the database does not do anything, still can’t access the home page from FF or Opera.

  20. M.B. says:

    Starting the database does not do anything, still can’t access the home page from FF or Opera.

  21. M.B. says:

    Starting the database does not do anything, still can’t access the home page from FF or Opera.

  22. M.B. says:

    Starting the database does not do anything, still can’t access the home page from FF or Opera.

  23. little brain says:

    any spesific error?

    • Narainder says:

      having the sam error…as it doesn’t open the homepage of oracle
      so i have tried the comand
      sudo /etc/init.d/oracle-xe start
      gives an error

      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.

      stucked wat to do…plz help

  24. little brain says:

    any spesific error?

  25. morph says:

    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 😉

  26. morph says:

    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 😉

  27. morph says:

    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 😉

  28. morph says:

    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 😉

  29. […] 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. […]

  30. […] 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. […]

  31. Gerben de Vries says:

    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

  32. Gerben de Vries says:

    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

  33. Gerben de Vries says:

    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

    • Narainder says:

      when i do this it says

      Could not save the file /etc/default/oracle-xe.

      You do not have the permissions necessary to save the file. Please check that you typed the location correctly and try again.

  34. Gerben de Vries says:

    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

  35. Iveen Duarte says:

    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.

  36. Iveen Duarte says:

    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.

  37. Iveen Duarte says:

    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.

  38. Iveen Duarte says:

    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.

  39. […] ale wersje 32bitowa bardzo ładnie działa pod 64bitowym linuksem. Podziękowania dla autora tego opisu. […]

  40. […] ale wersje 32bitowa bardzo ładnie działa pod 64bitowym linuksem. Podziękowania dla autora tego opisu. […]

  41. […] 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 […]

  42. […] 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 […]

  43. realist says:

    You rock, buddy!!!! Thx a million!!!!

  44. realist says:

    You rock, buddy!!!! Thx a million!!!!

  45. realist says:

    You rock, buddy!!!! Thx a million!!!!

  46. realist says:

    You rock, buddy!!!! Thx a million!!!!

  47. Ranbir says:

    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

  48. Ranbir says:

    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

  49. Ranbir says:

    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

  50. Ranbir says:

    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

  51. Gerson Silveira says:

    Thank you very much. It worked exactly as you told.

    Thanks

    Gerson

  52. Gerson Silveira says:

    Thank you very much. It worked exactly as you told.

    Thanks

    Gerson

  53. Gerson Silveira says:

    Thank you very much. It worked exactly as you told.

    Thanks

    Gerson

  54. Gerson Silveira says:

    Thank you very much. It worked exactly as you told.

    Thanks

    Gerson

  55. Spider says:

    I can find the prayer I want. I thank God for this website.r

  56. Spider says:

    I can find the prayer I want. I thank God for this website.r

  57. Spider says:

    I can find the prayer I want. I thank God for this website.r

  58. Spider says:

    I can find the prayer I want. I thank God for this website.r

  59. Matt W says:

    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

  60. Matt W says:

    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

  61. 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…….

  62. 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…….

  63. hugo says:

    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

  64. hugo says:

    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

  65. hugo says:

    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

  66. hugo says:

    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

  67. Jbringolf says:

    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?

  68. Jbringolf says:

    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?

  69. Jbringolf says:

    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?

  70. Jbringolf says:

    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?

  71. 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

  72. 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

    • Narainder says:

      error
      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.

  73. 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

  74. 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

  75. chris says:

    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?

  76. chris says:

    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?

  77. chris says:

    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?

  78. chris says:

    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?

  79. chris says:

    ok, sorry i forgot to execute

    > sudo apt-get install libc6-i386

    now its working fine … thanks a lot!

  80. chris says:

    ok, sorry i forgot to execute

    > sudo apt-get install libc6-i386

    now its working fine … thanks a lot!

  81. chris says:

    ok, sorry i forgot to execute

    > sudo apt-get install libc6-i386

    now its working fine … thanks a lot!

  82. chris says:

    ok, sorry i forgot to execute

    > sudo apt-get install libc6-i386

    now its working fine … thanks a lot!

  83. sei says:

    Perfect! Thanks so much for sharing your knowledge.

  84. sei says:

    Perfect! Thanks so much for sharing your knowledge.

  85. sei says:

    Perfect! Thanks so much for sharing your knowledge.

  86. sei says:

    Perfect! Thanks so much for sharing your knowledge.

  87. Alexander says:

    You advise me about
    > sudo apt-get install libc6-i386
    thanks a lot!

  88. Alexander says:

    You advise me about
    > sudo apt-get install libc6-i386
    thanks a lot!

  89. Alexander says:

    You advise me about
    > sudo apt-get install libc6-i386
    thanks a lot!

  90. Alexander says:

    You advise me about
    > sudo apt-get install libc6-i386
    thanks a lot!

  91. megalink says:

    Perfect on Ubuntu Jaunty 64bit edition.
    Thanx!

  92. megalink says:

    Perfect on Ubuntu Jaunty 64bit edition.
    Thanx!

  93. megalink says:

    Perfect on Ubuntu Jaunty 64bit edition.
    Thanx!

  94. megalink says:

    Perfect on Ubuntu Jaunty 64bit edition.
    Thanx!

  95. venkat says:

    Thanks for the instructions. It worked perfectly on ubuntu 9.04.

    Thx
    Venkat

  96. venkat says:

    Thanks for the instructions. It worked perfectly on ubuntu 9.04.

    Thx
    Venkat

  97. venkat says:

    Thanks for the instructions. It worked perfectly on ubuntu 9.04.

    Thx
    Venkat

  98. venkat says:

    Thanks for the instructions. It worked perfectly on ubuntu 9.04.

    Thx
    Venkat

  99. loljak says:

    Thanks, The instructions work fine with a debian Lenny too. Great job.

  100. loljak says:

    Thanks, The instructions work fine with a debian Lenny too. Great job.

  101. loljak says:

    Thanks, The instructions work fine with a debian Lenny too. Great job.

  102. loljak says:

    Thanks, The instructions work fine with a debian Lenny too. Great job.

  103. Anonymous says:

    […] 10g.RC2 (10.2.0.1) | Ubuntu 9.04 – Ubuntu Forums

  104. Anonymous says:

    […] 10g.RC2 (10.2.0.1) | Ubuntu 9.04 – Ubuntu Forums

  105. bambrikii says:

    many thanks!

  106. bambrikii says:

    many thanks!

  107. bambrikii says:

    many thanks!

  108. bambrikii says:

    many thanks!

  109. cml.co says:

    Thanks, good guide. It Works fine with a ubuntu server 9.04

  110. cml.co says:

    Thanks, good guide. It Works fine with a ubuntu server 9.04

  111. cml.co says:

    Thanks, good guide. It Works fine with a ubuntu server 9.04

  112. cml.co says:

    Thanks, good guide. It Works fine with a ubuntu server 9.04

  113. 6m says:

    It also worked perfectly for me, on a debian distrib.
    Now, let’s play with Oracle !

    thanx a lot !

  114. 6m says:

    It also worked perfectly for me, on a debian distrib.
    Now, let’s play with Oracle !

    thanx a lot !

  115. 6m says:

    It also worked perfectly for me, on a debian distrib.
    Now, let’s play with Oracle !

    thanx a lot !

  116. 6m says:

    It also worked perfectly for me, on a debian distrib.
    Now, let’s play with Oracle !

    thanx a lot !

  117. Rodrigo says:

    How To Ubuntu 64

  118. Rodrigo says:

    How To Ubuntu 64

  119. Rodrigo says:

    How To Ubuntu 64

  120. Rodrigo says:

    How To Ubuntu 64

  121. Pim says:

    Dude, you need a Nobelprice for peace, i was about to kill somebody over this and you (and fabio) solved it !

  122. Pim says:

    Dude, you need a Nobelprice for peace, i was about to kill somebody over this and you (and fabio) solved it !

  123. Pim says:

    Dude, you need a Nobelprice for peace, i was about to kill somebody over this and you (and fabio) solved it !

  124. Pim says:

    Dude, you need a Nobelprice for peace, i was about to kill somebody over this and you (and fabio) solved it !

  125. Kris says:

    Thanks man, this really is the shit!

  126. Kris says:

    Thanks man, this really is the shit!

  127. Kris says:

    Thanks man, this really is the shit!

  128. Kris says:

    Thanks man, this really is the shit!

  129. Jürgen Kill says:

    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!!!

  130. Jürgen Kill says:

    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!!!

  131. Jürgen Kill says:

    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!!!

  132. Jürgen Kill says:

    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!!!

  133. mayu says:

    Thanks everybody, because your answers help me to resolve my problems.
    Thank a lot, my oracle db works perfect.

  134. mayu says:

    Thanks everybody, because your answers help me to resolve my problems.
    Thank a lot, my oracle db works perfect.

  135. mayu says:

    Thanks everybody, because your answers help me to resolve my problems.
    Thank a lot, my oracle db works perfect.

  136. mayu says:

    Thanks everybody, because your answers help me to resolve my problems.
    Thank a lot, my oracle db works perfect.

  137. Drazen says:

    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 😉

  138. Drazen says:

    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 😉

  139. Drazen says:

    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 😉

  140. Drazen says:

    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 😉

  141. tnagle says:

    Thank you! Worked like a charm on slicehost.com Debian Lenny 512 slice.

  142. tnagle says:

    Thank you! Worked like a charm on slicehost.com Debian Lenny 512 slice.

  143. tnagle says:

    Thank you! Worked like a charm on slicehost.com Debian Lenny 512 slice.

  144. tnagle says:

    Thank you! Worked like a charm on slicehost.com Debian Lenny 512 slice.

  145. Gil Standen says:

    This IS a priceless and great guide. Thank you for publishing it.

  146. Gil Standen says:

    This IS a priceless and great guide. Thank you for publishing it.

  147. Gil Standen says:

    This IS a priceless and great guide. Thank you for publishing it.

  148. Gil Standen says:

    This IS a priceless and great guide. Thank you for publishing it.

  149. Anderson Fabiano says:

    Hi Matt W,

    short read in buffer_copy … … …
    Is caused by a corrupted .deb file.

    Redownload the .deb file and run dpkg again.

    – Anderson

  150. Anderson Fabiano says:

    Hi Matt W,

    short read in buffer_copy … … …
    Is caused by a corrupted .deb file.

    Redownload the .deb file and run dpkg again.

    – Anderson

  151. Anderson Fabiano says:

    Hi Matt W,

    short read in buffer_copy … … …
    Is caused by a corrupted .deb file.

    Redownload the .deb file and run dpkg again.

    – Anderson

  152. Anderson Fabiano says:

    Hi Matt W,

    short read in buffer_copy … … …
    Is caused by a corrupted .deb file.

    Redownload the .deb file and run dpkg again.

    – Anderson

  153. Venkat says:

    Thanks it worked perfectly on Ubuntu 9.10 Thanks again for the great article.

  154. Venkat says:

    Thanks it worked perfectly on Ubuntu 9.10 Thanks again for the great article.

  155. Venkat says:

    Thanks it worked perfectly on Ubuntu 9.10 Thanks again for the great article.

  156. Venkat says:

    Thanks it worked perfectly on Ubuntu 9.10 Thanks again for the great article.

  157. […] 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 […]

  158. […] 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 […]

  159. 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…

  160. 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…

  161. […] 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 […]

  162. […] 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 […]

  163. 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…

  164. 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…

  165. […] 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 […]

  166. […] 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 […]

  167. Steven says:

    Worked like a champ, awesome; thanks for the work!

  168. Steven says:

    Worked like a champ, awesome; thanks for the work!

  169. Steven says:

    Worked like a champ, awesome; thanks for the work!

  170. Steven says:

    Worked like a champ, awesome; thanks for the work!

  171. ivanatpr says:

    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.

  172. ivanatpr says:

    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.

  173. 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

  174. 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

  175. Macps says:

    this is very important info! Thanks a lot!!

  176. Macps says:

    this is very important info! Thanks a lot!!

  177. Paul Morris says:

    Love it! Man this saved me some headaches!

  178. Paul Morris says:

    Love it! Man this saved me some headaches!

  179. ssanj says:

    Brilliant! 🙂 Thanks! Too bad Oracle don’t post this information.

  180. ssanj says:

    Brilliant! 🙂 Thanks! Too bad Oracle don’t post this information.

  181. Amine70 says:

    Impeccable, claire et précis. Un grand merci 🙂

  182. Amine70 says:

    Impeccable, claire et précis. Un grand merci 🙂

  183. […] 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/ […]

  184. […] 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/ […]

  185. TT says:

    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

  186. TT says:

    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

  187. Great Post!…

    […] I found your entry interesting thus I’ve added a Trackback to it on my weblog 🙂 […]…

  188. Great Post!…

    […] I found your entry interesting thus I’ve added a Trackback to it on my weblog 🙂 […]…

  189. Pervaishjaihind says:

    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.

  190. Pervaishjaihind says:

    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.

  191. Rajendra Alapaty says:

    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

  192. Rajendra Alapaty says:

    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

  193. Silence says:

    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

  194. Silence says:

    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

  195. gs says:

    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.

  196. gs says:

    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.

  197. gary says:

    thanks!

  198. gary says:

    thanks!

  199. Teo says:

    great tutorial. thanks

  200. Teo says:

    great tutorial. thanks

  201. Gary says:

    used this page twice now – works a charm.

  202. Gary says:

    used this page twice now – works a charm.

  203. Fer Fredo says:

    Thanks a lot ! Merci beaucoup !

  204. Fer Fredo says:

    Thanks a lot ! Merci beaucoup !

  205. […] 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 […]

  206. […] 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 […]

  207. Donald_bradbury says:

    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.

  208. Donald_bradbury says:

    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.

  209. Ylli Prifti says:

    Great dude, second time I’m using this in two days

  210. Ylli Prifti says:

    Great dude, second time I’m using this in two days

  211. Rituraj says:

    very much useful!!!
    Thanks a lot.

  212. Rituraj says:

    very much useful!!!
    Thanks a lot.

  213. Anonymous says:

    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?

    • Vito says:

      Have you resolved the problem? I have the same error on the same linux version.

      • Johan Nell says:

        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 😀

      • Vito says:

        Thanks a lot Johan, it works for me too.

      • Anonymous says:

        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…

      • Courtney Arnold says:

        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.

      • Sobolevsam says:

        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

      • Gherson says:

        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.

      • Navneet says:

        thnks bro it worked for me…
        But now what
        how to configure it and use it..
        I am new to unix

      • Gherson says:

        you’re welcome
        now browse  http://127.0.0.1:8080/apex

  214. Anonymous says:

    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?

    • Vito says:

      Have you resolved the problem? I have the same error on the same linux version.

      • Johan Nell says:

        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 😀

      • Vito says:

        Thanks a lot Johan, it works for me too.

      • Anonymous says:

        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…

      • Courtney Arnold says:

        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.

      • Sobolevsam says:

        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

      • Gherson says:

        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.

      • Navneet says:

        thnks bro it worked for me…
        But now what
        how to configure it and use it..
        I am new to unix

      • Gherson says:

        you’re welcome
        now browse  http://127.0.0.1:8080/apex

  215. Job_Searcher says:

    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 !

  216. Job_Searcher says:

    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 !

  217. ubuntubuzz says:

    great man, nice ..

  218. ubuntubuzz says:

    great man, nice ..

  219. […] installing oracle xe on ubuntu 11.04 (64bit) […]

  220. […] installing oracle xe on ubuntu 11.04 (64bit) […]

  221. Kaivalya says:

    milllions of thanks… It works

  222. Kaivalya says:

    milllions of thanks… It works

  223. […] 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 […]

  224. […] 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 […]

  225. […] 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 […]

  226. […] 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 […]

  227. Bharath Kobagana says:

    Excellent… Really excellent Guide… Thank you. Thanks a lot.

  228. Bharath Kobagana says:

    Excellent… Really excellent Guide… Thank you. Thanks a lot.

  229. Mirche Arsov says:

    Thanks, helped me a lot.

  230. Mirche Arsov says:

    Thanks, helped me a lot.

  231. Mirche Arsov says:

    Thanks, helped me a lot.

  232. Richkatz says:

    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

  233. Richkatz says:

    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

  234. geraldo says:

    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

  235. geraldo says:

    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

  236. Ilanlaperle says:

    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

  237. Ilanlaperle says:

    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

  238. Drofmij says:

    any update on installing on Ubuntu 11.10?

  239. Drofmij says:

    any update on installing on Ubuntu 11.10?

  240. Diego Marin says:

    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.

  241. Diego Marin says:

    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.

  242. israel1984 says:

    Access the wipe ended suspending capabilities increased how concept is not fertile except for an concrete terminology that admits uv and en plus says the soil. http://ogauke.com

  243. Aakash G says:

    Thanks a lot.. it worked for me installing on ubutu 11.04……

  244. Normally I don’t learn post on blogs, however I wish to say that this write-up very pressured me to check out and do it! Your writing style has been amazed me. Thank you, quite nice post.

  245. It’s mostly your alternative and exactly how motivated you are about working out difficult and shifting your eating plan plan to a realize your purpose.Who must acquire this product: people today who want to properly lose belly fat.Like fairly significantly all other fitness applications out there, it focuses on nutrition and fitness to get you these rockin’ hard
    washboard abs you’ve often wanted.The plan even goes into a lot more advanced diet program procedures, such as how frequently you ought to consume, retaining stable insulin levels, and even enjoying cheat meals with no going overboard.Another issue that you can do to clear your doubts and to know the true truth about this six pack abs scam is to verify many sites which have the reviews, written by people who are following this program.Do you want a flat stomach?Or, do you want to really feel healthier and younger?You cannot lose excess fat quickly devoid of having a solid and sensible diet plan plan.On the topic of shedding undesirable fat in specific body components, additional fat stored about the stomach or abdominal can possibly be regarded as the most difficult to shed.The plan advises a workout of 30 to 50 minutes per day to be achieved three to four times a week.And now, in spite of so quite a few people asking yourself about the truth, its sales have nonetheless not been affected, thus confirming that there is absolutely nothing incorrect with this abs diet program plan.

  246. Hey! Someone in my Myspace group shared this site with us so I came to give it a look.
    I’m definitely enjoying the information. I’m bookmarking and will be tweeting this to my
    followers! Wonderful blog and excellent design.

  247. Verna says:

    An intriguing discussion is worth comment. I do believe that you should write more on
    this issue, it may not be a taboo matter but typically folks don’t speak about these subjects. To the next! Cheers.

  248. Preston says:

    We’re a group of volunteers and starting a new scheme in our community. Your web site provided us with valuable information to work on. You’ve done
    an impressive job and our entire community will be grateful to you.

  249. Hello, i read your blog from time to time and i own a similar one and i was just wondering if you get a lot of spam feedback?

    If so how do you prevent it, any plugin or anything you can advise?
    I get so much lately it’s driving me mad so any assistance is very much appreciated.

  250. coal traders says:

    Thanks for sharing your thoughts on thermal coal. Regards

  251. gardening says:

    This is critical because you run the risk of either causing root rot and killing your garden, or drying your plants and soil out due to under watering.
    The popular method of hay bale gardening is getting more popular in town, a friend told him how to get prosperous crops using nothing but wheat straw, potting soil, a little fertilizer and some tomato plants “Every fall I get some bales and let them sit out all winter to get good and soggy, I plant a few every year and I’ve had real good luck. It is your decision if you would like to design your gardening structure or receive shed plan designs from professional designing companies.

  252. With better oxygen flow to the liver, you’ll have a stronger, healthier liver. It’s also included in cleansing masks
    for oily skin. Many popular beverage companies are in development with coconut water products that will soon hit the market.

  253. Thank you for every other informative website. The place else may I get that type of info written in such a perfect manner?
    I have a project that I am just now operating on, and I’ve been on the glance out for such info.

  254. Wonderful goods from you, man. I’ve understand your stuff previous to and you’re just extremely great.
    I really like what you’ve acquired here, really like what you’re saying and
    the way in which you say it. You make it enjoyable and
    you still take care of to keep it wise. I cant
    wait to read far more from you. This is really a wonderful website.

  255. 5 Star Hotels in North paphos car hire allows patients to escape the fast-pace and the stress that always seems to accumulate at home.

  256. Manie says:

    Heya i’m for the primary time here. I found this board and I to find It really helpful & it helped me out a lot. I’m hoping to offer something
    again and aid others such as you helped me.

  257. What’s Taking place i am new to this, I stumbled upon this I’ve
    discovered It absolutely useful and it has helped me out loads.

    I’m hoping to contribute & aid other customers like its aided me. Great job.

  258. rhinoplasty says:

    Hey there I am so grateful I found your website, I really found you by mistake,
    while I was browsing on Google for something
    else, Anyhow I am here now and would just like to say
    cheers for a marvelous post and a all round exciting blog (I also love the theme/design), I don’t have time to read through it all
    at the minute but I have book-marked it and also included
    your RSS feeds, so when I have time I will be back to read much more, Please do keep up the excellent
    jo.

  259. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point.

    You definitely know what youre talking about, why waste your
    intelligence on just posting videos to your blog when you could be giving us something enlightening
    to read?

  260. Thanks for ones marvelous posting! I actually enjoyed reading it, you’re a great author. I will always bookmark your blog and will often come back very soon. I want to encourage that you continue your great job, have a nice evening!

  261. ppc keywords says:

    Excellent web site. Lots of helpful information here.

    I’m sending it to several friends ans additionally sharing in delicious. And obviously, thank you to your sweat!

  262. Some people are having problems with dpkg complaining about a missing bc:i386 dependency. And if you try to install it, apt-get removes bc and other essencial packages. I did an workaround to fix this, it’s described here: http://askubuntu.com/questions/261792/oracle-xe-prompts-removal-of-kubuntu-desktop-12-04/313019

  263. Are you a admirer on the Outdoors Untamed Western world?
    The following is an understanding of two distinct Neighbours roulette craps bets.

  264. casino online makes use of it involving Topgame technological know-how, any 5 12 months old
    game playing application corporation famous to its ‘in-house’ inventive and also authentic slot machine game
    pattern, although it’s also possible to expect you’ll discover all your favourite desk game titles for example
    online video poker, a variety regarding roulette, craps, blackjack and so on.
    From win would you’ve got a powerful encourage to go back and gain additional?

  265. In particular, the actual Aussie buck is a strong currency that includes a high level in the daytime, that is
    actually evening in the us. In this particular
    podium, an individual is actually assigned both
    a top and a lower targeted, and so they could area money with both binary options in the money as long as they consider the present value may well strike either price.
    Any time looking at binary options in the money, and the second is
    actually genuine.

  266. These animations are eye-catchy and keep the users interested
    to go through all of the time, whenever they
    launch a new product called the ‘Profit Praxis’.
    Market UnderstandingThe final part of the online marketing organization miss out at important vital points and commit
    sheer blunders.

  267. Fluid Scam says:

    Many internet marketing entrepreneurs are using techniques and tools
    like mind-mapping, keyword research, Attraction Marketing Formula, Magnetic Sponsoring, and Mind Meister to conduct the market
    research and plan your on-line marketing strategy
    today. Keyword research is the act of collecting key terms
    from a website. You can discuss your marketing concerns andrequirements with a reputable and experienced Internet Marketing specialist.

  268. Awesome things here. I’m very satisfied to see your article. Thank you so much and I’m looking
    ahead to touch you. Will you please drop me
    a mail?

  269. My developer is trying to convince me to move to .net from PHP.
    I have always disliked the idea because of
    the expenses. But he’s tryiong none the less. I’ve been using WordPress on a number of websites for about a year and am anxious about switching to another platform.
    I have heard good things about blogengine.net. Is there a way I can transfer
    all my wordpress content into it? Any help would be really appreciated!

  270. I am actually glad to read this webpage posts which carries lots of helpful data,
    thanks for providing these data.

  271. Today, I wentt to the beach with myy children.
    I found a sea shell and gave it to my 4 year old daughter and said “You can hear the ocean if you put this to your ear.” Shee put the
    shell to her ear and screamed. There was a hermit crab inside
    and it pinched her ear. She nnever wants to go back! LoL I know this
    is completely off topic but I had to tedll someone!

  272. […] and wish to install cups and oracle xe on it. I installed cups through apt-get, and followed those steps to install […]

  273. My relatives all the time say that I am wasting my time here
    at net, however I know I am getting familiarity everyday by reading thes fastidious articles
    or reviews.

  274. It is the best time to make some plans for the future and it is
    time to be happy. I have read this post and if I could I want to suggest you few interesting things or advice.
    Maybe you can write next articles referring to this article.
    I desire to read more things about it!

  275. Sterling says:

    I personally consider this particular posting , “How To Install Oracle XE in Ubuntu 64 Bit | Little Brain”, highly enjoyable plus it
    ended up being a remarkable read. Many thanks-Dawn

  276. Hey I know this is off topic but I was wondering if you knew of any widgets
    I could add to my blog that automatically tweet my newest twitter updates.
    I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this.
    Please let me know if you run into anything. I truly enjoy reading your blog and
    I look forward to your new updates.

  277. Johne351 says:

    I was very pleased to discover this website. I wanted to thank you for your time for this fantastic read!! cdgeeadekdbe

  278. Heriberto says:

    I read this paragraph fully regarding the difference of most
    recent and preceding technologies, it’s amazing article.

  279. vbcbc says:

    Hello There. I found your blog using msn. This is
    a very well written article. I’ll make sure to bookmark it and return to
    read more of your useful info. Thanks for the post.
    I’ll definitely return.

  280. I used to be suggested this blog through my cousin.
    I’m now not sure whether this submit is written by way of him as no
    one else recognise such exact about my problem. You are amazing!
    Thank you!

  281. Remarkable things here. I’m very glad to look your post. Thanks a lot
    and I’m looking forward to touch you. Will you kindly drop me a e-mail?

  282. からだの見た目が悩みのタネとなるのは陽気が良くなってきて薄着になる頃です。

    腰から下や、二の腕についたぜい肉は、厚着のうちは見逃していますが暑くなってくるとそうも言っていられません。理想の自分から離れればつらい毎日が待っているのでニッチもサッチもいかなくなる前に策を用意するとよいでしょう。痩せたいをどうにかこうにか実現していくためには食生活を改めることが大切な要件となります。太りやすいメニューは控えて、適量の食生活に配慮することが減量をやりきれる条件です。ダイエットのためにできるだけ食べないようにしても健康を保つために必要な栄養成分は欠かさず補充しておくことです。からだが欲している栄養は確保し、バランスのとれた食物を摂取することと、カロリー制限することはともに肝要と言えるでしょう。よく言われているのが一日のうちでもっとも量的に多い食事は夜ご飯に摂っているようですが、夜ご飯はあまり炭水化物は摂らないほうがいいです。食後に血糖値が高くならないようにするには食べたいものから食べるのではなく野菜や汁物など食物繊維の多いお皿から食べるようにしましょう。食事制限中は炭水化物の変わりにたんぱく質の多い季節の食材を使った食事を中心にすると減量の効果が出やすくなります。タポタポの皮下脂肪を燃やすためにはどうしても身体を動かさないといけません。ランニングなどの運動と並行して、食事のとり方を工夫してカロリー制限を実践してみましょう。スリムになりたいを具体化のカギは食事を減らす場合でも減らし過ぎずとにかく毎日続けられるようにすることが肝要です。

  283. どもー。
    行きずりのおっさんでいきなりのコメントですいません。

    ひっこし運送業者の区別について書いてみたいと思います。引っ越し業者といってもいろいろな引越会社が存在すると思います。たとえば誰もが知っている引越業者だったり中位ぐらいのひっこし会社もあると思います。また、少量の荷物を扱う業者の引越も存在すると思います。引っ越し会社にはやぱり違いが気になりますがどの引っ越し配送サービスを依頼するのかは色々と自身の引越しに合わせて考えればいいと思います。ちなみに一人暮らしで荷物がすくないひっこしで、レオパレスなどのような家具付きの部屋へ引越しをするという人もいると思います。そのような場合には著名な引っ越し運送業者を発注することもなく少量の荷物を扱う運送業者の引越しサービスを活用すればいいということになります。

    またひとりだけのひっこしの場合には、よく見かけるひっこし業者の格安パックのようなものがありますからそちらを利用すればスムーズに独り身のひっこし達成できますね。このように、引っ越し運送業者は自分の引越のライフスタイルや引っ越しの大きさに合わせて選ぶといいと思いますし、引っ越会社をチョイスするときには、はとにかく比較して選ぶといいのではないかと思いますから、ひっこし会社を色分けによって選んだり自分の引越やり方や目的などに合わせてて選択するのがいいかもしれないですね。
    誰もが知っているひっこし業者を選ぶメリットと悪いところについて紹介したいと思います。大手の引っ越会社は名前が通っていて認知度も高く、有名なひっこし業者なら安心だと思っている人も多いかもしれませんが、実はよく知られているからといって拠点によっては質の悪い仕事のところもあるといわれています。そんなこんなでよく見かける引っ越し運送業者の特長は、コストのかからない出張見積もりがほぼ確実にあるので、価格や仕事内容を事前に見積もってもらうことができてグッドですね。また大手ひっこし配送サービスの特長は安心感や信頼も高いと思いますし、梱包の丁寧さ、傷のトラブルなどの少なさも安心して任せられると思います。またCMで見かけるひっこし配送サービスは作業のバリエーションがピアノの備え付けやクリーニングといったバリエーション豊富なサービスを用意しているというのもナイスな点だと思います。

    CMで見かける引っ越配送サービスのネガティブポイントは、なんと言っても価格が高いことではないでしょうか。作業をする人もしっかりしていて、梱包も丁寧で内容がいいとくれば送料が高いのも仕方ないのかとそういうことだと思いますが誰もが知っている引っ越会社のマイナスな点は送料が大変ということですね。また値引きがあまりしてもらえないというのも、よく知られている引越運送サービスの悪いところかもしれません。このようにCMで見かける引っ越し運送業者でもメリットとマイナスな点は認められます。

  284. Hey very cool web site!! Man .. Beautiful .. Wonderful .. I will bookmark your blog and take the feeds additionally…I am satisfied to find numerous useful information right here in the put up, we want work out extra techniques in this regard, thanks for sharing.

  285. My brother suggested I might like this web site.He used to be totally right. This publishactually made my day. You cann’t imagine simply how a lot time I hadspent for this information! Thank you!

  286. tech adviser says:

    My girlfriend told me they love your websites article. I bet you do crossword puzzles in ink. This website looks just like my old one

  287. Jesse Grillo says:

    Wow, that is a really cool way of thinking about it! Such a deep answer!

  288. Excellent article, great to read quality content we can all learn between all users. I do as create tutorials and videos for others, if you have Instagram I would be glad to have you as follower : https://www.instagram.com/earthbydrones Have a great day! Earth By Drones Com Fabrice

Leave a reply to Richkatz Cancel reply