- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Decommissioning an older server
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
тАО03-19-2003 06:42 PM
тАО03-19-2003 06:42 PM
hpux 11.00 d390 and d220. Very soon i will be decommissioning these two machines. I am curious to know if there is a preferred method for ensuring that no data is (or bits of data) are left on the disks. If there is how do I go about doing it?
Thanks,
Maria
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 06:47 PM
тАО03-19-2003 06:47 PM
Solutiondd if=/dev/zero of=/dev/rdsk/cXtYdZ bs=64k
I'd also use pvcreate and erase the VG header information.
But, as the link listed below will point out, some people get real uptight about this kind of thing:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x24b53a7b3682d611abdb0090277a778c,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 07:00 PM
тАО03-19-2003 07:00 PM
Re: Decommissioning an older server
This erases everything that was there and puts the system in good condition to show that it does work and support an OS.
At that point there is no possibility of anyone seeeing your old data, so long as you have physically disconnected from any disk arrays you are connected to.
You can now safely sell your machine in ebay. Or donate it to a charity like the Jewish United Fund.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 07:03 PM
тАО03-19-2003 07:03 PM
Re: Decommissioning an older server
There are a few ways:
First remove the logical volumes and VG information by:
# vgexport /dev/myvg
# pvcreate -f /dev/rdsk/cxtydz
You could go to a further extreme and place a bunch of zeros on each disk, as per the link that was provided. It all depends on what is happening with the machine after. If your keeping it, and then using it as a test system, exporting the VG's will be sufficient.
Cheers
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 07:38 PM
тАО03-19-2003 07:38 PM
Re: Decommissioning an older server
Totally depends on *just* how sensitive the data is.
For absolute certainty, crush 'em & torch 'em.
For slightly less, overwrite 'em at the bit level >10 times with alternating 0s & 1s.
For even less, just all 0s
And on down the line....
Ask mgmt just how secure do they want to be? There IS an absolute $ value that can be assigned. That's something they can understand....
My 2 cents,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 07:54 PM
тАО03-19-2003 07:54 PM
Re: Decommissioning an older server
Thanks everyone for all your help and patience.
Maria
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 08:02 PM
тАО03-19-2003 08:02 PM
Re: Decommissioning an older server
as SEP suggested, the best way is to reinstall the OS. and re-create new VG's.
We keep such machines around for testing purposes. and some new system admin's are around, they install / crash / do whatever they want with these boxes.
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 08:20 PM
тАО03-19-2003 08:20 PM
Re: Decommissioning an older server
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x624e28c64656d71190080090279cd0f9,00.html
and to see what is the actual data, use dd.
dd if=
and see the contents of the file.
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 08:27 PM
тАО03-19-2003 08:27 PM
Re: Decommissioning an older server
sorry for the follow up. since you are doing a low level write, u need to do a low level read to get the data.
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 08:41 PM
тАО03-19-2003 08:41 PM
Re: Decommissioning an older server
To erase all sensitive data on a disk use:
dd if=/dev/zero of=/dev/rdsk/cXtYdZ bs=64k
I'd also use pvcreate and erase the VG header information.
You can also write a layer of junk data on the disk to prevent any possibility of recovering data even from the physical level.
The following scripts does it. This shell script requires the cXtYdZ disk indentifier as an agruement. This script assumes /dev/zero exists.
#!/bin/sh
date
echo "Starting first pass now ..."
dd if=/dev/zero of=/dev/rdsk/$1 bs=8k
date
echo "33% done"
tr '\0' '\377' < /dev/zero | dd of=/dev/rdsk/$1 bs=8k
date
echo " 66% done"
dd if=/dev/zero of=/dev/rdsk/$1 bs=8k
echo "Wipe is complete."
date
hth
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 09:03 PM
тАО03-19-2003 09:03 PM
Re: Decommissioning an older server
You can't prove it......definitively.
I'm sorry, I didn't make myself clear earlier.
The point is entirely about scale.
The point about repitition is the key. Understand the physics of it and the distribution of reads/writes & the inherent properties of magnetic media & how that acts upon such.
Drift is a word that comes to my mind.
Doggedness is another....
Moral: If there's a platter they *may* get it. How much does one wish to spend....
My $0.02,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 09:10 PM
тАО03-19-2003 09:10 PM
Re: Decommissioning an older server
SEe yas.
Maria.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2003 09:28 PM
тАО03-19-2003 09:28 PM
Re: Decommissioning an older server
Do us a favor & convince mgmt of that...it's true. THEN tell them you HAVE to witness it..just to verify!
We techies have to enjoy our little victories.
Sometimes the facts DO get in the way with businessmen's decisions.
Savor it when you can.
Cheers,
Jeff