Archive for the ‘Linux Solution’ Category

Proxmox Virtual Environment (VE) 8.4.0 – Docker im LXC Challenge

Montag, April 21st, 2025

Proxmox Virtual Environment (VE) 8.4.0 – Docker im LXC AiO Skript

Montag, April 21st, 2025

Proxmox Virtual Environment (VE) 8.4.0 – direct access from VMs to the host file system

Freitag, April 18th, 2025

Paperless NGX – geeignet für Unternehmen

Donnerstag, April 17th, 2025

Raspberry Pi 5 – the X1001 V1.1 shield is an NVME M2 SSD PIP (PCIe Peripheral Board)

Donnerstag, April 17th, 2025

MinIO – is a high-performance S3 compatible object store

Donnerstag, April 17th, 2025

Proxmox Backup Server 3.4-1 – Daten verschlüsseln mit Hilfe von ZFS

Dienstag, April 15th, 2025

Raspberry Pi 45W USB C Netzteil – offizielles USB C Netzteil 5.1V/5A für Raspberry Pi 5

Montag, April 14th, 2025

Nextcloud External Apps (via Docker) – Funktionen und Einrichtung verständlich erklärt

Samstag, April 12th, 2025

Zabbix 20th Anniversary

Freitag, April 11th, 2025

Proxmox Virtual Environment (VE) 8.4.0 – released

Freitag, April 11th, 2025

Proxmox Virtual Environment (VE) 8.4.0 – what’s new

Proxmox Virtual Environment (VE) 8.3.0 – Mailcow im LXC einrichten

Donnerstag, April 10th, 2025

TrueNAS Scale 24.04 Dragonfish – Minimum Requirements Dual Core 64 bit CPU | 8 GB RAM (16 GB Recommended) | 16 GB SSD Boot Device | 2 Identically Sized Devices | Network Port | Hardware RAID Not Required

Donnerstag, April 10th, 2025

Speedtest Tracker – is a self hosted application that monitors the performance and uptime of your internet connection

Mittwoch, April 9th, 2025

Linux command ‚rsync‘ – use for backup without overwrite

Dienstag, April 8th, 2025
#!/bin/bash
SOURCE_DIR=/source/dir
DEST_DIRr=/backup/dir
rsync -avz –checksum –backup –backup-dir=“older_versions“ –suffix=“~$(date +%Y-%m-%d)“ „$SOURCE_DIR/“ „$DEST_DIR/“