In this tutorial, we will show you how to install AMD Radeon Driver on Ubuntu 20.04 LTS. For those of you who didn’t know, Installing AMD Radeon drivers on the Ubuntu system is an easy task that can be done in less than a minute. The Radeon driver is needed by your AMD Radeon Graphics GPU to function with better performance. Some Linux distributions offer the proprietary driver pre-packaged as part of its standard package repository making the entire AMD Radeon Linux Driver procedure extremely easy to follow.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo
‘ to the commands to get root privileges. I will show you the step-by-step installation of the AMD Radeon Driver on Ubuntu 20.04 (Focal Fossa). You can follow the same instructions for Ubuntu 18.04, 16.04, and any other Debian-based distribution like Linux Mint.
Prerequisites
- A server running one of the following operating systems: Ubuntu 20.04, 18.04, and any other Debian-based distribution like Linux Mint.
- It’s recommended that you use a fresh OS install to prevent any potential issues.
- SSH access to the server (or just open Terminal if you’re on a desktop).
- A
non-root sudo user
or access to theroot user
. We recommend acting as anon-root sudo user
, however, you can harm your system if you’re not careful when acting as the root.
Install AMD Radeon Driver on Ubuntu 20.04 LTS Focal Fossa
Step 1. To ensure a smooth installation process, it’s essential to update your system packages to their latest versions. This step helps resolve any potential compatibility issues and provides access to the most recent bug fixes and security patches. Open a terminal and run the following commands:
sudo apt update sudo apt upgrade
Step 2. Installing AMD Radeon Driver on Ubuntu 20.04.
- Install AMD Radeon Driver from the official website.
You can obtain the required driver for your system from AMD’s release Page. Make sure to download the correct packages before updating against the current upstream:
wget https://drivers.amd.com/drivers/linux/amdgpu-pro-21.20-1271047-ubuntu-20.04.tar.xz
Next, extract the downloaded file:
tar -xf amdgpu-pro-21.20-1271047-ubuntu-20.04.tar.xz
After that, switch to the extracted folder and run the below script to install the open variant:
./amdgpu-install
If you’re using AMD Pro products, you’ll need to install the Pro variant of this driver. Run the following script below to install the Pro stack:
./amdgpu-pro-install
- Install AMD Radeon Driver using the PPA third-party repository.
By default, AMD Radeon Driver is not available on the Ubuntu base repository. Now we add the PPA AMD Radeon driver repository to your Ubuntu system:
sudo add-apt-repository ppa:oibaf/graphics-drivers
After adding all the essential items, it’s time to run the system update and install it:
sudo apt update sudo apt upgrade
After installing the AMD Radeon driver, it’s crucial to verify that the installation was successful and the driver is functioning correctly. To check the driver version and OpenGL information, use the following command:
glxinfo | grep "OpenGL version"
The output should display the OpenGL version string, indicating that the AMD Radeon driver is properly installed and configured.
Congratulations! You have successfully installed AMD Radeon Driver. Thanks for using this tutorial for installing the AMD Radeon Driver on Ubuntu 20.04 LTS Focal Fossa system. For additional help or useful information, we recommend you check the official AMD website.