How to Format a Hard Drive

This article includes the basics for high-level formatting a hard drive. Formatting saves lots of memory space and leaves you with a faster running hard drive.


Steps:
For Windows XP

1. If you want to save any of the data on the disk, back it up by copying it to a CD or another hard drive. Formatting will destroy ALL of the data on the disk.
2. Use the Windows XP CD-ROM to boot the computer.
3. Select the "Recovery Console" option.
4. At the prompt, type FORMAT C:

For Windows 9x (95, 98, Me)

1. If you want to save any of the data on the disk, back it up by copying it to a CD or another hard drive. Formatting will destroy ALL of the data on the disk.
2. Use a startup floppy (sometimes called a "boot disk") to obtain a DOS prompt.
3. Type FORMAT C:

For Linux or BSD

1. Boot from a livecd or diskette
2. Open a terminal window (usually something like xterm or konsole)
3. Log in as root by typing su and entering the password
4. Type mkfs.ext2 /dev/hdaxx where you change the ext2 by the filetype you want (e.g. ext2, ext3, reiserfs,...) and the axx by the letter of your drive and the number of the partition you want to format. (e.g. /dev/hda1, /dev/hdc32,...). Using the -j option (mke2fs -j) will create the ext3 (or journaled) file system that is much more resistant to the unexpected power loss.
5. Under Linux, you can also format the hard drive in FAT file system that is readable from Windows (use mkfs.vfat instead of mkfs.ext2). However such partition cannot store the root of the Linux operating system.

Tips:
* Partition(s) must be created on a drive before it is formatted.
* Give the process some time to complete. Install your operating system of choice, or use the blank disk for another purpose.
* For more secure formatting, there are programs available which write zeros or garbage characters over the entire disk, making the deleted information unrecoverable.
* C: and /dev/hda are your primary partitions. If you are trying to format another partition or drive, replace C: or hda with the appropriate drive letter, such as D: or /dev/hdb, for example.
* Advanced: Choose a good filesystem for your new partition. For Windows, NTFS is the best option. Linux and BSD are more varied. XFS or EXT3 are good choices. XFS has higher performance, while EXT3 has better recovery. Mac users should use HFS+. Solaris users should definitely choose ZFS. Dragonfly BSD users should consider HAMMERFS. Do not user ReiserFS as it was written by a murderer.

Warnings:
* Make sure that you format the correct drive, and that you have backed up any data you don't want to lose.
* Hard drives can have multiple partitions, so be sure to check which drive and which partition you're formatting. For example, a C: and D: partition may exist on one drive. It isn't unusual to have them exist out of sequence due to Microsoft's FAT and NTFS partitioning scheme. For example, C: and E: may be partitions on the first drive, and D: may be a partition on the second drive. If in doubt, you a partition tool such as Gparted or Fdisk to determine which partition is on which drive.

0 comments:

Post a Comment