Proxmox Tip of the Day 💡

Did you know that if you’re using LVM partitions in your Proxmox cluster, resizing your swap space is actually super straightforward?

Instead of rebuilding or migrating anything, you can simply expand your swap volume on the fly and bring it back online in just a few commands.

Here’s how it works:

swapoff -a
lvresize -L +2G /dev/pve/swap
mkswap /dev/pve/swap
swapon -a

A quick breakdown:

swapoff -a → safely disables swap
lvresize → increases the logical volume size (in this example +2G)
mkswap → reinitializes the swap space
swapon -a → re-enables all swap defined in fstab

⚠️ Just make sure nothing critical is relying heavily on swap during the change.

Small trick, big convenience when managing storage in Proxmox clusters.

Hello world!

My name is Marcel and I live in the Netherlands. I thought it was time to start a blog about my tech life. This has been on my to-do list for a long time.

I am a tech nerd. System administration has been my hobby since I was young. I really enjoy working with servers, networks, and new technology.

At home, I have my own server rack where I run different systems. I am a big UniFi fan and use it for my network and storage setup. I also run a Proxmox cluster, which I use to manage virtual machines, LXC containers and experiment with different setups.

Besides that, I am interested in decentralized technologies. I follow and support two DePIN projects: PreSearch and RunOnFlux. This website is also running on RunOnFlux.

In this blog, I will share my experiences, setups, and things I learn along the way.

Thanks for visiting!

Marcel