Any suggestions?
Sincerely, Tim.

Code: Select all
dd if=/dev/zero of="hdd.img" bs=512 count=<desired-img-size>
dd if="myMBR.bin" of="hdd.img" bs=512 count=1 conv=notrunc
dd if="myBoot.bin" of="hdd.img" bs=512 seek=1 count=1 conv=notrunc
dd if="myKernel.bin" of="hdd.img" bs=512 count=<kernel-size> seek=2 conv=notrunc
Code: Select all
dd if="myBoot.bin" of=\\.\\<drive-letter>: bs=512 count=1
dd if="myKernel.bin" of=\\.\\<drive-letter>: bs=512 seek=1
dd will also write to a disk image.TimothyWilliams wrote:Writing into the HDD image, my mate.
Huh. I didn't know that, but looking at the SF page, I see that it was last updated some time just before Windows 10 (which is the same as NT 10, but you probably knew that) was in general release. It seems HxD is even older (2009), so there's a good chance it won't work, either. Rawwrite32 is up to date as of last May, though, and Cygwin is as well if you don't mind messing around in the BASH shell emulator it provides (you could use Cygwin/X for some Unixoid things, but I don't think there are any graphical front ends on it for dd).TimothyWilliams wrote:But WinDD does not work with my Windows (NT 10.0, 14393)