回避策: 手動でファイルを削除します。次の手順を実行します。
/opt/app/* Oracle ディレクトリを削除します。
prep-OS スクリプトをインストールした Oracle ディレクトリを削除します。
Oracle ユーザーを削除します。
oinstall グループを削除します。
dba グループを削除します。
/etc ディレクトリの Oracle 関連のファイルを削除します。
/etc/init.d ディレクトリの init.cssd ファイルを削除します。
/etc/rc5.d ディレクトリの CSS ファイルを削除します。
手順は、次の例のようになります。
# /bin/rm -rf /opt/app/* # /bin/rm -rf /oracle # /usr/sbin/userdel oracle # /usr/sbin/groupdel oinstall # /usr/sbin/groupdel dba [root@booger SUNWn1sps]# cd /etc [root@booger etc]# ls -l ora* -rw-rw-r-- 1 oracle oinstall 55 Apr 13 08:48 oraInst.loc -rw-rw-r-- 1 oracle root 760 Apr 13 10:43 oratab oracle: total 8 -rw-r--r-- 1 oracle oinstall 92 Apr 13 10:43 ocr.loc drwxr-xr-x 3 root root 4096 Apr 13 08:53 scls_scr # /bin/rm -fr ora* # cd /etc/init.d # /bin/rm -rf init.cssd # cd /etc/rc5.d [root@booger rc5.d]# ls *css* K96init.cssd S96init.cssd # /bin/rm -rf K96init.cssd S96init.cssd |