Je moet vanaf diskettes booten totdat het NT-deel is aangepast.
Nu moet je de bootsector vanaf je Linux-root-Partitie onttrekken. Met /dev/hda2 als je linux-partitie, is het dd-commando:
# dd if=/dev/hda2 of=/bootsect.lnx bs=512 count=1
Er is iets niet in orde als je bootsect.lnx groter is dan 512 bytes.
Kopieer nu het bestand bootsect.lnx naar een DOS-geformatteerde diskette als dit je manier is om bestanden naar de NTFS-Windows-partitie over te brengen.
Je kunt het kopieëren met
# mcopy /bootsect.lnx a:
of met
# mount -t msdos /dev/fd0 /mnt
# copy /bootsect.lnx /mnt
# umount /mnt