双启动后出现“无法从 hd1 读取扇区 0x728b6c0”

双启动后出现“无法从 hd1 读取扇区 0x728b6c0”

我已经在笔记本电脑的第二个 SSD 驱动器上安装了 Ubuntu,但是当 Grub 出现并选择 Ubuntu 时,出现了以下错误:“错误:无法从 hd1 读取扇区 0x728b6c0。您需要先加载内核。”每次我尝试启动时,扇区都不同。Windows 8 正常启动。您知道如何修复此问题吗?Grub 修复无济于事……

答案1

我建议你做三件事......

- 使用Disks应用程序检查 SMART 数据和测试

  • 用 SMART 数据的截图编辑你的问题,我会看看

  • 运行 SMART 测试

-fsck你的 Ubuntu 分区

  • 启动至 Ubuntu Live DVD/USB
  • 打开terminal窗户
  • 类型sudo fdisk -l
  • 识别“Linux 文件系统”的 /dev/XXXX 设备名称
  • 输入sudo fsck -f /dev/sdb3# 用你之前找到的数字替换 XXXX
  • 如果有错误,请重复 fsck 命令
  • 类型reboot

- 执行坏块扫描

启动到 Ubuntu Live DVD/USB,从 /dev/sdb3 备份所有数据,然后在terminal...

Note: do NOT abort a bad block scan!
Note: do NOT bad block a SSD
Note: backup your important files FIRST!

sudo e2fsck -fcky /dev/sdb3# 只读测试

或者

sudo e2fsck -fccky /dev/sdb3# 非破坏性读写测试(受到推崇的)

-k 很重要,因为它会保存之前的坏块表,并将任何新的坏块添加到该表中。如果没有 -k,您将丢失所有之前的坏块信息。

-fccky 参数...

   -f     Force checking even if the file system seems clean.

   -c     This option causes e2fsck to use badblocks(8) program  to  do  a
          read-only  scan  of  the device in order to find any bad blocks.
          If any bad blocks are found, they are added  to  the  bad  block
          inode  to  prevent them from being allocated to a file or direc‐
          tory.  If this option is specified twice,  then  the  bad  block
          scan will be done using a non-destructive read-write test.

   -k     When combined with the -c option, any existing bad blocks in the
          bad blocks list are preserved, and any new bad blocks  found  by
          running  badblocks(8)  will  be added to the existing bad blocks
          list.

   -y     Assume  an answer of `yes' to all questions; allows e2fsck to be
          used non-interactively.  This option may not be specified at the
          same time as the -n or -p options.

更新#1:

检查 BIOS 版本后,sudo dmidecode -s bios-version确定有较新的 BIOS 可用。安装了较新的版本,到目前为止,似乎已经解决了问题。

相关内容