- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Wiping out a system
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
04-03-2001 12:34 PM
04-03-2001 12:34 PM
we are decommissioning this Friday. Since this
machine will most likely be used by someone
else in the future, I need to know the fastest,
easiest way to destroy the data on the system
so that it cannot be recovered. I only have
an hour to do this, so I need something faster
than the obvious rm -rf from root or something.
Any ideas?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 12:37 PM
04-03-2001 12:37 PM
Re: Wiping out a system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 01:01 PM
04-03-2001 01:01 PM
Re: Wiping out a system
It depends on how trashed you want the data. If there are ultra sensitive data on the system then someone could possibly recover them despite rm, pvcreate, etc. The mediainit or dd commands will do the trick but probably not in an hour. Then again, a few minutes of either one will be just as good as rm or pvcreate for making the disks inaccessable from traditional Unix commands.
--Bruce
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 01:47 PM
04-03-2001 01:47 PM
Re: Wiping out a system
volume header / volume info on the disk but
it is not data destructive right?
Is there a file that can be written over these
disks using dd. For instance, on other UNIX
platforms there's a /dev/zero file that fills
up the space with as many zeros as specified.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 06:13 PM
04-03-2001 06:13 PM
Re: Wiping out a system
Let say your file system to be wiped out is /xyz,
do
find /xyz -exec cp /dev/null {} \;
that should zero out every file under the /xyz fs.
you can try running newfs on the file system too, but this one I'm not sure if the file system undernearth will be completely reformated or not, may be other unix-guru here can answer.
Rgds,
Philip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 07:40 PM
04-03-2001 07:40 PM
Re: Wiping out a system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 10:33 PM
04-03-2001 10:33 PM
Re: Wiping out a system
I have following note, but I'm wondering how effective it is on system disks :
1. Determine if the /dev/zero pseudo driver is available:
# lssf /dev/zero
pseudo driver mm minor 0x000003 /dev/zero
Note: If /dev/zero is not available, then execute the following command to create the driver:
# mknod /dev/zero c 3 0x00003
2. Overwrite all of the data on disk with zeros:
# dd if=/dev/zero of=/dev/rdsk/....
Note: Replace "...." (in the above dd command) with the device file of the disk.
good luck,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 11:57 PM
04-03-2001 11:57 PM
Solutionsubmit all the dd commands for every disk in background simultaneously. This will cause a very high load on your system, but who cares ;) Even if you have to shutdown the system before all dd's are fully completed, I think it would be pretty hard to recover anything from those disks.
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2001 09:39 AM
04-04-2001 09:39 AM
Re: Wiping out a system
were useful and possible solutions.