2024-10-22 18:39:54 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2025-01-01 13:37:29 +01:00
|
|
|
# Copyright (c) 2021-2025 tteck
|
2025-11-05 14:20:33 +01:00
|
|
|
# Author: tteck | Co-Author: havardthom | Co-Author: Slaviša Arežina (tremor021)
|
2025-03-04 17:54:20 +01:00
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://openwebui.com/
|
2024-10-22 18:39:54 +02:00
|
|
|
|
2025-03-24 14:20:56 +01:00
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
2024-10-22 18:39:54 +02:00
|
|
|
color
|
|
|
|
|
verb_ip6
|
|
|
|
|
catch_errors
|
|
|
|
|
setting_up_container
|
|
|
|
|
network_check
|
|
|
|
|
update_os
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Dependencies"
|
2025-11-05 14:20:33 +01:00
|
|
|
$STD apt install -y ffmpeg
|
2024-10-22 18:39:54 +02:00
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
|
use setup_hwaccel for robust hardware acceleration (#10054)
* 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.
2025-12-17 14:37:31 +01:00
|
|
|
setup_hwaccel
|
|
|
|
|
|
2025-11-10 13:06:44 +01:00
|
|
|
PYTHON_VERSION="3.12" setup_uv
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Open WebUI"
|
|
|
|
|
$STD uv tool install --python 3.12 open-webui[all]
|
|
|
|
|
msg_ok "Installed Open WebUI"
|
2024-10-22 18:39:54 +02:00
|
|
|
|
2025-05-15 11:13:57 +02:00
|
|
|
read -r -p "${TAB3}Would you like to add Ollama? <y/N> " prompt
|
2024-10-27 23:14:57 +01:00
|
|
|
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
|
use setup_hwaccel for robust hardware acceleration (#10054)
* 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.
2025-12-17 14:37:31 +01:00
|
|
|
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 2>/dev/null || true
|
|
|
|
|
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 2>/dev/null || true
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Intel® Level Zero"
|
2026-01-02 21:21:06 +01:00
|
|
|
# Debian 13+ has newer Level Zero packages in system repos that conflict with Intel repo packages
|
|
|
|
|
if is_debian && [[ "$(get_os_version_major)" -ge 13 ]]; then
|
|
|
|
|
# Use system packages on Debian 13+ (avoid conflicts with libze1)
|
|
|
|
|
$STD apt -y install libze1 libze-dev intel-level-zero-gpu 2>/dev/null || {
|
|
|
|
|
msg_warn "Failed to install some Level Zero packages, continuing anyway"
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
# Use Intel repository packages for older systems
|
|
|
|
|
$STD apt -y install intel-level-zero-gpu level-zero level-zero-dev 2>/dev/null || {
|
|
|
|
|
msg_warn "Failed to install Intel Level Zero packages, continuing anyway"
|
|
|
|
|
}
|
|
|
|
|
fi
|
use setup_hwaccel for robust hardware acceleration (#10054)
* 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.
2025-12-17 14:37:31 +01:00
|
|
|
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 2>/dev/null || true
|
|
|
|
|
msg_ok "Installed Intel® oneAPI Base Toolkit"
|
|
|
|
|
|
2024-10-27 23:14:57 +01:00
|
|
|
msg_info "Installing Ollama"
|
2025-09-21 10:56:31 -06:00
|
|
|
curl -fsSLO -C - https://ollama.com/download/ollama-linux-amd64.tgz
|
2024-10-27 23:14:57 +01:00
|
|
|
tar -C /usr -xzf ollama-linux-amd64.tgz
|
|
|
|
|
rm -rf ollama-linux-amd64.tgz
|
|
|
|
|
cat <<EOF >/etc/systemd/system/ollama.service
|
|
|
|
|
[Unit]
|
|
|
|
|
Description=Ollama Service
|
|
|
|
|
After=network-online.target
|
|
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
Type=exec
|
|
|
|
|
ExecStart=/usr/bin/ollama serve
|
|
|
|
|
Environment=HOME=$HOME
|
|
|
|
|
Environment=OLLAMA_HOST=0.0.0.0
|
|
|
|
|
Restart=always
|
|
|
|
|
RestartSec=3
|
|
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
|
EOF
|
2025-04-01 20:22:40 +02:00
|
|
|
systemctl enable -q --now ollama
|
2025-11-05 14:20:33 +01:00
|
|
|
echo "ENABLE_OLLAMA_API=true" >/root/.env
|
2024-10-27 23:14:57 +01:00
|
|
|
msg_ok "Installed Ollama"
|
|
|
|
|
fi
|
|
|
|
|
|
2024-10-22 18:39:54 +02:00
|
|
|
msg_info "Creating Service"
|
|
|
|
|
cat <<EOF >/etc/systemd/system/open-webui.service
|
|
|
|
|
[Unit]
|
|
|
|
|
Description=Open WebUI Service
|
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
|
|
[Service]
|
2025-11-05 14:20:33 +01:00
|
|
|
Type=simple
|
|
|
|
|
EnvironmentFile=-/root/.env
|
|
|
|
|
Environment=DATA_DIR=/root/.open-webui
|
2025-11-10 13:06:44 +01:00
|
|
|
ExecStart=/root/.local/bin/open-webui serve
|
2025-11-05 14:20:33 +01:00
|
|
|
WorkingDirectory=/root
|
|
|
|
|
Restart=on-failure
|
|
|
|
|
RestartSec=5
|
|
|
|
|
User=root
|
2024-10-22 18:39:54 +02:00
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
|
EOF
|
2025-04-01 20:22:40 +02:00
|
|
|
systemctl enable -q --now open-webui
|
2024-10-22 18:39:54 +02:00
|
|
|
msg_ok "Created Service"
|
|
|
|
|
|
|
|
|
|
motd_ssh
|
|
|
|
|
customize
|
2025-11-10 13:06:44 +01:00
|
|
|
cleanup_lxc
|