本文主要是介绍centos 6.2 64安装hping3,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装
yum install gcc
yum install libpcap-devel
yum install tcl-devel
下载hping3安装
wget http://www.hping.org/hping3-20051105.tar.gztar -zxvf hping3-20051105.tar.gz
cd hping3-20051105
./configure
bytesex.h:22:3: error: #error can not find the byte order for this architecture, fix bytesex.h
因为是64位系统
#vi bytesex.h
其实是需要在文件bytesex.h中添加defined(__x86_64__) \如下:
#if defined(__i386__) \|| defined(__x86_64__) \|| defined(__alpha__) \
./configure
make
make install
这篇关于centos 6.2 64安装hping3的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!