Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Installinng on SuSE 6.2
Hello,
try this one. It worked for my system several times.
":-) msmile" schrieb:
> Boored to have problems under SuSE 6.0 I decided > to buy SuSE 6.2. > > I downloaded all patches as described in www.suse.com > > Oratab file created. Pre installation libs installed... > > but now I got a problem I don't understand > > While installing RDBMS I got this message: > > There are still sgadef<SID>.dbf file(s) in $ORACLE_HOME/dbs/ > (/u01/app/oracle/product/8.0.5/dbs/). This indicates that there > may still be running instances. You must shut down all database > instances associated with this ORACLE_HOME before upgrading the > Server. Select (Yes) if you have shut down the instances from > another terminal/window. Select (No) to abort the installation. > > It's impossible I got a instance running because this is the first one > installation. > > The directory $ORACLE_HOME/dbs/ doesn't exist (I also tryed to create one > but the problem > persists) > > Now what can I do ??? Put oracle CD in the WC? Read tons of docs before > install the pachage? > > Please help me to find a solution.Installing Oracle8i on SuSE Linux 6.2
This installation guide probably will work for all Linux systems as long as the new glibc6 v2.1 is supported. This is true for SuSE since 6.2. As far as I know, there's nothing like an update patch for glibc6. This file is a mixture of the original Oracle Installation Guide, the SuSE Installation How-To and personal experiences.For this guide it is assumed that Oracle8i will reside in the folder /opt/u01. The user may alter this path as required.
Prerequisites
- Running Linux supporting glibc6 v2.1
- At least 600 MB of disk space
(Oracle talks about 275 MB, but that's just enough for the system files ...)
- Additional disk space to hold the decompressed installation package. This is a must, as the Oracle8i 8.1.5.0.1 Update has to patch some files.
- If there's already some JRE (Java Runtime Environment) installed you'll have to remove it from your system. An older (and more compatible) version is included in the upgrade patch).
- Download the upgrade patch oracle815-suse62.tar.gz (about 13 MB).
- If your system does not feature 256 MB of physical RAM, enlarge/add swap partitions to accomodate a total of about 300 MB logical storage (the JRE really needs that space).
Preparing the System
After unpacking the installation archive (contact some MISTRAL related individual ...), you have to apply the provided patches. The archive contains four files:
tar xvzf oracle815-suse62.tar.gz cd oracle815-suse62 rpm -Uvh orarun.rpm # not mandatory rpm -Uvh tcl75lib.rpm # not mandatory rpm -Uvh javarunt.rpm
cd (oracle-install-archive) tar xzf (location-of-patch)/Oracle8i-EE-patch.tar.gz cd Oracle8i-EE-patch ./INSTALL.sh
ln -s /usr/lib/jre /usr/local/jre
mkdir /opt/u01
set DISPLAY=:0.0 set ORACLE_BASE=/opt/o01/app/oracle set ORACLE_HOME=$ORACLE_BASE/product/8.1.5 set ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data export DISPLAY ORACLE_BASE ORACLE_HOME ORA_NLS33You should include those lines into your .profile.
./runInstaller
Some questions about database type (dedicated, hybrid, OLAP ...) will follow. It is save to keep
the standard settings. For this manual it is assumed that the global database name is
myDB and the SID ORCL. From my point of view it is unlikely that you want
to keep up several seperate instances on a Linux system, so simply set and export ORACLE_SID
to ORCL.
As the OUI will tell you, creating a database will take a while.
![]() |
![]() |