LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-11-2007, 08:22 AM   #1
rumman
LQ Newbie
 
Registered: Apr 2007
Posts: 7

Rep: Reputation: 0
install Oracle 9i database in fedora core 6


How can i install Oracle 9i database in fedora core 6? I extract all files in windows xp. Now i want to install them in the linux.All files are .cpio format.
 
Old 06-12-2007, 04:59 AM   #2
prozac
Member
 
Registered: Oct 2005
Location: Australia
Distribution: slackware 12.1
Posts: 753

Rep: Reputation: 32
extract the cpio archives in some directory
# cpio -idcmv < oracle_Disk1.cpio

you will most probably have disk1, disk2 and disk3, burn it. mount the first disk and run the runinstaller most probably /mnt/install/runinstaller.

my advice would be to find a howto and follow it since there are many preinstallation/postinstallation tasks you will need to do like set the environment variables, set system parameters etc.. best of luck.
 
Old 06-26-2007, 06:42 AM   #3
Brad.Scalio@noaa.gov
Member
 
Registered: Jan 2007
Location: Washington DC
Distribution: RedHat & spins ... Fedora, CentOS, Mandriva
Posts: 82

Rep: Reputation: 15
you can also just run it locally, cpio idmv the images

cd /usr/ORACLE/Disk1
export LD_ASSUME_KERNEL=2.4.19
./runInstaller

If running remotely export your DISPLAY and make sure DisallowTCP=false in gdm.conf on the machine you are installing on.
 
Old 07-08-2007, 09:47 PM   #4
mrabi2000
LQ Newbie
 
Registered: Jul 2007
Posts: 1

Rep: Reputation: 0
Note:- for learning purpose I am using my laptop and I have installed the below version of Fedora
[root@localhost /]# uname -a
Linux localhost.localdomain 2.6.18-1.2798.fc6 #1 SMP Mon Oct 16 14:54:20 EDT 2006 i686 i686 i386 GNU/Linux
--------------------------------------------------------------------------------------------

I followed the steps given in ivan.kartik.sk/oracle/install_ora9_fedora.html

But for me the error is as follows. Can you please help me to resolve this.

[oracle@localhost disk1]$ ./runInstaller
bash: ./runInstaller: Permission denied

Thanks
Rabi
mmrafi_2000@yahoo.com


Please note below are the other problems I faced when I performed the steps

Issue 1:
=============================================================================
2 Download the Java Runtime Enviroment (j2re-1_3_1_15-linux-i586.bin) from the Sun website. Keep in mind you need to download j2re1.3.1_11 or higher (Note: Install JRE 1.3.1_1x version only).
Do you agree to the above license terms? [yes or no]
yes
Unpacking...
tail: cannot open `+286' for reading: No such file or directory
Checksumming...
1
The download file appears to be corrupted. Please refer
to the Troubleshooting section of the Installation
Instructions on the download page for more information.
Please do not attempt to install this archive file.
[root@localhost opt]#

.........so I installed jre1.6.0_02
=============================================================================
Issue2:
[root@localhost /]# cd /usr/bin
[root@localhost bin]# mv ./gcc ./gcc3
mv: cannot stat `./gcc': No such file or directory
[root@localhost bin]# mv ./gcc296 ./gcc
mv: cannot stat `./gcc296': No such file or directory
[root@localhost bin]# ls *gcc*
gcc3 gcc34 i386-redhat-linux-gcc i386-redhat-linux-gcc34
=============================================================================
Issue 3[root@localhost /]# rpm -q gcc glibc-headers glibc-kernheaders glibc-devel compat-libstdc++ cpp compat-gcc
gcc-4.1.1-30
glibc-headers-2.5-10.fc6
package glibc-kernheaders is not installed
glibc-devel-2.5-10.fc6
package compat-libstdc++ is not installed
cpp-4.1.1-30
package compat-gcc is not installed
=============================================================================
 
Old 07-09-2007, 12:00 AM   #5
JonBL
Member
 
Registered: Oct 2006
Location: Victoria, Australia
Distribution: Fedora 10
Posts: 127

Rep: Reputation: 16
Have a look at http://www.puschitz.com/OracleOnLinux.shtml for some concise instructions on how to install Oracle products on Linux boxes - I've occasionally used these guides to assist with successfully installing Oracle database 9i and 10g on my employer's Linux servers.

Keep in mind, however, that there are lots of packages that are required to successfully install and run Oracle on Linux. A standard "Desktop" install of FC6 just won't have all the required packages. At installation link time, you'll be told about missing packages, or kernel parameter values that need to be adjusted, and you'll have to fix those, and start again...

Oracle certify Linux distros for Oracle product installation. FC6 is not a certified distro, but Red Hat's EL4 Advanced Server is (amongst others). But if you're prepared to go through the slow and painfull process of discovering missing packages, and installing them, and fixing kernel parameters, I can't see why you cannot eventually install Oracle 9i on FC6.

Good luck with this project - I'd be interested to hear how you go, and what you had to do to complete the installation.

Last edited by JonBL; 07-09-2007 at 01:01 AM.
 
Old 07-23-2007, 06:16 AM   #6
Ivan Kartik
LQ Newbie
 
Registered: Jul 2007
Location: Bratislava, Slovakia
Distribution: Fedora
Posts: 2

Rep: Reputation: 0
To JonBL:
1. Of yourse if Oracle products will be used in production then certified distribution is required.
2. For learning purposes Fedora is enough and Oracle is working fine there.
3. RHEL is not public downloadable. There are clones but these clones aren't certified too.
4. Just FYI: Werner's site provides howtos also for Fedora and other uncetified Linux distributions for Oracle.
 
Old 07-23-2007, 06:17 AM   #7
Ivan Kartik
LQ Newbie
 
Registered: Jul 2007
Location: Bratislava, Slovakia
Distribution: Fedora
Posts: 2

Rep: Reputation: 0
Quote:
Originally Posted by mrabi2000
Note:- for learning purpose I am using my laptop and I have installed the below version of Fedora
[root@localhost /]# uname -a
Linux localhost.localdomain 2.6.18-1.2798.fc6 #1 SMP Mon Oct 16 14:54:20 EDT 2006 i686 i686 i386 GNU/Linux
--------------------------------------------------------------------------------------------

I followed the steps given in ivan.kartik.sk/oracle/install_ora9_fedora.html

But for me the error is as follows. Can you please help me to resolve this.

[oracle@localhost disk1]$ ./runInstaller
bash: ./runInstaller: Permission denied

Thanks
Rabi
mmrafi_2000@yahoo.com


Please note below are the other problems I faced when I performed the steps

Issue 1:
=============================================================================
2 Download the Java Runtime Enviroment (j2re-1_3_1_15-linux-i586.bin) from the Sun website. Keep in mind you need to download j2re1.3.1_11 or higher (Note: Install JRE 1.3.1_1x version only).
Do you agree to the above license terms? [yes or no]
yes
Unpacking...
tail: cannot open `+286' for reading: No such file or directory
Checksumming...
1
The download file appears to be corrupted. Please refer
to the Troubleshooting section of the Installation
Instructions on the download page for more information.
Please do not attempt to install this archive file.
[root@localhost opt]#

.........so I installed jre1.6.0_02
=============================================================================
Issue2:
[root@localhost /]# cd /usr/bin
[root@localhost bin]# mv ./gcc ./gcc3
mv: cannot stat `./gcc': No such file or directory
[root@localhost bin]# mv ./gcc296 ./gcc
mv: cannot stat `./gcc296': No such file or directory
[root@localhost bin]# ls *gcc*
gcc3 gcc34 i386-redhat-linux-gcc i386-redhat-linux-gcc34
=============================================================================
Issue 3[root@localhost /]# rpm -q gcc glibc-headers glibc-kernheaders glibc-devel compat-libstdc++ cpp compat-gcc
gcc-4.1.1-30
glibc-headers-2.5-10.fc6
package glibc-kernheaders is not installed
glibc-devel-2.5-10.fc6
package compat-libstdc++ is not installed
cpp-4.1.1-30
package compat-gcc is not installed
=============================================================================
Answer to this topic you can find here (sorry for cross reference to other site): http://forums.oracle.com/forums/thre...rt=15&start=15
 
  


Reply

Tags
fedora, oracle9i



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to install latest Oracle database on Fedora core 3 ravi_yaddula Linux - Software 1 07-19-2006 05:50 AM
Fedora core 4 and Oracle 10g Zingaro2002 Linux - Software 3 04-24-2006 08:28 AM
Install Oracle 10g on Fedora Core 2 hfcmit Fedora 0 10-09-2004 09:05 AM
How to install oracle 9i database on Red hat linux 3.0 As vap824 Linux - Enterprise 5 07-19-2004 01:57 AM
from where and how to install oracle 8 database server free zshah Linux - Software 0 07-13-2003 02:11 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 04:33 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration