vault backup: 2026-04-24 11:34:16

This commit is contained in:
2026-04-24 11:34:16 +01:00
parent 0c86424c6e
commit b4630d74fb
25 changed files with 667 additions and 51 deletions
+25
View File
@@ -0,0 +1,25 @@
---
category:
- "[[Journal]]"
- "[[Note]]"
type:
- "[[Log]]"
title: intial setup of a proxmox host
created: 2026-04-23T15:44:49
date: 2026-04-23
tags:
---
[[Proxmox|Proxmox]] inital generic setup
**Powersaving**
- `apt install --no-install-recommends powertop`
- `crontab -e` and add the following lines:
```
# PROXMOX POWER SAVING TWEAKS
# Sets CPU to powersave
@reboot echo "powersave" | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor >/dev/null 2>&1
# Runs powertop auto-tune on boot
@reboot /usr/sbin/powertop --auto-tune >/dev/null 2>&1
```