Wie findet man heraus, welcher von den evtl. mehreren installierten Bootloadern aktiv ist?
Assuming your hard drive is at SDA then:
sudo dd if=/dev/sda bs=512 count=1 2>&1 | grep GRUB - For GRUBsudo dd if=/dev/sda bs=512 count=1 2>&1 | grep LILO - For LILOsudo dd if=/dev/sda bs=512 count=1 2>&1 | grep ACRON - For Acronissudo dd if=/dev/sda bs=512 count=1 2>&1 | grep RED - For RedBoot
If ONE of the above outputs this line Binary file (standard input) matches then you have found the match for your boot loader. This means that you are positive for the boot loader you have just searched for.

Jetzt kommentieren