我正在尝试将新的 Ubuntu 24.04 安装到我的新笔记本电脑 HP 14-ep0523sa Pavilion 上。不幸的是,安装后,它直接启动到命令行界面,但不是通常的界面,只是 BusyBox。当我输入“exit”时,我收到此错误消息:
BusyBox v1.36.1 (Ubuntu 1:1.36.1-6ubuntu3) built-in shell (ash) Enter 'help' for a list of built-in commands.
(initramfs) exit
Gave up waiting for root file system device. Common problems:
Boot args (cat /proc/cmdline)
Check rootdelay= (did the system wait long enough?) Missing modules (cat /proc/modules; ls /dev)
ALERT! UUID=fce50371-179c-4330-94ca-480ab3b7967b does not exist. Dropping to a shell!
BusyBox v1.36.1 (Ubuntu 1:1.36.1-6ubuntu3) built-in shell (ash) Enter 'help' for a list of built-in commands.
(initramfs)
似乎安装正常,启动实时会话时没有任何问题。安装时我使用了所有默认选项,并且尝试使用不同的选项重新安装过几次。
谢谢你的帮助,我通常对 Ubuntu 很熟悉,但是这个却让我困惑!
编辑:这是结果sudo gdisk -l /dev/sdb
GPT fdisk (gdisk) version 1.0.10
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Disk /dev/sdb: 31246336 sectors, 119.2 GiB
Model: SDINFEO4-128G
Sector size (logical/physical): 4096/4096 bytes
Disk identifier (GUID): CA1DF70A-21DF-4619-A574-DA77EF120E94
Partition table holds up to 128 entries
Main partition table begins at sector 2 and ends at sector 5
First usable sector is 256, last usable sector is 31246330
Partitions will be aligned on 256-sector boundaries
Total free space is 251 sectors (1004.0 KiB)
Number Start (sector) End (sector) Size Code Name
1 256 275455 1.0 GiB EF00
2 275456 31246079 118.1 GiB 8300
编辑 2:奇怪的是,我在使用 Calamares 安装程序的 Kubuntu 上遇到了同样的问题,但 Debian 安装没有问题。该问题似乎是 Ubuntu 特有的。
答案1
似乎找不到 UUID fce50371-179c-4330-94ca-480ab3b7967b。也许 UUID 错误。我会从 Ubuntu 媒体启动实时会话并运行 blkid - 您是否看到列出的硬盘分区引用的 UUID?您可以通过进入 grub 并编辑启动参数来编辑 UUID。
您还可以检查文件系统:
sudo fsck /dev/sdb3
或者重新安装 grub:
sudo mount /dev/sdb3 /mnt sudo grub-install --root-directory=/mnt /dev/sdb
如果失败了,也许可以编辑 grub 配置。挂载它,chroot 为挂载点,然后编辑 grub 文件:
sudo mount /dev/sdb3 /mnt sudo chroot /mnt nano /etc/default/grub
修改以下行:
GRUB_CMDLINE_LINUX="安静的启动"
到
GRUB_CMDLINE_LINUX="安静启动根目录=UUID=fce50371-179c-4330-94ca-480ab3b7967b"
保存然后运行:
更新 grub