From 28ac44926ceb0a39f5431fce0cdc91a06ea62ffc Mon Sep 17 00:00:00 2001 From: tteckster Date: Fri, 21 Oct 2022 16:41:03 -0400 Subject: [PATCH] Update jellyfin-install.sh hardware acceleration - check for privileged/unprivileged --- setup/jellyfin-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/jellyfin-install.sh b/setup/jellyfin-install.sh index f7f3576e..c8d0e63d 100644 --- a/setup/jellyfin-install.sh +++ b/setup/jellyfin-install.sh @@ -75,6 +75,7 @@ apt-get install -y apt-transport-https &>/dev/null apt-get install -y software-properties-common &>/dev/null msg_ok "Installed Dependencies" +if [[ -z "$(grep -w "100000" /proc/self/uid_map)" ]]; then msg_info "Setting Up Hardware Acceleration" apt-get -y install \ va-driver-all \ @@ -85,6 +86,7 @@ apt-get -y install \ /bin/chmod 755 /dev/dri /bin/chmod 660 /dev/dri/* msg_ok "Set Up Hardware Acceleration" +fi msg_info "Setting Up Jellyfin Repository" sudo add-apt-repository universe -y &>/dev/null