First time poster. I joined the forums about a year ago, and just recently got around to actually browsing some of the topics here. Lots of good information and knowledgeable people on these forums. I’ve also been watching and learning from Jay’s videos.
I’ve been a computer enthusiast since my first into to computers in the mid '70s (kinda puts a date on me, lol). I downloaded my first Linux distro in the late '90s, I don’t remember which distro it was, but I had no idea what to do with it, and even less resources to learn from.
Several years ago, after a couple of major data losses, I started researching backup solutions. I discovered homelabs and servers, and fell way, way down that rabbit hole. So, today I’m the proud owner of several high powered servers, a couple amazing Raspberry Pi4s, and more Linux VMs than I can shake a stick at.
Getting to the topic at hand. Part of my strategy with trying out various distros, included removing my Windows drive from my laptop and swapping in an inexpensive ssd (240 GB $35 CAN, $27 US) and installing whatever Linux flavor I wanted, then swapping back to the Win ssd, if I needed to.
Another thing I’ve done is installed VirtualBox on my laptop, and currently have Ubuntu Desktop 22.04, Debian 11, Kali Linux, Linux Mint, and Tails VMs installed. On the servers, I have a dedicated Supermicro pfSense box, a Supermicro TrueNAS server, a Dell 510 Proxmox machine, a 48 thread Dell 720xd running TrueNAS Scale, and an Intel server with 32 threads running VMWare ESXI (this one was given to me).
In the interest of power savings, I’ve recently switched most of my services over to the PIs, as my “always on” servers. Following Novaspirittech’s pi-hosted series on YT, I ended up with 25 docker containers running on one 8GB Pi4, and a dozen on the other, including a complete ARR stack, Jellyfin, pi-hole (of course), apt-cacher-ng, Wireguard, along with a separate Motioneye install for security cameras. I have written a bash script recently to backup and prune my security camera videos, and rsync them nightly, with a cron job to the other Pi. Thanks to Jay’s videos, it works like a charm.
I have a couple issues with the Pis, but I’ll start a topic in the Raspberry Pi section for that.
Sounds like you’ve got an incredible homelab. Welcome to the forum. Now I’ve got to look up what apt-cacher-ng is.
I would have to agree with your comment “fell way, way down that rabbit hole”. But in a good way!
I too ditched Windows this past January after decades running Windows (since version 1.0). I have four Linux Mint workstations, two servers and currently building a third with a Supermicro X10 MB. My Linux journey has been like drinking from a fire hose as it has been a total immersion.
The good news is that I have never looked back and have no plans to ever go back to Windows. Linux is feature rich and has a ton of knowledgeable people willing to share their time and experiences like Jay.
Curious as to what Supermicro hardware you landed on.
Both Supermicro servers came with the X10SLL-F motherboards. The 2U 8 bay TrueNAS machine had an E3-1220v3 4c4t CPU and the 1U pfSense box had an E3-1230v3 4c8t CPU. I swapped the CPUs between the 2 machines. I just ordered 32 GB of ram for the TrueNAS server.
Apt-cacher-ng works with any distro that utilizes the apt package manager. You set it up on one install of Ubuntu, Debian, or any other distro which uses the apt command, and create an apt config file on the other installs. When any of the installs are updated, they first look to the main install to see if the packages they need are cached. and if they are, they get the packages locally, if not they go to the regular repositories. This works especially well for me, as I have crappy internet service, as well as a cap on my high speed data plan.
Sometimes I have as many as 2 dozen VMs and other installs that use apt to update, and this saves me a ton on downloads, as well as saving a lot of time because the installs get the packages locally.
Here’s the YT video I followed to set it up initially. Apt Package Caching using apt-cacher-ng on a Raspberry Pi - YouTube
There is also a docker image for apt-cacher-ng here: Docker
Thanks for the additional information OldGoat! Very helpful!