ProxMenux/scripts/configure_igpu_lxc.sh

154 lines
5.3 KiB
Bash
Raw Normal View History

2025-01-30 11:35:06 +01:00
#!/bin/bash
2025-01-30 12:10:42 +01:00
# ==========================================================
# ProxMenu - A menu-driven script for Proxmox VE management
# ==========================================================
# Author : MacRimi
# Copyright : (c) 2024 MacRimi
# License : MIT (https://raw.githubusercontent.com/MacRimi/ProxMenux/main/LICENSE)
# Version : 1.0
# Last Updated: 28/01/2025
# ==========================================================
2025-01-30 13:10:26 +01:00
# Description:
2025-02-01 09:13:31 +01:00
# This script automates the configuration and installation of
# Coral TPU and iGPU support in Proxmox VE containers. It:
# - Configures a selected LXC container for hardware acceleration
# - Installs and sets up Coral TPU drivers on the Proxmox host
# - Installs necessary drivers inside the container
# - Manages required system and container restarts
2025-01-30 13:10:26 +01:00
#
2025-02-01 09:13:31 +01:00
# The script aims to simplify the process of enabling
# AI-powered video analysis capabilities in containers
# LXC, leveraging hardware acceleration for
# improved performance.
2025-01-30 13:10:26 +01:00
# ==========================================================
2025-01-30 12:10:42 +01:00
2025-01-30 12:57:35 +01:00
# Configuration ============================================
2025-02-01 09:13:31 +01:00
REPO_URL="https://raw.githubusercontent.com/MacRimi/ProxMenux/main"
2025-01-30 12:57:35 +01:00
BASE_DIR="/usr/local/share/proxmenux"
2025-02-01 08:48:45 +01:00
UTILS_FILE="$BASE_DIR/utils.sh"
2025-01-30 12:57:35 +01:00
VENV_PATH="/opt/googletrans-env"
2025-02-01 08:48:45 +01:00
if [[ -f "$UTILS_FILE" ]]; then
source "$UTILS_FILE"
2025-01-30 12:57:35 +01:00
fi
2025-02-01 09:13:31 +01:00
load_language
initialize_cache
2025-01-30 12:57:35 +01:00
# ==========================================================
2025-01-30 17:10:59 +01:00
2025-01-30 12:57:35 +01:00
# Select LXC container
select_container() {
CONTAINERS=$(pct list | awk 'NR>1 {print $1, $3}' | xargs -n2)
if [ -z "$CONTAINERS" ]; then
msg_error "$(translate 'No containers available in Proxmox.')"
exit 1
fi
CONTAINER_ID=$(whiptail --title "$(translate 'Select Container')" \
--menu "$(translate 'Select the LXC container:')" 15 60 5 $CONTAINERS 3>&1 1>&2 2>&3)
if [ -z "$CONTAINER_ID" ]; then
msg_error "$(translate 'No container selected. Exiting.')"
exit 1
fi
if ! pct list | awk 'NR>1 {print $1}' | grep -qw "$CONTAINER_ID"; then
msg_error "$(translate 'Container with ID') $CONTAINER_ID $(translate 'does not exist. Exiting.')"
exit 1
fi
msg_ok "$(translate 'Container selected:') $CONTAINER_ID"
}
2025-02-01 09:13:31 +01:00
# Validate that the selected container is valid
validate_container_id() {
if [ -z "$CONTAINER_ID" ]; then
msg_error "$(translate 'Container ID not defined. Make sure to select a container first.')"
exit 1
fi
# Check if the container is running and stop it before configuration
if pct status "$CONTAINER_ID" | grep -q "running"; then
msg_info "$(translate 'Stopping the container before applying configuration...')"
pct stop "$CONTAINER_ID"
msg_ok "$(translate 'Container stopped.')"
fi
}
# Configure LXC for Coral TPU and iGPU
2025-02-01 20:54:19 +01:00
configure_lxc_for_igpu() {
2025-01-30 12:57:35 +01:00
validate_container_id
CONFIG_FILE="/etc/pve/lxc/${CONTAINER_ID}.conf"
if [ ! -f "$CONFIG_FILE" ]; then
msg_error "$(translate 'Configuration file for container') $CONTAINER_ID $(translate 'not found.')"
exit 1
fi
if grep -q "^unprivileged: 1" "$CONFIG_FILE"; then
msg_info "$(translate 'The container is unprivileged. Changing to privileged...')"
sed -i "s/^unprivileged: 1/unprivileged: 0/" "$CONFIG_FILE"
STORAGE_TYPE=$(pct config "$CONTAINER_ID" | grep "^rootfs:" | awk -F, '{print $2}' | cut -d'=' -f2)
if [[ "$STORAGE_TYPE" == "dir" ]]; then
STORAGE_PATH=$(pct config "$CONTAINER_ID" | grep "^rootfs:" | awk '{print $2}' | cut -d',' -f1)
chown -R root:root "$STORAGE_PATH"
fi
msg_ok "$(translate 'Container changed to privileged.')"
fi
2025-02-01 09:13:31 +01:00
# Configure iGPU
2025-01-30 12:57:35 +01:00
if ! grep -q "features: nesting=1" "$CONFIG_FILE"; then
echo "features: nesting=1" >> "$CONFIG_FILE"
fi
if ! grep -q "c 226:0 rwm" "$CONFIG_FILE"; then
echo "lxc.cgroup2.devices.allow: c 226:0 rwm # iGPU" >> "$CONFIG_FILE"
echo "lxc.cgroup2.devices.allow: c 226:128 rwm # iGPU" >> "$CONFIG_FILE"
echo "lxc.mount.entry: /dev/dri dev/dri none bind,optional,create=dir" >> "$CONFIG_FILE"
echo "lxc.mount.entry: /dev/dri/renderD128 dev/dri/renderD128 none bind,optional,create=file" >> "$CONFIG_FILE"
fi
if ! grep -q "c 29:0 rwm # Framebuffer" "$CONFIG_FILE"; then
echo "lxc.cgroup2.devices.allow: c 29:0 rwm # Framebuffer" >> "$CONFIG_FILE"
fi
if ! grep -q "lxc.mount.entry: /dev/fb0" "$CONFIG_FILE"; then
echo "lxc.mount.entry: /dev/fb0 dev/fb0 none bind,optional,create=file" >> "$CONFIG_FILE"
fi
2025-02-01 09:13:31 +01:00
msg_ok "$(translate 'Coral TPU and iGPU configuration added to container') $CONTAINER_ID."
2025-01-30 12:57:35 +01:00
}
2025-02-01 09:13:31 +01:00
2025-02-01 20:52:00 +01:00
# Install iGPU drivers in the container
install_igpu_in_container() {
2025-02-01 09:13:31 +01:00
2025-02-01 20:52:00 +01:00
echo -ne "${TAB}${YW}-$(translate 'Installing iGPU drivers inside the container...') ${CL}"
2025-01-30 12:57:35 +01:00
pct start "$CONTAINER_ID"
2025-02-01 20:52:00 +01:00
pct exec "$CONTAINER_ID" -- bash -c "
apt-get update && \
apt-get install -y va-driver-all ocl-icd-libopencl1 intel-opencl-icd vainfo intel-gpu-tools && \
chgrp video /dev/dri && chmod 755 /dev/dri && \
adduser root video && adduser root render
"
msg_ok "$(translate 'iGPU drivers installed inside the container.')"
2025-01-30 12:57:35 +01:00
}
2025-02-01 09:13:31 +01:00
select_container
2025-02-01 20:52:00 +01:00
configure_lxc_for_igpu
install_igpu_in_container
2025-02-01 09:13:31 +01:00
2025-02-01 20:52:00 +01:00
msg_ok "$(translate 'iGPU configuration completed in container') $CONTAINER_ID."