0

Recently, I run an update for my Ubuntu system that totally messed up my system. Neither graphics driver nor mouse driver nor WLAN driver are recognized. That means I don't have any Internet connection either.

Is there a way out of this mess without re-installing my OS?

1 Answers1

1

Thanks to mark kirby's suggestion, I managed to fix the problem.

What I did to fix my problem :

  1. In GRUB, I selected advanced options for Ubuntu and picked the kernel before the latest one and loaded that kernel.

  2. I updated my packages using sudo apt-get update.

  3. I cleaned the downloaded packages using sudo apt-get clean.

  4. I removed unneeded packages using sudo apt-get autoremove.

  5. I reconfigured all packages using sudo dpkg --configure -a.

  6. I fixed broken packages using sudo apt-get install -f.

  7. I removed the latest kernel using sudo apt-get purge linux-image-x.x.x-x-generic.

  8. I updated my GRUB using sudo update-grub2.

  9. I rebooted my system.


References I used for this prodecure :