Internet速度在Linux中确实很慢,但在Windows中却不

一点点

在Windows上,下载100 MB的文件不到一分钟,而在Linux上,则需要1个小时。

为什么会有如此大的差异,我应该怎么做才能加快速度?

我使用的是belkin制造的无线网络适配器,由于它在Windows上可以正常工作,我怀疑它存在某些驱动程序问题或其他问题。

如果需要,我将使用命令输出来编辑此帖子!

-lsusb的输出-

Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 003: ID 046d:0990 Logitech, Inc. QuickCam Pro 9000
Bus 003 Device 002: ID 04d9:fa50 Holtek Semiconductor, Inc. 
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 050d:2103 Belkin Components F7D2102 802.11n N300 Micro Wireless Adapter v3000 [Realtek RTL8192CU]
Bus 001 Device 002: ID 413c:2003 Dell Computer Corp. Keyboard
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

--- lsmod的输出| grep rtl-

rtl8xxxu              122880  0
rtl8192cu              65536  0
rtl_usb                20480  1 rtl8192cu
rtl8192c_common        53248  1 rtl8192cu
rtlwifi                77824  3 rtl_usb,rtl8192c_common,rtl8192cu
mac80211              761856  4 rtl_usb,rtlwifi,rtl8192cu,rtl8xxxu
cfg80211              581632  2 mac80211,rtlwifi
chili555

请检查是否已加载两个可能冲突的驱动程序:

lsmod | grep rtl

如果您发现同时加载了rtl8192cu和rtl8xxxu,则将其列入黑名单:

sudo -i
echo "blacklist rtl8192cu"  >>  /etc/modprobe.d/blacklist.conf
exit

进行此更改后,请重新启动并让我们听到结果。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章