Quote:
So what software do you use to get rid of old files?
|
I just delete the files using rm.
Quote:
Is there any software that will wipe out deleted files but leave all other files alone?
|
To remove them with some security, write a script that notes the size of the file and use dd that includes /dev/urandom to write garbage to the file several times. Then delete the file.
The dd syntax that I would use.
dd if=/dev/urandom of=desire_file bs=size_of_desire_file count=1
This method does not take into count of how Linux filesystems saves data. Another way is encrypt the files with either pgp or gpg and then delete.
Quote:
how do you verify that your wiped out files are truly unrecoverable? What software tools are used to find deleted files?
|
Use foremost, testdisk, grep, hex viwers, and many others.
To secure yourself that the data is completely gone for good, look up
Darik's Boot and Nuke.
I recommend do not use dd to put an image onto a hard drive. Each hard drive has different geometries even if they are the same capacity. Use
Ghost for Linux.
You can use hardware encryption that attaches between the controller and the hard drive. Any dummy you give your hard drive to will not be able to read your data. Though a smart and patient user can probably decrypt the data.