Como eu poderia excluir com segurança um volume TrueCrypt?

0

Eu criei uma partição TrueCrypt e não a quero mais. Como remover / excluir esta partição? A exclusão do arquivo binário é segura o suficiente?

    
por vinayawsm 23.07.2015 / 20:10

2 respostas

0

A.B. já escreveu um método simples para destruir o volume. No entanto, no caso de volume criptografado, você pode pular a trituração e simplesmente excluir o volume também (a trituração leva tempo).

rm -rf /path/to/volume
    
por ps95 23.07.2015 / 21:15
1

Remova o arquivo com, por exemplo:

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

E como Terrance diz nos comentários:

% bl0ck_qu0te%

de 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.
    
por A.B. 23.07.2015 / 21:03