Wiping your disk drive clean


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Wiping your disk drive clean
# 1  
Old 05-30-2008
Wiping your disk drive clean

Fri, 30 May 2008 08:00:00 GMT
Everybody who owns a computer will someday need to dispose of a disk drive. Before you do, it is a good idea to cleanse the drive, so no one can read your sensitive information. Deleting files and reformatting is not sufficient; determined effort can still reveal data from a drive even after it appears to be gone. To do a more thorough job, I suggest using wipe.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

The disk drive for /tmp is not ready yet or not present && the disk drive for /boot is not ready yet

Hi Team when I boot the server I get this 2 errors : the disk drive for /tmp is not ready yet or not present the disk drive for /boot is not ready yet or not present and its stay like that , I m using Ubuntu 12.04 please if someone have any idea how to fix that problem . (1 Reply)
Discussion started by: SULTAN01
1 Replies

2. Solaris

Hard Errors on Disk Drive

Hi, What are the initial checks needs to be done while observing hard errors on one of the hard disk drive. Thanks, Babu. (1 Reply)
Discussion started by: lbreddy
1 Replies

3. Solaris

wiping hard drive

I'm looking for a utility that will wipe data clean from a Solaris hard drive and make the data unreadable and unrecoverable. Any suggestions? Does SUN have something? (3 Replies)
Discussion started by: dangral
3 Replies

4. HP-UX

Rebuild disk or drive?

I thought I would post it again..once a bad drive is replaced need to rebuild it right?? Is disk and drive same? So what command need when the disk gets replaces. When i did diskinfo...and found out the bad disk...and need to replace that.. Thanks if someone could answer this question i have. (1 Reply)
Discussion started by: catwomen
1 Replies

5. Filesystems, Disks and Memory

Pointing one hard drive name to another disk

Pointing one hard drive name to another disk -------------------------------------------------------------------------------- I have 2 disk drives - s2d9 & s2d11 on a solaris Unix system It was mapped so that anything that tried to call s2d9 would be pointed to s2d11 since s2d9 was bad.... (2 Replies)
Discussion started by: andy57s
2 Replies

6. UNIX for Dummies Questions & Answers

Wiping UNIX Hard Drive

Hello all, Maybe someone can help? Please?!?!? How do I wipe a UNIX hard drive, For dos I use Norton. Is there something like that for UNIX. I am just barley understanding UNIX, so please forgive my ignorance. Also, is there a government approved method of sanitization? Thanks (10 Replies)
Discussion started by: rocky123
10 Replies

7. Filesystems, Disks and Memory

Disk Drive for Irix

I am looking for a Disk Drive for SGI Octane with Irix 6.4 . I was just hoping if someone out there can give me the vendor and part number ... Need a 9GB hopefully. (1 Reply)
Discussion started by: DPAI
1 Replies

8. Filesystems, Disks and Memory

Disk drive and Ultra 10

I need more space on my Ultra 10, and was thinking of a pair of 60 or 80 GB 7200 rpm ATA/100 drives mirrored with DiskSuite. Will afterarket IDE drives work in the Sun box? Are there any issues? (1 Reply)
Discussion started by: 98_1LE
1 Replies

9. UNIX for Dummies Questions & Answers

HP-UX undetected disk drive

I have installed a new SCSI drive into an HP6000-SE SCSI tower conencted to an old HP9000. This device cannot be detected by SAM. HOWEVER, when doing an ioscan -f I get: ====================================================================== bc 0 ... (2 Replies)
Discussion started by: sam_pointer
2 Replies

10. HP-UX

HP-UX undetected disk drive

I have installed a new SCSI drive into an HP6000-SE SCSI tower conencted to an old HP9000. This device cannot be detected by SAM. HOWEVER, when doing an ioscan -f I get: ====================================================================== bc 0 root CLAIMED BUS_NEXUS bc 1 56 bc CLAIMED... (3 Replies)
Discussion started by: sam_pointer
3 Replies
Login or Register to Ask a Question
HD(4)							     Linux Programmer's Manual							     HD(4)

NAME
hd - MFM/IDE hard disk devices DESCRIPTION
The hd* devices are block devices to access MFM/IDE hard disk drives in raw mode. The master drive on the primary IDE controller (major device number 3) is hda; the slave drive is hdb. The master drive of the second controller (major device number 22) is hdc and the slave hdd. General IDE block device names have the form hdX, or hdXP, where X is a letter denoting the physical drive, and P is a number denoting the partition on that physical drive. The first form, hdX, is used to address the whole drive. Partition numbers are assigned in the order the partitions are discovered, and only nonempty, nonextended partitions get a number. However, partition numbers 1-4 are given to the four partitions described in the MBR (the "primary" partitions), regardless of whether they are unused or extended. Thus, the first logi- cal partition will be hdX5. Both DOS-type partitioning and BSD-disklabel partitioning are supported. You can have at most 63 partitions on an IDE disk. For example, /dev/hda refers to all of the first IDE drive in the system; and /dev/hdb3 refers to the third DOS "primary" partition on the second one. They are typically created by: mknod -m 660 /dev/hda b 3 0 mknod -m 660 /dev/hda1 b 3 1 mknod -m 660 /dev/hda2 b 3 2 ... mknod -m 660 /dev/hda8 b 3 8 mknod -m 660 /dev/hdb b 3 64 mknod -m 660 /dev/hdb1 b 3 65 mknod -m 660 /dev/hdb2 b 3 66 ... mknod -m 660 /dev/hdb8 b 3 72 chown root:disk /dev/hd* FILES
/dev/hd* SEE ALSO
chown(1), mknod(1), sd(4), mount(8) COLOPHON
This page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 1992-12-17 HD(4)