Hi, I recently installed some rocm
packages trying to get blender to work with HIP (I couldn’t). Now I’m trying to uninstall some of the libraries but I’m having some issues.
After uninstalling rocm-hip
and rocm-runtime
some rocm related libraries are still on the system:
⋊> ~ dnf list --installed | grep rocm 15:10:38
rocm-clinfo.x86_64 5.7.1-1.fc39 @updates
rocm-cmake.noarch 5.7.0-1.fc39 @updates
rocm-comgr.x86_64 17.0-3.fc39 @updates
rocm-comgr-devel.x86_64 17.0-3.fc39 @updates
rocm-device-libs.x86_64 17.1-1.fc39 @updates
rocm-rpm-macros.x86_64 1.0-7.fc39 @updates
rocm-rpm-macros-modules.x86_64 1.0-7.fc39 @updates
rocm-smi.x86_64 5.7.1-1.fc39 @updates
rocm-smi-devel.x86_64 5.7.1-1.fc39 @updates
(as you can see I’m using Fish shell, maybe it’s useful info, idk)
I intuitively try to uninstall this libraries with the command sudo dnf remove 'rocm-*'
however dnf shows this list of packages and dependencies and I’m not sure if I’m safe to proceed with the operation.
⋊> ~ sudo dnf remove 'rocm-*' 15:09:54
Dependencies resolved.
============================================================================================================
Package Architecture Version Repository Size
============================================================================================================
Removing:
rocm-clinfo x86_64 5.7.1-1.fc39 @updates 79 k
rocm-cmake noarch 5.7.0-1.fc39 @updates 120 k
rocm-comgr x86_64 17.0-3.fc39 @updates 9.2 M
rocm-comgr-devel x86_64 17.0-3.fc39 @updates 98 k
rocm-device-libs x86_64 17.1-1.fc39 @updates 3.2 M
rocm-rpm-macros x86_64 1.0-7.fc39 @updates 19 k
rocm-rpm-macros-modules x86_64 1.0-7.fc39 @updates 19 k
rocm-smi x86_64 5.7.1-1.fc39 @updates 1.5 M
rocm-smi-devel x86_64 5.7.1-1.fc39 @updates 216 k
Removing unused dependencies:
clang x86_64 17.0.6-1.fc39 @updates 586 k
clang-libs x86_64 17.0.6-1.fc39 @updates 112 M
clang-resource-filesystem noarch 17.0.6-1.fc39 @updates 476
cmake x86_64 3.27.7-1.fc39 @fedora 31 M
cmake-data noarch 3.27.7-1.fc39 @fedora 7.8 M
environment-modules x86_64 5.3.1-2.fc39 @fedora 1.6 M
gc x86_64 8.2.2-4.fc39 @fedora 258 k
gcc x86_64 13.2.1-6.fc39 @updates 95 M
gcc-c++ x86_64 13.2.1-6.fc39 @updates 34 M
glibc-devel x86_64 2.38-14.fc39 @updates 35 k
glibc-headers-x86 noarch 2.38-14.fc39 @updates 2.1 M
guile22 x86_64 2.2.7-9.fc39 @fedora 44 M
kernel-headers x86_64 6.6.3-200.fc39 @updates 6.1 M
libstdc++-devel x86_64 13.2.1-6.fc39 @updates 14 M
libxcrypt-devel x86_64 4.4.36-2.fc39 @fedora 30 k
lld-libs x86_64 17.0.6-1.fc39 @updates 5.3 M
make x86_64 1:4.4.1-2.fc39 @fedora 1.8 M
nagelfar noarch 1.3.3-3.fc39 @fedora 693 k
rhash x86_64 1.4.3-3.fc39 @fedora 353 k
vim-filesystem noarch 2:9.0.2167-1.fc39 @updates 40
Transaction Summary
============================================================================================================
Remove 29 Packages
Freed space: 371 M
Is this ok [y/N]: n
Operation aborted.
My main concerns are with gc
, clang
and make
related packages. Also kernel-headers
.
Now I’m not sure what to do…