J'ai remis la main dessus.
http://www.linuxquestions.org/questions ... adid=17146
Voir surtout le dernier post. et garder ce site dans tes signets
Perso, ça a marché aux p'tits oignons que ce soit avec 2k ou xp
Le détail pour ceux que ça intéresse:
This is what I did to dual boot Win2000 & Mandrake Linux 8.0:
1. Install Windows 2000. Partition part of it for Windows 2000 (either NTFS or FAT32 will work).
2. Install Linux (any distribution).
You have to follow the following two steps exactly:
a. When asked where to install LILO, DO NOT install LILO in the MBR (Master Boot Record), since this will overwrite Windows OS Loader and you may have to reinstall Windows 2000. Instead, install LILO in other partition (superblock of the root partition of Linux drive).
b. Create a Linux boot disk. For now, this will be your only way of booting up to Linux.
3. After you have finished installing Linux, boot up to Linux (use the Linux boot disk).
4. Dump Linux boot sector to a file. Type the following:
dd if=/dev/hda2 of=/bootsect.lnx bs=512 count=1
If your linux boot partition is not in the hda2 partition, change if=/dev/hda2 accordingly (use df to get the correct partition).
For example, if your linux boot partition is in hda3, change the command to:
dd if=/dev/hda3 of=/bootsect.lnx bs=512 count=1
Once you run this command, you will have bootsect.lnx file in "/" (root) directory.
5. Mount a DOS formatted disk. Type:
mount -t msdos /dev/fd0 /mnt
6. Copy the bootsect.lnx file to the diskette:
cp /bootsect.lnx /mnt
7. Boot up to Windows 2000 (by removing the Linux boot disk).
8. After booting up to Windows 2000, insert the DOS disk, and copy the file A:\bootsect.lnx to C:\ drive.
9. Edit C:\boot.ini. Usually this file is not visible. Start notepad, then open file C:\boot.ini. Add the following line to the bottom of the file:
C:\BOOTSECT.LNX="Linux"
10. Now reboot, and you will option to boot either to Windows or Linux.
Good Luck!