How to install oracle-rdbms-server-11gR2-preinstall

just finished installing oracle linux 6 update 2

on my virtual box and I was trying to install oracle 11gr2

on the same operating system. I am following the installation guide but I am facing some problems while executing this command on my terminal

yum install oracle-rdbms-server-11gR2-preinstall

      

I am getting the error

no package oracle-rdbms-server-11gr2-preinstall available
error nothing to do

      

Is there a way I am doing this wrong? How can I installoracle-rdbms-server-11gR2-preinstall

+3


source to share


3 answers


You don't seem to have an oracle repository configured, follow these steps:

As an authorized user (e.g. root), check out the file that sets up the repository locations:

$sudo cd /etc/yum.repos.d

$sudo wget http://public-yum.oracle.com/public-yum-ol6.repo

      

Using a text editor, modify the file by changing the field enabled=0

to enabled=1

to reflect the repositories for the release of the operating system.



Then install the oracle-rdbms-server-11gR2-preinstall

RPM using the yum install command.

The result in Listing 1 shows how the installation checks for dependencies and then downloads and installs the required packages.

$sudo yum install oracle-rdbms-server-11gR2-preinstall

      

+4


source


mv /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle-ol6.repo /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle.repo

      



0


source


I gave:

yum install oracle-rdbms-server-11gR2-preinstall.x86_64

      

and works great

0


source







All Articles