3

After upgrading to Ubuntu 20.04, my screen has now two vertical green lines (Here a screenshot of my desktop:

nlinn

Does anyone know why is that and how I can get rid of them?

In case: my video cards are

VGA compatible controller: Intel UHD Graphics 630 (mobile) 3D controller: NVIDIA GP107M [GeForce GTX 1050 Ti Mobile]

Machine: Dell XPS 15 9570

karel
  • 122,292
  • 133
  • 301
  • 332

2 Answers2

2

I'm still looking and I seem to have found a solution ... see this thread. Fuzzy graphics after upgrading to Ubuntu 20.04 when using the code

sudo apt purge xserver-xorg-video-intel

At least it worked for me and I no longer have broken graphics on my multi-PGU machine.

0

I join the interviewer and follow this thread. I have the same problem. I have a machine with a multi-GPU = integrated Intel HD Graphics 630, a dedicated 7x NVIDIA GeForce GTX 980 Ti. Since I only use nVidia for CUDA calculations, the display is sent to Intel HD - by editing /etc/X11/xorg.conf

Section "ServerLayout"
Identifier "layout"
Screen 0 "intel"
Screen 1 "nvidia1"
EndSection
Section "Device"
Identifier "intel"
Driver "intel"
BusID "PCI:00:02:0"
EndSection
Section "Screen"
Identifier "intel"
Device "intel"
EndSection
Section "Device"
Identifier "nvidia1"
Driver "nvidia"
BusID "PCI:01:00:0"
EndSection
Section "Screen"
Identifier "nvidia1"
Device "nvidia1"
EndSection