Grub 救援错误没有这样的分区

Grub 救援错误没有这样的分区

我意外地格式化了安装 Ubuntu 的驱动器。现在在启动时它直接给出错误 no participation grub rescue。我无法从可启动的 USB 驱动器安装任何操作系统。所以任何人都可以给我一个真正的解决方案。

提前致谢

答案1

使用 Ubuntu live-dvd/usb 启动计算机。

选择尝试。

发起现场直播。

打开一个终端。

识别正在运行的驱动器:

sudo su
fdisk -l

假设是/dev/sda,运行:

dd if=/dev/zero of=/dev/sda bs=512 count=1

在哪里:

if=/dev/zero - Read data from /dev/zero and write it to /dev/sda.
of=/dev/sda - /dev/sda is the drive to remove the MBR including all partitions.
bs=512 - Read from /dev/zero and write to /dev/sda up to 512 bytes at a time.
count=1 - Copy only 1 BLOCK input blocks.

相关内容