Ubuntu 14.04 无线不稳定

Ubuntu 14.04 无线不稳定

我正在尝试使用互联网,我已经用电线连接了一个月了。我到处寻找问题的答案,但它们就是不起作用。我有一个 realtek 无线路由器。当我尝试使用我的无线网络时,它就变得很糟糕。它非常非常慢。当我尝试使用我的无线网络时,它从不工作到网速非常慢。我的手机和我的另一台电脑工作正常,另一台电脑有 Windows。所以这一定是 Linux 的问题。我在 Ubuntu 14.04 上运行,Co

结果lspci -nnk | grep -iA2 net

02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 07) 
    Subsystem: Hewlett-Packard Company Device [103c:2190] 
    Kernel driver in use: r8169 
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8188EE Wireless Network Adapter [10ec:8179] (rev 01)
    Subsystem: Hewlett-Packard Company Device [103c:197d]
    Kernel driver in use: rtl8188ee

答案1

有几个修复方法,选项 1 是echo "options rtl8188ee ips=0 fwlps=0" | sudo tee /etc/modprobe.d/rtl8188ee.conf重新启动,如果没有改善,我们可以安装反向移植

sudo apt-get install linux-headers-generic build-essential
wget https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v3.19-rc1/backports-3.19-rc1-1.tar.gz
tar -zxvf backports-3.19-rc1-1.tar.gz
cd backports-3.19-rc1-1
make defconfig-rtlwifi
make
sudo make install

重启

如果你安装更新后发现 Wi-Fi 也存在同样的问题,则很可能是由内核更新引起的,那么你需要

cd backports
make clean
make defconfig-rtlwifi
make
sudo make install

重启

相关内容