this post was submitted on 23 May 2026
647 points (98.8% liked)
Programmer Humor
31616 readers
84 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Technically you could just netboot a kernel and initrd, then mount a root filesystem via the network
So you don't even need a drive in your computer
Not sure why you'd do this outside of very specific appliances but it's an option
I do this for a server in my LAN. I use DHCP+TFTP to boot grub over the network via PXE, and then grub boots the Kernel with the root pointing to a NFS share:
Doing this makes managing that installation much easier. It's just a directory that lives on the Main Server.
I don't even need to boot the other Server to update the software in it, chroot is enough. And I don't even have to worry about doing separate backups, because I already back up the Main Server's Storage regularly.