无法安装 D-link DWA 131e1 驱动程序

无法安装 D-link DWA 131e1 驱动程序

我为我的 debian 设备购买了一个 D-link DWA 131E1 wifi 适配器。我找不到驱动程序来安装它工作。有线索吗?

答案1

您需要安装rtl8192eu驱动程序:

sudo apt install git build-essential dkms linux-headers-$(uname -r)
git clone https://github.com/Mange/rtl8192eu-linux-driver.git
cd rtl8192eu-linux-driver
sudo make
sudo make install
echo -e "8192eu\n\nloop" | sudo tee /etc/modules
echo "options 8192eu rtw_power_mgnt=0 rtw_enusbss=0" | sudo tee /etc/modprobe.d/8192eu.conf
echo "blacklist rtl8192cu" | sudo tee -a /etc/modprobe.d/blacklist.conf
sudo update-grub; sudo update-initramfs -u
sudo reboot

要通过 DKMS 安装驱动程序,请参阅使用 DKMS 构建和安装

相关内容