Friend dropped off a computer after trying to dual boot winblows 10

Gamerhomie

New Member
Joined
Jan 29, 2021
Messages
2
Reaction score
0
Credits
17
Man screwed his computer and now its stuck in grub recovery mode and I have no clue what to do. Any help would be appreciated, currently have a USB stick with windows 10 loaded on it.
 

Attachments

  • 20210128_212500.jpg
    20210128_212500.jpg
    1 MB · Views: 180


Might want to have a look here
already tried those solutions and it didn't work, tried 5 different approaches on youtube and they didnt work either
 
What Linux distro was he trying to install and dual boot with Windows?

I would boot up a Live USB or DVD with Linux and see what partitions exist if any first.
Linux Mint would work or you could just use a Live USB or DVD of gparted Live.

Once you know what's installed than you can decide what to do.
 
Have you tried to use a live USB and re-install the grub from that
If it is a Buntu based OS you will need the LIVE USB
With the Live USB booted up now we need to mount the partition your Ubuntu Installation is on. If you are not sure which it is, launch GParted (included in the Live CD) and find out. It is usually a EXT4 Partition. Usually it is sda1 - just remember to change sda1 to whatever it actually is then when you get to the grub-install part just drop the 1

Code:
sudo mount -t ext4 /dev/sda1 /mnt
now we need to bind the directories that grub needs to access
Code:
sudo mount --bind /dev /mnt/dev &&
Code:
sudo mount --bind /dev/pts /mnt/dev/pts &&
Code:
sudo mount --bind /proc /mnt/proc &&
Code:
sudo mount --bind /sys /mnt/sys
Now we need chroot
Code:
sudo chroot /mnt
now we install the grub, don't need sudo here since we are chroot
Code:
grub-install /dev/sda
now lets check it
Code:
grub-install --recheck /dev/sda
Code:
update-grub
Now we exit chroot and unmount
Code:
exit &&
Code:
sudo unmount /mnt/sys &&
Code:
sudo unmount /mnt/proc &&
Code:
sudo unmount /mnt/dev/pts &&
Code:
sudo unmount /mnt/dev &&
Code:
sudo unmount /mnt

now restart and hopefully the grub is back
 


Top