While running the Oracle Universal Installer on a Unix platform to install Oracle Database 10g software, you are prompted to run orainstRoot.sh script. What does this script accomplish? A) It creates the pointer file. B) It creates the base directory. C) It creates the Inventory pointer file. D) It creates the Oracle user for installation. E) It modifies the Unix kernel parameters to match Oracle's requirement. Answer: C Inventory:详细目录 可以查看$ORACLE_BASE/oraInventory/orainstRoot.sh 脚本的内容。该脚本实际上完成了以下工 作: (1)创建software inventory location pointer file: /etc/oraInst.loc,内容为 inventory_loc=$ORACLE_BASE/oraInventory inst_group=oinstall 修改该文件属性:chmod 644 /etc/oraInst.loc (2)创建inventory directory: $ORACLE_BASE/oraInventory 修改文件属性:chmod -R 770 $ORACLE_BASE/oraInventory,chgrp oinstall $ORACLE_BASE/oraInventory oraInventory 目录是用来存储oracle 安装的所有软件组件的信息的,每个组件可能占用150k 的空间.
|