我正在使用 Ubuntu 16.04。我错误地删除了 Documents 文件夹中的文件和文件夹。我尝试使用删除实用,但对我没有帮助。
我不知道该使用哪个 sda*。请帮我解决一下。
$ sudo extundelete --restore-all --after $(date -d "-2 hours" +%s) /dev/sda
显示以下输出:
Only show and process deleted entries if they are deleted on or after 1521022350 and before 9223372036854775807.
extundelete: Bad magic number in super-block when trying to open filesystem /dev/sda
当我做
$ sudo fdisk -l
它显示以下内容:
请帮我如何使用 extundelete 恢复数据
答案1
sda
是整个驱动器,您应该使用,sda5
因为这似乎是您的操作系统分区。因此,如果您将命令修改为
sudo extundelete --restore-all --after $(date -d "-2 小时" +%s) /dev/sda5
它应该可以按您期望的方式工作。
答案2
看起来您正尝试extundelete
在已安装的分区上使用。相反,您应该使用 Ubuntu Live DVD 或 USB 进行启动,在实时系统中安装 extundelete,然后在未安装的分区上使用它/dev/sda5
。
您还需要一些其他媒体(另一个 USB 记忆棒即可)来恢复那些已删除的文件。
本指南将引导您完成以下操作:Extundelete 的魔力