What's up, selfhosters? - The Sunday thread
from tofuwabohu@slrpnk.net to selfhosted@lemmy.world on 02 Mar 22:34
https://slrpnk.net/post/19028065

Almost forgot before going to bed but I feel bi-weekly is a good rhythm for this.

Let us know what you set up lately, what kind of problems you currently think about or are running into, what new device you added to your homelab or what interesting service or article you found.

#selfhosted

threaded - newest

tofuwabohu@slrpnk.net on 02 Mar 22:34 next collapse

Personally I’m mostly involved with my homelab migration so there’s not too much on the selfhosting page except os updates. I set up meshmini earlier to access my thin clients via vPro/AMT but I need to configure the clients before being able to actually using meshmini. Once I’m done with that I’ll finally be able to set up Lemmy and Pine pods.

My selfhosted stuff currently works fine without me doing much which feels good and lets me focus on hardware stuff currently.

rikudou@lemmings.world on 02 Mar 22:50 next collapse

You can use schedule.lemmings.world to automate the posts. Or, given the community we’re in, you can selfhost it!

This week I’ve been doing some work on my GOG Downloader to finally back up all my GOG stuff when I buy new disks, that’s pretty much it for my selfhost/homeserver stuff this week.

tofuwabohu@slrpnk.net on 02 Mar 22:58 next collapse

I didn’t know that, cool! Though I should probably talk to the mods before setting up such a thing.

walden@sub.wetshaving.social on 03 Mar 00:07 collapse

I’m the one who files the most bug reports on github under a different name. Our instance runs on Lemmy Schedule, so thanks!

poVoq@slrpnk.net on 02 Mar 23:06 next collapse

Experimented with selfhosting a Woodpecker CI as a complement to my Forgejo.

Works quite nicely, I just need to set up a native ARM64 agent as the overhead of cross compilation on x86_64 is quite big.

Xanza@lemm.ee on 02 Mar 23:19 next collapse

Experimented with selfhosting a Woodpecker CI as a complement to my Forgejo.

If you need CI, check out OneDev. It’s a git solution that comes with an integrated CI solution.

beerclue@lemmy.world on 03 Mar 00:56 collapse

Why not just use forgejo’s actions and runner?

poVoq@slrpnk.net on 03 Mar 01:14 collapse

Woodpecker is more mature and I can control access better since I am not the only one using my Forgejo. But I think at some point the built in ones might reach feature parity.

Xanza@lemm.ee on 02 Mar 23:20 next collapse

Just swapped VPS hosts from ssdnodes to MassiveGRID. Got a pretty sweet deal, so I’m pretty excited.

Got my services transferred over this week and it’s been fun as hell. It’s interesting because I was discussing Portainer with my buddy and he has Portainer on his local PC to connect to his remote instances and with hindsight it sounds obvious of course, but it’s such a nice little setup. Just finished setting up my Jellyfin reverse proxy so I’m gonna watch a movie and chill.

walden@sub.wetshaving.social on 02 Mar 23:37 collapse

I used Portainer for a while and still like it for checking out networking stuff, but try out Dockge! It’s more open sourcey and basic, but makes updating easier.

Xanza@lemm.ee on 03 Mar 00:50 collapse

Dockge

Dockage was nice, and it was much simpler, however, I had to leverage more docker commands via my VPS with it, because there weren’t a lot of options, specifically network settings.

swizzlestick@lemmy.zip on 02 Mar 23:31 next collapse

A third, and hopefully final attempt at getting an iredmail setup going. SPF, DKIM & DMARC all checking out fine. It’s actually working this time. Need to get the ISP to change our PTR record though, last bit of the puzzle.

Also picked up a used negate device, so we now have pfsense fronting everything. That’s allowed me to move the original router to a better location and put it in AP mode.

Emby media server moved off a Synology and into a proxmox container. Finally, we can stream high def with the hardware acceleration we weren’t getting before.

non_burglar@lemmy.world on 02 Mar 23:41 next collapse

Finally moved all my lxc onto a lower-power Xeon D host, consumes 1/3 the electricity of my previous Dell R430, same essential performance.

surewhynotlem@lemmy.world on 03 Mar 00:01 next collapse

I upgraded immich without breaking everything. That’s always reason to celebrate.

ZebraGoose@sh.itjust.works on 03 Mar 00:55 next collapse

I feel you 😂

Selfhoster1728@infosec.pub on 03 Mar 07:25 next collapse

How exactly does stuff get broken? Never rly had a problem bumping up the version in docker. The only issue has been the playstore version taking longer to push updates sometimes for the mobile apps.

TrumpetX@programming.dev on 03 Mar 13:34 collapse

A few versions ago I upgraded it and some default port configs changed rendering it unusable. Since my upgrades are a docker command, I had to go hunt down the error message. It didn’t take long, but it def broke the setup.

PerogiBoi@lemmy.ca on 03 Mar 15:26 collapse

I’m running the Immich Flatpak Snap specifically for this reason. It’s always one version out of date but always self updates without issues :)

fossphi@lemm.ee on 03 Mar 16:53 collapse

flatpak

You mean as a client or a server?

PerogiBoi@lemmy.ca on 03 Mar 23:00 collapse

I misremembered; I run “Immich Distribution” which is a snap and I run it on a Debian server.

harsh3466@lemmy.ml on 03 Mar 00:43 next collapse

I’ve been working on some bash scripts to help manage my media files. I’ve been slowly working on learning more bash and I’m pretty pleased with my progress. After I finish this bash book I’m reading (can’t remember the title atm), I think I’m gonna jump into awk.

Xanza@lemm.ee on 03 Mar 02:35 collapse

Bash is a really great shell, but consider trying out a functional shell scripting language like Elvish (which is also a shell). Syntatically it’s pretty similar and not hard to pickup, but it’s stupid powerful. A cool example is updating different servers via ssh in parallel using a servers.json file;

[
  {"name": "server.com", "user": "root", "identity": "~/.ssh/private_key0", "cmd": "apt update; apt upgrade -y"},
  {"name": "serverb.com", "user": "root", "identity": "~/.ssh/private_key1", "cmd": "pacman -Syu"},
  {"name": "serverc.com", "user": "root", "identity": "~/.ssh/private_key2", "cmd": "apk update; apk upgrade"}
]

and a little elvish magic;

var hosts = (from-json < servers.json)
peach {|h|
  ssh $h[user]@$h[name] -i $h[identity] $h[cmd] > ssh-$h[name].log
} $hosts

Just run the script and boom, done. You can even swap out peach which is parallel each for each if you want to do each command procedurally–but I really love using peach, especially with file operations over many different files. Linux is fast, but peach is fuckin’ crazy fast. Especially for deleting files (fd -e conf -t file | peach {|x| rm $x }, or one thing that I do is extract internal subs (so they play on my chromecast) in my Jellyfin server, using elvish makes it really fast;

fd -e mkv | peach {|x| ffmpeg -i $x -map 0:s:0 $x.srt }

Find all *.mkv files, pass the filenames through ffmpeg (using peach) and extract the first subtitle as filename.mkv.srt. Takes only about a few seconds to do thousands and thousands of video files. I highly recommend it for home-labbers.


Pretty dumb example, but peach is like 6x faster;

❯ time { range 0 1000 | each {|x| touch $x.txt }}
5.2591751s
❯ time { range 0 1000 | peach {|x| touch $x.txt }}
776.2411ms
anomaly@sh.itjust.works on 03 Mar 00:45 next collapse

Got Prometheus and Grafana setup with https on my Talos Linux cluster. Tried to use cert-manager with a DNS01 Challenge with Let’s Encrypt but was using a local TLD and found out it won’t issue it. So I had to switch to a local issuer. Was using metallb to gain a routable ip, I used the nginx-ingress controller for Prometheus and Grafana. Next time I can tinker I’ll place the rest of my services behind it.

tofuwabohu@slrpnk.net on 03 Mar 07:26 collapse

I hadn’t heard of Talos Linux, sounds cool! We are using haproxy as ingress controller with stepca for local certificates at work.

slowmotionrunner@lemmy.sdf.org on 03 Mar 01:05 next collapse

I like iOS shortcuts. This week, I created an iOS shortcut to scan my Plex library. Now this may seem weird since there is an option to scan a library from the official Plex iOS app and there are also options to scan the library automatically or periodically. For various reasons (excuses), I didn’t like that the official app only lets you scan one library at a time and I have automatic/periodic scans turned off to avoid network drive access, so I created the shortcut to scan from my phone any time I felt like I wanted to trigger it.

  1. Create a new iOS shortcut
  2. Add the “Get contents of URL” action
  3. Get your X-Plex-Token (see instructions on official website)
  4. Set the URL in your action to: https://{ip_address}:{port}/library/sections/all/refresh?X-Plex-Token={plex_token}
thelittleblackbird@lemmy.world on 03 Mar 17:31 collapse

Dealing with a Ds-lite connection for a fiber optic provider in latest opnsense.

It is excruciating how difficult is to run it reliable

node815@lemmy.world on 03 Mar 01:10 next collapse

Pushed Wireguard back onto my network. I’ve been a Tailscale user for a couple of years, but never really saw the need for it for me as I’m the only user of the service. :)

I will freely admit though, there’s nothing wrong with the service and honestly is great if you are behind a CGNAT router or don’t want to use Cloudflare for your tunneling.

papertowels@mander.xyz on 03 Mar 01:18 next collapse

I finally got link warden up and running, but I’m chasing down some failures on a few websites.

Also realized that me biting the bullet for unlimited bandwidth (screw you Comcast!) means I can run archive team warrior, so that’s been going.

Xanza@lemm.ee on 03 Mar 02:17 collapse

IMO linkwarden was a real PITA. I’ve been trying linkding and it’s been really great so far. I’ve had no issues like I had with linkwarden.

pos005@lemmy.pos005.com on 03 Mar 01:54 next collapse

I finally moved from reddit to Lemmy. maybe a 3-4 hour set up time to get it all working lol.

tofuwabohu@slrpnk.net on 03 Mar 08:28 collapse

Cool! Which installation method did you use?

pos005@lemmy.pos005.com on 03 Mar 12:47 collapse

I did manual docker. I host some other things as well, so running it through nginx proxy manager that I already had set up.

tofuwabohu@slrpnk.net on 03 Mar 13:21 collapse

I also planned to do the same (bare nginx instead of NPM but otherwise the same). Did you just remove the nginx container from docker compose and use the same arguments in NPM or do you double-reverseproxy or something else?

pos005@lemmy.pos005.com on 03 Mar 13:42 collapse

Short answer, yes I removed the nginx container from the lemmy compose file. I followed this guide if it helps: reddit.com/…/getting_lemmy_running_with_a_separat…

tofuwabohu@slrpnk.net on 03 Mar 15:01 collapse

Cool, thanks!

Bishma@discuss.tchncs.de on 03 Mar 02:25 next collapse

I spent half a dozen hours this weekend trying to get Proxmox running on a 2nd hand laptop, but I can’t get it to run without sounding like a jet engine. The machine did fine when I ran Mint and used it as a laptop - but even after blacklisting the dGPU and forcing all the CPU cores to powersaving, I’m still making heat like crazy.

Plan B is to put Mint back on it and install podman and see if fan noise is a problem then. But I’d rather have podman running in an unprivileged LXC.

ryan_@lemmy.world on 03 Mar 04:18 next collapse

Hmmm you might be able to first install Debian 12 and make sure the fan control works properly, then just install the proxmox application inside of that

pve.proxmox.com/…/Install_Proxmox_VE_on_Debian_12…

Bishma@discuss.tchncs.de on 03 Mar 05:19 collapse

Good call. That’s plan b now.

Thanks!

tofuwabohu@slrpnk.net on 03 Mar 11:08 collapse

I would run Debian from a stick and install Proxmox with the installer and not on top of Debian unless you have to. While the latter works, I found some settings around network interfaces to differ between the installation methods which caused me problems here and there.

tofuwabohu@slrpnk.net on 03 Mar 11:02 collapse

Did you check Mint recently? If it’s been a while, it could also be dust buildup at the fan.

Bishma@discuss.tchncs.de on 03 Mar 14:59 collapse

Its only been a few weeks, but I should give it a good blowout regardless.

Burn1ngBull3t@lemmy.world on 03 Mar 02:34 next collapse

Many issues this week:

  • Broke external-dns on my kube cluster because I updated my Pihole to v6
  • Thinking of a way to expose a game server externally (usually used CF tunnels for specific services, but couldn’t get it to work cause it’s TCP/UDP and not HTTP traffic)

But at least i got my Velero backups working on an private S3

eutampieri@feddit.it on 03 Mar 07:47 collapse

For no 2, in k8s, you can use MetalLB. Then the service will be of type LoadBalancer and you won’t have to create an ingress.

Burn1ngBull3t@lemmy.world on 03 Mar 13:53 collapse

Good suggestion actually, i’ll head back to MetalLB docs. Thanks !

eutampieri@feddit.it on 03 Mar 16:52 collapse

You’re welcome!

FunkFactory@lemmy.world on 03 Mar 02:37 next collapse

I’m a new selfhoster and reached the limit on what my DS923+ can handle after setting up an Immich instance (on top of qbitorrent, radarr/sonarr, plex). So I picked up a mini PC this week and migrated the Immich stack over (pointing to an NFS mount for the NAS!) and now it’s running super smooth 🙌 Now I’m hype to move over more services and eventually start separating out media services from mission-critical stuff like photos when I have another machine handy.

I wanted to set up local domain resolution for my devices in order to stop having to visit sites with the local 192.168.1.x IP, so I started following some guides to run dnsmasq on the mini PC (Ubuntu Server) and add entries to /etc/hosts. It was pretty easy to get working OK, but for whatever reason the DNS doesn’t seem to be working on a fresh boot. My local workstation can’t ping the custom DNS entries for my devices until I sudo systemctl restart dnsmasq on the mini PC, after which everything works fine, which leads me to believe it’s some weird boot order problem? I’m trying not to screw with it too much before bed, but hopefully I can figure out what’s going on this week.

kitnaht@lemmy.world on 03 Mar 03:03 next collapse

Highly suggest putting Caddy on a machine, forwarding port 443 and 80 to caddy, and then letting it do your reverse-proxy stuff. Register a domain name, give it your IP address, and then tell caddy that ‘immich.yourdomain.bleh’ goes to port 78789 and plex goes to ‘media.yourdomain.bleh’ port 89898 – Caddy handles all of the TLS stuff, handshaking, you name it - so you can have secure sites with proper certs.

Then make sure those things are isolated from your home network through vlans if your router supports it.

You can get fancier with it using a tailscale and getting some datacenter IP to forward into your network

sugar_in_your_tea@sh.itjust.works on 03 Mar 03:27 next collapse

I set up DNS challenge with Let’s Encrypt with Caddy, and now I don’t need to forward anything to it if I don’t want to.

azron@lemmy.ml on 03 Mar 03:52 collapse

DNS challenge so you can get a wildcard cert? Or is it still per domain? I haven’t looked recently but it seemed difficult but I’d like to avoid transparency log installs where I can.

sugar_in_your_tea@sh.itjust.works on 03 Mar 04:02 collapse

You can do both (not sure how wildcard works through Caddy though), I did it per domain. I prefer doing TLS trunking per device, hence no wildcard.

FunkFactory@lemmy.world on 03 Mar 03:32 collapse

Thanks for the advice, I didn’t know a reverse proxy was what I was setting up though I’ve seen that term all over. I think Caddy is likely in my future but I already have basic access to my home network through a Wireguard tunnel for now so I was hoping dnsmasq could solve for my case without getting too fancy or exposing any ports. I think I should probably try to learn about reverse proxies more generally to figure out the next steps forward.

tofuwabohu@slrpnk.net on 03 Mar 10:55 collapse

If you want to have domains assigned to local IP addresses, you can also use Pihole as a local DNS! It’s a very nice tool for adblocking on network level anyways, can only recommend it.

FunkFactory@lemmy.world on 03 Mar 20:12 collapse

Awesome thank you, this is what I ended up setting up today. It’s a bit of an awkward solution for now, I would very much like to use it for its ad blocking functionality but I’m unsure if I want to make it my only DNS provider while I’m still migrating services over to the mini PC and messing with the server config. I had set up Pihole years ago and my wife ran into problems using some apps on her phone so I think I’d need to be more proactive about making sure that’s working this time around too.

tofuwabohu@slrpnk.net on 03 Mar 20:27 collapse

I get that, I plan to add another pihole ad some point so I can enter 2 nameservers at my router. There are solutions to sync all config between the piholes.

BruisedMoose@piefed.social on 03 Mar 03:15 next collapse

Since it's winter and I mostly don't want to leave my house, I busted out an unused Raspberry Pi 4b a couple weeks ago. Started with CasaOS and AdGuard. Have now added a few other services including Navidrome to serve up a lot of local-area music for myself and friends. Got a Cloudflare tunnel set up, then some authentication through CF as well. And finally secured a static IP from my ISP. This is the farthest along I've ever gotten with any of this and it's been going great. Nearly every hurdle I've encountered I've been able to work through.

Two things causing me grief today though:

  1. I also have Nextcloud hosted on a VPS and I cannot get to the point of running occ commands. First it wasn't found, then no php cli, then just errors. I gave up.

  2. I'm using Homer because it's just so simple, but the theming and CSS is driving me nuts. Sure, I can change colors, but will this little bar in the neon theme change from 4em to 100% for me? NOPE. Override fonts? Nosir. All good though.

ikidd@lemmy.world on 03 Mar 03:31 collapse

Try the OCCWeb app in nextcloud apps.

BruisedMoose@piefed.social on 03 Mar 11:51 collapse

Thanks! It just threw an error at me when I launched it, but I'll see what I can do. Based of the warnings in the admin panel, there isn't anything critical for me to address, I just hate that orange.

sugar_in_your_tea@sh.itjust.works on 03 Mar 03:22 next collapse

I’m setting up Seafile and trying to swap everything from docker to podman. The longer term goal is that once everything is on podman, I’ll get a new NVME drive and install MicroOS so I can retire my old SATA SSD (I’ve had it for 10 years or so, across 3 PCs).

I’m also considering setting up Forgejo and getting a worker to build my Rust projects.

dormedas@lemmy.dormedas.com on 03 Mar 06:59 next collapse

Finally got my lemmy instance fully updated.

Been improving my backup scripts in advance of adding backup to a server.

Updated servers and other services.

Kng@feddit.rocks on 03 Mar 08:15 next collapse

Had a hard drive fail my main zfs array. First time I have experienced a disk failure so it was a bit worrying. Thankfully I had added an additional drive to expand the array so I was able to quickly rebuild to that drive. Currently shopping for a replacement. From now on I think I will keep a cold spare just in case this happens again. I just wish hard drives would stop increasing in price.

doodledup@lemmy.world on 03 Mar 15:56 collapse

You save some money by buying recertified drives from Serverpartdeals.

Kng@feddit.rocks on 03 Mar 19:22 collapse

Yea that is what I have been doing. Although it seems the smaller sizes are not a great deal anymore and I am hesitant to buy anything larger due to the long rebuild times

AmbiguousProps@lemmy.today on 03 Mar 09:37 next collapse

My pihole exploded yesterday, all my fault. A couple of years ago, I created a script called via cron to update pihole’s services every other week. This was great, until now when it updated to v6 at 4am. To make matters worse, I neglected to automate raspian updates, meaning it was very out of date, and was no longer compatible with pihole-FTL (thinking back, I thought I automated it too, but I guess not).

I took an image after creating a pihole “teleporter” backup, and began formatting. In my lack of caffeine and focus, I missed that my teleporter file was corrupt after I had successfully wiped the SD card. Thankfully I had that image as I was able to mount it and retrieve my blocklists via sqlite, otherwise I would have had to start from scratch.

One good thing that came out of it (for my taste, anyway) was that I swapped the OS on the pi to fedora. No more debian around here!

Tomorrow, I plan on setting up some backup automation for my pi, as it’s the only machine missing backups at this point.

Appoxo@lemmy.dbzer0.com on 03 Mar 11:23 collapse

Why so hostile sounding against debian?
What does fedora better?

AmbiguousProps@lemmy.today on 03 Mar 11:31 collapse

I don’t mean to sound hostile, that’s probably my past demons coming out. Like I said in my last comment, it’s really apt that I hate. It would constantly break or put me into dependency hell and I haven’t had to deal with that (yet) with Fedora.

I haven’t put my finger on it, but Fedora, for whatever reason, also just feels faster.

VitabytesDev@feddit.nl on 03 Mar 09:51 next collapse

After having upgraded my Pi-Hole to v6, for some reason yesterday it started to not recognize any of the blocklists. So, I resetted it and now it works.

ItTakesTwo@feddit.org on 03 Mar 09:51 next collapse

I’m in the process of doing an initial restic sync of my primary storage to B2 as offsite backup and while I’m at it finally got around having a look at resticprofiles to simplify my restic backups on all my systems. Highly recommend it as it reduced my mental overhead of doing regular backups quite a bit!

Fiery@lemmy.dbzer0.com on 03 Mar 10:34 next collapse

Realised my jellyfin lxc had a maxed out bootdisk yesterday, haven’t been using it for a while. Luckily I have decent backups setup so I was able to restore a backup from late January when it wasn’t filled yet. A quick library rescan and everything was up and running again.

beerclue@lemmy.world on 03 Mar 10:46 next collapse

Pihole 6 broke my DNS (dnsmasq), and since I had a fw rule in opnsense to only use pihole’s DNS, and deny public DNS access, it was an early rise for me :)

N0x0n@lemmy.ml on 03 Mar 11:06 next collapse

Damn… DNS issue early in the morning… What a nightmare 😂! Hope you got enough caffeine.

Appoxo@lemmy.dbzer0.com on 03 Mar 11:20 next collapse

And that’s why you have either a backup for your DNS or know whats auto-updated ;)

As you mention opnsense:
What do you mean with fw rules to only use pihole dns?
This sounds partly like a DHCP config and partly like a deny (hardcoded) DNS requests and to please use what DHCP supplied (looking at you google/amazon)

beerclue@lemmy.world on 03 Mar 12:02 collapse

I did have backups, it was an easy fix. I had a pihole -up on a crontab for years, probably not the best idea :)

FW rule accept :53 from pihole only, deny :53 from all. I had some devices with hardcored DNS settings (8.8.8.8).

TK420@lemmy.world on 03 Mar 13:29 collapse

Unbound broke on both of mine day one of v6 and I’ve still not gone and fixed it. Sigh.

WhyAUsername_1@lemmy.world on 03 Mar 11:42 next collapse

Trying to get my hands dirty with LLM, Ollama and Web Scrapping.

I don’t understand most of it , but hey, that’s the fun. No complaints.

FoD@startrek.website on 03 Mar 12:02 next collapse

I’ve had two failed harddrives in the last month. Not sure if bad batch or what. Thankfully the order these were on only were the two drives so may not see more. They are under warranty but it’s still a pain!

Otherwise I’m enjoying Mealie lately for my recipes. Kinda nice having them all in one place but accessible by anyone in the house.

doodledup@lemmy.world on 03 Mar 15:51 collapse

I found Mealie to be a bit bloated and not fitting my needs too well. I moved to KitchenOwl. Small project but I love it.

baduhai@sopuli.xyz on 03 Mar 12:17 next collapse

I feel bi-weekly is a good rhythm for this.

What does biweekly mean to you? Twice a week, or once every two weeks? If it’s the latter, I prefer to use fortnightly, since it’s not ambiguous.

tofuwabohu@slrpnk.net on 03 Mar 12:59 next collapse

I mean every other week. I wasn’t aware of the other interpretation, but I think in combination with “The Sunday thread” it’s unambiguous?

I have never heard fortnightly, but then I’m not a native speaker. Is that commonly used?

baduhai@sopuli.xyz on 03 Mar 17:48 next collapse

I think in combination with “The Sunday thread” it’s unambiguous?

Perhaps, though I guess it could also be that there is “The Sunday thread” and “The Wednesday thread”.

As for whether fortnightly is common or not, I think it is, but the other commenter suggests that only the Brits use the term. Fairly certain I’ve heard that from an Aussie friend though, could be that US Americans don’t use the term.

Perhaps semimonthly is the most unambiguous term? That’s what Mariam-Webster seems to suggest.

tofuwabohu@slrpnk.net on 03 Mar 18:17 collapse

Semi monthly sounds like “monthly, or not” to me. Not sure about the alternatives I’ve seen so far

baduhai@sopuli.xyz on 03 Mar 18:51 collapse

True, didn’t think it that way. I don’t know what would be best, English is such a wierd language.

Zeoic@lemmy.world on 03 Mar 22:57 collapse

I have always heard bi-weekly be every other week, and semi-weekly be twice a week

sugar_in_your_tea@sh.itjust.works on 03 Mar 13:22 collapse

Yeah, nobody other than Brits use fortnightly anymore.

aeternum@lemmy.blahaj.zone on 05 Mar 03:36 collapse

And Aussies. We use it here a LOT

TK420@lemmy.world on 03 Mar 13:35 next collapse

ITT: lots of busted pihole v6 updates

Finally got started with Grafana, Prometheus and Meshtastic.

Darkassassin07@lemmy.ca on 03 Mar 20:06 collapse

I wonder why so many people had issues with the v6 pihole update.

I pulled the new docker container and it ran overtop the previous version just fine. The only issue I had was I had the admin password set to empty via an env variable and that variable name changed. Took like 10 min to find and fix. The rest migrated perfectly.

Now I’m just waiting on orbital-sync to add v6 support, but that’s just around the corner and not that critical.

TK420@lemmy.world on 03 Mar 23:31 collapse

I had a pair of v5 with unbound setup, and ran the pihole -up and it went down lol. Dunno what happened, but i reinstalled and it’s all good.

I only run the basic block list, so I am thinking more and more to setup docker on my main server and move my pihole, pyvpn and grafana there and free up my raspi.

Darkassassin07@lemmy.ca on 03 Mar 23:46 collapse

Hmm, I wonder if the failed updates are only direct installs vs docker.

I run two piholes, a primary on a rpi 3b running pios, and a secondary on my main server. Both are installed via docker and both updated without issue (besides the password thing).

I like having the primary DNS on a separate machine; it’s kind of important and I like to mess with the main server a lot…

TK420@lemmy.world on 04 Mar 02:21 collapse

I also like to mess around so more and more docker seems like at least an ok idea if not a good idea.

Darkassassin07@lemmy.ca on 04 Mar 02:45 collapse

I definitely recommend it, particularly using docker compose. It’s made it incredibly easy to add, remove, and modify software installs; keeping everything independent and isolated from each other.

This also makes backups and rolling back updates to individual projects much easier when you do run into problems.

TK420@lemmy.world on 04 Mar 11:41 collapse

I appreciate the motivation. Thanks!

t0fr@lemmy.ca on 03 Mar 13:46 next collapse

Immich. Wanted to exclusively use the external libraries features in read only.

Set it up once in its own Proxmox LXC under Docker. Set it up all properly started scanning my entire library. And when I woke up again it had crashed and I couldn’t recover it.

Started over the following morning and only gave it access to 2024 instead of everything. And it filled up to 30gb/40gb I gave it with thumbnails and files and such. Guess it crashed the other day because it took up too much room.

Guess I’ll start over again, and ensure all the config files and thumbnails are stored on my NAS so they can take up the space they need to without overloading the main (small SSD) on my server.

RagingHungryPanda@lemm.ee on 03 Mar 15:31 next collapse

I just got cactus comments working on my writefreely blog. Cactus comments needs matrix, so I got matrix with element set up. It was an incredibly frustrating journey of learning, but it turns out the final bit wasn’t too complicated. I’m running on TruNas, which I hear you shouldn’t do, but it’s too late haha.

I also got the whatsapp bridge set up, but it doesn’t look like matrix supports disappearing messages, so I left some rooms it created b/c one of the larger groups easily took up a gig of storage before disappearing messages was turned on.

Anyway, writefreely has federated cactus comments that you can currently only sign in with a matrix account lol. I can try and change that later. I host the photos with picsur.

I think that I need to collect my notes and memories and put it into a blog post, but I don’t really want to turn my blog (if I even keep up with it) into a blog about how to self host a blog.

In hindsight, I don’t think the comments were worth it, but whatever.

Tywele@lemmy.dbzer0.com on 03 Mar 15:59 next collapse

I plan on setting up the *arr suite and getting rid of Netflix, Crunchyroll, Amazon Prime and Disney+

voklen@programming.dev on 03 Mar 16:49 next collapse

I’m currently looking to connect an NVMe SSD to a Pi 4 I have in a differences location to finally have proper 3-2-1 backups. I’m trying to find a NVMe to USB adapter that will work though.

bier@lemmy.blahaj.zone on 03 Mar 20:11 next collapse

Currently doing a full backup of 37TB to tape. Which I would normally do once per quarter but I got a smart error on one of my drive that I’ll have to replace but before shutting down and removing the drive I want to have a full backup I might even get warranty on the drive at least I got the last time this happened drive has lower then 200 days of runtime. We’ll see

Darkassassin07@lemmy.ca on 03 Mar 20:43 collapse

What hardware are you using to read/write tape, and what does that cost you?

I’ve got around 30tb that I need to shift off of a Drobo at some point so I can repurpose the drives into a proper RAID setup that isn’t a closed source black-box from a dead company (that was a poor choice, 6 years ago 🙁). Keeping an eye out for solutions for when I get around to fixing that mess.

bier@lemmy.blahaj.zone on 03 Mar 20:59 collapse

That’s why I initially got them to reorganize my raid setup and have them as backups in case I need them. So I’m using lto4 which is 800gb per tape (current standard is lto9 16TB per tape) And it really depends on how cheap you can get the drive for me I got a tape drive for like 200€ and bought bunch of tapes ~50 for 6€ per tape if you can get a LTO5 drive for a similar price you would only need half the amount of tapes. So all in for me it was 500€ but you can definitely buy less tapes if you don’t need that many all at once. For your 30tb that would be 228€ in tapes.

It was great fun researching the topic and comparing different eBay listings for hours 😅

Darkassassin07@lemmy.ca on 03 Mar 21:30 collapse

Interesting; I’ll definitely have to keep that in mind. Much cheaper than getting basically a whole new set of hdds at almost $30/tb (new nas-grade drives, not referbs).

Thanks!

tofu@lemmy.nocturnal.garden on 04 Mar 23:14 next collapse

Just set up Lemmy! I wonder if this gets through

Evkob@lemmy.ca on 05 Mar 00:17 collapse

I’m reading it so I’d say it works!

tofu@lemmy.nocturnal.garden on 05 Mar 00:28 collapse

Hell yeah, you just sent the first notification to my instance :)

Evkob@lemmy.ca on 05 Mar 01:32 collapse

That’s actually so cool and the more I think about it the more it’s making me really want to host my own Lemmy instance. Can I ask what sort of hardware resources you’re running it on?

tofu@lemmy.nocturnal.garden on 05 Mar 06:47 collapse

Sure! It’s a Lenovo m910q tiny. Mine has an i7-6700 and 32GB RAM but Lemmy runs in a VM with 4 cores and 8 GB RAM which should be plenty, it’s not even using half that RAM. Disk Space seems to be the limiting factor after a while since it keeps copies of all remote threads and comments but that can be cleaned up too.

Found some threads online on resource usage beforehand like this: lemmy.ml/post/440678

Presi300@lemmy.world on 07 Mar 11:26 next collapse

I’m going through hell, trying to update from truenas scale 24.04 to 24.10

tofuwabohu@slrpnk.net on 09 Mar 09:42 collapse

What’s not working? I just set up TrueNAS for the first time, went with 25.04 and figured I could just update my way out of potential bugs, but the updater is broken :D

Presi300@lemmy.world on 09 Mar 09:58 collapse

Well, firstly I had this weird issue where the pools were giving me errors because some folder was missing, I fixed that but 24.10 has literally 0 compatibility with apps from 24.04 and it looks like I’m going to have to reset the whole pool in order to use their new apps ecosystem (because trying to install anything from 24.10 just errors out)… Which is extremely annoying as I have quite a lot of apps setup

Ptsf@lemmy.world on 22 Mar 17:14 collapse

Replaced the fan with a bad bearing on one of my proxmox hosts today. For a short while I figured I was going crazy because it seemed to stop making noise when I actually got close to the server, but it finally fully gave today and I was able to identify and swap it.