So I have the AMD R5 M430 video card, but there is no official driver so I wanted to seek some open source drivers, and I found this Ubuntu 14.04.5/16.04/16.10 and AMD graphics and after all I read Oibaf's driver (https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers) fits good, but I don't know how to install it.
I want a good driver for this video card beacuse I want to use it for gaming and other stuff, I mean I want to use it and ditch the Intel video card beacuse I hate it and I don't want to use it.
sudo lshw -c video
should show you the one that is in use. – Terrance Jul 25 '17 at 18:39lspci -nnk | grep -i vga -A3 | grep 'in use'
– Terrance Jul 25 '17 at 18:40GRUB_CMDLINE_LINUX_DEFAULT="quiet splash XXX.modeset=1"
Should I write radeon instead of XXX? – sticsk Jul 25 '17 at 19:18radeon
instead of XXX. – Terrance Jul 25 '17 at 19:18sudo
why?sudo echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
bash: /sys/kernel/debug/vgaswitcheroo/switch: Permission denied
– sticsk Jul 25 '17 at 19:38echo OFF
to the file thesudo
is not carried over to the>
part of it. So the command should beecho OFF | sudo tee /sys/kernel/debug/vgaswitcheroo/switch
orsudo bash -c 'echo OFF > /sys/kernel/debug/vgaswitcheroo/switch'
– Terrance Apr 11 '21 at 18:36