this post was submitted on 08 Aug 2025
67 points (100.0% liked)

Self-hosting

3604 readers
5 users here now

Hosting your own services. Preferably at home and on low-power or shared hardware.

Also check out:

founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] F04118F@feddit.nl 1 points 2 weeks ago (1 children)

I'm not actually sure because I haven't measured it. But I've read that while CPU and memory overhead is small, disk IO is much faster without virtualization.

[–] MangoPenguin@lemmy.blahaj.zone 1 points 2 weeks ago (1 children)

It could be depending on the underlying filesystem and how it's set up, I've run into that before.

But my self hosted stuff doesn't need particularly fast disk IO, so I don't really notice even if there is a bottleneck lol

[–] MotoAsh@lemmy.world 2 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

It definitely depends. If you use qcow2 files for your disks, they're a copy-on-write format, which is slower than most file systems inherently. If the host system is also a copy-on-write file system, then it doubles your writes outright.

If you're using raw disks/partitions, there is minimal overhead that usually comes down to usually miniscule driver differences. Although depending on what the VM platform supports, you might outright lose snapshot/restore support.

[–] MangoPenguin@lemmy.blahaj.zone 1 points 2 weeks ago

Yeah I'm running ZFS with raw disks, and most things are in containers anyways, just a few VMs for Windows or stuff that doesn't like containers.