Created
July 14, 2024 09:49
-
-
Save practicalli-johnny/6f6618ab5a370171a07264f7fcc3ec2a to your computer and use it in GitHub Desktop.
Debian install - AMD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Guide | |
https://rocm.docs.amd.com/projects/install-on-linux/en/latest/how-to/amdgpu-install.html | |
Install | |
```shell | |
sudo apt install amdgpu-install | |
``` | |
Add groups to render and video groups | |
```shell | |
sudo usermod -a -G render,video practicalli && \ | |
sudo usermod -a -G render,video root | |
``` | |
Install basics | |
```shell | |
sudo amdgpu-install --usecase=dkms | |
``` | |
Or install workstation | |
```shell | |
Suggested Ubuntu 22 install - figure out what this does | |
```shell | |
amdgpu-install --usecase=graphics,opencl --vulkan=amdvlk --opencl=legacy | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment