Skip to content

Commit

Permalink
til: hwe + jellyfin + amd
Browse files Browse the repository at this point in the history
  • Loading branch information
pypeaday committed Dec 14, 2024
1 parent a368f8f commit cd3ebf8
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions pype.dev/content/til/jellyfin-container-updates-for-hwe-+-amd.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
date: 2024-12-14 11:27:15
templateKey: til
title: Jellyfin container updates for HWE + AMD
published: True
tags:
- containers
- linux
- tech

---

I use LSIO Jelyfin container for the easy addon they provide for AMD GPUs but I couldn't get trickplay to work with HWE...

There was almost NOTHING on the internet about the error, and all the threads were about BSD systems...

Thankfully someone posted [on the formum here](https://forum.jellyfin.org/t-jellyfin-amd-docker) but the only answer was to literally upgrade stuff in the container...

Someday maybe I'll build off of LSIO to add this, but until then I shell'd in and homelab'd the hell out of it

> THIS IS INSIDE THE CONTAINER - I use Portianer to make it easy
```
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
```

0 comments on commit cd3ebf8

Please sign in to comment.