Ubuntu

rtl8723be Realtek Wifi-Card 驅動程序無法在 Ubuntu 14.04 上執行

  • January 12, 2015

我在我的新聯想 G50-70 上安裝了 Ubuntu 14.04。wifi 在 Windows 中完美執行,但在 Ubuntu 上表現異常。它很慢,根本不載入較重的網站,過了一會兒,完全下降了。

經過一番研究,我發現:https ://bugs.launchpad.net/ubuntu/+source/linux/+bug/1320070

sudo rmmod rtl8723be && sudo modprobe rtl8723be沒有改變任何東西,wifi仍然消失了。

我嘗試的第一件事是sudo make install來自這個 repo 的驅動程序:https ://github.com/lwfinger/rtlwifi_new 。不幸的是,什麼都沒有改變。

接下來我嘗試禁用睡眠功能: echo "options rtl8723be fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf,沒有任何運氣。

然後我嘗試了: sudo rmmod -v ideapad_laptop 但是刪除該模組也沒有幫助。

以下是一些環境資訊:

uname -a
Linux zirconcode 3.13.0-40-generic #69-Ubuntu SMP Thu Nov 13 17:53:56 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

lsusb | grep Rea
Bus 002 Device 006: ID 0bda:b728 Realtek Semiconductor Corp. 
Bus 002 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller

lsmod | grep rtl
rtl8723be             139336  0 
btcoexist             183378  1 rtl8723be
rtl_pci                39740  1 rtl8723be
rtlwifi               121008  3 btcoexist,rtl_pci,rtl8723be
mac80211              626557  3 rtl_pci,rtlwifi,rtl8723be
cfg80211              484040  2 mac80211,rtlwifi

我被困住了,因為似乎沒有一個解決方案有效。任何想法將不勝感激。

將我的核心從 3.13 升級到 3.16 ( http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/ ) 並從https://github.com/lwfinger/rtlwifi_new重新安裝新驅動程序似乎解決了我的問題。不要忘記重新啟動。

注意:升級核心本身並沒有幫助。

引用自:https://unix.stackexchange.com/questions/170012