笔记本装了ubuntu 14.04 LTS X64版本,遇到无线网卡不稳定的问题,记得以前用12.04,还有无线网卡驱动没有的问题,似乎是去年年末更新了,无线网上型号:RTL 8188EE,目测这个网卡挺阉割的(通常是HP 或TOSHIBA的机器在用)。
问题描述:
RTL8188EE网卡驱动不稳定或不存在
给出的解决方案:
sudo apt-get install --reinstall linux-headers-generic linux-headers-$(uname -r) build-essential dkms git
git clone https://github.com/FreedomBen/rtl8188ce-linux-driver
cd rtl8188ce-linux-driver
make
sudo make install
sudo cp -r firmware/* /lib/firmware
echo "options rtl8188ee ips=0 fwlps=0" | sudo tee /etc/modprobe.d/rtl8188ee.conf
再重启,然后就能正常工作了。需要注意的是在make的时候,可能会出现与 Werror 的编译错误(把warning当作error的错误),网上说可以去掉这个CFLAG来修正,实际测试发现,去掉报错位置处的 _ieee80211_is_robust_mgmt_frame 前的 '_' 可以绕过这个问题, 实际使用中没有其它错误。
这几天使用后发现,在信号非常好的时候,速度确实很快。然而信号稍差,连接就非常的不稳定。具体测试环境是三米的距离和一堵墙。信号丢失。正在寻求进一步的处理办法。
全志A20系列之驱动rtl8188eu:http://www.linuxdiyf.com/linux/14132.html
RedHat Linux 6.4安装RTL8188EUS无线网卡驱动:http://www.linuxdiyf.com/linux/12862.html
RedHat Linux 6.4安装RTL8188CUS无线网卡驱动:http://www.linuxdiyf.com/linux/12861.html