-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(proxmox): updates & power consumption
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Configure apt repository updates on Proxmox 8.x.x Community Edition | ||
|
||
## Add the Proxmox repositoy to /etc/apt/sources.list.d/pve-community.list | ||
|
||
```bash | ||
echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-community.list | ||
``` | ||
|
||
## Comment out the enterprise repository at /etc/apt/sources.list.d/pve-enterprise.list | ||
|
||
```bash | ||
sed -i 's/^deb/#deb/' /etc/apt/sources.list.d/pve-enterprise.list | ||
``` | ||
|
||
## Change the ceph repository at /etc/apt/sources.list.d/ceph.list | ||
|
||
```bash | ||
sed -i 's/^deb/#deb/' /etc/apt/sources.list.d/ceph.list | ||
echo "deb http://download.proxmox.com/debian/ceph-pacific bookworm main" >> /etc/apt/sources.list.d/ceph.list | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Reduce CPU consumption on Proxmox | ||
|
||
1. Login to the Proxmox host via the web interface by pressing on Shell | ||
2. Install the package `cpufrequtils` via `apt install cpufrequtils` | ||
```bash | ||
apt update && apt install cpufrequtils | ||
``` | ||
3. See available governors via `cpufreq-info -g` | ||
```bash | ||
cpufreq-info -g | ||
``` | ||
4. Set the governor to `powersave` via `cpufreq-set -g powersave` | ||
```bash | ||
cpufreq-set -g powersave | ||
``` |