Как я могу безопасно удалить том TrueCrypt?
Я создал раздел truecrypt и больше не хочу его. Как удалить / удалить этот раздел? Достаточно ли безопасно удаление бинарного файла?
2 ответа
Решение
AB уже написал простой метод, чтобы измельчить объем. Однако в случае зашифрованного тома вы можете пропустить уничтожение и просто также удалить том (уничтожение занимает много времени).
rm -rf /path/to/volume
Удалите файл, например:
sudo shred -u /dev/disk/by-id/<your_filename>
И, как говорит Терренс в комментариях:
Лучше потратить время на устранение, чем потом сожалеть в будущем.
от man shred
shred - overwrite a file to hide its contents, and optionally delete it
-n, --iterations=N
overwrite N times instead of the default (3)
-u, --remove[=HOW]
truncate and remove file after overwriting; See below
Delete FILE(s) if --remove (-u) is specified. The default is
not to remove the files because it is common to operate on device
files like /dev/hda, and those files usually should not be removed.
The optional HOW parameter indicates how to remove a directory entry:
'unlink' => use a standard unlink call. 'wipe' => also first
obfuscate bytes in the name. 'wipesync' => also sync each obfuscated
byte to disk. The default mode is 'wipesync', but note it can be
expensive.