Installieren von Grub 32 Bit in einem 64 Bit OS

Download Skript

 

#DEUTSCH – Installieren von Grub32 nach der Installation eines 64bit OS auf einem System mit 32bit EFI
# (Eine Netzwerkverbindung wird benötigt)

#1.) Bootfähigen USB Stick mit EFI32 Unterstützung herstellen- (Bootia32.efi)
#2.) OS installieren
#3.) Nach der installation nicht neu starten. Terminal öffnen, „sudo -i“ eingeben.
#4.) „lsblk“ eingeben und sich eine Übersicht über die Laufwerke verschaffen.
#5.) mmcblk0p1 / mmcblk0p5 entsprechend der eigenen Laufwerksaufteilung anpassen.
#6.) Skript ausführen.

#ENGLISH – Install Grub32 after installing a 64bit OS on a system with 32bit EFI
# (You will need a network connection)

#1.) Create a bootable USB stick with EFI32 support (bootia32.efi)
#2.) Install your OS
#3.) Dont’t boot after the installation. Open a terminal and write „sudo -i“
#4.) Write „lsblk“ to get a overview about the installed harddrives/partitions
#5.) change „mmcblk0p1 / mmcblk0p5“, so it meets your requirements.
#6.) run the script

#————————————————————————————————
mount /dev/mmcblk0p5 /mnt
mount /dev/mmcblk0p1 /mnt/boot/efi
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done
mount -o bind /etc/resolv.conf /mnt/etc/resolv.conf
chroot /mnt /bin/bash
apt-get update
apt-get -y remove grub-efi-amd64
apt-get -y install grub-efi-ia32
update-grub
update-grub2
#————————————————————————————————

Diese Seite nutzt cookies. Bitte lesen Sie die Datenschutzerklärung für weitere Informationen.