使用 ntfsundelete 取消删除

使用 ntfsundelete 取消删除

尝试使用 ntfsundelete 取消删除某些文件:

sudo ntfsundelete /dev/sda1 -v -S 300m-20g -p 100 -o /mnt/bigboy/ntfsundelete/

但我得到了:

You must specify exactly one device.

据我所知,我正在指定要从中恢复文件的设备以及文件的位置。

我错在什么地方?

答案1

语法似乎需要这样ntfsundelete [options] device。因此您的示例应如下所示:

sudo ntfsundelete -v -S 300m-20g -p 100 -o /mnt/bigboy/ntfsundelete/ /dev/sda1

虽然我没有指定输出,但这对我有用-o。我只是让它将数据转储到我当前所在的目录中。

相关内容