Ubuntu 无法启动。只能看到极快的滚动文本

Ubuntu 无法启动。只能看到极快的滚动文本

我只看到一个闪烁的屏幕,写得太快了,无法阅读。但它们以绿色的 [OK] 开始,有时是 [failed]。这是在选择安装或从 usb 尝试之后。我已经完成了 md5checksums

值得注意的是,这并非 ubuntu 独有。我安装了 mint,但无法启动,除非我进入恢复模式并在没有硬件视频加速的情况下启动(如果有帮助的话)。

谢谢

答案1

问题已通过以下脚本修复:http://iam.tj/prototype/enhancements/Windows-acpi_osi.html

#!/bin/sh
VERSION="$(sudo strings /sys/firmware/acpi/tables/DSDT | grep -i 'windows ' | sort | tail -1)"
echo 'Linux kernel command-line options required: acpi_osi=! "acpi_osi='$VERSION'"'
read -p "Do you want to add this setting (y/n) ? " answer
if [ x$answer != xY -a x$answer != xy ]; then
  exit 1
fi
echo "Existing Command Line: ` sed -n '/.*linux[[:space:]].*root=\(.*\)/{s//BOOT_IMAGE=\1/ p;q;}' /boot/grub/grub.cfg `"
if grep -m 1 'acpi_osi=Windows' -q /etc/default/grub; then
  echo "There is already an entry; please remove it from /etc/default/grub and redo 'sudo update-grub' then re-run this script"
  exit 2
fi
sudo sed -i "s/^\(GRUB_CMDLINE_LINUX=.*\)\"$/\1 acpi_osi=! \\\\\"acpi_osi=$VERSION\\\\\"\"/" /etc/default/grub
echo "Modified Command Line: ` sed -n '/.*linux[[:space:]].*root=\(.*\)/{s//BOOT_IMAGE=\1/ p;q;}' /boot/grub/grub.cfg `"
sudo update-grub

我不明白它到底起了什么作用,但它确实有效。

相关内容