linux下的,下在一个windows下的吧

解决方案 »

  1.   

    1.启动到linux操作系统下
    2.用mount 命令把放linun安装文件的逻辑盘挂接到linux的文件系统上
    3.用cpio命令把cpio解压到一个目录内
      

  2.   


    1. Creating users and groups:
    -------------------------
    Become root and execute the following commands
    [roko@miniroko] su -[root@miniroko]# groupadd oinstall
    [root@miniroko]# groupadd dba
    [root@miniroko]# useradd -g oinstall -G dba oracle
    [root@miniroko]# passwd oracle2. Creating directories.
    --------------------------
    Oracle recommends OFA - Optimal Flexible Architecture directory structure, but we will install everything under /opt/ora9:
    [root@miniroko]# mkdir -p /opt/ora9/product/9.2
    [root@miniroko]# mkdir /var/opt/oracle
    [root@miniroko]# chown oracle.dba /var/opt/oracle
    [root@miniroko]# chown -R oracle.dba /opt/ora93. Preinstallation (system configuration):
    ---------------------------
    3.1 Install these compatibility libraries: 
    compat-gcc-7.3-2.96.118.i386.rpm
    compat-libgcj-7.3-2.96.118.i386.rpm
    compat-libgcj-devel-7.3-2.96.118.i386.rpm
    nss_db-compat-2.2-20.i386.rpm
    You will find these packages on the installation CDs.
    If you do not have the CDs, they can be found using Synaptic, a graphical tool for updating your RH system. To install synaptic, first download Apt binary RPM package for RH9 from http://apt.freshrpms.net/ and then do (as root):[root@miniroko]# rpm -Uvh apt-0.5.5cnc5-fr2.i386.rpm
    [root@miniroko]# apt-get update
    [root@miniroko]# apt-get install synaptic3.2 Set kernel params to be correct at startup: Append these lines to /etc/sysctl.conf 
    You might want to change these values if you have more RAM:
    kernel.shmmax = 536870912
    kernel.shmmni = 4096
    kernel.shmall = 2097152
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000Append these lines into /etc/security/limits.conf 
    oracle soft nofile 65536
    oracle hard nofile 65536
    oracle soft nproc 16384
    oracle hard nproc 16384REBOOT the system so the kernel changes can take effect, or if rebooting is not an option, you can change the kernel params at runtime by issuing:
    [root@miniroko]# echo 250 32000 100 128 > /proc/sys/kernel/sem
    [root@miniroko]# echo 536870912 > /proc/sys/kernel/shmmax
    [root@miniroko]# echo 4096 > /proc/sys/kernel/shmmni
    [root@miniroko]# echo 2097152 > /proc/sys/kernel/shmall
    [root@miniroko]# echo 65536 > /proc/sys/fs/file-max
    [root@miniroko]# echo 1024 65000 > /proc/sys/net/ipv4/ip_local_port_range
      

  3.   


    4. Preinstallation (oracle environment):
    ----------------------------
    Login as oracle user:
    su - oraclePut the following lines in ~/.bashrc:#oracle 9i
    export ORACLE_BASE=/opt/ora9
    export ORACLE_HOME=/opt/ora9/product/9.2
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/Apache/Apache/bin:$PATH
    export ORACLE_OWNER=oracle
    export ORACLE_SID=ora9i
    export ORACLE_TERM=vt100
    export LD_ASSUME_KERNEL=2.4.1
    export THREADS_FLAG=native
    export LD_LIBRARY_PATH=/opt/ora9/product/9.2/lib:$LD_LIBRARY_PATH
    export PATH=/opt/ora9/product/9.2/bin:$PATH
    #
    # change this NLS settings to suit your country:
    # example:
    # german_germany.we8iso8859p15, american_america.we8iso8859p2 etc.
    #
    export NLS_LANG='croatian_croatia.ee8iso8859p2'
    If you want other national settings (these are croatian), consult the supported settings here, and change the NLS_LANG variable accordingly. 5. Installation:
    ------------------------ Login as root and allow user oracle to write to X display:
    su -
    xhost +Login to oracle user:
    su - oracleStart the installation. Do not switch to your CD-ROM mount directory because you will not be able to unmount the 1st Cd to insert others when asked. /mnt/cdrom/install/linux/runInstallerDuring the installation, Oracle will ask you to insert other disks. Open up a new console, unmount the current disk with umount /dev/cdrom (as root), replace the disk. If Redhat9 does not mount it automagically, mount it yourself with mount /dev/cdrom 
    Your installation will produce two errors.
    First, you will see an error dialog informing about problems with ins_oemagent.mk. Choose ignore on this one, we will fix it in postinstallation.Second dialog will inform you about an "Error in invoking target install of makefile $ORACLE_HOME/ctx/lib/ins_ctx.mk".
    When that happens, open up a new console and login as oracle user. Execute the following commands:[oracle@miniroko oracle]$ cd $ORACLE_HOME/install
    [oracle@miniroko install]$ tail make.logYou will see a line such as this: 
    gcc -o ctxhx -L/opt/ora9/product/9.2/ctx/lib/ -L/opt/ora9/product/9.2/lib/
    -L/opt/ora9/product/9.2/lib/stubs/  /opt/ora9/product/9.2/ctx/lib/ctxhx.o
    -L/opt/ora9/product/9.2/ctx/lib/ -lm -lsc_ca -lsc_fa -lsc_ex -lsc_da -lsc_ut
    -lsc_ch -lsc_fi -lctxhx -lc -Wl,-rpath,/opt/ora9/product/9.2/ctx/lib -lnls9
    -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9Copy this line, add -ldl at the end and run it in $ORACLE_HOME/bin 
    [oracle@miniroko]$ cd $ORACLE_HOME/bin
    [oracle@miniroko bin]$ gcc -o ctxhx -L/opt/ora9/product/9.2/ctx/lib/ 
    -L/opt/ora9/product/9.2/lib/ -L/opt/ora9/product/9.2/lib/stubs/  
    /opt/ora9/product/9.2/ctx/lib/ctxhx.o -L/opt/ora9/product/9.2/ctx/lib/ 
    -lm -lsc_ca -lsc_fa -lsc_ex -lsc_da -lsc_ut -lsc_ch -lsc_fi -lctxhx -lc 
    -Wl,-rpath,/opt/ora9/product/9.2/ctx/lib -lnls9 -lcore9 -lnls9 -lcore9 
    -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 -ldlNow hit the ignore button on the dialog and the installation will continue. 
    At the end Oracle installation will probably inform you that agents failed to start. Choose ignore on this one, we will fix it later 
      

  4.   

    你将cpio文件解压了安装就可以了cpio -idmv *.cpio