[Newbies] 安装卡住
Tofloor
poster avatar
deepin
2026-06-06 15:41
Author

使用固态硬盘安装,卡在 begin:running/scripts/init-premount

Reply Favorite View the author
All Replies
avatar
183******60
deepin
2026-06-07 08:39
#1

这句话通常出现在 Linux 系统启动日志 里,含义如下:

begin: Running /scripts/init-premount
👉 开始执行 /scripts/init-premount 这个脚本


详细解释

这是 initramfs(初始内存文件系统) 启动过程中的一个阶段:

部分 含义
begin: 表示某个启动阶段开始
Running 正在运行
/scripts/init-premount 一个在 挂载根文件系统之前 执行的脚本

它在干什么?

init-premount 脚本通常用来:

  • 加载 额外的内核模块
  • 配置 网络(PXE 启动)
  • 设置 LVM / RAID / 加密磁盘
  • 等待设备就绪(udev
  • 处理特殊存储(iSCSI、NVMe 等)

📌 它 不是挂载根分区,而是为挂载做准备。


常见场景

你可能在这几种情况下看到它:

  • Ubuntu / Debian 开机时卡住或变慢
  • 服务器使用 LVM / 加密 / 网络启动
  • 修改过 initramfsgrub
  • 磁盘 / UUID 有问题

如果你遇到问题(比如卡在这里)

常见原因:

  • 磁盘损坏或没插好
  • /etc/fstab 配置错误
  • LVM / RAID 初始化失败
  • initramfs 损坏(可尝试 update-initramfs -u

如果你愿意,可以把 完整报错或前后几行日志 发给我,我可以帮你精确定位问题 👍

Reply View the author
avatar
deepin流云
Super Moderator
Community OP
2026-06-08 09:54
#2

https://www.deepin.org/zh/deepin-25-installation/

对照安装指南排查下,完整的报错界面拍照看看

Reply View the author