尝试安装 USB AC-56 驱动程序

尝试安装 USB AC-56 驱动程序

我运行sudo -i并输入了我的密码。然后运行该install.sh文件并收到此消息:

root@TiGA:/home/servv/Desktop# bash install.sh
##################################################
Realtek Wi-Fi driver Auto installation script
Novembor, 21 2011 v1.1.0
##################################################
Decompress the driver source tar ball:
    rtl8812AU_8821AU_linux_v4.2.2_7502.20130517.tar.gz

make[1]: Leaving directory '/usr/src/linux-headers-4.4.0-31-generic'
Makefile:1041: recipe for target 'modules' failed
make: *** [modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg
##################################################`

The error message is `Makefile:1041: recipe for target 'modules' failed
make: *** [modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg
##################################################

你能帮我解决这个问题吗?如果我需要互联网连接,我可以启动 Windows 10。

(我不得不删除大部分代码,因为 Ask Ubuntu 认为“它看起来像垃圾邮件”)

答案1

您尝试编译的 circa-2011 文件太旧,无法在任何最新的 Linux 内核上进行编译。我建议您尝试此过程:

sudo apt-get update
sudo apt-get install git dkms
git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
cd ~/rtl8812AU_8821AU_linux
sudo make -f Makefile.dkms install
sudo modprobe 8812au

相关内容