Operating System - HP-UX
1831912 Members
3771 Online
110031 Solutions
New Discussion

Securely erasing data from decommissioned server

 
SOLVED
Go to solution
Terrence
Regular Advisor

Securely erasing data from decommissioned server

We're replacing a few servers and I'm curious about a quick and easy way to remove all our data from the hard drives.

Media init certainly isn't enough. Perhaps a script that writes a file over every byte on the disk?

What has everyone done in the past?
3 REPLIES 3
melvyn burnard
Honored Contributor
Solution

Re: Securely erasing data from decommissioned server

There ar eplenty of threaqds in the ITRC discussing this.

Here are a few:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=957297

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=956898
My house is the bank's, my money the wife's, But my opinions belong to me, not HP!
Robert-Jan Goossens_1
Honored Contributor

Re: Securely erasing data from decommissioned server

Hi,

How about dd ing a few times.

# dd if=/dev/null of=/dev/rdsk/cxtydz bs=1024k

# dd if=/dev/random of/dev/rdsk/cxtydz bs=1024k

Regards,
Robert-Jan

Terrence
Regular Advisor

Re: Securely erasing data from decommissioned server

Good enough!