프리 BSD 에서 오라클 설치하기
오라클 버전 확인 방법 이라고 되어 있어서 제가 한번 해봤습니다. bash$ svrmgrl Oracle Server Manager Release 3.1.7.0.0 - Production Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved. Oracle8i Enterprise Edition Release 8.1.7.0.1 - Production With the Partitioning option JServer Release 8.1.7.0.1 - Production SVRMGR> connect internal Connected. SVRMGR> desc PRODUCT_COMPONENT_VERSION; Column Name Null? Type ------------------------------ -------- ---- PRODUCT VARCHAR2(128) VERSION VARCHAR2(128) STATUS VARCHAR2(128) SVRMGR> SVRMGR> SVRMGR> select * from PRODUCT_COMPONENT_VERSION; PRODUCT STATUS VERSION -------------------------------------------------------- NLSRTL Production 3.4.1.0.0 Oracle8i Enterprise Edition Production 8.1.7.0.1 PL/SQL Production 8.1.7.0.0 TNS for Linux: Development 8.1.7.0.0 4 rows selected. SVRMGR>
Oracle8i 설치후 Linux-7.1 사용하기.. Oracle8i 를 설치를 위해서는 Linux-6.1을 설치를 했습다. 하지만, port에 있는 많은 Linux기반 프로그램들이 linux-7.1을 필요로 합니다. 그래서 Linux-6.1을 지우고 linux-7.1을 설치 하고서도 Oracle8i가 돌아 가는지 알아 봤습니다. FreeBSD5# pkg_delete linux_base-6.1_5 pkg_delete: package 'linux_base-6.1_5' is required by these other packages and may not be deinstalled: linux_devtools-6.1 FreeBSD5# pkg_delete linux_devtools-6.1 FreeBSD5# pkg_delete linux_base-6.1_5 pkg_delete: '/compat/linux/etc/info-dir' fails original MD5 checksum - not deleted. pkg_delete: '/compat/linux/var/lib/rpm/conflictsindex.rpm' fails original MD5 checksum - not deleted. pkg_delete: '/compat/linux/var/lib/rpm/fileindex.rpm' fails original MD5 checksum - not deleted. pkg_delete: '/compat/linux/var/lib/rpm/groupindex.rpm' fails original MD5 checksum - not deleted. pkg_delete: '/compat/linux/var/lib/rpm/nameindex.rpm' fails original MD5 checksum - not deleted. pkg_delete: '/compat/linux/var/lib/rpm/packages.rpm' fails original MD5 checksum - not deleted. pkg_delete: '/compat/linux/var/lib/rpm/providesindex.rpm' fails original MD5 checksum - not deleted. pkg_delete: '/compat/linux/var/lib/rpm/requiredby.rpm' fails original MD5 checksum - not deleted. pkg_delete: unable to completely remove directory '/compat/linux/var/lib/rpm' pkg_delete: unable to completely remove directory '/compat/linux/var/lib' pkg_delete: unable to completely remove directory '/compat/linux/var' pkg_delete: unable to completely remove directory '/compat/linux/usr' pkg_delete: unable to completely remove directory '/compat/linux/proc' pkg_delete: unable to completely remove directory '/compat/linux/etc' pkg_delete: unable to completely remove directory '/compat/linux/bin' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) FreeBSD5# 이런식으로 지워집니다. # /compat/linux/ 에 보심 아직도 디렉토리들이 남아있습니다. 그래서 전 모든 디렉토리를 지우기 위해 rm -rf * 하고 나서 Linux-7.1 과 Linux-7.1 devtools 를 설치 했습니다. 이상태에서도 Oracle8i가 돌아 가느냐가 문제 였습니다. 하지만, Oracle을 실행 해보니 아무런 문제 없이 실행이 되었습니다. 아마 Linux-6.1은 Oracle을 설치 할때만 필요로 하고 설치후에는 필요가 없는것 같습니다.