Aoostar WTR max 8845 part four
Manual: Installing Aoostar X Screen Software on Proxmox VE. Dwonloadlink Aoostar: https://mega.nz/folder/Ey0EyZCS#PsugvEt4qF3II_wDOm-_vQ Manual: Installing Aoostar X Screen Software on Proxmox VEThis guide combines the official manufacturer instructions with the required fixes for Proxmox VE. It automatically resolves the crashes caused by spaces in folder names and guarantees that all hardware sensors are fully functional. Step 1: Preparation and Extraction Open the terminal of your Proxmox server.Check if the required utility for extracting files is installed:bash apt update && apt install -y unzip Extract the main ZIP file (use quotes due to the spaces in the name):bash unzip 'WTR MAX+GEM12+ PRO Screen Software.zip' Enter the extracted folder and extract the specific Linux package:bash cd 'WTR MAX+GEM12+ PRO Screen Software' unzip 'AOOSTAR-X-linux V1.3.6.zip' Step 2: Relocate Files (Mandatory Path Fix)Note: The official path cannot contain special symbols, spaces, or Chinese characters, otherwise the background service will crash (Status 203/EXEC).Move the files to a safe, space-free system directory:bash sudo mkdir -p /opt/aoostar sudo cp -r "/root/WTR MAX+GEM12+ PRO Screen Software/AOOSTAR-X-linux/." /opt/aoostar/ cd /opt/aoostar Step 3: Install PVE Prerequisites & Screen ServiceProxmox VE requires these additional utility commands to register and start the software correctly:Update your system and ensure sudo is available:bash apt update apt install -y sudo Make the installation script executable and run it to create the system background service:bash chmod +x ./create_service.sh sudo ./create_service.sh Step 4: Install lm-sensors & it87 Driver.This step is required to display fan speeds, temperatures, and other hardware sensor information on your screen.Install lm-sensors:bash sudo apt install -y lm-sensors. Install the required kernel compilation dependencies for Proxmox:bash apt update && apt install -y pve-headers proxmox-headers-$(uname -r) dkms flex bison