Wifi 掉线并且在重新启动之前不会重新连接(14.04 使用 RTL8723BE)

the*_*ods 19 wireless

我有一台新的 Sager NP2650 笔记本电脑,安装了全新的 Ubuntu 14.04LTS。它有一个 Realtek RTL8723BE 无线适配器。最初安装后我没有无线,但我能够按照此线程上的说明进行操作:http : //ubuntuforums.org/showthread.php?t=2205497。我不得不像线程所说的那样从 git 检出早期版本的驱动程序,以便让它在我的系统上编译。

问题是连接最终在一个小时左右丢失,尽管网络管理器仍将其显示为已连接。如果我禁用并重新启用 Wi-Fi 或网络,则它不起作用。wifi只是无休止地尝试连接,但失败了。

如果我重新启动它会再次正常工作一段时间。

我运行了在论坛其他地方找到的无线诊断脚本并将我的结果上传到这里:

http://pastebin.ubuntu.com/7355768/

我可以使用一些帮助。谢谢!

Mic*_*jer 12

我有同样的问题。对我来说,解决方法是删除并重新插入 rtl8723be 模块:

root@lenovob5400# rmmod rtl8723be && modprobe rtl8723be
Run Code Online (Sandbox Code Playgroud)

当然这不是解决方案,但比重新启动要好。Ubuntu 不能与如此流行的 wifi 卡一起使用真是太可惜了。

顺便说一句,我尝试了内核 3.15,但它有同样的问题(和其他一些问题)。

期待更好的解决方案。去抓黑客!;-)

更新:

朋友们,请投票给相关的ubuntu bug

更新 2:

即将发布的 ubuntu内核 3.13.0-25.47 修复#1240940 错误,但是,从 ppa 安装此内核后,rtl8723be 模块确实存在,但我根本无法连接。目前我正在使用标准 3.13.0-24-generic 内核和 rtl8723be 内核模块:https : //github.com/lwfinger/rtl8723be.git at 604aa9058fb9e5bb1cf571c99989d081f8fc8b9b commit。

更新 3:

我用 winxp 64 驱动程序(和其他人)尝试了 ndiswrapper 1.9。全部加载失败:

[  327.503426] ndiswrapper version 1.59 loaded (smp=yes, preempt=no)
[  327.517958] ndiswrapper: driver netrtwlane (Realtek Semiconductor Corp.,08/02/2013,2010.5.0724.2013) loaded
[  327.519049] ndiswrapper (NdisWriteErrorLogEntry:188): log: C0001388, count: 1, return_address: ffffffffa05e5d9f
[  327.519052] ndiswrapper (NdisWriteErrorLogEntry:191): code: 0x605
[  327.519143] ndiswrapper (mp_init:211): couldn't initialize device: C001001E
[  327.519146] ndiswrapper (pnp_start_device:395): Windows driver couldn't initialize the device (C0000001)
[  327.519150] ndiswrapper (mp_halt:254): device ffff8800cd747880 is not initialized - not halting
[  327.519151] ndiswrapper: device eth%d removed
[  327.519380] ndiswrapper: probe of 0000:04:00.0 failed with error -22
Run Code Online (Sandbox Code Playgroud)

我尝试了另一种技巧 -fwlps=0rtl8723be模块添加参数。到现在为止还挺好。我们会看到...

  • 我尝试了 fwlps=0 参数,到目前为止一切顺利!我已经起床大约 24 小时了,没有滴!对于想要尝试此操作的其他人,我使用了命令 `echo "options rtl8723be fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf` 让我再等一天,我会接受你的回答。很有帮助!在进行了一些挖掘之后,看起来其他 realtek 卡也需要类似的修改。参见 [archlinux 帖子](https://bbs.archlinux.org/viewtopic.php?id=132931) 和 [ubuntuforums 帖子](http://ubuntuforums.org/showthread.php?t=2180314&page=2) (4认同)
  • 为 rtl8723be 模块添加 fwlps=0 参数也对我有用。感谢您的修复。 (2认同)