hyper-v安装manjaro虚拟机

问题汇总:

  1. 安装时启动界面卡在了starting show plymouth boot screen怎么解决?
  • 原因分析:这是因为 显卡驱动 和 plymouth 动画共同导致的。解决方案分为两步:

(1)安装时:按 e 进入 GRUB 编辑界面,在 linux 那一行追加nomodeset splash=0两个设置。

  • nomodeset:禁用内核级显卡驱动,避免 Plymouth 与虚拟显卡冲突(Hyper-V/VirtualBox 等必需)。
  • splash=0:直接关闭 Plymouth 动画渲染。

(2)安装完:

sudo nano /etc/default/grub
# 在文件前部找到下面这行,加上 nomodeset,并把原来的 splash 设置为 0
GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset splash=0 ..."
posted @ 2025-07-28 23:00  7hu95b  阅读(28)  评论(0)    收藏  举报