我剛剛在我的機器上安裝了 Ubuntu 14.04。我的核心版本是:
3.16.0-34-generic
我的問題是 Ubuntu 中的下載速度(透過測量speedtest.net
)是0.78 Mbps
在 Windows 上(安裝在同一台機器上)的下載速度21,84 Mbps
。重要的是,我還遇到了 Wi-Fi 不斷斷開的問題,我透過AES
在 Wi-Fi 路由器中強制加密來解決這個問題。我的 Wi-Fi 轉接器是
D-Link DWA-121 Wireless N 150 Pico USB Adapter
輸出的相關部分iwconfig
是:
wlan0 IEEE 802.11bgn ESSID:"UPC1307036"
Mode:Managed Frequency:2.412 GHz Access Point: 64:7C:34:3D:ED:CE
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=62/70 Signal level=-48 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:134 Missed beacon:0
我嘗試了其他此類問題的解決方案,但它們不起作用,所以我開始一個新問題。
答案1
編譯並安裝專有的 Realtek 8192cu 驅動程式。為此,請在打開的終端機中執行以下命令:
sudo apt-get update && sudo apt-get install git build-essential linux-headers-generic dkms
git clone https://github.com/dz0ny/rt8192cu.git --depth 1
cd rt8192cu
sudo make dkms
對於硬安裝使用:
make
sudo make install
代替sudo make dkms
。
若要啟用此驅動程序,請使用以下命令:
sudo modprobe 8192cu
最後,在重新啟動之前使用此命令更新 /etc/modules:
echo '8192cu' | sudo tee -a /etc/modules