Created
February 20, 2014 14:17
-
-
Save m-radzikowski/9114578 to your computer and use it in GitHub Desktop.
Script to restore Grub2 for openSUSE after for example Windows installation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# openSUSE rescue system login: root | |
fdisk -l | |
mount /dev/sda5 /mnt # assume that linux partition (/) is on /dev/sda5, you can see this after "fdisk -l" command | |
mount --bind /dev /mnt/dev | |
mount --bind /sys /mnt/sys | |
mount --bind /proc /mnt/proc | |
chroot /mnt | |
grub2-mkconfig -o /boot/grub2/grub.cfg | |
grub2-install /dev/sda |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment