

How does Hetzner work? I just looked at their storage box prices, and it seems too good to be true? €40/mo for 20TB. And they break it down to €0.0651/hr. Does that mean I could run the backups only when needed and pay less than €40/mo?


How does Hetzner work? I just looked at their storage box prices, and it seems too good to be true? €40/mo for 20TB. And they break it down to €0.0651/hr. Does that mean I could run the backups only when needed and pay less than €40/mo?


I have a NAS with a couple of SSDs configured in a ZFS mirror that backs up to a Raid Z2 storage pool on the same NAS. Again, on that NAS, I run Paperless-ngx in a docker container. Finally, I use the iOS app Swift Paperless to upload documents to Paperless-ngx. All done over Tailscale.
My load bearing NAS has a lot of redundancy but no offsite backups so I still keep some important documents in the cloud. I’m saving up for another NAS that I can keep at a family members house but prices are insane right now :/
If you can follow the 3-2-1 storage rule without using the cloud, that’s awesome. However, the upfront cost can be expensive depending on how much you are storing. Just do the best you can using whatever you have available to you, even if that means using iCloud as part of your setup.


I agree. I’ve got a 9060XT 16GB card running some version of gpt-oss:20b. I understand how to program more or less but I do it so infrequently that I forget the syntax of whatever language I’m working in. It’s ability to spit out boiler plate code that I can edit for my needs has been a huge time saver and I’m extremely happy with my setup.


These posts do more to make me not want to use GrapheneOS than any other person or entity. This has got to be a psyop. I refuse to believe any one can possibly be this much of a bitch.
Make your OS and rest on its merits instead of crying about it 🤷♂️
Is it already time for the lead GrapheneOS developer’s annual crash out? Where do the years go?


The house I bought had one of these installed already. Works great with the homeassistant ZWA-2 antenna.


That’s unacceptable and infuriating. I started going to my wife’s appointments because of shit like this. I don’t know if it’s because my wife wasn’t advocating enough for herself or if the doctor was shitty but all I do is sit there and repeat my wife’s concerns in different words when I think I need to. If I’m not satisfied with an answer, I just keep asking questions. She’s getting the care she deserves now.
This is coming from a good place and I don’t mean any disrespect but it sounds like your wife needs a mammogram. Do something about it; you only have each other.


After COVID, I forget common words in the middle of speaking now which has been fucking fantastic in work environments.
“Hey can you hand me that…um…uh….that piece of paper for coffee grounds?”
“A filter?”
“Yeah that”
No, you actually caught be at the perfect time, the transfer to my temporary pool is almost done. I was just curious how inheritance worked on a pool but after giving it some thought, your recommendation makes more sense; turn it on when I know I need it vs turn it off when I know I don’t. Thanks for the advice.
Let’s say I did turn on compression on root. I can’t then turn it off on a per file system basis where it isn’t needed?
Yeah I’m not excited about the write and rebuild times being slower but the read times should still be pretty good. Considering I don’t have any more space for drives in my server and I don’t know how crazy hdd drive prices will get in the next 12 months, the guaranteed 2 drive failure resiliency is more important to me at the moment. My current 1 drive failure resiliency, 2 if I’m lucky, has me worried. My backups are on shucked drives and I don’t want to be put in a situation where I have to rely on them to restore 😅
Thank you for this


I’ll look into it, thanks.
I’m still in the information gathering phase. Do you know if the element client works with the continuwuity server? Is it as easy as entering the domain, user, and password in the client?


Fair criticism. I just don’t have a lot of free time. I can invest in Element but I wanted to crowd source information to see if it was worth it or if there was an easier way. It doesn’t get much easier than Docker


Out of curiosity, what makes it better?
A quick search says it’s a package manger for kubernetes. Besides plex, everything I selfhost is just for me. Would you say helm/kubernetes is worth looking into for a hobbyist who doesn’t work in the tech field?


Linux has gotten really good over the last ~15 years. It used to be that if you didn’t have the most up to date packages, you would be missing game changing features. Now, the distribution you use almost doesn’t matter because even the older packages are good enough for most things.
To answer your question, if it weren’t for gaming, no I wouldn’t mind using Debian as my daily driver. If I ever needed a new package for whatever reason, I would use flatpaks, snaps, docker, or Distrobox to get it.


Personally, yeah it’s the old packages. I want to play games on my desktop and have the newest DE features. An arch based distro seems like it’ll keep up better than Debian.
For my servers though, I only use Debian.


I’m assuming you mean LXC? It’s doable but without some sort of orchestration tools like Nix or Ansible, I imagine on-going maintenance or migrations would be kind of a headache.


You might come across docker run commands in tutorials. Ignore those. Just focus on learning docker compose. With docker compose, the run command just goes into a yaml file so it’s easier to read and understand what’s going on. Don’t forget to add your user to the docker group so you aren’t having to type sudo for every command.
Commands you’ll use often:
docker compose up - runs container
docker compose up -d - runs container in headless mode
docker compose down - shuts down container
docker compose pull - pulls new images
docker image list - lists all images
docker ps - lists running containers
docker image prune -a - deletes images not being used by containers to free up space
Oh got it. Thanks!