I think I'm going with an AMD GPU on my PC build so I can have a smoother experience with Linux. But one thing, how do I even edit the graphics settings? (E.g. disabling V-Sync, Anti-Aliasing, etc.).
I couldn't find much on Google. So, how would I configure the settings? Do I edit a text file? Does AMD have a GUI for Linux (I heard there wasn't, but the post was 4 years old). So, how do I edit these settings?
Edit: Distro is Arch.
Videos
Hey guys,
I installed Linux for the first time as a main OS and I decided to stay with it since all my needs for gaming are met. I discovered that all drivers for my AMD graphics card are built in, it was smooth sailing with CS:GO. Did some fixes for periodic crashes, which was easy. Sadly, I miss the driver GUI from windows because I can't manually set contrast, sharpness and other settings like low latency. Is there any way to do that on Linux Mint Cinnamon without installing the AMD drivers? I don't want to install them because everyone is saying that they are broken and will make problems. I mainly look for sharpness, saturation for better visibility in 1080p CS. Otherwise, I need to upgrade to a 2k Monitor in the future..
Go to https://www.amd.com/en/support/download/linux-drivers.html, select Ubuntu x86 64-bit and select your Ubuntu version. Then you can install it with the command sudo dpkg -i driver.deb
Hope this helps! :)
first you need to check if your graphics card is correctly detected and if the drivers are running normally on your system. To do this you can use these commands:
lspci -v | grep -i vga
This will display the device that has been identified as a graphics card by the system
lspci -k | grep -A 3 -i vga
This will display the graphics card and the loaded drivers for it.
Now in case the commands show you that your graphics card is not working you can visit the official AMD website
https://www.amd.com/en/support/download/drivers.html
search for your hardware, download and install the Debian package using the following command
sudo dpkg -i amdgpu-driver.deb
if the drivers still do not work, you always try to change the Kernel version by following this guide:
https://linux.how2shout.com/how-to-change-default-kernel-in-ubuntu-22-04-20-04-lts/
I hope this helps your issue.