Computing.Net > Forums > Disk Operating System > low level formatting

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to get for your free account now!

low level formatting

Reply to Message Icon

Name: Fred
Date: December 13, 2001 at 04:13:10 Pacific
Comment:

I have tried the killhdd.bat file with debug.exe. It doesn't work, what could I be doing wrong. I have a DOS 6.22 version, as well as WIN95 and Win98 1st edition. I would dearly like to utilise this utility, can some send me the answer by e-mail please. Any other low level formatting utility is also welcome, as long as I can get rid of bad sectors and partition errors its fine. Thanks.


Report Offensive Message For Removal

Sponsored Link
Ads by Google

Response Number 1
Name: Thx1138
Date: December 13, 2001 at 09:07:37 Pacific
Reply:

Have you looked in the bios some have a low levelformat utility there.BTW why do you wish to usethis utility will a normal format not do the job?


Report Offensive Follow Up For Removal

Response Number 2
Name: chris
Date: December 13, 2001 at 09:56:32 Pacific
Reply:

Hi Fred. Not sure about the debug/killhd stuff at all.....

To start from scratch and get your HD in good shape, first run fdisk to partition it. Then use the format command to format it. If you want to lock out bad sectors use chkdsk /f which will fix bad sectors.

All these commands are part of dos 6.22


Report Offensive Follow Up For Removal

Response Number 3
Name: Mark p
Date: December 13, 2001 at 16:04:51 Pacific
Reply:

Getting hold of the drive manufactures disk management tools might help you.

I've managed to recover a number of so called u/s hard drives using them.


Report Offensive Follow Up For Removal

Response Number 4
Name: Fred
Date: December 16, 2001 at 13:41:42 Pacific
Reply:

Responing to Thx1138
I have a mother board with such a bios, however it seems that the motherboard is one of the older types and cannot read larger capacity drives. A normal format once again registers the bad clusters.

Responding to Chris
fdisk, format and chkdsk just aren't up to it I'm afraid, I have tried but to no avail, took me ages, with the bios utility, and then fdisk and formatting the drive etc.

Responding to Mark p
I have downloaded Seagate's as well as Western Digital's utilities. I have found that Seagate's is the better one, only problem is one has to have a Seagate drive attached if you wish to low-level format any other make.

The reason why I'm asking is that I'm building computers in my spare time, and down in good ol' South Africa we currently pay dearly for hdd's, even for the 1 - 2 Gb hdd's. These small drives are hard to come by, even with bad clusters. I'd like to recover as many as I possibly can. What would happen if one were to change the hdd control boards? The guys at the manufacturers remain mum - say it's classified. Any one out there willing to share some more info. Thanks.


Report Offensive Follow Up For Removal

Response Number 5
Name: shay
Date: December 16, 2001 at 15:16:47 Pacific
Reply:

qdigrp.com has a low level format utility don't think it's drive or board specific


Report Offensive Follow Up For Removal

Related Posts

See More



Response Number 6
Name: FokNut
Date: December 17, 2001 at 08:46:19 Pacific
Reply:

Insert a boot diskette that contains the Debug.exe command into the respective drive.

Restart the computer.

A black screen with Microsoft Windows® 95 Startup Menu will appear. Press the key on the keyboard followed by the key. The boot process will conclude with an A:\> prompt, followed by a blinking underline (cursor).

From the A:\> prompt, type the following commands and press the key after each command:
NOTICE: Performing the following will remove all data from your hard disk drive.


NOTE: Type the bolded text only (the debug prompt is a dash). You will receive an error if you type anything other than the bold text. The non-bolded text represents the system response that will appear after typing each command and press the key.


debug
-F 200 L1000 0
-A CS:100
xxxx:0100 MOV AX,301
xxxx:0103 MOV BX,200
xxxx:0106 MOV CX,1
xxxx:0109 MOV DX,80


NOTE: Type 80 for the Main hard drive - HD 0, or type 81 for the Second hard drive - HD 1


xxxx:010C INT 13
xxxx:010E INT 20
xxxx:0110 (Leave this line blank and press the key)
-G

The message, Program terminated normally, appears. Turn off the computer by pressing the power button.

On the next startup the hard drive must be partitioned and formatted.


Report Offensive Follow Up For Removal

Response Number 7
Name: fred6008
Date: December 17, 2001 at 10:06:33 Pacific
Reply:

Would you pay $89 for a low level formatting utility? Check out HTTP://www.GRC.COM if you would. Spinrite 5.0 low level formats in the way that defrag works so you do not lose any data. It takes a very long time, however. There is something about it in this month's Computer Shopper.


Report Offensive Follow Up For Removal

Response Number 8
Name: Fred
Date: December 17, 2001 at 10:58:52 Pacific
Reply:

Thanks everyone, I'll check out the sites and let you know.


Report Offensive Follow Up For Removal

Response Number 9
Name: BobbyQ
Date: December 30, 2001 at 11:09:01 Pacific
Reply:

FokNut

Thanks for revealing some of your knowledge.
I wrote a little C source based on the data you gave us. I dare not try it though cus I don't know exactly what it's supposed to do.

// llev.c
#include
union REGS regs;
main()
{
int *ptr, j;
ptr = (int *) 0x200;
for(j = 0; j < 4096; j++)
*(ptr + j) = 0;

regs.x.ax = 0x301;
regs.x.bx = 0x200;
regs.x.cx = 1;
regs.x.dx = 0x80;

int86(0x13, ®s, ®s);
int86(0x20, ®s, ®s);
return 0;
}


Can you explain what your little chunk of data does? and why only 4096 bytes is written to the bard drive???


Report Offensive Follow Up For Removal

Response Number 10
Name: BobbyQ
Date: December 30, 2001 at 11:14:16 Pacific
Reply:

// llev.c
#include
union REGS regs;
main()
{
int *ptr, j;
ptr = (int *) 0x200;
for(j = 0; j < 4096; j++)
*(ptr + j) = 0;

regs.x.ax = 0x301;
regs.x.bx = 0x200;
regs.x.cx = 1;
regs.x.dx = 0x80;

int86(0x13, ®s, ®s);
int86(0x20, ®s, ®s);
return 0;
}



Report Offensive Follow Up For Removal

Response Number 11
Name: Q
Date: January 3, 2002 at 17:36:23 Pacific
Reply:

includeint86(0x13, &regs, &regs)


Report Offensive Follow Up For Removal

Response Number 12
Name: Q
Date: January 3, 2002 at 17:38:50 Pacific
Reply:

includeint86(0x13, &regs, &regs)


Report Offensive Follow Up For Removal

Response Number 13
Name:  
Date: January 14, 2002 at 15:18:29 Pacific
Reply:



int86(®s, ®s);


Report Offensive Follow Up For Removal

Response Number 14
Name:  
Date: January 14, 2002 at 17:09:59 Pacific
Reply:


aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

int86(®s, ®s);


Report Offensive Follow Up For Removal

Response Number 15
Name: liam
Date: February 8, 2002 at 06:53:47 Pacific
Reply:

hey that killhdd.bat thing don,t work how can i get it to work it gave me an invalid system disk error i have also tried adding the killhdd.bat and debug.exe to a windows startup disk but that did,t work i read some where else that i need to add the fdisk.exe file to a floppy with the killhdd.bat and the debug.exe only these 3 files is this true will that work.I would be most greatful if some can explain exactly how to do it.


Report Offensive Follow Up For Removal

Response Number 16
Name: richard
Date: March 23, 2002 at 04:35:22 Pacific
Reply:

can anyone help me!!! low level formating
i need information on the above topic no one seems to know about head id fiel id and crc wold be gratefull for any information on this!!


Report Offensive Follow Up For Removal
Reply to Message Icon






Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Disk Operating System Forum Home


Sponsored links

Ads by Google


Results for: low level formatting

Low Level Format? www.computing.net/answers/dos/low-level-format/10925.html

Low-Level Format www.computing.net/answers/dos/lowlevel-format/11427.html

low level format Eide hard disk www.computing.net/answers/dos/low-level-format-eide-hard-disk/4864.html