![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| hard disk and san | lo-lp-kl | AIX | 4 | 06-12-2008 10:13 AM |
| Hard Disk at 99% Help! | mannyisme | UNIX for Dummies Questions & Answers | 8 | 12-20-2005 12:35 PM |
| Hard Disk | hmaraver | UNIX Desktop for Dummies Questions & Answers | 4 | 07-03-2005 12:50 PM |
| RAM, Hard Disk | ramaraju | UNIX for Dummies Questions & Answers | 2 | 03-01-2005 05:35 PM |
| hard disk problems | norsk hedensk | Filesystems, Disks and Memory | 2 | 06-06-2003 04:55 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Erase hard disk data
How to erase/format hard disk data in RS6000 AIX PowerPC model 43
|
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Hi,
You can erase or format by diag menu, tape: # diag -Task Selection(Diagnostics, Advanced Diagnostics, Service Aids,etc.) -Format media. Good Luck, MAZOUARI/Morocco |
|
#3
|
|||
|
|||
|
Thanks.
But I can't. It said "The 'diag' command is not supported on this system". Anyway, I had manually take out the hard disk and throw on the floor for several times. Think the data in the hard disk can't be recovered. |
|
#4
|
|||
|
|||
|
We drill holes through our hard drives for old PC's.
|
|
#5
|
|||
|
|||
|
Hi,
Normally all versions of AIX support the ' diag' commande, except if there are filesets that miss to your system you can verify by the control: #lslpp -l bos.dig. * you must have some things as: #> lslpp -l bos.diag * Fileset Level State Description ---------------------------------------------------------------------------- Path: /usr/lib/objrepos bos.diag.com 4.3.3.81 COMMITTEDS Common Hardware Diagnoses bos.diag.rte 4.3.3.83 COMMITTED Hardware Diagnoses bos.diag.util 4.3.3.80 COMMITTEDS Hardware Diagnoses Utilitieses Path: /etc/objrepos bos.diag.com 4.3.3.75 COMMITTEDS Common Hardware Diagnoses bos.diag.rte 4.3.3.83 COMMITTED Hardware Diagnoses bos.diag.util 4.3.3.75 COMMITTEDS Hardware Diagnoses Utilitieses if not you must install them. |
|
#6
|
|||
|
|||
|
you can format or erase it by # diag menu. But after this your data can be recover by the use of data recovery software. To completely erase your data you should use drive wipe software which completely erase hard drive. You can get lots of erase utility over internet or try Stellar drive wipe software.
Hope it helps |
|
#7
|
|||
|
|||
|
If you just want to make the (previous) data unreadable and beyond any chance fo recovery use /dev/zero (even better but slower: /dev/random) as a data source and use "dd" to write its output directly onto the disks device. Make sure the disk is not part of any VG first (for example: hdisk3) :
Code:
reducevg myvg hdisk3 cat /dev/zero | dd if=- of=/dev/hdisk3 I hope this helps. bakunin |
|||
| Google The UNIX and Linux Forums |