Hi Spandex,
Don't know if it is still actual, but that's very ease. Btw: you don't need GNU/Linux at all, you can just use any other virtualization software for windows like VirtualBox, bochs, VMware, whatever you already have installed. But I guess you don't have any of those already, do you?
Do you want to install the mbr and pure64 as the only system on your PC or as a dual boot option? You don't want to kill your Windows7, right? :)
dd --list prints out the volumes in your PC, but be careful to choose the correct one!
Then you dump the bmfs_mbr onto the volume at sector 0, which resembles the PBR.or into sector 0 of the disk itself, which is the MBR. If you are using the PBR you need to config your bootloader(Windows bootloader or GRUB or whatever bootloader you are using) to bot the bmfs_mbr:
The volume number used here is only an example, not your actual one.
dd if=bmfs_mbr.sys of=\\.\Volume{c18588c0-02e9-11d8-853f-00902758442b} bs=512
This will dump the mbfs_mbr into the MBR/PBR.
Then you have to write pure64 into sector 8 of your volume:
dd if=pure64.sys of=\\.\Volume{c18588c0-02e9-11d8-853f-00902758442b} bs=512 seek=16
bs * seek = sector offset -> 512 bytes * 16 = 8192 bytes(sector 8)
If you wrote this stuff into your MBR it will load load the mbfs_mbr and that will start pure64 for you. Nothing else. Actually you can't do anything with it, unless you aditonally write your kernel or the baremetal one to the volume.
But remember, writing that stuff to the volume/disk your Win7 resides in, will kill it! So better post what you have exactly in mind :)
baremetal only, dual boot with Win7, win bootloader, grub bootloader and so on.
Best,
H