deepin系统无线网络卡死或者极慢的解决方案
处理这个网络问题我也尝试了多种方法,把这些方法记录下来希望能帮到一些朋友
第一种 驱动篇
查看驱动型号
lspci | grep Wireless
笔者的是Intel Corporation Centrino Wireless-N 1000 [Condor Peak]
下载对应驱动
到驱动下载地址下载对应型号的驱动
该网站罗列了大部分Linux的无线网卡驱动,用户可以根据自己网卡型号搜索对应的驱动
安装
安装的步骤极其简单
tar xf xxx.tgz sudo cp iwlwifi-*.ucode /lib/firmware sudo systemctl restart network-manager
或者安装完直接重启系统
本文给出了在deepin下无线驱动未安装导致无线网络故障问题的解决方案。如果确认是驱动原因导致,可按上面思路处理即可。否则,以上方法并不适用
转载自https://www.cnblogs.com/Franken-Fran/p/deepin_wireless.html
第二种 更改配置文件
1、打开终端之后,在终端中输入下面的代码:(vim等工具都可以更改文件内容)
sudo deepin-editor /etc/modprobe.d/iwlwifi.conf
2、将“options iwlwifi 11n_disable=1 bt_coex_active=0 power_save=0 swcrypto=1”
中的“11n_disable=1”修改为“11n_disable=0”
然后保存修改后的代码关闭编辑器,重启一下电脑,然后重新体验一下,看一下网速是否得到了提升。
3、如果问题没有解决的话也可以将:
“options iwlwifi 11n_disable=1 bt_coex_active=0 power_save=0 swcrypto=1”
中的“11n_disable=1”修改为“11n_disable=8”
转载自:https://jingyan.baidu.com/article/6f2f55a1f69a70f5b93e6cab.html
第三种 也是驱动,不过我没尝试
git clone https://github.com/lwfinger/rtlwifi_new cd rtlwifi_new # 查看网卡型号 我的是 rtl8723be lspci | grep Wireless # 编译环境安装 sudo apt-get install linux-headers-generic build-essential git # 编译 make install # 向内核移除rtl8723be模块 sudo modprobe -r rtl8723be # 重新添加 rtl8723be 模块 sudo modprobe rtl8723be