Archive for the ‘Linux Solution’ Category
Proxmox Virtual Environment (VE) 8.3.0 – Installation auf einem Beelink EQ12 Mini PC 1GB SSD mit der Idee einer Local Cloud Initiative (LCI)
Sonntag, November 24th, 2024Proxmox Virtual Environment (VE) 8.3.0 – released
Sonntag, November 24th, 2024 Proxmox Virtual Environment (VE) 8.3.0 – what’s new
Proxmox Virtual Environment (VE) 8.3.0 – what’s new
Raspberry Pi 5 – Installation von Ollama mit Llama 3.2 plus einem Performance Check
Samstag, November 23rd, 2024Proxmox Virtual Environment (VE) 8.3.0 – is out with new updates
Freitag, November 22nd, 2024Proxmox Virtual Environment (VE) 8.3.0 – the highlights of the new version of the open source virtualization management platform
Donnerstag, November 21st, 2024RaspAP – the easiest full featured wireless router setup for Debian based devices
Montag, November 18th, 2024RaspAP – more than an access point
Vaultwarden Passwort Manager – eine Schritt-für-Schritt Anleitung wie ihr diesen auf eurem Server via Docker installieren könnt
Montag, November 18th, 2024Duplicati via a Docker container – is a free open source backup client that securely stores encrypted incremental compressed backups on cloud storage services and remote file servers
Samstag, November 16th, 2024 Duplicati – store securely encrypted backups in the cloud
Duplicati – store securely encrypted backups in the cloud
# docker run -p 8200:8200 -v /some/path:/some/path duplicati/duplicati
Linux command ‚bpytop‘ – an advanced system monitor for Linux
Freitag, November 15th, 2024# apt-get instball bpytop

				UGREEN NASync DXP2800 2-Bay Desktop NAS – Intel N100 4Cores 3.40GHz 8GB DDR5 RAM 2.5GbE 2x SATA Disk 2x M.2 NVMe Disk
Freitag, November 15th, 2024Raspberry Pi – alle Modelle im Überblick
Freitag, November 15th, 2024CPU Governor – unter Linux z.B.: Proxmox auslesen & setzen
Dienstag, November 12th, 2024Wichtig ist dass das Ändern der CPU Scaling Governor negative Auswirkung auf den Stromverbrauch ihres Server haben kann da die automatische Regulierung der CPU Energiespar Modelle z.B.: vollständig deaktiviert werden kann
Verfügbare Scaling Governor:
# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
conservative ondemand userspace powersave performance schedutil
Aktiver Scaling Governor:
# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
performance
Scaling Governor setzen:
# echo performance | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
Wichtig ist mit der Angabe von cpu* im oben genannten Befehl wird der Governor auf allen verfügbaren CPU Kernen neu gesetzt
CPU Frequenz überprüfen:
# watch ‚cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq‘
damit kann man live beobachten ob sich die CPU Frequenz nach dem Setzen des Scaling Governors automatisch geändert hat
