您的位置:首页 > 运维架构 > Linux

常见 wifi热点的linux 驱动

2015-10-14 22:27 597 查看

小度Wifi、360Wifi Windows、linux驱动

小度wifi什么的就是一个无线网卡,当然可以自由使用,然官方却说不支持无限网卡功能…

现提供Windows平台和linux平台的驱动安装方法。

Windows

驱动下载:http://pan.baidu.com/s/1GcFF1

Linux

使用lsusb命令可以获取USB设备ID。小度wifi为2955:0001或2955:1001 360WIFI2为148F:760B

二者均使用Mediatek Ralink MT7601芯片,都是在Mediatek官网下载MT7601U USB驱动源码包.

但是下载了,也不行。 请参考后面
行的通的安装方法




修改common/rtusb_dev_id.c文件,在
{USB_DEVICE(0x148f,0x7601)}, /* MT 6370 */下面加上

{USB_DEVICE(0x2955,0x0001)}, /* XiaoDu Wifi */

{USB_DEVICE(0x2955,0x1001)}, /* XiaoDu Wifi */

{USB_DEVICE(0x148f,0x760b)}, /* 360 Wifi */

使用make 命令编译后,执行make install 。

根据iwpriv_usage.txt,执行初始化或重启系统,网卡就可以使用了

行的通的安装方法:

sudo apt-get install linux-headers-generic build-essential git
git clone https://github.com/lvmxh/mt7601 cd mt7601/src
make
sudo make install
sudo mkdir -p /etc/Wireless/RT2870STA/
sudo cp RT2870STA.dat /etc/Wireless/RT2870STA/
sudo modprobe mt7601Usta

Your wireless should now be working.

You have compiled the driver for your current kernel version only. When Update Manager installs a later linux-image, after the required reboot, you must re-compile:

cd mt7601/src
make clean
make
sudo make install
sudo modprobe mt7601Usta


ref: [/code]
[code]http://askubuntu.com/questions/457061/ralink-148f7601-wifi-adapter-installation
[/code]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: