Linux系统默认没有无线网络工具包wireless-tools,yum install wireless-tools,显示没有此安装包,后来发现只能手动安装。
去下载地址 https://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html 下载最新版。
下载先解压:
wget https://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.29.tar.gz
tar -xzvf wireless-tools.29.tar.gz
由于我是刚安装的Centos7系统,没有make,gcc命令,(make,gcc:command not found).root 权限下
yum -y install make gcc automake
然后依次
make
make install
安装信息提示:
*** Don't forget to add /usr/local/lib/ to /etc/ld.so.conf, and run ldconfig as root. ***
按照提示信息
将/usr/local/lib/添加到/etc/ld.so.conf文件下,然后root下ldconfig运行一下就OK了。
include ld.so.conf.d/*.conf
/usr/local/lib/
sudo ldconfig
最后运行iwconfig,iwlist就都有了。