From ca8827a31b33ca4b0e439e19a38987905f538a0c Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Tue, 17 Feb 2026 18:38:01 +0100 Subject: [PATCH] Updated Minimal-Debian-KDE and added Proxmox-Win-VM Tips --- Linux/Docs/Setup-Minimal-Debian-KDE.md | 17 ++++++++++++++++- Linux/Proxmox/Windows-VM-Tips.md | 10 ++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 Linux/Proxmox/Windows-VM-Tips.md diff --git a/Linux/Docs/Setup-Minimal-Debian-KDE.md b/Linux/Docs/Setup-Minimal-Debian-KDE.md index e93ed9f..1188521 100644 --- a/Linux/Docs/Setup-Minimal-Debian-KDE.md +++ b/Linux/Docs/Setup-Minimal-Debian-KDE.md @@ -1,11 +1,20 @@ # Minimal Debian system with KDE Plasma +## Universal tweaks +### Disable apt Recommends and Suggests (Advanced tweak) +``` +echo 'APT::Install-Recommends "false";' > /etc/apt/apt.conf.d/01Recommends +echo 'APT::Install-Suggests "false";' > /etc/apt/apt.conf.d/01Suggests +``` + ## Debian 12 +### Package Cleanup ``` apt purge juk knotes korganizer kmail* konqueror kpeople-vcard kaddressbook* akregator dragonplayer zutty sweeper kmouth kmousetool kmag partitionmanager apt autoremove ``` -To allow root to run missing commands `/etc/profile` +### To allow root to run missing commands +Edit `/etc/profile` to the what is shown below ``` #if [ "$(id -u)" -eq 0 ]; then @@ -19,7 +28,13 @@ PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/sbin:/usr/lo ## Debian 13 +### Package Cleanup ``` apt purge juk korganizer kmail* konqueror kpeople-vcard kaddressbook* akregator dragonplayer zutty sweeper kmouth kmousetool kmag partitionmanager kwrite kontrast xterm okular apt autoremove +``` +### Move `/tmp` form memory to disk +``` +sudo systemctl mask tmp.mount +sudo reboot ``` \ No newline at end of file diff --git a/Linux/Proxmox/Windows-VM-Tips.md b/Linux/Proxmox/Windows-VM-Tips.md new file mode 100644 index 0000000..4b8bd77 --- /dev/null +++ b/Linux/Proxmox/Windows-VM-Tips.md @@ -0,0 +1,10 @@ +# Windows VM Tips + +## General tips +* Handeling of memory balooning works, but can cause issues when memory presure is high on the PVE host. +* When installing make sure the [virtio driver](https://pve.proxmox.com/wiki/Windows_VirtIO_Drivers) iso is mounted. + +## Windows server +* QEMU quest agent might fail to shutdown the VM, might be caused by the `Shutdown Event Tracker` to disable it: +Open up the `Group Policy Management Console`, navigate to `Computer Configuration` >> `Administrative Templates` >> `System`. +Set `Display Shutdown Event Tracker` policy to disable, Reboot to apply the change. \ No newline at end of file