英特尔NUC5CPYH – Ubuntu服务器14.04.2和15.04安装后崩溃

英特尔NUC型号NUC5CPYH使用Ubuntu Server 14.04.2和Ubuntu Server 15.04时遇到过这个问题。

完成安装后(根据我的经验,最好从外部光盘驱动器完成),新的Ubuntu安装启动,但在屏幕尝试切换模式(但不是完整的graphics用户界面,这是Ubuntu服务器不使用)它崩溃。 崩溃似乎是全面的,而不仅仅是一个显示失败。 如果这是相关的,我使用VGA而不是HDMI。

我find了一个解决scheme – 见下文。

在完成安装后,要成功引导到Ubuntu服务器,我需要强制它在文本模式下启动,但是我觉得这说起来容易做起来难。 最后这为我工作:

# boot with SystemRescueCD or similar, which gets to a prompt fine (unlike Ubuntu!) mkdir /mnt/ubuntu # assuming your new ubuntu system is installed at /dev/sda1: (check with lsblk) mount /dev/sda1 /mnt/ubuntu cd /mnt/ubuntu/boot/grub # quick'n'dirty fix so we can boot once sed -ir 's/(set linux_gfx_mode=).*/\1text/' grub.cfg # that's it, we can try booting into Ubuntu now reboot # after successful booting into full Ubuntu system, do: echo "GRUB_GFXPAYLOAD_LINUX=text" | sudo tee -a /etc/default/grub # rebuild grub.cfg the 'proper' way sudo update-grub # and check that it still works.... reboot 

在文本模式下,通过引导时间grub菜单,可能会有一个更优雅的方式来强制一次性启动,但我找不到一个工作(build议欢迎!),因此我正在logging此解决scheme,并希望它帮助某人。

我还没有尝试安装Ubuntu的GUI(因为我不需要一个)…

从14.04.3版开始安装,解决了这个问题