• 0 Posts
  • 58 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle

  • DMCA is only valid in the US. Those other countries obeying it are usually just doing it to avoid trouble, but there’s no real legal obligation. (But if ignored, it is pretty safe to assume that any bigger company would look into local laws and try to find a different way.) But from what I’ve heard, hosters don’t just close your account because of some DMCA. They will actually look into it and work with you to solve it.

    And in the end, you could simply host it on a Raspberry Pi at your home. The ISP can’t be held responsible for the data you transfer, so they won’t just shut down your Internet connection. And if you get a strongly worded letter from some company, you can send it directly to the recycling bin.




  • If you want to learn about VLANs and spend some time setting everything up (and more time each time a new device joins your network) then you should go for it.

    I for myself decided it’s not worth it for my little home network and instead just use a /16 net and group devices into different ranges. E.g. computers are xxx.xxx.1.yyy, phones are .2.yyy, etc. All unknown devices get a .99.yyy from the DHCP, so they are easily identified.

    All public facing stuff is in some Docker container, so there’s at least a small hurdle should something/someone get access.

    Cameras are mirrored into Apple HomeKit via Home Assistant, so I can use Apple Home to watch them from afar. Or VPN into my home network.















  • mbirth@lemmy.mbirth.uktoLinux@lemmy.mlSamba vs NFS vs SSHFS ?
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    7 months ago

    NFS is fantastic from a practical standpoint.

    Only if you don’t care about the NAS’es file permission management and have the same uid on all your systems mounting the same shares via NFS. Not sure if it’s different with other NAS implementations, but on my Synology DS415+ all files put on there via NFS get the UID from the source system. Which isn’t the UID of my user on the Synology.

    E.g. on my Raspberrys, my user usually is uid 1000 / gid 1000. But on my Synology, my user is uid 1026 / gid 100. So the integrated management tools (e.g. File Station) show mangled permissions as the user with uid 1000 is not known.

    And the only real solution to this is to use a Kerberos server - which I think is a bit overkill in a 1 user environment. idmap doesn’t really work on my NAS.