Linux

[CentOS 7]Nmap설치

Mu-Roy 2020. 6. 24. 10:48

1. Nmap 설치 확인

[root@localhost ~]#rpm -qa | grep nmap

- 설치가 되어 있지 않은 경우 아무값도 출력되지 않고 바로 입력창으로 출력됨

 

2. Nmap을 설치 하기 위하여 Repolist를 확인합니다. 

[root@localhost ~]# yum repolist

3. epel-release의 리스트가 있는지 확인합니다. 

[root@localhost ~]# yum list epel-release
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: ftp.kaist.ac.kr
 * extras: ftp.kaist.ac.kr
 * updates: ftp.kaist.ac.kr
Available Packages
epel-release.noarch                                                                               7-11                                                                               extras

4. epel-release를 설치합니다. 

[root@localhost ~]# yum -y install epel-release

- 아래와 같이 설치가 되었습니다.

5. NMP를 설치 합니다. 

[root@localhost ~]# yum -y install nmap

- 아래와 같이 설치가 되었습니다.