如何在没有权限的情况下从分区恢复数据?

如何在没有权限的情况下从分区恢复数据?

我有一个内置驱动器,其中有一个我无法再访问的分区:

You do not have the permissions necessary to view the contents

原因是 Windows 操作系统具有快速启动功能。为此提供了许多解决方案,但都不起作用。

sudo mount -t ntfs-3g -o ro /dev/sda4 /media/windows/ NTFS signature is missing. Failed to mount '/dev/sda4': Invalid argument The device '/dev/sda4' doesn't seem to have a valid NTFS. Maybe the wrong device is used? Or the whole disk instead of a partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

ntfsfix 以无法恢复的错误结束:

sudo ntfsfix /dev/sda4
Mounting volume... NTFS signature is missing.
FAILED
Attempting to correct errors... NTFS signature is missing.
FAILED
Failed to startup volume: Invalid argument
NTFS signature is missing.
Trying the alternate boot sector
Unrecoverable error
Volume is corrupt. You should run chkdsk.

sudo fsck /dev/sda
fsck from util-linux 2.27.1
e2fsck 1.42.13 (17-May-2015)
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck.ext2: Bad magic number in super-block while trying to open /dev/sda

The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem.  If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>
 or
    e2fsck -b 32768 <device>

我尝试了 e2fsck,但是没有作用。

唯一可行的解​​决方案是启动 Windows 并禁用快速启动,但我无法再启动 Windows。

我只想以某种方式恢复我的用户数据,有什么办法吗?

编辑:同时,我删除了所有只剩下数据的分区。它看起来是这样的: 在此处输入图片描述

谢谢

相关内容