1

I need to create CD for wipping out hard drives before boxes are decomitioned. Considering to use DBAN:

  • does it matter that the boxes are running HP Unix? Will this effect anything?
  • is there a different version for different architecture?

I would assume that I create bootable CD (following whatever steps are recommended) then boot up on the relevant box from CD and wipe out the disk.

I'm asking because I was told that because the boxes are old HP with non-Intel/non-AMD architecture DBAN will not work.

This is customer requirement to be added to our installation/removal procedure for software that we provide for the box (excuse my ignorance, I'm trying to help system admin guy ...).

stefanB
  • 123
  • 1
  • 6
  • I know this is an ancient question but I saw HPUX and couldn't help myself. I just love HPUX. :) – egorgry Jun 10 '11 at 16:38

7 Answers7

4

DBAN is only available, to my knowledge, in an x86 format. If these machines aren't x86 architecture (like, HP PA RISC, for example) then you're not going to be able to boot DBAN on them. If they're PA RISC-based, for example, the code for DBAN won't execute on them.

Either pull the drives and attach them to an x86 PC, pull 'em and smash 'em with a sledgehammer, or perhaps someone w/ HP/UX experience will post about how you can boot off some media other than the hard disk drives themselves such that you can overwrite them using native tools.

(It's funny to think that, what w/ Apple machines being x86-based for the last couple of years, most people are starting to forget about living in a world with multiple processor architectures sitting around on desks. I miss the 21164, personally...)

Evan Anderson
  • 141,071
  • 19
  • 191
  • 328
1

If you can find/make a Linux LiveCD that will boot on the server, you can use the shred utility to securely wipe the drives.

bta
  • 536
  • 2
  • 8
1

Pop the disks out and put them in a machine that's x86 :)

Bill Weiss
  • 10,782
  • 3
  • 37
  • 65
1

The older version (1.0.7) of DBAN worked for me as well on an DL380 G6. You can download it here.

http://sourceforge.net/projects/dban/files/dban/dban-1.0.7/dban-1.0.7_i386.iso/download

adcmarti
  • 11
  • 1
0

I have the same problem with an old DL380 (rack mounted). The problem is, it has a RAID controller built-in and neither DBAN or any Linux recognize the disks when connected to the RAID controller.

I was able to use DBAN on an old ML330 (tower) by plugging the disks to a SCSI card instead of the RAID card.

0

Use the "old" DBAN 1.0.7 to wipe the HP Proliant disks. It seamed this version has the correct drivers for the array controller... the 2.x DBAN isn´t working here for me...

0

Sorry I don't have HPUX so this is all from memory. I know you already accepted an answer but I hope you find this useful regardless.

Get the device path of the devices from ioscan -fnC. Write in down.

Reboot with the hpux OS CD in the drive and interrupt the boot process. Type SEA to search for the devices. You should see the cdrom device from your ioscan. It should look like 0/3/0/0.0.1 or something and it will have a Px next to it where x is a number. Type BO Px or whatever it may be and answer no when it ask for the IPL stuff. There is a cmd called mediainit, so load that up and execute it against the disks from your ioscan.

./mediainit /dev/rdsk/cxtxdx 

This will low level that little fella.

John Gardeniers
  • 27,262
  • 12
  • 53
  • 108
egorgry
  • 2,871
  • 2
  • 22
  • 21