#nobridge

  • 0 Posts
  • 228 Comments
Joined 11 months ago
cake
Cake day: March 14th, 2025

help-circle



  • While I don’t believe IaaS to be selfhosting I do believe self-managed services on IaaS should be allowed here. It’s the same software stack and requires the same skills so both parties gain from having the discussion in the same place.
    Not because I think selfhosting is a badge but because I think it makes sense to call things for what they are.

    But I’m an old grumpy who thinks ovo-lakto vegetarians shouldn’t have been allowed to steal the meaning of vegetarian or vegetarians steal it from vegans (and now we no longer got a word to describe old school vegans that makes it a lifestyle not a diet.)





  • While splitting Compute and Storage is nice I think the main takeaway should be having your opnsense/router on it’s own physical hardware.
    Having your storage separated won’t stop a Jellyfin interruption if you reboot your compute.

    For a NAS solution the cheap way would be a used desktop with at least 4 SATA ports, a Linux distro you’re used to and Cockpit installed.





  • As you’re using KDE and NixOS I imagine you got Dolphin as your file manager.
    edit: While the below is great for an encrypted backup of your images that you can move to a thumbdrive or another computer I recommend you look at the Vaults mentioned by @e8d79@discuss.tchncs.de for encryption directly on the machine.

    Step 1: - Create an encrypted and password protected 7-zip

    Step 2: - Settings for the 7-zip

    Step 3: - Opening up the encrypted 7-zip file by double clicking and entering the password from Step 2

    Step 4: Place the picture folder and the 7-zip next to each other

    Removal of pictures from the 7-zip is as simple as rightclicking on them:

    Adding pictures to the folder can be done as a simple drag and drop:

    While this allows you to see the thumbnails of your unencrypted images before drag and dropping them to the 7-zip you will not be able to see thumbnails when they’ve been encrypted (Compare left and right view in drag and drop image).
    You can double click images in the encrypted archive to open them up though.




  • When nslookup google.com from a laptop on this LAN, it returns Server: 10.2.0.1 Address: 10.2.0.1#53

    nonauthoritative answer: google.com with ip information repeated.

    I don’t under stand this return as it’s an ip outside my lan net and dhcp provisioning.

    I’m unclear on what you’re confused about regarding the above quote. Here comes an explanation of nslookup.
    The command is nslookup <domain> <dns-server> and if dns-server is empty it uses your default. F.e.:

    ***@fedoragaming:~$ nslookup www.google.com 8.8.8.8

    The response starts by telling you which <dns-server> it used for the lookup and which address including port was used:

    Server: 8.8.8.8
    Address: 8.8.8.8#53

    It then gives you the answer on where to find the <domain>, once for ipv4 and once for ipv6:

    Non-authoritative answer:
    Name: www.google.com
    Address: 142.251.142.228
    Name: www.google.com
    Address: 2a00:1450:400f:807::2004

    edit: I think I understand your question a bit better now. To check which dns-server you’re using do a “cat /etc/resolve.conf”
    If you run a distro with systemd then use the command “resolvectl status”