I have Lenovo Ideapad 110 laptop with AMD A8-7410 APU and a dedicated graphics card R5 M430. I have loaded Ubuntu 18.04 on it. But, there is no driver available for the dedicated graphics card. I tried Oibaf graphics drivers with no luck.
How to get the drivers for R5 M430, and make the graphics card working? Need help. Thanks.
lspci -nn |egrep "VGA|Display"
00:01.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Mullins [Radeon R4/R5 Graphics] [1002:9851] (rev 45)
01:00.0 Display controller [0380]: Advanced Micro Devices, Inc. [AMD/ATI] Sun XT [Radeon HD 8670A/8670M/8690M / R5 M330 / M430 / R7 M520] [1002:6660] (rev ff)
lsmod | grep drm
drm_kms_helper 172032 2 amdgpu,radeon
syscopyarea 16384 1 drm_kms_helper
sysfillrect 16384 1 drm_kms_helper
sysimgblt 16384 1 drm_kms_helper
fb_sys_fops 16384 1 drm_kms_helper
drm 401408 20 amdgpu,radeon,ttm,drm_kms_helper
fgrep drm ~/.local/share/xorg/Xorg.*.log
[ 1515.492] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 1515.496] (II) xfree86: Adding drm device (/dev/dri/card1)
radeon
(oramdgpu
if it's a newer model) doesn't support the card? Please add the output oflsmod | grep drm
andfgrep drm ~/.local/share/xorg/Xorg.*.log
to your question. – zwets Aug 07 '18 at 11:08radeon
driver is the driver for your discrete card (or theamdgpu
if the card is a newer model). Unless you have a specific need to install the proprietary drivers, you're all set. – zwets Aug 07 '18 at 18:38DRI_PRIME=1 glxinfo | grep OpenGL
terminal command. – Pilot6 Mar 02 '20 at 10:53