본문 바로가기

Linux

[CentOS 7]Nmap설치

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

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

'Linux' 카테고리의 다른 글

[CentOS 7]Graylog 3 설치  (0) 2020.06.24
[CentOS 7]Pwgen 설치  (0) 2020.06.24
[CentOS 7]MongoDB 설치  (0) 2020.06.24
[CentOS 8]Apache 설치  (0) 2020.06.11
[CentOS 8]MariaDB 설치  (0) 2020.06.11