Posts
Install Stirling-PDF in Proxmox
References https://www.stirlingtools.com/
https://hub.docker.com/r/frooodle/s-pdf https://github.com/Frooodle/Stirling-PDF
Revised Docker Compose file: version: '3.3' services: stirling-pdf: image: frooodle/s-pdf:latest ports: - '9180:8080' volumes: - /location/of/trainingData:/usr/share/tesseract-ocr/5/tessdata #Required for extra OCR languages - /location/of/extraConfigs:/configs # - /location/of/customFiles:/customFiles/ # - /location/of/logs:/logs/ environment: - DOCKER_ENABLE_SECURITY=false Open in browser http://10.154.2.87:9988
Posts
Create a Docker Image
References: https://www.starrocks.io/blog/four-simple-ways-to-deploy-starrocks
https://docs.starrocks.io/docs/deployment/prepare_deployment_files/
https://www.starrocks.io/download/community
https://releases.starrocks.io/starrocks/StarRocks-3.3.0-rc01.tar.gz
Stable : https://releases.starrocks.io/starrocks/StarRocks-3.1.11.tar.gz
Latest 3.2 : https://releases.starrocks.io/starrocks/StarRocks-3.2.6.tar.gz
https://join.slack.com/t/starrocks/shared_invite/zt-2fou0ynxe-mZpcW54KewxWocehcBNoKQ
1. Creating the Docker file Run these commands:
nano Dockerfile Put this in the file:
# Use Ubuntu 22.04 as the base image FROM ubuntu:22.04 # Set the working directory WORKDIR /opt/starrocks # Install wget and tar RUN apt-get update && apt-get install -y wget tar tree nano curl # Download the StarRocks tar.gz file RUN wget https://releases.
Posts
Installing Debian Turnkey Fileserver in Proxmox
1. Use Case: We need a backup file server in a Proxmox Container We decided to use what Proxmox provides in the form of a Proxmox Turnkey server
2. Downloading the Proxmox Turnkey Fileserver Open Proxmox Shell run these commands :
pveam available # select the applience you need (We will use this one) debian-11-turnkey-fileserver_17.1-1_amd64.tar.gz # Download the ISO (use local instead of ZZ_User_Data) pveam download ZZ_User_Data debian-11-turnkey-fileserver_17.1-1_amd64.tar.gz 3. Create a proxmox Turnkey Fileserver Container Create a Turnkey Fileserver Container with these specs :
Posts
Install StarRocks
1. What is StarRocks StarRocks is a next-gen, high-performance analytical data warehouse that enables real-time, multi-dimensional, and highly concurrent data analysis.
1.1 FE (Front End) FE is responsible for metadata management, client connection management, query planning, and query scheduling. Each FE stores and maintains a complete copy of metadata in its memory, which guarantees indiscriminate services among the FEs. FEs can work as the leader, followers, and observers. Followers can elect a leader according to the Paxos-like BDB JE protocol.
Posts
Install Dockge in Your Proxmox LXC Container
Say goodbye to Portainer 1. What is Dockge ? Dockge is a Portainer alternative.
1.1 This is what the Developer had to say I have been using Portainer for some time, but for the stack management, I am sometimes not satisfied with it. For example, sometimes when I try to deploy a stack, the loading icon keeps spinning for a few minutes without progress. And sometimes error messages are not clear.
Posts
Install Twingate in Proxmox
It’s time to ditch your VPN 1. Use Cases for using Twingate Use Cases for using Twingate
2. Zero Trust How does zero Trust work
3. How Twingate works How Twingate works 4. Twingate Documentation Twingate Documentation
5. Is it free for your Homelab ? See what it costs for a Homelab
6. Create your Free for life Account for Twingate You need to sign up first : (Don’t worry its free) Create your Free for life Account for Twingate here
Posts
Install latest version of Gitea in Proxmox
1. About Gitea Gitea enables the creation and management of repositories based on Git. It also makes code review incredibly easy and convenient, enhancing code quality for .
https://about.gitea.com/
2. Documentation Gittea Forum
Gittea Documentation
Gittea Tutorials
3. Installing Gitea Download Gitea
https://dl.gitea.com/gitea/1.21.4/gitea-1.21.4-linux-amd64
3.1 SSH to Proxmov vm and do installation ssh nickm@10.154.2.122
run these commands :
sudo su - apt update apt install nano git mkdir /var/lib/gitea mkdir /var/lib/gitea/data/ mkdir /opt/gitea cd /opt/gitea/ wget https://dl.
Posts
Install Latest version of Kasm Into Proxmox
1. What is Kasm ? “Kasm Workspaces is a Leader in Containerized Desktop Infrastructure. We used Kasm primarily as a remote browser isolation platform for open-source threat …”
https://kasmweb.com/
2. Kasm Documentation and Downloads Installation — Kasm 1.15.0 documentation
Single Server Installation — Kasm 1.15.0 documentation
Kasm Download page
Kasm Admin Guide
Kasm Administration / Configuration Video We will Download and install Kasm from this URL : https://kasm-static-content.s3.amazonaws.com/kasm_release_1.15.0.06fdc8.tar.gz
3. Kasm requitements linux server (VM) Debian baser VM in Proxmox Ubuntu server 2204 Swap partition is needed hardware 4GB RAM 4.
Posts
Install NetBird in Proxmox
We will : Use Netbird with Proxmox
1. Documentation 1.1 Get started: https://app.netbird.io
1.2 Installation docs: https://docs.netbird.io/how-to/getting-started#installation https://docs.netbird.io/how-to/installation#installation Installation
1.3 GitHub: https://github.com/netbirdio/netbird
1.4 Self-Hosting Guide: https://docs.netbird.io/selfhosted/selfhosted-quickstart
1.5 Docker Running NetBird in Docker NetBird Client in Docker
2. Installing Netbird CLI 2.1 Add the repository: Run these commands :
sudo su - sudo apt-get update sudo apt-get install ca-certificates curl gnupg -y curl -sSL https://pkgs.netbird.io/debian/public.key | sudo gpg --dearmor --output /usr/share/keyrings/netbird-archive-keyring.gpg echo 'deb [signed-by=/usr/share/keyrings/netbird-archive-keyring.
Posts
Install TrueNAS in Proxmox
Our goal is to show you how to install TrueNAS Scale TrueNAS Scale is built on Linux TrueNAS Core is old built on FreeBSD
1. Get software https://www.truenas.com/
1.1 Community Edition https://www.truenas.com/truenas-community-editions/
We chose : https://www.truenas.com/download-truenas-scale/
We will add this ISO to out Proxmox server: https://download.sys.truenas.net/TrueNAS-SCALE-Cobia/23.10.2/TrueNAS-SCALE-23.10.2.iso
2. Get your Proxmox servers Disk details first Run the following command
lsblk You’ll see a list of your hard drives, where they’ll have names like “sda,” “sdb,” “sdc,” and so on.