3

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.

sticsk
  • 1,601
  • 7
  • 18
  • 34

1 Answers1

3

With your instructions you linked, they seem kind of crazy, but really they are very easy to install. From a terminal window, run the following lines:

sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt update
sudo apt upgrade

It should download automatically and install and set up the driver for you.

Hope this helps!

Terrance
  • 41,612
  • 7
  • 124
  • 183
  • So I did good in the first time, how can I check if I use the AMD GPU? And stop using the intel – sticsk Jul 25 '17 at 18:37
  • 1
    @sticsk sudo lshw -c video should show you the one that is in use. – Terrance Jul 25 '17 at 18:39
  • 1
    @sticsk Or you can run lspci -nnk | grep -i vga -A3 | grep 'in use' – Terrance Jul 25 '17 at 18:40
  • 1
    @sticsk Also, look here for the hybrid graphics: https://help.ubuntu.com/community/HybridGraphics – Terrance Jul 25 '17 at 18:44
  • Thanks, I'll let you know if something's going wrong! I am installing it right now – sticsk Jul 25 '17 at 18:45
  • so I have this GRUB_CMDLINE_LINUX_DEFAULT="quiet splash XXX.modeset=1" Should I write radeon instead of XXX? – sticsk Jul 25 '17 at 19:18
  • 1
    @sticsk Yes it should be radeon instead of XXX. – Terrance Jul 25 '17 at 19:18
  • When I try to connect to my dedicated video card it says Permission Denied, even with sudo why? sudo echo OFF > /sys/kernel/debug/vgaswitcheroo/switch bash: /sys/kernel/debug/vgaswitcheroo/switch: Permission denied – sticsk Jul 25 '17 at 19:38
  • @sticsk Unfortunately, I only know how to install the radeon drivers and use them. My laptop that I did it on was successful, but mine doesn't have Intel on it as a secondary or primary card, or I would know exactly how to do that. – Terrance Jul 25 '17 at 19:40
  • Well, alright, I gotta ask another question then, thanks for help! – sticsk Jul 25 '17 at 19:41
  • @sticsk Sorry for a late response back, but I looked at our conversation here and when you were trying to echo OFF to the file the sudo is not carried over to the > part of it. So the command should be echo OFF | sudo tee /sys/kernel/debug/vgaswitcheroo/switch or sudo bash -c 'echo OFF > /sys/kernel/debug/vgaswitcheroo/switch' – Terrance Apr 11 '21 at 18:36