如何在Linux中永久删除已删除的文件?

如何在Linux中永久删除已删除的文件?

如何防止在 Linux 中恢复已删除的文件(无需采取严厉措施(即重置))?

答案1

一般来说,粉碎或擦除命令应该可以解决问题。

例如,此安全删除 doc 下的所有内容。

$ wipe -rfi doc/*

当然光盘转储应该也不错 ->$ dd

答案2

如果文件已被删除,则必须擦除可用空间。

如果您可以进行单遍擦除,最快的方法是:

cat /dev/zero > zero.file
sync
rm zero.file

参考超级用户的原始答案:https://superuser.com/a/19488/9231

相关内容