Ubuntu 卡顿,每 5 秒就卡一次

Ubuntu 卡顿,每 5 秒就卡一次

我昨天刚刚在我的 Acer 4820TG 上安装了 Ubuntu,但一切都很滞后。每隔 5 秒(大约),我的鼠标和键盘就会卡住,屏幕闪烁并循环。

以下是展示该行为的视频。
[在此视频中,我正在绕着鼠标转圈,你会看到我的鼠标每 5 秒停一次。]

答案1

我的 Acer Aspire 4820TG 上安装了 Ubuntu 服务器和 2 个 Ubuntu 桌面版本。服务器和一个桌面是 14.04,另一个桌面是 15.04,我没有遇到这些问题。我认为这可能与英特尔显卡和 Radeon 显卡有关。尝试让它只使用“独立显卡”。

-Boot up into your BIOS (f2) at startup.
-Go -> to 'Main'
-Scroll to Graphic mode and make it [Discrete].
-Save and Exit

这将使你的显卡无法切换。这似乎为我解决了很多问题。即使在 Windows 上,切换显卡对我来说也是个大问题。总是导致 BSOD。

答案2

有点晚了。我知道上面的答案已经被采纳了,但我想分享我的经验,希望对其他人有所帮助。这个问题与 ACPI 有关。我写了一篇 bash 脚本这可以自动解决这个问题:

if grep -q acpi_rev_override "/etc/default/grub"; then
 echo 'Found settings entry, nothing changed';
else
 sudo sed -i 's/splash/splash acpi_rev_override=1/g' /etc/default/grub
 echo "Finished successfully. please reboot to apply the new settings"
fi

如果需要的话,我还发布了一个反向脚本:

if grep -q acpi_rev_override=1 "/etc/default/grub"; then
 sudo sed -i 's/splash acpi_rev_override=1/splash/g' /etc/default/grub
 echo "Reset finished successfully"
else
 echo 'No settings found, exiting.';
fi

相关内容