• 2 Posts
  • 303 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle
  • It’s run by the main developers of Lemmy, and they’re both authoritarian communists (which I just got from Wikipedia as I’m trying not to use the pejoritve “tankie”).

    Anything that could be perceived as speaking down towards Russia, China, maybe even North Korea, ends up with your comment getting deleted and your account banned for a period of time.

    They started Lemmy because @dessalines got banned from Reddit. The backwards thinking is that people shouldn’t be banned for speaking their minds, yet their instance is the absolute worst for that.

    By avoiding .ml you are helping Lemmy be what it should be – a decentralized, user owned, user moderated place with sensible decisions behind the scenes.







  • Frigate for software. Add a Coral to your computer (they come in M.2, Mini PCIe, even USB) to handle the object detection. Configuration is slightly complex, but the documentation is very good.

    I’m using a couple of Amcrest cameras which I have on a VLAN that can’t access the internet, so no spying from the manufacturer.

    I also added a hard drive specifically for the recording. It stores a ton of days worth of footage and Frigate handles deleting old footage to make room for new. I figure that hard drive will probably fail sooner than my other drives which is why I got one just for that.


  • If I remember correctly, Proxmox recommends running Docker in virtual machines instead of LXC containers. I sort of gave up on LXC containers for what I do, which is run stuff in Docker and use my server as a NAS with ZFS storage.

    LXC containers are unprivileged by default, so the user IDs don’t match the conventional pattern (1000 is the main user, etc.). For a file sharing system this was a pain in the butt, because every file ended up being owned by some crazy user ID. There are ways around it which I did for some time, but moving to virtual machines instead has been super smooth.

    They also don’t recommend running Docker on bare metal (Proxmox is Debian, after all). I don’t know the reasons why, but I tend to agree simply for backups. My VMs get automatically backed up on a schedule, and those backups automatically get sent to Backblaze B2 on a schedule





  • This is the main reason I cancelled Prime. They started advertising “More than just free shipping”, and I realized that I only used it for free shipping, and as Prime got more and more expensive I wasn’t getting any value from it.

    Now I just put stuff in my cart until I have $35 worth of stuff, and get free shipping anyway. It’s not that much slower. An extra day or two usually, and it doesn’t bother me one bit. I can wait a little while for my $10 guitar strap and it’s not the end of the world.






  • I use zfs with Proxmox. I have it as a bind mount to Turnkey Fileserver (a default lxc template).

    I access everything through NFS (via turnkey Fileserver). Even other VMs just get the NFS added to the fstab file. File transfers happen extremely fast VM to VM, even though it’s “network” storage.

    This gives me the benefits of zfs, and NFS handles the “what if’s”, like what if two VMs access the same file at the same time. I don’t know exactly what NFS does in that case, but I haven’t run into any problems in the past 5+ years.

    Another thing that comes to mind is you should make turnkey Fileserver a privileged container, so that file ownership is done through the default user (1000 if I remember correctly). Unprivileged uses wonky UIDs which requires some magic config which you can find in the docs. It works either way, but I chose the privileged route. Others will have different opinions.