Why proxmox and not simply using libvirt? I am very happy with kvm, but always looking to make my life better.
Scripts for Streamlining Your Homelab with Proxmox VE
91–100 of 113 posts
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#92Serious question: What is the advantage of Proxmox for power linux users that can run a debian or ubuntu server box + KVM ? I'm always reading stuff about people using proxmox but don't really understand its 'edge'
I was in a similar boat and finally got around to trying out Proxmox in the last year or so. I just wanted share my own experience here, since it's a bit different than the "standard" uses I've seen. I had been running a k3s cluster (k8s flavor) on some Raspberry Pis, but decided I needed some non-ARM nodes, and "invested" in a few low power "1L" AMD64 PCs (6-8 core + hyper-threading). I was initially going to just i…
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#93The actual scripts: https://github.com/tteck/Proxmox After poking at a couple of these, they seem like they're 50% shiny packaging and 50% one-liner bash commands.
I do a quick look over of the source to make sure it’s ok. It saves me so much time and pain.
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#94Serious question: What is the advantage of Proxmox for power linux users that can run a debian or ubuntu server box + KVM ? I'm always reading stuff about people using proxmox but don't really understand its 'edge'
In the same amount of time, if I were diving in to DIYing it, I'd probably be about 5 minutes into reading the arch linux wiki page for KVM/qemu.
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#95Serious question: What is the advantage of Proxmox for power linux users that can run a debian or ubuntu server box + KVM ? I'm always reading stuff about people using proxmox but don't really understand its 'edge'
For me who uses it as a NAS/VM platform, it’s basically Debian with some virtualization relevant packages and an opt in kernel that are more reasonably up to date, with solid ZFS support out of the box so I don't care about the "update kernel, reboot, oops version mismatch I need to revert" nonsense. While things like TrueNAS exist with ZFS support, in the past iX systems has made some overeager patches to ZFS, to br…
I've also not enjoyed reading their forums at all, while information about Proxmox tends to be actually helpful rather than berating people over their hardware choice or spreading misinformation about ZFS.
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#96Serious question: What is the advantage of Proxmox for power linux users that can run a debian or ubuntu server box + KVM ? I'm always reading stuff about people using proxmox but don't really understand its 'edge'
I was in a similar boat and finally got around to trying out Proxmox in the last year or so. I just wanted share my own experience here, since it's a bit different than the "standard" uses I've seen. I had been running a k3s cluster (k8s flavor) on some Raspberry Pis, but decided I needed some non-ARM nodes, and "invested" in a few low power "1L" AMD64 PCs (6-8 core + hyper-threading). I was initially going to just i…
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#97Earlier quoted context omitted.
From what I know you cannot pass the primary video card to a guest, so you'd need a second video card to pass-through to the guest. But i'd be happy to be proven wrong.
You can, but it disconnects it from the host, so you'll be headless. Which may be fine for a lot of people if you are able to ssh in and manage it that way.
At the time I had no idea how popular it was to run this setup, I thought I was being all weird and experimental. Was surprised how smoothly everything ran (and still runs, a year and change later!)
Bonus, I was able to just move the PC to another disk when the SSD it was on was getting a bit full. Moved PC's storage onto a spinny HDD to make room to shuffle some other stuff around, then moved it to another SSD. Didn't even need to reboot the PC VM, haha.
Proxmox backup server running on my NAS handles deduplicated backups for it and other VMs too which is great.
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#98Why proxmox and not simply using libvirt? I am very happy with kvm, but always looking to make my life better.
Wondering the same. Also a libvirt and virsh user here, and pretty happy using commands such as `virsh snapshot-create ...`. I've used VMWare ESXi in the distant past, and from the screenshots it looks like Proxmox is maybe inspired by VMWare? So maybe a more polished and integrated GUI based experience than libvirt? Also looks like Proxmox supports containers in addition to virtual machines. Also I see from other co…
ZFS support that just works is really nice too. They also have a backup solution I’d like to check out but haven’t yet.
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#99Slightly off topic: I’m setting up a home server on a Mini PC that has Windows 11 Pro pre-installed. I want to attach it to my TV and play retro games as well as run home automation tasks (periodic scripts, UniFi controller, Pihole etc) Is anyone using Proxmox on their homelabs? Would you recommend blowing away Windows and installing Proxmox and then install Windows with PCIE passthrough?
You want to use Hyper-v, you can use GPU-P(Gpu Partitoning) where hyper-v will pass through the GPU to the VM and share it, it's not some emulated adapter, it's genuinely the real GPU and runs natively and you can share it across multiple VM's and host. Linux has NOTHING that can compete with the feature.
Re: Scripts for Streamlining Your Homelab with Proxmox VE
#100The actual scripts: https://github.com/tteck/Proxmox After poking at a couple of these, they seem like they're 50% shiny packaging and 50% one-liner bash commands.
With docker it seems a Dockerfile is a self-contained recipe. You build it, then you run the container.
with proxmox, you sort of have to be a sysadmin. The proxmox UI helps you define the characteristics of the container, but then you have to put everything inside the container yourself without help or reproducibility.