Last active
September 6, 2015 22:14
-
-
Save codepainkiller/ad8e66eb6a1b8e081407 to your computer and use it in GitHub Desktop.
Instalar/Recuperar GRUB
This file contains hidden or 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
# Desde un Live CD de Linux, acceder como super usuario | |
> sudo su | |
# Listar partciones de disco duro | |
> fdisk -l | |
# Montar la partición | |
> mount /dev/sda[numero_particion] /mnt/ | |
# Instalar grub | |
> grub-install --root-directory=mnt/ /dev/sda | |
# Reiniciar computador. Listo! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment