我有一个 1Gbps 的连接,但由于某种原因,Ubuntu 20.04 上的下载速度非常慢(使用有线连接而不是 wifi)。我使用 speedtest.net 进行了几次测试,在 2 个不同的发行版上得到了非常不同的结果。
Ubuntu 20.04 速度测试结果
Download speed | Upload speed
72 Mbps 450 Mbps
我使用 Pop!_OS 发行版 Live CD 进行了测试,结果完全不同
Download speed | Upload speed
996 Mbps 444 Mbps
可能是什么问题呢?
答案1
感谢@FedonKadifeli,我能够修复该问题,这似乎是一个已知错误。解决方案是将内核参数传递给 grub。
https://bugs.launchpad.net/ubuntu/+source/linux-oem-5.10/+bug/1930754
The trick is to set the boot kernel parameter "pcie_aspm=off" in '/etc/default/grub'
Like this:
GRUB_CMDLINE_LINUX_DEFAULT="splash pcie_aspm=off"
After that run;
update-grub
pcie_aspm is some sort of power management thingie which probably puts my networkcontroller to sleep or something.