Deleting Data Remotely
June 21, 2006 9:48 AM
Subscribe
What's the best way of securely deleting data remotely?
A friend of mine rented a dedicated server, and his host was sold to an unreliable and untrustworthy company. He has a new server and has moved all of his data to it, and would now like to decommission the old one.
However, he doesn't trust the hosting company, and would like to wipe the server as thoroughly as possible remotely. It's a RedHat OS, with a single drive, and he does have the root password.
The obvious answer is rm -rf [directories] but as we all know, rm doesn't overwrite data so that it can't be recovered.
posted by dweingart to computers & internet (12 comments total)
If possible, he should unmount the filesystem and run shred on the raw device (e.g. "/dev/hda"). For the root filesystem on a remote server this probably won't be possible, so hopefully his important data is not on the root filesystem.
posted by mbrubeck at 9:52 AM on June 21, 2006