大家好我正在跑步
uname -a
Linux ubuntu 3.16.0-23-generic #31-Ubuntu SMP Tue Oct 21 17:56:17 UTC 2014 x86_64
x86_64 x86_64 GNU/Linux
在 USB 隨身碟上
我的問題是,我的 wifi 訊號隨著距離的增加而迅速減弱,通常我在房間的窗戶上上網,但在 ubuntu 上訊號非常低。
我試圖透過使用來解決
sudo modprobe -r iwlwifi
但我收到這個錯誤
rmmod: ERROR: missing module name.
modprobe: FATAL: Error running remove command for iwlwifi
嘗試透過改變來修復
/etc/modprobe.d/iwlwifi.conf
並添加行
options iwlwifi 11n_disable=1
但仍然沒有奏效
我在下面添加有關我的系統的更多信息
lspci -nn | grep 0280
08:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8188EE
Wireless Network Adapter [10ec:8179] (rev 01)
iwconfig 附近
iwconfig
eth0 no wireless extensions.
wlan0 IEEE 802.11bgn ESSID:""
Mode:Managed Frequency:2.412 GHz Access Point:
Bit Rate=72.2 Mb/s Tx-Power=20 dBm
Retry short limit:7 RTS thr=2347 B Fragment thr:off
Power Management:off
Link Quality=70/70 Signal level=-28 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:332 Missed beacon:0
lo no wireless extensions.
iwconfig far(不知道是否有幫助)
iwconfig
eth0 no wireless extensions.
wlan0 IEEE 802.11bgn ESSID:""
Mode:Managed Frequency:2.412 GHz Access Point:
Bit Rate=72.2 Mb/s Tx-Power=20 dBm
Retry short limit:7 RTS thr=2347 B Fragment thr:off
Power Management:off
Link Quality=46/70 Signal level=-64 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:13 Missed beacon:0
lo no wireless extensions.
iwlwifi.conf
# /etc/modprobe.d/iwlwifi.conf
# iwlwifi will dyamically load either iwldvm or iwlmvm depending on the
# microcode file installed on the system. When removing iwlwifi, first
# remove the iwl?vm module and then iwlwifi.
remove iwlwifi \
(/sbin/lsmod | grep -o -e ^iwlmvm -e ^iwldvm -e ^iwlwifi | xargs /sbin/rmmod) \
&& /sbin/modprobe -r mac80211
如果需要的話請向我詢問更多信息,抱歉英語不好。
答案1
您的 Realtek 卡使用驅動程式 rtl8188ee。您可以嘗試一些驅動程式參數。第一的:
sudo -i
rm /etc/modprobe.d/rtl8188ee.conf
echo "options rtl8188ee msi=1" > /etc/modprobe.d/rtl8188ee.conf
modprobe -r rtl8188ee
modprobe rtl8188ee
exit
有什麼改進嗎?如果沒有改善,請嘗試重新啟動。
除了報告的連結品質發生變化之外,您還有哪些症狀?
答案2
有點晚了,但對於有幫助的人來說 - @chilli555 的解決方案工作得很好,但是對我來說,我必須做一個額外的步驟(禁用英特爾驅動程式)才能完美地為我工作 -
driver=$(lspci -nn | grep 0280 | awk '{print tolower($9)}')
rm /etc/modprobe.d/$driver.conf
echo "options $driver msi=1" > /etc/modprobe.d/$driver.conf
modprobe -r $driver
modprobe $driver
rm /etc/modprobe.d/iwlwifi.conf
echo "options iwlwifi 11en_disable=1" > /etc/modprobe.d/iwlwifi.conf
modprobe -r iwlwifi
modprobe iwlwifi
將上述腳本寫入檔案並執行此可執行檔。
重新啟動系統