Как я мог безопасно удалить truecrypt объем?

Я создал truecrypt раздел, и я больше не хочу его. Как удалить/удалить этот раздел? Удаление двоичного файла достаточно безопасно?

0
задан 23 July 2015 в 21:10

2 ответа

A.B. уже записал простой метод уничтожить объем. Однако в случае зашифрованного тома, можно пропустить уничтожение и просто удалить объем также (уничтожение занимает время).

rm -rf /path/to/volume
0
ответ дан 1 October 2019 в 06:32

Удалите файл с, например:

sudo shred -u /dev/disk/by-id/<your_filename>
<час>

И поскольку Terrance заявляет в комментариях:

Лучше для занимания время, чтобы устранить, затем сожалеть в будущем.

<час>

от 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.
1
ответ дан 1 October 2019 в 06:32

Другие вопросы по тегам:

Похожие вопросы: