Ubuntu 14.04 - 带有 Realtek 无线适配器的 Thinkpad T450S 上的 Wifi 不断断开连接

Pas*_*tin 7 wireless thinkpad networking realtek 14.04

wifi 连接每小时断开多次。问题只发生在我的工作中(不在家里)。也许有一些关于无线驱动程序的配置?

这是司机: modinfo r8192ee

filename:       /lib/modules/3.16.0-31-generic/kernel/drivers/staging/rtl8192ee/r8192ee.ko
firmware:       rtlwifi/rtl8192eefw.bin
description:    Realtek 8192E 802.11n PCI wireless
license:        GPL
author:         Larry Finger    <Larry.Finger@lwfinger.net>
author:         Realtek WlanFAE <wlanfae@realtek.com>
srcversion:     046553152F8274C9D21FCAC
alias:          pci:v000010ECd0000818Bsv*sd*bc*sc*i*
depends:        mac80211,cfg80211
staging:        Y
intree:         Y
vermagic:       3.16.0-31-generic SMP mod_unload modversions 
signer:         Magrathea: Glacier signing key
sig_key:        6A:63:E8:EF:0C:63:AB:DB:14:5F:D1:7C:AA:A9:7B:8C:69:73:45:84
sig_hashalgo:   sha512
parm:           swlps:bool
parm:           swenc:using hardware crypto (default 0 [hardware])
 (bool)
parm:           ips:using no link power save (default 1 is open)
 (bool)
parm:           fwlps:using linked fw control power save (default 1 is open)
 (bool)
parm:           debug:Set debug level (0-5) (default 0) (int)
Run Code Online (Sandbox Code Playgroud)

编辑:我认为它在 14.10 下更不稳定

小智 1

我的 Lenovo Y50 (rtl8723be) 上也遇到过类似的问题,wifi 会随机断开(5-10 分钟之间)

我发现这个线程符合我的问题:http://ubuntuforums.org/showthread.php ?t=2262957

用户 Pilot6 建议从此存储库https://github.com/lwfinger/rtlwifi_new更新驱动程序,它看起来也有适用于您的 (rtl8192ee) 卡的驱动程序。

这至少对我来说稳定了 wifi 连接

指示;

#dependencies
sudo apt-get install git build-essential

git clone https://github.com/lwfinger/rtlwifi_new.git /tmp/rtlwifi
cd /tmp/rtlwifi
make
sudo make install
sudo reboot -n
Run Code Online (Sandbox Code Playgroud)