我購買了一台新的 HP Pavilion 15-ab030TX,剛剛在 Win8 旁邊安裝了雙啟動 Ubuntu 14.04。但我的無線網路有時顯示訊號非常弱,或者根本沒有訊號。我嘗試了互聯網上提供的多種解決方案,但似乎沒有任何效果。另外,我在另一台筆記型電腦上託管 connectify 並開始使用互聯網,它工作了兩天,但也無法連接(可能是由於嘗試了舊帖子中的一些解決方案)。
答案1
您需要使用 dkms 安裝驅動程式。如果您從 lwfinger git 建置它,它會在核心升級後停止工作。
我打包了與 DKMS 相同的驅動程式並將其添加到 ppa 中。這樣安裝:
sudo add-apt-repository ppa:hanipouspilot/rtlwifi
sudo apt-get update
sudo apt-get install rtlwifi-new-dkms linux-firmware
並重新啟動。
答案2
通常,訊號弱是天線線連接到卡上的連接 #1 的症狀,而預設驅動程式希望在連接 #2 處看到訊號。當然,您可以打開筆記型電腦並切換電線,或者您可以安裝允許在驅動程式層級選擇天線的較新驅動程式。
請透過乙太網路、繫留或任何可能的方式獲得臨時乙太網路連接。開啟終端機並執行以下操作:
wget https://github.com/lwfinger/rtlwifi_new/archive/rock.new_btcoex.zip
unzip rock.new_btcoex.zip
cd rtlwifi_new-rock.new_btcoex
make
sudo -i
make install
echo "options rtl8723be ant_sel=2" > /etc/modprobe.d/rtl8723be.conf
exit
重啟。
每當 Update Manager 安裝更高版本的核心版本(也稱為 linux-image)時,在請求重新啟動後,您必須重新編譯:
cd rtlwifi_new-rock.new_btcoex
make clean
make
sudo make install
重新啟動,您的無線網路應該可以工作。
答案3
將 Linux 韌體升級到 1.161,將核心版本升級到 4.8。
要更新 Linux 固件,有兩種方法:-
1. Via Ubuntu Software Center:
Download this file -
[\[http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.161_all.deb\]][1][1]
Then open this Debian Package with Ubuntu Software Center and click Install
2.透過終端機:開啟終端機(ctrl+alt+T)輸入:-
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.161_all.deb
De-package it :-
sudo dpkg -i linux-firmware_1.161_all.deb
現在檢查您的核心版本:-
Type:- uname -r
Note if its generic or cloud or low latency
將核心升級到 4.8:
Go to Index of /~kernel-ppa/mainline/v4.8
For 64 bit system look under the amd64, for 32 bit one look under i386
For example, if its amd64 and your kernel is generic download these 3 files:-
linux-headers-4.8.0-040800_4.8.0-040800.201610022031_all.deb
linux-headers-4.8.0-040800-generic_4.8.0-040800.201610022031_amd64.deb
linux-image-4.8.0-040800-generic_4.8.0-040800.201610022031_amd64.deb
Now Open these files one by one in Ubuntu Software Center and install all the three.
Re-boot
Check again for your kernel version Type:- uname -r
It’s 4.8 and your WiFi should be working !!!