Installation of Oracle 10g Release 2 (10.2.0.1.0) on RedHat EL 3, 4, 5 and (Oracle) Enteprise Linux 4, 5.


This paper (HOWTO) describes step-by-step installation of Oracle 10g R2 database software on RedHat Enterprise Server 3, 4, 5 and (Oracle) Enteprise Linux 4, 5. This article is useful for Centos Linux release 3, 4 and 5 and for White Box Enterprise Linux release 3 and 4. Note that Centos and White Box distributions are not certified by Oracle Corporation.
This article does not cover database creation process, and ASM Instance creation process.

This paper covers following steps:

Pre-Instalation Tasks

1. Create oracle User Account

Login as root and create te user oracle which belongs to dba group.
su -
# groupadd dba
# useradd -g dba oracle

2. Setting System parameters
Edit the /etc/sysctl.conf and add following lines:
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 262144
net.core.rmem_max = 262144
net.core.wmem_default = 262144
net.core.wmem_max = 262144
Note: You need reboot system or execute "sysctl -p" command to apply above settings.

For RedHat (OEL, Centos, WBL) 3 and 4 versions: Edit the /etc/pam.d/login file and add following line:
session required /lib/security/pam_limits.so

For RedHat (OEL, Centos) 5 version: Edit the /etc/pam.d/login file and add following line:
session required pam_limits.so

Edit the /etc/security/limits.conf file and add following lines:
oracle    soft  nproc  2047
oracle    hard  nproc  16384
oracle    soft  nofile  1024
oracle    hard  nofile  65536

3. Creating oracle directories
# mkdir /opt/oracle
# mkdir /opt/oracle/102
# chown -R oracle:dba /opt/oracle

4. Setting Oracle Enviroment
Edit the /home/oracle/.bash_profile file and add following lines:
Use this settings for 32bit (x86) architecture.
ORACLE_BASE=/opt/oracle
ORACLE_HOME=$ORACLE_BASE/102
ORACLE_SID=ORCL
LD_LIBRARY_PATH=$ORACLE_HOME/lib
PATH=$PATH:$ORACLE_HOME/bin

export ORACLE_BASE ORACLE_HOME ORACLE_SID LD_LIBRARY_PATH PATH

Use this settings for 64bit (x86_64) architecture.
ORACLE_BASE=/opt/oracle
ORACLE_HOME=$ORACLE_BASE/102
ORACLE_SID=ORCL
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib32
PATH=$PATH:$ORACLE_HOME/bin

export ORACLE_BASE ORACLE_HOME ORACLE_SID LD_LIBRARY_PATH PATH

Save the .bash_profile and execute following commands for load new enviroment:
cd /home/oracle
. .bash_profile

Download & Install

1. Download and install required .rpm packages

Some additional packages are required for succesful instalation of Oracle software. To check wheter required packages are installed on your operating system use following command: Note: Since RHEL 5 (OEL 5, Centos 5) pdksh package was renamed to ksh

For 32 bit (x86) Linux version:
rpm -q binutils gcc glibc glibc-headers glibc-kernheaders glibc-devel compat-libstdc++ cpp compat-gcc make compat-db compat-gcc-c++ compat-libstdc++ compat-libstdc++-devel setarch sysstat pdksh libaio libaio-devel --qf '%{name}.%{arch}\n'|sort

For 64 bit (x86_64) Linux version:
rpm -q binutils compat-db compat-libstdc++-33 glibc glibc-devel glibc-headers gcc gcc-c++ libstdc++ cpp make libaio ksh elfutils-libelf sysstat libaio libaio-devel setarch --qf '%{name}.%{arch}\n'|sort


Required packages for 32bit (x86) architecture:
binutils.i386
compat-gcc-7.3-2.96.128.i386
compat-gcc-c++-7.3-2.96.128.i386
compat-libstdc++-7.3-2.96.128.i386
compat-libstdc++-devel-7.3-2.96.128.i386
cpp.i386
gcc.i386
gcc-c++.i386
glibc.i386
glibc-common.i386
glibc-devel.i386
glibc-headers.i386
glibc-kernheaders.i386
libstdc++.i386
libstdc++-devel.i386
libaio
libai-devel.i386
pdksh.i386
setarch.i386
sysstat.i386


Required packages for 64bit (x86_64) architecture:
binutils.x86_64
compat-db.x86_64
compat-libstdc++-33.i386
compat-libstdc++-33.x86_64
cpp.x86_64
elfutils-libelf.i386
elfutils-libelf.x86_64
gcc-c++.x86_64
gcc.x86_64
glibc-devel.i386
glibc-devel.x86_64
glibc-headers.x86_64
glibc.i686
glibc.x86_64
ksh.x86_64
libaio-devel.i386
libaio-devel.x86_64
libaio.i386
libaio.i386
libaio.x86_64
libaio.x86_64
libstdc++.i386
libstdc++.x86_64
make.x86_64
setarch.x86_64
sysstat.x86_64


If some package is not installed then install it from installation media or download it from following locations:
RedHat Enterprise Linux 3 - source packages only
RedHat Enterprise Linux 4 - source packages only
White Box Linux 3
White Box Linux 4
Centos Linux 3
Centos Linux 4
Centos Linux 5


This is example how to build RPM package from source package (libaio-0.3.96-3.src.rpm). Note gcc, make and rpm-build (and dependent) packages must be already installed on your system.
# rpm -ivh libaio-0.3.96-3.src.rpm
# cd /usr/src/redhat/SPECS/
# rpmbuild -bb --target i386 libaio.spec
# cd ../RPMS/i386/


Install the required packages using the rpm command:
# rpm -ivh <package_name>.rpm


2. Download the Oracle 10g release 2 (10.2.0.1.0) software from Oracle website.
Extract the files using following command: For 32bit installation archive
unzip 10201_database_linux32.zip

For 64bit installation archive
gunzip 10201_database_linux_x86_64.cpio.gz
cpio -idmv <10201_database_linux_x86_64.cpio

For RHEL 5, Centos 5: Modify database/install/oraparam.ini file and add "redhat-5" to "Certified Versions" section.
Example:
[Certified Versions]
Linux=redhat-3,SuSE-9,redhat-4,UnitedLinux-1.0,asianux-1,asianux-2,redhat-5


3. Start the Oracle software installation process.

Now the system is prepared for Oracle software installation. To start the installation process execute the following commands:
cd db/Disk1/
./runInstaller

Note: You may get "Warning" status during some pre-requisites checks. This will happen on RH EL 3 where Update 3 or 4 were not installed. You can continue in installation when you simply change the status as "User verified".

Post-Instalation Tasks

1. (Optional) Auto Startup and Shutdown of Database and Listener

Login as root and modify /etc/oratab file and change last character to Y for apropriate database.
ORCL:/opt/oracle/102:Y

As root user create new file "oracle" (init script for startup and shutdown the database) in /etc/init.d/ directory with following content:
#!/bin/bash
#
# oracle Init file for starting and stopping
# Oracle Database. Script is valid for 10g and 11g versions.
#
# chkconfig: 35 80 30
# description: Oracle Database startup script

# Source function library.

. /etc/rc.d/init.d/functions

ORACLE_OWNER="oracle"
ORACLE_HOME="/opt/oracle/102"

case "$1" in
start)
echo -n $"Starting Oracle DB:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
echo "OK"
;;
stop)
echo -n $"Stopping Oracle DB:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME"
echo "OK"
;;
*)
echo $"Usage: $0 {start|stop}"
esac

Execute (as root) following commands (First script change the permissions, second script is configuring execution for specific runlevels):
chmod 750 /etc/init.d/oracle
chkconfig --add oracle --level 0356

2. (Optional) Auto Startup and Shutdown of Enterprise Manager Database Control

As root user create new file "oraemctl" (init script for startup and shutdown EM DB Console) in /etc/init.d/ directory with following content:

Rda Usb Driver: For Gallite 8809 64 Bit Patched

The RDA USB Driver for Gallite 8809 is a critical software component for users working with mobile devices or specialized hardware powered by RDA (Coolsand) chipsets. Whether you are a developer, a technician, or a hobbyist trying to flash firmware, this driver serves as the essential bridge between your device and a Windows 64-bit operating system. What is the RDA Gallite 8809 Driver?

The Gallite 8809 refers to a specific hardware identifier (typically USB\VID_1E04&PID_0900) associated with RDA Microelectronics chipsets. These chips are commonly found in:

Feature Phones: Often used in entry-level mobile devices and specialized electronics.

Industrial Equipment: Devices like professional light meters (e.g., the DT-8809A Professional Light Meter) often use similar serial-to-USB drivers for data logging.

The 64-bit version of this driver is specifically optimized for modern versions of Windows, ensuring that the 64-bit architecture can properly communicate with the 32-bit legacy hardware architecture of the RDA chip. Key Features and Uses

Without the correct RDA USB driver, your computer may label the connected hardware as an "Unknown Device". Once installed, it enables several vital functions: DriverIdentifier RDA USB Driver for gallite 8809 Driver for Hewlett-Packard

The RDA USB Driver for Gallite 8809 (often referred to as the Coolsand/RDA driver) is essential for connecting feature phones using this chipset to a 64-bit Windows PC for flashing or data transfer. Download & Compatibility Driver Version: 1.2.6.0 (Dated: 2012-01-18).

Supported Systems: Windows 10, 8.1, 8, and 7 (both 32-bit and 64-bit versions).

Hardware IDs: Common IDs include USB\VID_1E04&PID_0900 and USB\VID_1E04&PID_0904. Step-by-Step Installation Guide

Since these are legacy drivers, manual installation is often required on modern 64-bit systems.

Download the Files: Obtain the RDA Gallite 8809 driver package. You can find these on repository sites like DriverIdentifier or via specific tutorials on YouTube.

Extract the Package: Unzip the downloaded file to a dedicated folder on your desktop. Rda Usb Driver For Gallite 8809 64 Bit

Disable Driver Signature Enforcement (Optional but Recommended): On Windows 10/11 64-bit, you may need to disable signature enforcement via Settings > Recovery > Advanced Startup to allow the legacy driver to install.

Connect Your Device: Turn off your phone and connect it to the PC via USB. Use Device Manager: Right-click the Start button and select Device Manager.

Look for "Other devices" or "Unknown device." Right-click it and choose Update driver. Select Browse my computer for drivers.

Navigate to the folder where you extracted the RDA drivers and click Next.

Restart: Once the installation wizard finishes, restart your PC to ensure the changes take effect. Troubleshooting Tips

Old Drivers: Uninstall any previously installed RDA or Coolsand drivers through the Control Panel or Device Manager before starting a fresh installation.

Admin Rights: Always run setup files or Device Manager actions with Administrative privileges to avoid permission errors.

Port Issues: If the device isn't recognized, try a different USB port (preferably a USB 2.0 port) or a different cable.

Are you planning to flash a firmware or just transfer files with this driver? RDA USB Driver for gallite 8809 Driver for Hewlett-Packard

The RDA USB Driver for Gallite 8809 is a critical software component for Windows users who need to connect devices powered by the RDA Coolsand Gallite 8809 chipset. These chipsets are typically found in feature phones and basic mobile devices. On a 64-bit Windows system, having the correct driver ensures that service tools can properly detect the hardware for maintenance and data tasks. Key Functions of the RDA USB Driver

The driver acts as a communication bridge between your PC and the mobile device. Its primary roles include: The RDA USB Driver for Gallite 8809 is

Device Recognition: Allows Windows to identify the connected device in the Device Manager.

Firmware Flashing: Enables the use of tools like Infinity-Box CM2 RDA or Miracle Box to update or repair device software.

Diagnostics: Exposes communication and diagnostic ports for troubleshooting and device management.

FRP Unlocking: Facilitates the removal of Factory Reset Protection and other security locks. Technical Specifications for Gallite 8809 Chipset ID: Often identified as RDA8851X or CPU_ID: 8809.

Hardware IDs: Common identifiers for this device in Windows include USB\VID_1E04&PID_0900 or USB\VID_1E04&PID_0904.

Compatibility: Supports Windows XP, Vista, 7, 8, 8.1, and 10 for both 32-bit and 64-bit architectures. How to Install the Driver on Windows 10/11 (64-Bit)

For 64-bit systems, manual installation is often required to ensure the correct architecture is selected. RDA USB Driver for gallite 8809 Driver for Hewlett-Packard


Conclusion

Flashing RDA devices can be tricky due to driver compatibility issues, but with the correct RDA USB Driver for Gallite 8809 installed on your 64-bit PC, the process becomes much smoother. If you found this driver helpful, feel free to share it with other technicians.

Disclaimer: Flashing mobile phones carries a risk of bricking the device. Always ensure you have a backup of your

RDA USB Driver for Gallite 8809 (64-bit) is a critical software component used to facilitate communication between a 64-bit Windows PC and devices powered by RDA/Coolsand chipsets, often found in mobile handsets and specialized hardware like the HP Compaq Elite 8300 SFF. Installation Guide

For 64-bit operating systems such as Windows 7, 8, or 10, follow these steps to install the driver: Download and Extract Conclusion Flashing RDA devices can be tricky due

: Obtain the RDA USB driver package and extract the contents to a folder on your computer. Navigate to Architecture : Open the extracted folder and look for the sub-folder specifically designed for 64-bit systems. Run the Installer : Locate the DPInst.exe

application within the x64 folder and run it as an administrator. Complete the Wizard in the Device Driver Installation Wizard. If a Windows Security warning appears, select "Install this driver software anyway" once the process is complete. Manual Installation via Device Manager

If the automated installer does not work, you can manually point Windows to the driver files: Windows Device Manager

Here’s an interesting, informative piece based on your keyword. It’s written in the style of a tech deep-dive / troubleshooting guide.


Downloading the Correct Driver

Warning: Be cautious of third-party driver download sites that bundle adware. The original RDA drivers are no longer officially hosted by RDA Microelectronics due to company restructuring.

Safe sources for the RDA USB Driver (Gallite 8809 x64):

Where to get drivers

Why Do You Need a Specific 64-Bit Driver?

Most older RDA drivers were designed for Windows XP or 7 (32-bit). Modern computers almost exclusively run 64-bit versions of Windows. Because of Driver Signature Enforcement and architectural changes in the OS, old 32-bit drivers often fail to install or cause the device to show up as "Unknown Device" in Device Manager.

The driver provided here is digitally signed and configured to work seamlessly on Windows 7, 8, 10, and 11 (64-bit architecture).


Error 1: "The hash for the file is not present" (Code 52)

Cause: Windows Driver Signature Enforcement blocking unsigned drivers.
Solution: Disable Driver Signature Enforcement.

  1. Open Start, click Power, hold Shift and click "Restart."
  2. Go to Troubleshoot > Advanced Options > Startup Settings.
  3. Click Restart, then press 7 or F7 to select "Disable driver signature enforcement."
  4. Install the driver again.

Troubleshooting 64-bit Issues

| Problem | Solution | |---------|----------| | "Driver not signed" | Disable Secure Boot and driver signature enforcement. | | Device still not working after install | Try a different USB port (USB 2.0 preferred over USB 3.0). | | Blue screen (BSOD) | The 64-bit driver is incompatible. Remove it and use the Zadig (WinUSB) method instead. | | Driver installs but device disappears | Check for power management settings: disable "Allow the computer to turn off this device" in USB Root Hub properties. |


Error 2: Device disappears after reboot

Cause: Windows Update automatically overwriting the driver.
Solution: Block automatic driver updates.

  1. Go to Control Panel > System > Advanced System Settings.
  2. Click "Hardware" tab > "Device Installation Settings."
  3. Select "No (your device might not work as expected)." Save and reinstall.

Download RDA USB Driver For Gallite 8809

Here is the safe and tested driver package.


Execute (as root) following commands (First script change the permissions, second script is configuring execution for specific runlevels):
chmod 750 /etc/init.d/oraemctl
chkconfig --add oraemctl --level 0356

3. (Optional) You may consider to use rlwrap for comfortable work with sqlplus and rman utility.
RPM package for RedHat compatible (x86) distribution you can download here.
RPM package for RedHat compatible (x86_64) distribution you can download here.
su -
# rpm -ivh rlwrap*.rpm
# exit
echo "alias sqlplus='rlwrap sqlplus'" >> /home/oracle/.bash_profile
echo "alias adrci='rlwrap rman'" >> /home/oracle/.bash_profile
. /home/oracle/.bash_profile


Common Installation Errors

DISPLAY not set. Please set the DISPLAY and try again.
Solution: Execute "export DISPLAY=:0.0" when you perform installtion on local machine or "export DISPLAY=:0.0 when you perform installation on remote machine connected over SSH". Don't forget to execute "xhost +" command on client machine.

Exception java.lang.UnsatisfiedLinkError: /tmp/OraInstall2005-07-07_09-40-45AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred.. java.lang.UnsatisfiedLinkError: /tmp/OraInstall2005-07-07_09-40-45AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
Solution: RH 3, WB 3, Centos 3 - Install the XFree86-libs-4.3.0-81.EL.i386.rpm and dependent packages.
RH 4, WB 4, Centos 4 - Install the xorg-x11-deprecated-libs-6.8.2-1.EL.13.6.i386.rpm package.
RH 5, OEL 5, Centos 5 - Install the libXp-1.0.0-8.1.el5.i386.rpm package.

error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Solution: Install libaio and libaio-devel packages. If packages already installed and error still occurs try execute "ldconfig" as root.

Check complete. The overall result of this check is: Failed <<<<
Solution: Install missing package or set check system parameters (See reason of failure).


Comments, suggestions, questions, errors (also grammatical :) )? Feel free to contact me.