- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Data shredder
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2006 02:50 AM
тАО11-07-2006 02:50 AM
Data shredder
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2006 02:53 AM
тАО11-07-2006 02:53 AM
Re: Data shredder
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...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2006 03:07 AM
тАО11-07-2006 03:07 AM
Re: Data shredder
please see previous posts:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=972440
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=458247
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=870349
Main answers:
mediainit (slow) and dd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2006 03:15 AM
тАО11-07-2006 03:15 AM
Re: Data shredder
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2006 03:27 AM
тАО11-07-2006 03:27 AM
Re: Data shredder
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...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2006 03:27 AM
тАО11-07-2006 03:27 AM
Re: Data shredder
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2006 05:12 AM
тАО11-07-2006 05:12 AM
Re: Data shredder
Here's a simple recipe that will guarantee no one will read your data :-))
http://driveslag.eecue.com/
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-14-2006 07:07 AM
тАО11-14-2006 07:07 AM
Re: Data shredder
Not really. Now writing a script following the recommendations.
Many thanks