Kali安装无线网卡驱动 - 我尽量尽力而为

时间:2024-02-17 08:11:15

Kali安装无线网卡驱动

安装内核头文件

sudo apt update && dist-upgrade
sudo apt install linux-headers-`uname -r`

 

安装驱动

指令 lspci可以确定自己的无线网卡型号

02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter

安装依赖

sudo apt install bc module-assistant build-essential dkms

  

下载驱动代码

git clone https://github.com/tomaspinho/rtl8821ce

  

编译和安装

cd rtl8821ce

sudo ./dkms-install.sh

  

重新启动  

 

 

参考资料

http://blog.sina.com.cn/s/blog_5d9de9950102x8ah.html

https://www.freebuf.com/sectool/247665.html