Skip to content

Instantly share code, notes, and snippets.

@Kaapiii
Created April 16, 2020 13:58
Show Gist options
  • Save Kaapiii/51294f155f9cd764c2719bcc3526c40e to your computer and use it in GitHub Desktop.
Save Kaapiii/51294f155f9cd764c2719bcc3526c40e to your computer and use it in GitHub Desktop.
Ubuntu 19.10 and Ubuntu 20.04 (beta) - "Unknown display" / Unable to detect multiple displays with Radeon rx570 gpu

Ubuntu is not able to detect multipble displays when using an gpu from AMD. Error "VGACON disables amdgpu ..."

When searching for graphics card with "sudo lshw -c video" on Ubuntu 19.10 or 20.04 (beta) the following error is shown:

# list graphics/video cards
sudo lshw -c video
#[drm:amdgpu_init [amdgpu]] *ERROR* VGACON disables amdgpu kernel mode setting.

Grup setting on my system "nomodeset" prevented the graphics card driver from loading properly. Ubuntu 19.10 and also 20.04 (beta) was not able to detect multiple displays.

By removing the value from grup, and rebooting the client the issue was gone.

sudo vim /etc/default/grub

# remove "nomodeset" and safe the file
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"

sudo update-grup
sudo reboot
@shanduur
Copy link

Should be update-grub instead update-grup.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment