安装 rtl8812AU_linux_v4.2.0_6952.20130315.tar.gz

use*_*146 3 apt compiling wireless tar drivers

嗨,在尝试为我的“ EDIMAX AC600 双频高增益 Wi-Fi USB 适配器”获取驱动程序时,我遇到了以下问题:

sudo apt-get install build-essential

cd /home/"USERNAME"

我试着 tar vxzf rtl8812AU_linux_v4.2.0_6952.20130315.tar.gz

但我得到:

tar (child): rtl8812AU_linux_v4.2.0_6952.20130315.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
Run Code Online (Sandbox Code Playgroud)

结果

我找不到它应该在的文件夹,sudo apt-get 没有显示它放在哪里。

我正在运行 Xubuntu,我对它完全陌生,一周前借了那台笔记本电脑旅行。

感谢您的关注

chi*_*555 9

只需复制并粘贴每个命令:

sudo apt-get install build-essential git
git clone https://github.com/gnab/rtl8812au.git
cd rtl8812au
make
sudo make install
sudo modprobe 8812au
Run Code Online (Sandbox Code Playgroud)

你应该准备好了。

您只为当前运行的内核编译了驱动程序。当 Update Manager 安装了后一个,也称为 linux-image,重新编译:

cd ~/rtl8812au
make clean
make
sudo make install
sudo modprobe 8812au
Run Code Online (Sandbox Code Playgroud)

很高兴它的工作!