如何使用 Ubuntu 活动磁盘从坏掉的笔记本电脑硬盘中获取数据?

如何使用 Ubuntu 活动磁盘从坏掉的笔记本电脑硬盘中获取数据?

我的硬盘崩溃了,所以我尝试使用 Ubuntu 实时磁盘检索硬盘上的数据。我可以访问桌面,然后从那里打开“文件”,并尝试打开“1.0 TB 卷”,我认为这是我的硬盘。等待了一段时间后,我收到了以下消息:

Error mounting /dev/sda1 at /media/ubuntu/282E16D52E169BBE: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=999,gid=999,dmask=0077,fmask=0177" "/dev/sda1" "/media/ubuntu/282E16D52E169BBE"' exited with non-zero exit status 13: ntfs_attr_pread_i: ntfs_pread failed: Input/output error
Failed to read hiberfil.sys: Input/output error
Failed to mount '/dev/sda1': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.

我尝试使用系统修复盘,但它花了大约 8 个小时“修复”问题,如果我不关闭它,它还会继续运行。我并不介意等待,但 8 小时后我怀疑它是否能起到什么作用。

我能做什么?请避免使用任何过于技术性的单词、短语或缩写,因为我不太擅长使用电脑。

答案1

从实时媒体中,首先尝试以只读模式安装驱动器。

sudo mkdir /mnt/tmp
sudo mount -tntfs-3g -oro /dev/sda1 /mnt/tmp

然后尝试从 /mnt/tmp 读取您想要的任何内容 另一种更危险的方法是尝试使用(记录不全的)选项 remove_hiberfile 进行挂载,这将删除整个最后的会话。

相关内容