Advanced Search
Search Results
11 total results found
Serve App Installation Guide
Install Unifi Controller On Proxmox Container Ubuntu 24.04.3
1. Make sure the ca-certificates package is installed apt-get update; apt-get install ca-certificates curl -y 2. Download and execute the script! (change it to your wanted version) curl -sO https://get.glennr.nl/unifi/install/unifi-9.4.17.sh && bash unifi-9...
Installing CyberPanel on Proxmox Container Ubuntu 22.04
The CyberPanel installation process is straightforward and can be completed by following the provided instructions. Step 1: Connect to the server via SSH client. (Putty, Bitvise SSH client, etc)First login to your server through SSH client as a Root user (S...
Install Uptime Kuma on Ubuntu with Node.js and Nginx
One of the first steps is to install Node.js on Ubuntu but before you do so make sure your server is updated. Please run the x2 commands below before following the tutorial. sudo apt update && apt-get upgrade -y Once your OS is updated, you can run the below...
Install Cacti on Proxmox Container Ubuntu 24.04
Here’s a clean step-by-step guide for Cacti installation on Ubuntu 24.04 inside your Proxmox CT Update the System sudo apt update && sudo apt upgrade -y Install Required Packages, Cacti needs a web server, PHP, SNMP, RRDtool, and MySQL/MariaDB. sudo apt in...
Installing Odoo 19 using Packaged installers on Ubuntu 24.04
Odoo provides packaged installers for Debian-based Linux distributions (Debian, Ubuntu, etc.), RPM-based Linux distributions (Fedora, CentOS, RHEL, etc.), and Windows for the Community and Enterprise editions. Odoo needs a PostgreSQL server to run properly. ...
Install Transmission with Webui & Create Directory Indexing Ubuntu 24.04
sudo apt update sudo apt install -y transmission-daemon transmission-cli transmission-common Stop the service (so we can edit config safely) sudo systemctl stop transmission-daemon Edit Transmission config, open with nano sudo nano /var/lib/transmission-d...
Install Moodle In Ubuntu 24.04 & Access from local ip (http,https) and domain
Prepare Your Container, do update & upgrade: apt update && apt upgrade -y apt install -y unzip git curl software-properties-common Install Dependencies (Nginx only, no Apache): apt install -y nginx mariadb-server mariadb-client php-fpm php-mysql php-xml ph...
Install ERPNext 15 on Ubuntu 24.04 Proxmox CT
Prerequisites The below prerequisites are advised in order to get an optimal functionality of ERPNext on your server. Software Requirements Updated Ubuntu 24.04 Python 3.12+ A user with sudo privileges pip 20+ MariaDB 10.3.x Node.js 18 yarn 1.22+ ...
FFmpeg + NGINX HTTPS HLS Streaming Server Ubuntu 24.04
In this tutorial, we build a lightweight streaming server on Ubuntu 24.04 that takes RTSP video feeds from IP cameras and publishes them to the web using HLS (HTTP Live Streaming). We use FFmpeg to pull video streams from each camera, remove audio, segment th...
Enable HTTPS LibreNMS Ubuntu 24.04
Create self-signed SSL certificate sudo mkdir -p /etc/nginx/ssl sudo openssl req -x509 -nodes -days 365 -newkey rsa:4096 \ -keyout /etc/nginx/ssl/librenms.key \ -out /etc/nginx/ssl/librenms.crt Edit you exiting NGINX configuration nano /etc/nginx/con...