1. linux下 TP-LINK TL-WN823N 哪里有驱动
1.Linux下驱动无线网卡需要先安装网卡驱动,这里以BCM4310无线网卡为例
下载地址: broadcom.com/support/?gid=1
2.解压无线网卡驱动压缩包
[root@test ~]#tar -xf ndiswrapper-1.52.tar.gz
3.命令cd进入ndiswrapper-1.52解压目录
[root@test ~]#cd ndiswrapper-1.52
4.编译安装驱动配置文件
[root@test ~]#./configure
[root@test ~]#make
5.安装无线网卡驱动
[root@test ~]#make install
6.查看驱动是否安装
[root@test ~]#ndiswrapper -l
#会输出当前已经安装过的驱动
7.加载无线网卡驱动
[root@test ~]#modprobe ndiswrapper
8.写入网卡配置文件
[root@test ~]#ndiswrapper -m
[root@test ~]#ndiswrapper -ma
[root@test ~]#ndiswrapper -mi
9.启动后模块自动加载无线网卡
[root@test ~]#modprobe ndiswrapper
10.重启下就成功驱动无线网卡了
[root@test ~]#reboot