Operating System - HP-UX
1833053 Members
2704 Online
110049 Solutions
New Discussion

Re: Cleaning data from discontinued HPUX diskdrives

 
SOLVED
Go to solution
Leslie Fischer
Frequent Advisor

Cleaning data from discontinued HPUX diskdrives

Have a HP9000 with Disk enclosed sub-system. Which were used for a financial application. What is the best way to insure that the data that resided on these drives is unreadable? Have recreate the filesystems, but not sure if this is good enough. Have any suggestions or programs used to clean HPUX harddrives?
6 REPLIES 6
Pete Randall
Outstanding Contributor
Solution

Re: Cleaning data from discontinued HPUX diskdrives

The only way to absolutely ensure that the data is unrecoverable is to physically destroy the disks. Hammers and/or magnets work well. If just making it difficult to read will suffice, the try dd:

dd if=/dev/zero of=/dev/rdsk/cXtXdX bs=1024k

Do not use mediainit!


Pete

Pete
RAC_1
Honored Contributor

Re: Cleaning data from discontinued HPUX diskdrives

dd if=/dev/zero of=/dev/rdsk/cxtxdx bs=1024k
There are some gnu utlities to do this.

Anil
There is no substitute to HARDWORK
Steven E. Protter
Exalted Contributor

Re: Cleaning data from discontinued HPUX diskdrives

An OS install including the disks will absolutely guarantee eraseure.

Otherwise the above dd commands are the way to go.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Rick Garland
Honored Contributor

Re: Cleaning data from discontinued HPUX diskdrives

There was a post with numerous responses just last week that covers this question.
Geoff Wild
Honored Contributor

Re: Cleaning data from discontinued HPUX diskdrives

Here's a recent post on same topic:

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

Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
Leslie Fischer
Frequent Advisor

Re: Cleaning data from discontinued HPUX diskdrives

Thank you all for your replies.
This did the trick.