I am having some large issues right now. I decided to go forward with a Windows 10 upgrade after it worked fine on my other dual boot. Of course, I knew that I would have to fix Grub in some way afterwards.
I got to grub rescue. Okay so I got out a live USB and installed boot-repair and ran it. I rebooted after it said the problem was fixed and the problem was not fixed.
I booted into my live USB again and checked partitions. I used to run Windows 8.1, Kubuntu, and Ubuntu MATE. From what I can tell, my Ubuntu partitions are gone and there is unallocated space where they were.
Does anyone know of a fix?
EDIT: Boot info summary isn't looking good. It says there are no linux systems installed. You can find it here: http://paste.ubuntu.com/14481248.
EDIT 2: I was able to get into Windows using SuperGRUB2Disk. Will a reinstall of Ubuntu fix Grub?
EDIT 3: This is my latest boot info summary after using test-disk and boot-repair. http://paste.ubuntu.com/14491353
sudo fdisk -l /dev/sda
andsudo gdisk -l /dev/sda
and check if you see in partition list of any of the outputs a name likeLinux anything
(except forswap
). It's just that the only valid reason for the problem, I can think of, is that somehow GPT and MBR tables messed up, perhaps like MBR was used before, and now it is GPT… So, oldfdisk
utility doesn't know of GPT, it would check MBR — butgdisk
would rather check GPT (if it exist). If that won't work, then I'm out of ideas, I'm really curious what else could've done Windows OS. – Hi-Angel Jan 13 '16 at 00:42/dev/sda3
, then runsudo fsck.ext4 /dev/sda3
. I'm really not sure if that would work, but worth at least checking that. – Hi-Angel Jan 13 '16 at 00:55