Recent content by cstrahm

  1. C

    Restoring GRUB after installing Win 10

    Boot to a Linux Live USB or CD. Open terminal and type these commands. mount /dev/sda3 /mnt mount --bind /dev /mnt/dev mount --bind /dev/pts /mnt/dev/pts mount --bind /proc /mnt/proc mount --bind /sys /mnt/sys chroot /mnt grub-install /dev/sda update-grub exit umount /mnt/dev/pts umount...