2

At first, I was facing too big display problem to fix this I ran these commands as I was found this as a solution in a link.

sudo apt-get update && clear && apt-cache search nvidia-[0-9] | grep 'binary driver'

sudo apt-get purge nvidia*

sudo apt-get install nvidia-340 nvidia-settings

sudo nvidia-xconfig

After rebooting!! I am facing a black screen problem!

Please find the video on this link (link)

How to fix this problem, I tried setting nomodeset but no joy.

karel
  • 122,292
  • 133
  • 301
  • 332

1 Answers1

0

Let the built-in ubuntu-drivers program decide automatically which proprietary graphics drivers to install. Open the terminal and type:

sudo apt update
sudo apt remove '^nvidia'
sudo apt autoremove
sudo ubuntu-drivers install && sudo reboot

The install option of ubuntu-drivers installs drivers that are appropriate for automatic installation including their dependencies.

karel
  • 122,292
  • 133
  • 301
  • 332