0

After finally being able to install and get Ubuntu to dual boot, I went back to Windows to get some files to transfer and I got the error code above. When installing Ubuntu I chose the something else option and created the partitions myself. How do i get windows to start working again?

Kaz Wolfe
  • 34,122
  • 21
  • 114
  • 172

1 Answers1

1

First off, you need your Windows Install DVD/USB.

Pop that into your laptop and follow the prompts until you get an option to Repair your Computer. Click that, and follow the prompts again until you get to Startup Repair. Run that and the system will automagically try to fix any problems Windows may have.

Note that this might break GRUB2, thus not letting you into Ubuntu. To fix this, use an Ubuntu Live CD and run this command in an elevated terminal:

sudo grub-install /dev/sda

Replace /dev/sda with whatever your Drive Identifier is. You can find this by using lsblk and looking for the drive with the most partitions on it.

Note: You may need to change your BIOS boot order to boot from the USB drive first.

This method does not cause data loss unless your system is seriously borked.

Kaz Wolfe
  • 34,122
  • 21
  • 114
  • 172