Sobald Vista bootet und sich den MBR angeeignet hat, mit Fedora-Installationsmedium booten und MBR reparieren. Je nach verwendetem Bootmanager ein wenig anders, aber im Prinzip geht das mit jedem Linux so.
Alternativ kannst Du Dir natürlich mit einem geeigneten Tool den MBR sichern.
Zitat:
To save the MBR to a file (this contains the partition table too):
dd if=/dev/hda of=hda-mbr-full bs=512 count=1
To save the MBR, without the partition table, to a file:
dd if=/dev/hda of=hda-mbr-nopart bs=446 count=1
To save a boot sector (e.g. partition 3) to a file:
dd if=/dev/hda3 of=hda3-bootsect bs=512 count=1
|
Mit vertauschten Argumenten kannst dann nachher restoren.