尝试安装 ubuntu 时检测到硬盘但无法挂载

尝试安装 ubuntu 时检测到硬盘但无法挂载

当我尝试使用 USB 闪存安装 ubuntu 时,我开始收到此错误。我可以从 USB 运行 ubuntu,当我运行 ubuntu 时,它显示我的硬盘,但当我尝试安装硬盘时,它显示无法安装硬盘。我的硬盘显示在启动菜单中,但在 ubuntu 安装菜单中,安装停留在检测硬盘阶段。现在我的硬盘无法正常工作,而我的硬盘里有一些我家人的重要照片,有人能帮我吗?

[51.473986] print req_error : I/O error, dev sda, sector 1024000 flag 80700
[71.298386] print req_error : I/O error, dev sda, sector 1024000 flag 000

答案1

您的 HDD 上可能有一个或多个坏块,或者 HDD 出现故障。

首先,打开Disks应用程序,转到SMART Data & Tests,然后运行测试。将结果作为对问题的编辑发布。然后查看窗口SMART Data并发布屏幕截图。可能需要两张屏幕截图才能捕获所有数据以供我查看。

在我查看了 SMART 信息后,你可能需要对硬盘进行坏块处理,但要等我同意。

其次,要对磁盘进行坏块处理,如果 HDD 是空的,或者您已在其他地方备份了数据,请使用gparted安装新的 MBR 或 GPT 分区表(这将擦除驱动器),然后创建一个大的 ext4 分区,然后按照这些说明对磁盘进行坏块处理...

    注意:不要中止坏块扫描!

    注意:不要对 SSD 造成坏块

    注意:请先备份您的重要文件!

    注意:这将花费很多小时

    注意:您可能面临硬盘故障

启动至 Ubuntu Live DVD/USB。

terminal...

sudo fdisk -l# 识别所有“Linux 文件系统”分区

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

或者

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

-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.

相关内容