-1

After a Windows 10 update my dual boot has been wiped. I used my USB with Ubuntu 18.10 to boot my computer, went to a live session, opened terminal and typed :

sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair && boot-repair

The response was that there are no official repositories for Cosmic cuttlefish. Internet is connected as I can access items in firefox.

Is this problem related to Cosmic being replaced by Ubuntu version 19? I have seen similar issues trying to update other software. The problem is that I have a Ryzen 3 2200G cpu that only has Win10 drivers. AMD does not supply anything for any other Windows (including win7) and no Linux drivers of any sort. The only Linux I could use is Ubuntu 18.10: Ubuntu 18.04 and 19.04 do not support my CPU and neither does 19.10. So I am being forced to "update" from Ubuntu 18:10 to what? I had expected this sort of bullying from microsoft, but from Ubuntu? I accept that I should not have bought an AMD cpu but its too late.

Is there any way to keep using cosmic cuttlefish or am I forced back to Windows? Thank you for any help

muru
  • 207,228
Peterk
  • 9

2 Answers2

1

Note: At power up, if you boot directly into Windows, without seeing the GRUB menu, then the following may not apply. Different fix.


Windows 10 Anniversary Update, and the more recent Windows 10 Creators Update, have a really bad habit of wiping out Linux partitions on MBR disks. Microsoft has known about this bug for quite some time, but has chosen not to fix it. Sounds like you're a victim.

Recovery is possible, but it can be tricky.

Boot to a current Ubuntu Live DVD/USB.

Open Software & Updates and make sure that all of your software repositories (except proposed) are enabled.

In terminal...

sudo apt-get update           # update the software database
sudo apt-get install testdisk # install testdisk
man testdisk                  # read the manual
sudo testdisk                 # start testdisk

You can also get specific instructions here: http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step

Help for photorec here: https://www.cgsecurity.org/wiki/PhotoRec_Step_By_Step

Note: after recovery, strongly consider changing your MBR formatted disk to GPT format, so future MS updates won't wipe it again.

heynnema
  • 73,649
0

I created a boot usb of Boot-repair using Balena Etcher. Booting from this allowed me to use the standard repair (top offer on the startup window) which fixed my computer with some errors. Currently I am in my Ubuntu 18:10 and trying to see if there are any issues. So far all is good.

Peterk
  • 9