Files
ProxmoxVE/install/emby-install.sh
T

47 lines
1.5 KiB
Bash
Raw Permalink Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2023-03-22 20:48:20 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://emby.media/
2023-03-22 20:48:20 -04:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2023-03-22 20:48:20 -04:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
2024-04-28 09:06:03 -04:00
msg_info "Setting Up Hardware Acceleration"
$STD apt-get -y install {va-driver-all,ocl-icd-libopencl1,intel-opencl-icd,vainfo,intel-gpu-tools}
2023-05-15 07:39:30 -04:00
if [[ "$CTTYPE" == "0" ]]; then
2023-12-03 14:40:39 -05:00
chgrp video /dev/dri
chmod 755 /dev/dri
chmod 660 /dev/dri/*
$STD adduser $(id -u -n) video
$STD adduser $(id -u -n) render
2023-03-22 20:48:20 -04:00
fi
2024-04-28 09:06:03 -04:00
msg_ok "Set Up Hardware Acceleration"
2023-03-22 20:48:20 -04:00
2025-04-01 14:33:26 +02:00
LATEST=$(curl -fsSL https://api.github.com/repos/MediaBrowser/Emby.Releases/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
2023-03-22 20:48:20 -04:00
msg_info "Installing Emby"
2025-04-01 10:58:29 +02:00
curl -fsSL "https://github.com/MediaBrowser/Emby.Releases/releases/download/${LATEST}/emby-server-deb_${LATEST}_amd64.deb" -o $(basename "https://github.com/MediaBrowser/Emby.Releases/releases/download/${LATEST}/emby-server-deb_${LATEST}_amd64.deb")
2024-03-03 18:02:12 -05:00
$STD dpkg -i emby-server-deb_${LATEST}_amd64.deb
2024-04-28 09:06:03 -04:00
if [[ "$CTTYPE" == "0" ]]; then
sed -i -e 's/^ssl-cert:x:104:$/render:x:104:root,emby/' -e 's/^render:x:108:root,emby$/ssl-cert:x:108:/' /etc/group
else
sed -i -e 's/^ssl-cert:x:104:$/render:x:104:emby/' -e 's/^render:x:108:emby$/ssl-cert:x:108:/' /etc/group
fi
2023-03-22 20:48:20 -04:00
msg_ok "Installed Emby"
motd_ssh
2023-05-15 07:39:30 -04:00
customize
2023-03-22 20:48:20 -04:00
msg_info "Cleaning up"
2024-06-02 08:00:22 -04:00
$STD apt-get -y autoremove
$STD apt-get -y autoclean
2024-03-03 18:02:12 -05:00
rm emby-server-deb_${LATEST}_amd64.deb
2023-03-22 20:48:20 -04:00
msg_ok "Cleaned"