LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Solaris / OpenSolaris (https://www.linuxquestions.org/questions/solaris-opensolaris-20/)
-   -   Solaris disk wiping utility? (https://www.linuxquestions.org/questions/solaris-opensolaris-20/solaris-disk-wiping-utility-415676/)

Brian Knoblauch 02-15-2006 08:33 AM

Solaris disk wiping utility?
 
I'm used to using CBL Data Shredder on XP. Wondering if there's something comparable for Solaris.

satinet 02-15-2006 08:43 AM

dd can do the job.

something like:

dd of=/dev/rdsk/c0t4d0s0 if=/dev/zero

that will overwite every single block

obviously this isn't the same as strong magnets or a good sledgehammer.

a lump hammer was very enjoyable once :-)

RHELL 02-16-2006 11:32 PM

My friend with the downstairs apartment under a faulty hot tub assures me that brominated water can be highly effective.

Brian Knoblauch 02-17-2006 07:01 AM

Quote:

Originally Posted by RHELL
My friend with the downstairs apartment under a faulty hot tub assures me that brominated water can be highly effective.

I like to be able to use the drives again, or even sell them. :) However, next time I need to completely destroy a drive I'll look for an apartment under a faulty hot tub! :) :)

satinet 02-17-2006 07:53 AM

trust me the hammer is the most fun.

dd wont cause any damage.

jlliagre 02-17-2006 07:54 AM

If you want a similar technique that the one used by data shredder, you can try that:

Code:

for i in 1 2 3 4 5 # increase for more security
do
  echo pass $i
  dd if=/dev/urandom of=/dev/rdsk/<your partition or slice here> bs=1024
done

and be patient ...

Brian Knoblauch 02-17-2006 07:57 AM

Quote:

Originally Posted by satinet
trust me the hammer is the most fun.

dd wont cause any damage.

Well, when we actually want to completely destroy a drive (for example, a failed drive), we have a decent sized press out in our maintenance department that does a good job... :)

I like jlliagre's script, I think that'll suit my needs in this particular case.

Thanks all!

RHELL 02-17-2006 11:22 AM

Quote:

I like to be able to use the drives again, or even sell them. However, next time I need to completely destroy a drive I'll look for an apartment under a faulty hot tub!
Well, you could put it on a string around your neck and get in if you prefer, it's more scalable.

Brian Knoblauch 02-17-2006 11:46 AM

Quote:

Originally Posted by RHELL
Well, you could put it on a string around your neck and get in if you prefer, it's more scalable.

MPDW-S - Massively Parallel Disk Wiping on a String :)


All times are GMT -5. The time now is 07:43 PM.