Deepin/Debian/Ubuntu上为Tenda U12安装驱动
程序员文章站
2022-07-13 22:19:34
...
Tenda官方给的驱动不能用, 坑得很. 但是github上有人写了通用的驱动.
原示例是基于ubuntu的, 但是deepin和ubuntu都是基于debian的, 所以可以通用.
Compiling for Ubuntu (16.04)
Download archive into temp directory
# mkdir -p /tmp/t4u
# cd /tmp/t4u
# wget https://github.com/abperiasamy/rtl8812AU_8821AU_linux/archive/master.zip
Unzip
# unzip master.zip
# cd rtl8812AU_8821AU_linux-master
Compile and install from source
# make
# sudo make install
Load module
# sudo modprobe -a rtl8812au
上述已经很清楚了. 因为我没有网线, 所以我自己去https://github.com/abperiasamy/rtl8812AU_8821AU_linux/archive/master.zip下载了驱动包.
第一步 新建/tmp/t4u这个文件夹, -p这个选项是指( -p, --parents
no error if existing, make parent directories as needed).
第二步 是cd进/tmp/t4u.
第三步 解压缩刚刚下载的rtl8812AU_8821AU_linux-master.zip包
第四步 先 make, 再sudo make install安装驱动.
第五步 把模块加载上 sudo modprobe -a rtl8812au 就可以用啦
转载于:https://www.jianshu.com/p/d02580726f98
下一篇: Etcd集群环境搭建