Difficulty wiping DOM to set up new partition
Posted: Fri Nov 02, 2018 3:38 pm
When I tried using fdisk to create a partition on a Hyperdisk 512MB DOM that would become the C: boot drive for my PCjr, I ran into the same problem that Chuckpdh53 described here:
viewtopic.php?f=1&t=738
In PC-DOS 2.1, fdisk reported that the DOM contained a large "non-DOS" partition that it wouldn't/couldn't modify or delete.
I therefore followed these instructions from Mike B:
Unfortunately, this doesn't appear to have changed anything -- fdisk is still reporting the same large "non-DOS" partition on the DOM, and refuses to modify or delete it. I've tried this without and also with doing a power-off reboot of the machine after executing the debug instructions, but this doesn't cause any difference.
Any suggestions on what to try next? Is there another low-level utility I could try?
viewtopic.php?f=1&t=738
In PC-DOS 2.1, fdisk reported that the DOM contained a large "non-DOS" partition that it wouldn't/couldn't modify or delete.
I therefore followed these instructions from Mike B:
I entered each of the lines very carefully, and no errors were reported after any of them. After entering the final line and a return, I hit CTRL-C to exit the machine instruction mode of debug.com, then q to exit from debug to DOS.Wiping out a boot sector using debug.com:
f 9000:0 200 0
a
mov dx, 9000
mov es, dx
xor bx, bx
mov cx, 0001
mov dx, 0080
mov ax, 0301
int 13
int 20
Change 0x0080 to 0x0081 for the second hard drive.
Unfortunately, this doesn't appear to have changed anything -- fdisk is still reporting the same large "non-DOS" partition on the DOM, and refuses to modify or delete it. I've tried this without and also with doing a power-off reboot of the machine after executing the debug instructions, but this doesn't cause any difference.
Any suggestions on what to try next? Is there another low-level utility I could try?