• 0 Posts
  • 77 Comments
Joined 1 year ago
cake
Cake day: February 1st, 2024

help-circle

  • Same — rsync to a pi 3 with a (single) ZFS drive at family’s house. Retain some daily/weekly/monthly snapshots.

    I have a (free) VPS with static IPv4 which is how I connect everything.

    Both the VPS and the remote site have limited network speed (I think 50Mbps for VPS), so the initial sync was done sneakernet (well…“airplane net”). Nightly rsync is no problem bandwidth-wise, and is mostly just any new videos I’ve uploaded to my local Immich instance.


  • I just wish we’d have neither inflation nor deflation.

    Some tech has followed this pattern. For example: entry level Mac laptop in ~2000 was the iBook, priced at $1599 ($3k+ in today’s dollars). The current entry level Mac laptop (M4 Air) starts at $999 — cheaper in absolute dollars, and way cheaper in relative dollars.

    (Macs are just an example since Apple doesn’t have a very extensive product list, so there’s only one “entry level” laptop to choose from. And yes it’s fair to ask if the relative specs have just gotten worse, but I think this is also the opposite — the iBook was iirc criticized as being underpowered, whereas the M4 Air is afaik well regarded.)


  • You mentioned ham radio — definitely fun! It’s a process to get into it though, as you need to study/pass an exam, and then you need a radio. Radios range from cheap ($25 or so) in the VHF/UHF (“walkie talkie”-style) to more expensive for an HF rig ($1000 range for 100W HF). If you want to get into low power (“QRP”) it can be much cheaper. You also need a fair amount of space for a good antenna setup…

    There are tons of different communication modes, some without a computer and, like you mentioned, some that use computers. wsjtx and fldigi are popular programs.

    Good luck!









  • I’ve been super happy with it. Knock on wood it’s been super reliable. I have a single ZFS drive, take snapshots with various retention policies, nothing fancy.

    Another fun thing is to set up a reverse proxy on it as an endpoint for services on your local (home) network which can only be accessed by VPN. For example, my Jellyfin service isn’t public facing, but I didn’t want e.g. my parents to need to set up WireGuard. So instead they can point their TV to a raspberry pi on their network to access the service — even a first gen RPI can handle Jellyfin reverse proxy over WireGuard for moderate bitrates!





  • For very simple tasks you can usually blindly log in and run commands. I’ve done this with very simple tasks, e.g., rebooting or bringing up a network interface. It’s maybe not the smartest, but basically, just type root, the root password, and dhclient eth0 or whatever magic you need. No display required, unless you make a typo…

    In your specific case, you could have a shell script that stops VMs and disables passthrough, so you just log in and invoke that script. Bonus points if you create a dedicated user with that script set as their shell (or just put in the appropriate dot rc file).