Skip to content

Instantly share code, notes, and snippets.

@asciitohex
Created November 23, 2017 11:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save asciitohex/ec24762ae4cdf94d685d6f15db6239a1 to your computer and use it in GitHub Desktop.
Save asciitohex/ec24762ae4cdf94d685d6f15db6239a1 to your computer and use it in GitHub Desktop.
AMD LINUX - Download AMD driver and SDK
# Download AMD driver and SDK
cd /tmp
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install p7zip-full
# Install AMD Driver
wget --referer="http://support.amd.com/en-us/kb-articles/Pages/AMDGPU-PRO-Install.aspx" https://www2.ati.com/drivers/linux/ubuntu/amdgpu-pro-16.50-362463.tar.xz
7z x amdgpu-pro-16.50-362463.tar.xz && 7z x amdgpu-pro-16.50-362463.tar
chmod +x amdgpu-pro-16.50-362463/amdgpu-pro-install
sudo amdgpu-pro-16.50-362463/amdgpu-pro-install
wget http://cs.wisc.edu/~riccardo/assets/AMD-APP-SDKInstaller-v3.0.130.136-GA-linux64.tar.bz2
# Install AMD SDK
tar -xvf AMD-APP-SDKInstaller-v3.0.130.136-GA-linux64.tar.bz2
chmod +x AMD-APP-SDK-v3.0.130.136-GA-linux64.sh
sudo bash AMD-APP-SDK-v3.0.130.136-GA-linux64.sh
@asciitohex
Copy link
Author

sudo usermod -a -G video $LOGNAME

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment