Bootloader
http://en.wikipedia.org/wiki/Booting
http://en.wikipedia.org/wiki/Category:Boot_loaders
http://en.wikipedia.org/wiki/Comparison_of_boot_loaders
GRUB
http://www.gnu.org/software/grubRéparation : Super Grub Disk http://supergrub.forjamari.linex.org
Réinstallation de GRUB
Exemple : portable PB / et /boot sur /dev/sda5
sudo grub
root (hd0,4)
setup (hd0)
Grub 1 /boot/grub/menu.lst
Grub 2 /boot/grub/grub.cfg mis à jour automatiquement par update-grub
Configuration graphique
startupmanager
LILO
http://lilo.go.dyndns.org http://home.san.rr.com/johninsd/pub/linux/liloeLiLO
http://elilo.sourceforge.netNTLDR (Win)
Das U-Boot (Universal Bootloader)
http://www.denx.de/wiki/UBootBoot réseau
PXE (Preboot Execution Environment)Etherboot
http://www.etherboot.org
http://www.rom-o-matic.net
Master Boot Record MBR
Le MBR occupe 512 octetsSauvegarder le MBR du disque hda dans le fichier mbr.sav
dd if=/dev/hda of=mbr.sav bs=512 count=1
Restaurer le MBR du disque hda à partir du fichier mbr.sav
dd if=mbr.sav of=/dev/hda bs=512 count=1
Remettre à zéro le MBR du disque hda (équivalent de fdisk /mbr sous DOS) :
dd if=/dev/zero of=/dev/hda bs=446 count=1
Les 64 derniers octets du MBR contiennent la table des partitions.
446=512-64 car on ne veut pas toucher à la table des partitions
BIOS
Boot
GRUB
LILO
Linux
MBR
NTLDR
voir aussi :
- LinuxPourChaqueUsage
- GravureCD
There are no comments on this page. [Add comment]