0

I have performed an update via apt-get and, after the reboot, one of the displays is not detected anymore. Both the displays I have work, but they simply mirror each other.

I have tried via Displays settings but only a ''built-in display'' is detected.

enter image description here

My system's specifics are:

Distributor ID:
Ubuntu Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial

Graphic card:
VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Lexa XT [Radeon PRO WX 3100] [1002:6985]

Dirvers:

lspci -nnk | grep -i vga -A3
65:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Lexa XT [Radeon PRO WX 3100] [1002:6985]
Subsystem: Dell Device [1028:0b0c]
65:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Baffin HDMI/DP Audio [Radeon RX 550 640SP / RX 560/560X] [1002:aae0]
Subsystem: Dell Device [1028:aae0]

Thank you for your help.

Jeff
  • 1,674

1 Answers1

0

Use xrandr to manage your displays:

  • to automatically detect displays:

    xrandr --auto
    
  • to set the displays to extend each other you can do something like:

    xrandr --output YOUR_DISPLAY_NAME --left-of VGA_NAME/HDMI_NAME
    

you can find more at the docs

Gabriel Ziegler
  • 1,486
  • 2
  • 16
  • 23