프린트 하기

OS환경 : Redhat Linux 7.5 (64bit)


DB 환경 : Oracle Database 19.3.0.0


방법 : Redhat Linux 7.5에 Oracle 19c 설치시 compat-libstdc++-33-3.2.3 패키지

오라클 19c 설치시 필요한 패키지 중 compat-libstdc++-33-3.2.3 패키지는

레드헷 설치 미디어 안 패키지목록에는 존재하지 않음

인터넷이 되지 않는 환경이라면 별도로 다운로드 받아서 설치를 해주어야함


다운로드 페이지 방문 후

https://centos.pkgs.org/7/centos-x86_64/compat-libstdc++-33-3.2.3-72.el7.x86_64.rpm.html



Download에서 Binary Package 옆 링크로 접속하면 다운로드됨



인터넷이 되는 환경일 경우

curl 명령으로 다운로드 가능

1
2
3
4
# curl -o compat-libstdc++-33-3.2.3-72.el7.x86_64.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/compat-libstdc++-33-3.2.3-72.el7.x86_64.rpm
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  190k  100  190k    0     0   136k      0  0:00:01  0:00:01 --:--:--  136k



다운로드 확인

1
2
3
4
5
6
7
8
9
10
11
# ls -al
total 20392
dr-xr-x---.  5 root root     4096 May  6 00:52 .
dr-xr-xr-x. 19 root root     4096 Oct 27  2019 ..
-rw-------.  1 root root     2066 Oct 15  2019 anaconda-ks.cfg
-rw-------.  1 root root    14389 Apr 26 23:20 .bash_history
-rw-r--r--.  1 root root       18 Apr 30  2014 .bash_logout
-rw-r--r--.  1 root root      428 Oct 29  2019 .bash_profile
-rw-r--r--.  1 root root      176 Apr 30  2014 .bashrc
-rw-r--r--.  1 root root   195388 May  6 00:52 compat-libstdc++-33-3.2.3-72.el7.x86_64.rpm
-rw-r--r--.  1 root root      100 Apr 30  2014 .cshrc



패키지 설치

1
2
3
4
5
# rpm -Uvh compat-libstdc++-33-3.2.3-72.el7.x86_64.rpm 
warning: compat-libstdc++-33-3.2.3-72.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...
   1:compat-libstdc++-33-3.2.3-72.el7 ################################# [100%]



참조 : https://positivemh.tistory.com/555

https://positivemh.tistory.com/548