如何通过port系统安装namp
发布网友
发布时间:2022-04-29 18:14
我来回答
共1个回答
热心网友
时间:2023-05-19 15:08
从软件的官网获取最新的源码包。从nmap的官网获取最新的nmap源码包。
将源码包上传到linux服务器。小编已有6.45版本,就不用6.47版本做演示,编译安装步骤是一样的。
解压nmap的源码包。使用“tar -xvf nmap-6.45.tar.bz2”解压到当前目录。
进入nmap目录,使用命令“cd nmap-6.45”。
执行configure命令配置安装前的环境,以及安装路径。使用“./configure --prefix=/usr”将nmap安装到指定的目录“/usr”下。如果报“configure: error: no acceptable C compiler found in $PATH”错误,请安装gcc软件,命令为“apt-get install gcc”。
执行make命令编译nmap,编译nmap的命令为“make”,如果提示“-bash: make: command not found”错误,请执行“apt-get install make”安装即可。如果报“/bin/sh: g++: not found”请执行“apt-get install g++”安装。
执行make install安装nmap,命令为“make install”。
执行“nmap -v”命令查看自己安装的软件是否成功。