Why do wipe out files?
(needs writing)
Tools
There are several tools to achieve this.
On Command Line:
- shred
- srm
On GUI
Wiping
Wiping files thru command line
To wipe a file you can use the following command:
$ shred -f -n35 -v -z -u file
Where: -f forces to averwrite, -n35 overwrites it 35 times, -v shows you what's going on, -z fills with zero, -u removes the file after overwriting it, file is the name of the file.
To wipe a partition you can use the following command:
$ shred -f -n35 -v -z -u /dev/sdX
Where: -f forces to averwrite, -n35 overwrites it 35 times, -v shows you what's going on, -z fills with zero, -u removes the file after overwriting it, X the number of the drive.
Wiping files thru GUI
(needs writing)
Revisions
02/07/2014 - 21:47
08/10/2014 - 23:10
09/17/2016 - 16:39
09/17/2016 - 17:00
04/18/2024 - 15:12