Created
November 9, 2025 18:47
-
-
Save jkeam/f2ea0e86aa7eea4e92587a53209a3666 to your computer and use it in GitHub Desktop.
Install ROCm on Fedora Server
This file contains hidden or 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
| #!/bin/bash | |
| # for fedora server, you might need to expand the root | |
| sudo lvextend -r -L+500g /dev/mapper/fedora-root | |
| sudo usermod -a -G render,video $LOGNAME | |
| sudo dnf install rocm rocm-devel | |
| # test | |
| # rocminfo | |
| # rocm-clinfo | |
| # docs: https://fedoraproject.org/wiki/SIGs/HC#Installation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment