Oralcle 10g Fedora Core X上快速安装指南(2) From Fedora-core Disk 2:
openmotif-2.2.2-16.1.i386.rpm From Fedora-core Disk 3:
compat-libstdC++-7.3-2.96.118.i386.rpm compat-db-4.0.14-2.i386.rpm compat-gcc-7.3-2.96.118.i386.rpm compat-libgcj-7.3-2.96.118.i386.rpm compat-libstdc++-devel-7.3-2.96.118.i386.rpm compat-libgcj-devel-7.3-2.96.118.i386.rpm Now we have to make Oracle installer think that we have one of the supported distributions: Create a backup of your /etc/redhat-release file, an change its contents: # cp /etc/redhat-release /etc/redhat-release.orig # echo "Red Hat Enterprise Linux AS release 3 (Taroon)" > /etc/redhat-release Change kernel parameters by adding the following lines in /etc/sysctl.conf: 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 = 32768 65000 Update kernel configuration: [root@fedora root]# sysctl -e -p /etc/sysctl.conf Add the following lines to /etc/security/limits.conf file: * soft nproc 2047 * hard nproc 16384 * soft nofile 1024 * hard nofile 65536 Add the following line to the /etc/pam.d/login file, if it does not already exist:
session required /lib/security/pam_limits.so Create user and groups that will own oracle installation. In this exaple the username will be oracle: [root@fedora]# groupadd oinstall [root@fedora]# groupadd dba [root@fedora]# useradd -g oinstall -G dba oracle [root@fedora]# passwd oracle Create directories in which oracle software will be installed. Oracle recommends OFA - Optimal Flexible Architecture (see oracle installation guide), but in this example everything will be installed under /home/oracle: [root@fedora]# mkdir -p /home/oracle/product/10g