
In this article, we will be discussing the detailed steps on how to install proprietary AMD drivers on Ubuntu 20.04 for graphics and gamma correction. This process is essential for users who want to optimize their system’s graphics performance and adjust the gamma settings of their display.
To install proprietary AMD drivers on Ubuntu 20.04 for graphics and gamma correction, you need to download the appropriate driver for your GPU from the AMD website, extract the downloaded file, and run the installation script. After the installation is complete, you can verify it by checking the driver status using a command.
Prerequisites
Before we proceed, it’s important to ensure that your system meets the requirements specified by AMD for the driver version you are installing. You should be running Ubuntu 20.04 and have an AMD GPU compatible with the AMDGPU drivers. Additionally, it’s recommended to have a backup of your important data before proceeding with any driver installation.
Downloading the Drivers
Firstly, you need to download the appropriate driver for your GPU.
- Visit the AMD website’s support page for Linux drivers at AMD Linux Support.
- Look for the appropriate driver for your GPU. Since you have integrated graphics, you need to download the AMDGPU drivers.
- Download the tar.xz file for the latest version of the AMDGPU drivers compatible with Ubuntu 20.04.
Extracting the Downloaded File
After downloading the driver, you need to extract the contents of the tar.xz file.
- Open a terminal. You can do this by pressing
Ctrl + Alt + T
. - Navigate to the directory where the downloaded tar.xz file is located using the
cd
command. For example, if the file is in your Downloads folder, you would typecd ~/Downloads
. - Use the following command to extract the contents of the file:
Here,tar -Jxvf amdgpu-pro-20.20-1098277-ubuntu-20.04.tar.xz
-J
specifies the compression method,-x
stands for extract,-v
for verbose (show progress), and-f
specifies the file.
Installing the Drivers
After extracting the driver files, you can now proceed with the installation.
- Change to the extracted directory using the
cd
command:cd amdgpu-pro-20.20-1098277-ubuntu-20.04
- Run the installation script with the following command:
The./amdgpu-install
./
before the script name is used to execute the script in the current directory. - Follow the on-screen instructions to complete the installation.
Verifying the Installation
After the installation is complete, you should have the proprietary AMD drivers installed on your Ubuntu 20.04 system. You can verify this by checking the driver status using the following command:
sudo lshw -c video | grep configuration
The sudo
command is used to execute the command with root privileges, lshw
lists hardware, -c video
specifies the class of hardware to list, and grep
is used to filter the output.
If the installation was successful, you should see the AMDGPU driver being used.
Conclusion
Installing the proprietary AMD drivers on Ubuntu 20.04 is a straightforward process that can greatly enhance your system’s graphics performance. Whether you’re a gamer, a graphics designer, or just a regular user who wants to get the most out of your system, installing these drivers is a step in the right direction. Remember to always back up your data before making any significant changes to your system.
No, proprietary AMD drivers are specifically designed for AMD GPUs and will not work with other GPU brands.
The steps mentioned in this article are specifically for Ubuntu 20.04. If you are using a different version of Ubuntu, you will need to find the appropriate driver version for your specific Ubuntu version.
It is recommended to remove any existing open-source drivers before installing the proprietary AMD drivers. You can do this by following the instructions provided by AMD or by using the package manager to remove any relevant packages.
Yes, installing proprietary AMD drivers can significantly improve gaming performance as they are optimized for AMD GPUs and provide better support for graphics-intensive applications.
Yes, you can revert back to the open-source drivers by uninstalling the proprietary AMD drivers and reinstalling the appropriate open-source drivers for your GPU. It’s always a good idea to have a backup of your important data before making any changes to your drivers.