1.
apt-get update && apt-get upgrade
apt-cache search linux-image
然后使用相同的版本搜索最新的 linux-image和linux-source软件包。在我的情况下输出是
linux-headers-4.17.0-kali1-amd64 - Header files for Linux 4.17.0-kali1-amd64 linux-headers-4.17.0-kali1-cloud-amd64 - Header files for Linux 4.17.0-kali1-cloud-amd64 linux-image-4.17.0-kali1-amd64 - Linux 4.17 for 64-bit PCs linux-image-4.17.0-kali1-amd64-dbg - Debug symbols for linux-image-4.17.0-kali1-amd64 ...
所以我刚刚安装了最新版本:
apt-get install linux-headers-4.17.0-kali1-amd64 linux-image-4.17.0-kali1-amd64 -y reboot
2.reboot
3.apt-get install gcc linux-headers-`uname -r` make automake git
4.
https://github.com/lwfinger/rtl8188eu
unzip rtl8188eu-master.zip
cd rtl818...
make && make install
接下来
depmod -a
modprobe 8188eu
ifconfig -a
wlan0 Link encap:Ethernet HWaddr 0c:88:77:22:fa:39
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
这个时候系统已经装好无线驱动了。用网络管理软件or /etc/network/interfaces 里面都可以配置。