- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- destroying data on disks while decomissioning a se...
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
Forums
Discussions
Discussions
Discussions
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
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-2005 01:39 AM
11-07-2005 01:39 AM
thanks...Jay
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2005 01:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2005 01:45 AM
11-07-2005 01:45 AM
Re: destroying data on disks while decomissioning a server
Here is something that can help to destroy data for decommission purpose:
1.
# dd if=/dev/zero of=/dev/rdsk/c?t?d? bs=1024
Also you can use :
2.
# pvcreate -f /dev/rdsk/c#t#d#
3.
And Mediainit can be use directly.
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2005 01:48 AM
11-07-2005 01:48 AM
Re: destroying data on disks while decomissioning a server
Also find this doc ,attached is a description of how to use Ignite-UX to scrub disks :
Hope this will also help..
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2005 02:38 AM
11-07-2005 02:38 AM
Re: destroying data on disks while decomissioning a server
You can very well use the pvcreate with -f option to distroy the data, and is very simple and less time consuming way.
make simple script like one whihc is bellow to perform the activity.
#Script for distroying data
for i in `vgdisplay|grep "VG Name"|awk '{print $3}'|grep -v vg00`
do
for j in `vgdisplay -v /dev/vg_sbt_fone_appl|grep -v "Alternate Link"|grep "PV Name""|awk '{print $3}'
do
pvcreate -f $j
done
done
Regards,
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2005 08:35 AM
11-07-2005 08:35 AM
Re: destroying data on disks while decomissioning a server
#Script for distroying data
for i in `vgdisplay|grep "VG Name"|awk '{print $3}'|grep -v vg00`
do
for j in `vgdisplay -v $i|grep -v "Alternate Link"|grep "PV Name""|awk '{print $3}'
do
pvcreate -f $j
done
done
Regards,
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2005 08:42 AM
11-07-2005 08:42 AM
Re: destroying data on disks while decomissioning a server
If you are going to do this then do something that will write to every disk block.
This would be one approach:
dd if=/dev/urandom bs=64k of=/dev/rdsk/cXtYdZ
You could also use /dev/zero as an input device and multiple passes would be better still.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2005 08:50 AM
11-07-2005 08:50 AM
Re: destroying data on disks while decomissioning a server
I am with Clay , dd is most powerful and will do the trick , with /dev/zero , to wipe out the disk, .
hth,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2005 12:54 PM
11-07-2005 12:54 PM
Re: destroying data on disks while decomissioning a server
However, I have heard that will not affect "spared" sectors.
The only _real_ way to _destroy_ all the data on a disc is to melt it into slag. Next to that, you could open the thing up and take a grinder to the platters and grind-away _all_ the oxide I suppose.