- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: DD for disk wiping
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
03-13-2002 08:05 AM
03-13-2002 08:05 AM
DD for disk wiping
I would like to know how the "if=
Regards
Brandilyn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 08:07 AM
03-13-2002 08:07 AM
Re: DD for disk wiping
Use
dd if=/dev/zero of=/dev/dsk/whatever bs=blksize count=#ofblks
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 08:09 AM
03-13-2002 08:09 AM
Re: DD for disk wiping
# mknod /dev/zero c 3 0x000003
==> create a pseudo driver
# dd if=/dev/zero of=/dev/rdsk/c2t2d0
==> will overwrite everything in c2t2d0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 08:10 AM
03-13-2002 08:10 AM
Re: DD for disk wiping
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 08:14 AM
03-13-2002 08:14 AM
Re: DD for disk wiping
Mediainit, i heard can leave data and junk behind.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 08:44 AM
03-13-2002 08:44 AM
Re: DD for disk wiping
Apparently you can detect and reassemble data from LED watching. ie the leds that exist on LAN cards and disk to id data traffic.
Thats kind of cool.!
Re this problem, the dev zero way will do the trick, but so will a massive magnet passed over the disk too...
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 09:46 AM
03-13-2002 09:46 AM
Re: DD for disk wiping
the LED thing is really mind boggling.
On German television we have a show called "Wetten Dass" (i.e. losely translated "bet that"), where all kinds of geeks perform the most obscure bets.
I can remember some years ago there were two pupils having the bet that they could identify out of some 500 CD recordings the title of a song by only watching the flickering of the LEDs of the music device, and they did it (I think it were 6 titles drawn randomly of the lot).
Now this came up my mind when I read your reply.
I bet they would also tell what is read from your hard disk ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 09:59 AM
03-13-2002 09:59 AM
Re: DD for disk wiping
I worked for Defence and the Army brought in some classified data on a disk to be wiped. We passed over a magnet a couple of times, and they said 'Not good enough'.
In the end, we cracked the hard-drive open, and blow-torched the physical media into a puddle (in a well ventilated area, of course).
If security is your requirement, then why not try total destruction of the media? Maybe some document destruction companies specialise in this sort of removal?
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 10:27 AM
03-13-2002 10:27 AM
Re: DD for disk wiping
If your company requires writing character patterns of 0's and 1's, meaning the ascii character 0 (zero - 0x30 - 00110000) and the ascii character 1 (one - 0x31 - 00110001), then your policy needs to change to Hex 00's (00000000) and Hex FF's (11111111), or some folded character like 0xAA and 0x55 - which 0xAA=10101010 and 0x55=01010101.
What's your companies policy on computer tapes? You should use bulk head erasers (big strong electro-magnets), then fastforward the tape, erase it again, and then shred and burn the tape.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2002 05:03 AM
03-14-2002 05:03 AM
Re: DD for disk wiping
See the yes(1) command. Yes, yes is a command! :-)
With yes(1) and echo(1) you can generate any pattern.
yes(1) also generates line-feeds, so if you do not want those, you should strip them.
A simple example, generating all-ones characters (and sending the data to a file and limiting the size):
yes `echo '\0377'` | tr -d '\012' | dd of=/tmp/data count=10
od -b /tmp/data
rm /tmp/data
Please note that these kinds of methods are not CIA et al proof. I.e. agencies like this can still retrieve some of the data. Same after mediainit(1M).
General remark: Please do *not* use mediainit(1M) for (somewhat) modern disks. It does no good and may make them less reliable or even inoperable. mediainit(1M) is for very old/'strange' stuff.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2002 05:19 AM
03-14-2002 05:19 AM
Re: DD for disk wiping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2002 06:28 AM
08-06-2002 06:28 AM
Re: DD for disk wiping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2002 06:40 AM
08-06-2002 06:40 AM
Re: DD for disk wiping
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x24b53a7b3682d611abdb0090277a778c,00.html
The best way is to not only use /dev/zero but /dev/one, two... etc. There is a perl script on the above link to do random writes of 1's, 2's etc.