* fix(jellyfin): use setup_hwaccel for robust hardware acceleration Replaces manual hardware acceleration setup with the centralized setup_hwaccel function from tools.func. This fixes the installation failure in privileged containers where /dev/dri does not exist (e.g., when no GPU is passed through). The setup_hwaccel function includes: - Proper error handling for missing /dev/dri - GPU vendor detection (Intel, AMD, NVIDIA) - Graceful fallback when no GPU is available Fixes: Installation fails with 'chgrp: cannot access /dev/dri' when creating privileged containers without GPU passthrough. * refactor(hwaccel): standardize hardware acceleration across all install scripts Migrated all install scripts to use the centralized setup_hwaccel function: - plex-install.sh - emby-install.sh - ersatztv-install.sh - frigate-install.sh - tdarr-install.sh - unmanic-install.sh - channels-install.sh - ollama-install.sh - immich-install.sh (added error handling) Enhanced setup_hwaccel function in tools.func: - Added -d /dev/dri check before setting permissions - Added error handling (2>/dev/null || true) for all /dev/dri operations - Added adduser error handling for video/render groups - No longer fails if no GPU is detected (graceful skip) - Added intel-media-va-driver for newer Intel GPUs - Improved AMD APU support with firmware packages - Better NVIDIA handling (warning instead of failure) This fixes installation failures in privileged containers without GPU passthrough, where /dev/dri does not exist. Supports: Ubuntu, Debian 12 (Bookworm), Debian 13 (Trixie) GPU Support: Intel, AMD, NVIDIA (manual driver) * refactor(hwaccel): complete migration for all GPU apps Migrated remaining GPU apps to setup_hwaccel: - fileflows-install.sh - openwebui-install.sh (added setup_hwaccel - was missing) - tunarr-install.sh Also fixed tools/pve/hw-acceleration.sh: - Added error handling for /dev/dri operations - Added chmod 660 /dev/dri/* that was missing - Added error suppression for adduser commands All 13 GPU apps (var_gpu=yes) now use centralized setup_hwaccel: jellyfin, plex, emby, ersatztv, frigate, tdarr, unmanic, channels, ollama, immich, fileflows, openwebui, tunarr * feat(hwaccel): complete Intel non-free driver support and GID sync Enhanced setup_hwaccel function: - Auto-detect Intel GPU generation (Gen 9+ for non-free drivers) - Debian 12 (Bookworm): Add non-free repo + intel-media-va-driver-non-free - Debian 13 (Trixie): Add non-free repo + libvpl2 + mesa-opencl-icd - Ubuntu: Use ubuntu repos with intel-media-va-driver - Fallback to open drivers if non-free fails - GID sync for video/render groups (moved from install scripts) OpenWebUI: Added Intel oneAPI support when installing Ollama - Intel Level Zero GPU support - Intel oneAPI Base Toolkit - Same setup as standalone Ollama install Cleanup: - Removed duplicate GID sync from tdarr-install.sh - Removed duplicate GID sync from unmanic-install.sh * fix(ersatztv): remove duplicate HW acceleration code Removed manual Intel HW acceleration setup that remained after setup_hwaccel migration. The non-free driver prompt is no longer needed as setup_hwaccel auto-detects Intel GPU generation.
112 lines
3.2 KiB
Bash
112 lines
3.2 KiB
Bash
#!/usr/bin/env bash
|
||
|
||
# Copyright (c) 2021-2025 tteck
|
||
# Author: havardthom | Co-Author: MickLesk (CanbiZ)
|
||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||
# Source: https://ollama.com/
|
||
|
||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||
color
|
||
verb_ip6
|
||
catch_errors
|
||
setting_up_container
|
||
network_check
|
||
update_os
|
||
|
||
msg_info "Installing Dependencies"
|
||
$STD apt install -y \
|
||
build-essential \
|
||
pkg-config
|
||
msg_ok "Installed Dependencies"
|
||
|
||
msg_info "Setting up Intel® Repositories"
|
||
mkdir -p /usr/share/keyrings
|
||
curl -fsSL https://repositories.intel.com/gpu/intel-graphics.key | gpg --dearmor -o /usr/share/keyrings/intel-graphics.gpg
|
||
cat <<EOF >/etc/apt/sources.list.d/intel-gpu.sources
|
||
Types: deb
|
||
URIs: https://repositories.intel.com/gpu/ubuntu
|
||
Suites: jammy
|
||
Components: client
|
||
Architectures: amd64 i386
|
||
Signed-By: /usr/share/keyrings/intel-graphics.gpg
|
||
EOF
|
||
curl -fsSL https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor -o /usr/share/keyrings/oneapi-archive-keyring.gpg
|
||
cat <<EOF >/etc/apt/sources.list.d/oneAPI.sources
|
||
Types: deb
|
||
URIs: https://apt.repos.intel.com/oneapi
|
||
Suites: all
|
||
Components: main
|
||
Signed-By: /usr/share/keyrings/oneapi-archive-keyring.gpg
|
||
EOF
|
||
$STD apt update
|
||
msg_ok "Set up Intel® Repositories"
|
||
|
||
setup_hwaccel
|
||
|
||
msg_info "Installing Intel® Level Zero"
|
||
$STD apt -y install intel-level-zero-gpu level-zero level-zero-dev 2>/dev/null || true
|
||
msg_ok "Installed Intel® Level Zero"
|
||
|
||
msg_info "Installing Intel® oneAPI Base Toolkit (Patience)"
|
||
$STD apt install -y --no-install-recommends intel-basekit-2024.1
|
||
msg_ok "Installed Intel® oneAPI Base Toolkit"
|
||
|
||
msg_info "Installing Ollama (Patience)"
|
||
RELEASE=$(curl -fsSL https://api.github.com/repos/ollama/ollama/releases/latest | grep "tag_name" | awk -F '"' '{print $4}')
|
||
OLLAMA_INSTALL_DIR="/usr/local/lib/ollama"
|
||
BINDIR="/usr/local/bin"
|
||
mkdir -p $OLLAMA_INSTALL_DIR
|
||
OLLAMA_URL="https://github.com/ollama/ollama/releases/download/${RELEASE}/ollama-linux-amd64.tgz"
|
||
TMP_TAR="/tmp/ollama.tgz"
|
||
echo -e "\n"
|
||
if curl -fL# -C - -o "$TMP_TAR" "$OLLAMA_URL"; then
|
||
if tar -xzf "$TMP_TAR" -C "$OLLAMA_INSTALL_DIR"; then
|
||
ln -sf "$OLLAMA_INSTALL_DIR/bin/ollama" "$BINDIR/ollama"
|
||
echo "${RELEASE}" >/opt/Ollama_version.txt
|
||
msg_ok "Installed Ollama ${RELEASE}"
|
||
else
|
||
msg_error "Extraction failed – archive corrupt or incomplete"
|
||
exit 1
|
||
fi
|
||
else
|
||
msg_error "Download failed – $OLLAMA_URL not reachable"
|
||
exit 1
|
||
fi
|
||
|
||
msg_info "Creating ollama User and Group"
|
||
if ! id ollama >/dev/null 2>&1; then
|
||
useradd -r -s /usr/sbin/nologin -U -m -d /usr/share/ollama ollama
|
||
fi
|
||
$STD usermod -aG render ollama || true
|
||
$STD usermod -aG video ollama || true
|
||
$STD usermod -aG ollama $(id -u -n)
|
||
msg_ok "Created ollama User and adjusted Groups"
|
||
|
||
msg_info "Creating Service"
|
||
cat <<EOF >/etc/systemd/system/ollama.service
|
||
[Unit]
|
||
Description=Ollama Service
|
||
After=network-online.target
|
||
|
||
[Service]
|
||
Type=exec
|
||
ExecStart=/usr/local/bin/ollama serve
|
||
Environment=HOME=$HOME
|
||
Environment=OLLAMA_INTEL_GPU=true
|
||
Environment=OLLAMA_HOST=0.0.0.0
|
||
Environment=OLLAMA_NUM_GPU=999
|
||
Environment=SYCL_CACHE_PERSISTENT=1
|
||
Environment=ZES_ENABLE_SYSMAN=1
|
||
Restart=always
|
||
RestartSec=3
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target
|
||
EOF
|
||
systemctl enable -q --now ollama
|
||
msg_ok "Created Service"
|
||
|
||
motd_ssh
|
||
customize
|
||
cleanup_lxc
|