2023-03-23 01:48:20 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2024-01-01 18:13:05 +01:00
|
|
|
# Copyright (c) 2021-2024 tteck
|
2023-03-23 01:48:20 +01:00
|
|
|
# Author: tteck (tteckster)
|
|
|
|
# License: MIT
|
|
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
|
|
|
|
|
|
|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
|
|
|
color
|
|
|
|
verb_ip6
|
|
|
|
catch_errors
|
|
|
|
setting_up_container
|
|
|
|
network_check
|
|
|
|
update_os
|
|
|
|
|
2023-07-11 23:41:23 +02:00
|
|
|
msg_info "Installing Dependencies (Patience)"
|
2023-03-23 01:48:20 +01:00
|
|
|
$STD apt-get -y install software-properties-common apt-utils
|
|
|
|
$STD apt-get -y update
|
|
|
|
$STD apt-get -y upgrade
|
2023-04-17 09:29:32 +02:00
|
|
|
$STD apt-get install -y avahi-daemon
|
2023-03-23 01:48:20 +01:00
|
|
|
$STD apt-get -y install \
|
|
|
|
build-essential \
|
|
|
|
gcc \
|
|
|
|
gir1.2-gtk-3.0 \
|
|
|
|
libcairo2-dev \
|
|
|
|
libgirepository1.0-dev \
|
|
|
|
libglib2.0-dev \
|
|
|
|
libjpeg-dev \
|
|
|
|
libgif-dev \
|
|
|
|
libopenjp2-7 \
|
|
|
|
libpango1.0-dev \
|
|
|
|
librsvg2-dev \
|
|
|
|
pkg-config \
|
|
|
|
curl \
|
|
|
|
sudo \
|
2023-09-01 13:19:05 +02:00
|
|
|
mc \
|
|
|
|
ca-certificates \
|
|
|
|
gnupg
|
2023-03-23 01:48:20 +01:00
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
2023-07-11 23:41:23 +02:00
|
|
|
if [[ "$CTTYPE" == "0" ]]; then
|
|
|
|
msg_info "Setting Up Hardware Acceleration"
|
|
|
|
$STD apt-get -y install \
|
|
|
|
va-driver-all \
|
|
|
|
ocl-icd-libopencl1 \
|
|
|
|
intel-opencl-icd
|
2023-12-03 20:40:39 +01: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-07-11 23:41:23 +02:00
|
|
|
msg_ok "Set Up Hardware Acceleration"
|
|
|
|
fi
|
|
|
|
msg_info "Installing GStreamer (Patience)"
|
2023-03-23 01:48:20 +01:00
|
|
|
$STD apt-get -y install \
|
|
|
|
gstreamer1.0-tools \
|
|
|
|
libgstreamer1.0-dev \
|
|
|
|
libgstreamer-plugins-base1.0-dev \
|
|
|
|
libgstreamer-plugins-bad1.0-dev \
|
|
|
|
gstreamer1.0-plugins-base \
|
|
|
|
gstreamer1.0-plugins-good \
|
|
|
|
gstreamer1.0-plugins-bad \
|
|
|
|
gstreamer1.0-plugins-ugly \
|
|
|
|
gstreamer1.0-libav \
|
|
|
|
gstreamer1.0-alsa
|
|
|
|
msg_ok "Installed GStreamer"
|
|
|
|
|
|
|
|
msg_info "Setting up Node.js Repository"
|
2023-09-02 14:36:54 +02:00
|
|
|
mkdir -p /etc/apt/keyrings
|
2023-09-01 13:19:05 +02:00
|
|
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
2024-01-23 10:37:38 +01:00
|
|
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
|
2023-03-23 01:48:20 +01:00
|
|
|
msg_ok "Set up Node.js Repository"
|
|
|
|
|
2024-01-23 11:22:04 +01:00
|
|
|
msg_info "Installing Node.js"
|
2023-09-01 13:19:05 +02:00
|
|
|
$STD apt-get update
|
2023-03-23 01:48:20 +01:00
|
|
|
$STD apt-get install -y nodejs
|
2024-01-23 11:22:04 +01:00
|
|
|
msg_ok "Installed Node.js"
|
2023-03-23 01:48:20 +01:00
|
|
|
|
2023-06-21 16:43:49 +02:00
|
|
|
msg_info "Updating Python3"
|
|
|
|
$STD apt-get install -y \
|
|
|
|
python3 \
|
|
|
|
python3-dev \
|
|
|
|
python3-pip
|
|
|
|
msg_ok "Updated Python3"
|
|
|
|
|
|
|
|
msg_info "Installing Python3 Dependencies"
|
2023-03-23 01:48:20 +01:00
|
|
|
$STD apt-get -y install \
|
|
|
|
python3-gi \
|
|
|
|
python3-gst-1.0 \
|
|
|
|
python3-matplotlib \
|
|
|
|
python3-numpy \
|
|
|
|
python3-opencv \
|
|
|
|
python3-pil \
|
|
|
|
python3-setuptools \
|
|
|
|
python3-skimage \
|
|
|
|
python3-wheel
|
|
|
|
$STD python3 -m pip install --upgrade pip
|
|
|
|
$STD python3 -m pip install aiofiles debugpy typing_extensions typing
|
2023-06-21 16:43:49 +02:00
|
|
|
msg_ok "Installed Python3 Dependencies"
|
2023-03-23 01:48:20 +01:00
|
|
|
|
|
|
|
read -r -p "Would you like to add Coral Edge TPU support? <y/N> " prompt
|
|
|
|
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
|
|
msg_info "Adding Coral Edge TPU Support"
|
2023-07-08 18:35:52 +02:00
|
|
|
wget -qO /etc/apt/trusted.gpg.d/coral-repo.asc "https://packages.cloud.google.com/apt/doc/apt-key.gpg"
|
|
|
|
echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" >/etc/apt/sources.list.d/coral-edgetpu.list
|
2023-03-23 01:48:20 +01:00
|
|
|
$STD apt-get -y update
|
|
|
|
$STD apt-get -y install libedgetpu1-std
|
|
|
|
msg_ok "Coral Edge TPU Support Added"
|
|
|
|
fi
|
|
|
|
|
|
|
|
msg_info "Installing Scrypted"
|
2023-09-11 11:47:03 +02:00
|
|
|
$STD npx -y scrypted@latest install-server
|
2024-02-21 19:44:40 +01:00
|
|
|
sed -i -e 's/^sgx:x:104:$/render:x:104:root/' -e 's/^render:x:106:root$/sgx:x:106:/' /etc/group
|
2023-07-11 23:41:23 +02:00
|
|
|
msg_ok "Installed Scrypted"
|
2023-03-23 01:48:20 +01:00
|
|
|
|
|
|
|
msg_info "Creating Service"
|
|
|
|
service_path="/etc/systemd/system/scrypted.service"
|
|
|
|
echo "[Unit]
|
|
|
|
Description=Scrypted service
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
User=root
|
|
|
|
Group=root
|
|
|
|
Type=simple
|
|
|
|
ExecStart=/usr/bin/npx -y scrypted serve
|
|
|
|
Restart=on-failure
|
|
|
|
RestartSec=3
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target" >$service_path
|
|
|
|
$STD systemctl enable --now scrypted.service
|
|
|
|
msg_ok "Created Service"
|
|
|
|
|
|
|
|
motd_ssh
|
2023-05-15 13:39:30 +02:00
|
|
|
customize
|
2023-03-23 01:48:20 +01:00
|
|
|
|
|
|
|
msg_info "Cleaning up"
|
|
|
|
$STD apt-get autoremove
|
|
|
|
$STD apt-get autoclean
|
|
|
|
msg_ok "Cleaned"
|