2023-11-05, 01:01 AM
I'm assuming you followed our AMD guide?
https://jellyfin.org/docs/general/admini...ualization
Particularly this part.
https://jellyfin.org/docs/general/admini...ualization
Particularly this part.
Quote:Get into the Docker container and install the ROCm OpenCL runtime
Code:
sudo docker exec -u root -it jellyfin bash
apt update && apt install -y curl gpg
mkdir -p /etc/apt/keyrings
curl -fsSL https://repo.radeon.com/rocm/rocm.gpg.key | gpg --dearmor -o /etc/apt/keyrings/rocm.gpg
cat <<EOF | tee /etc/apt/sources.list.d/rocm.sources
Types: deb
URIs: https://repo.radeon.com/rocm/apt/latest
Suites: ubuntu
Components: main
Architectures: amd64
Signed-By: /etc/apt/keyrings/rocm.gpg
EOF
apt update && apt install -y rocm-opencl-runtime
exit