CentOS 및 RedHat 계열
nslookup 설치
[root@localhost~]# yum install bind-utils
Python 설치
[user@localhost~]# python -V Python 2.7.5 [user@localhost~]# pip -V -bash: pip: command not found [user@localhost~]# you install python3 ... ... ... [user@localhost~]# python3 -V Python 3.6.8
기본 프로그램 설정(alternatives)
python을 예로 들어 설명하지만, java를 비롯해서 여러 버전에서 사용 가능
[root@localhost ~]# python -V Python 2.7.5 [dev@localhost ~]# update-alternatives --config python [root@localhost ~]# update-alternatives --install /bin/python python /bin/python2.7 1 [root@localhost ~]# update-alternatives --install /bin/python python /bin/python3.6 2 [root@localhost ~]# update-alternatives --config python 2 개의 프로그램이 'python'를 제공합니다. 선택 명령 ----------------------------------------------- 1 /bin/python2.7 *+ 2 /bin/python3.6 현재 선택[+]을 유지하려면 엔터키를 누르고, 아니면 선택 번호를 입력하십시오: 2 [root@localhost ~]# python -V Python 3.6.8