TP-Link AC600 Archer T2U Nano 驱动程序适用于 Ubuntu 18.04 我无法让这个修复程序对我起作用。我时不时地使用 Ubuntu;自从我使用 Ubuntu 以来至少已经 5 年了,我发誓以前更容易找到驱动程序和几乎所有我需要的东西。这是我的 t2u 的位置:
Bus 002 Device 007: ID 2357:0120
当我尝试上述修复时,我得到:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package clone
E: Unable to locate package https://github.com/aircrack-ng
E: Couldn't find any package by glob 'https://github.com/aircrack-ng'
E: Couldn't find any package by regex 'https://github.com/aircrack-ng'
E: Unable to locate package cd
E: Unable to locate package rtl8812au
或者
Reading package lists... Done
Building dependency tree
Reading state information... Done
<omitted>
E: Unable to locate package clone
E: Unable to locate package http://github.com/jeremyb31
E: Couldn't find any package by glob 'http://github.com/jeremyb31'
E: Couldn't find any package by regex 'http://github.com/jeremyb31'
E: Unable to locate package cd
E: Unable to locate package rtl8812au-1
E: Unable to locate package chmod
E: Unable to locate package .dkms-install.sh
E: Couldn't find any package by glob '.dkms-install.sh'
E: Couldn't find any package by regex '.dkms-install.sh'
或者
Reading package lists... Done
E: Unsupported file ./dkms-install.sh given on commandline
任何帮助都很棒。我尝试使用 CD 中的驱动程序、TP Link 网站和上述修复程序。谢谢。
答案1
您可以从此 GitHub 存储库安装最新的驱动程序:https://github.com/aircrack-ng/rtl8812au.git
根据 repo,你可以这样使用 DKMS 方法安装驱动程序:
sudo apt update
sudo apt install dkms
git clone -b v5.6.4.2 https://github.com/aircrack-ng/rtl8812au.git
cd rtl8812au
sudo ./dkms-install.sh
您的 USB WiFi 适配器现在应该可以工作了。
答案2
我用了
sudo make dkms_install
没有
sudo ./dkms-install.sh
因为文件 dkms-install.sh 在存储库中不存在。