1820879 Members
3577 Online
109628 Solutions
New Discussion юеВ

Data shredder

 
kavanagh_1
Frequent Advisor

Data shredder

Can anyone advise on a tool to securely delete data stored on an EVA ? OS=hpux

David
7 REPLIES 7
James R. Ferguson
Acclaimed Contributor

Re: Data shredder

Hi David:

One solution is to write zeros or a random pattern at least once over the disk. This is a "reasonable" destruction of data.

# dd if=/dev/zeros of=/dev/rdsk/cXtYdZ bs=1024k

or:

# dd if=/dev/urandom of=dev/rdsk/CxtYdZ bs=1024k

Note the use of the raw disk device to circumvent the LVM layer, and the use of a large blocksize for fast I/O.

Regards!

...JRF...
Peter Godron
Honored Contributor
kavanagh_1
Frequent Advisor

Re: Data shredder

Hi James,

Thanks for your very quick reply.

I have used the command: "# dd if=/dev/zero of=/dev/rdsk/cXtYdZ bs=1024k" before.

The requirement is to ensure data is securely deleted during decommissioning of an EVA previously used for a trading system.

The HP XP12000 now has a product called the "HP StorageWorks XP Data Shredder" which offers

1) Overwrites data volumes up to eight times.

2) User selectable overwrite patterns:
The customer can choose his own overwrite patterns or else he can choose a random overwrite pattern.
etc

Do you know of any tool that could give a more thorough deletion ?

Regards

David

James R. Ferguson
Acclaimed Contributor

Re: Data shredder

Hi (again) David:

Certainly, multiple random overwrites are superior to one pass. Sophisticated techniques allow data recovery even after multiple writes have occured. You have to decide on how sensitive your data is and how likely someone else might want to attempt to recover it.

If you are really interested in data distruction, physical shredding of the media (or an acid etching) is required. There are companies that perform this kind of service. Google the web if you need.

Regards!

...JRF...
A. Clay Stephenson
Acclaimed Contributor

Re: Data shredder

One tool would be a sledge hammer; another might involve explosives. In any event, 8 passes of random data should more than suffice. To add another layer, once the random i/o operation is completed then randomly rearrange the disks within the array (or even between arrays).
If it ain't broke, I can fix that.
James R. Ferguson
Acclaimed Contributor

Re: Data shredder

Hi David:

Here's a simple recipe that will guarantee no one will read your data :-))

http://driveslag.eecue.com/

Regards!

...JRF...
kavanagh_1
Frequent Advisor

Re: Data shredder

Just ordering a furnace!!

Not really. Now writing a script following the recommendations.

Many thanks