• 0 Posts
  • 23 Comments
Joined 9 months ago
cake
Cake day: September 22nd, 2025

help-circle

  • Your ISP can see what websites you visit. But even if you change DNS server it can still see that if you don’t use either a VPN or DoH/DoT.

    So it’s a good idea to use DoH or DoT. It’s an improvement but it’s far from perfect because the DNS server you’ll pick will see what site you visit, you have to trust them. And your ISP still has other ways to see which site you visit.


  • ivn@tarte.nuage-libre.frtoPrivacy@lemmy.mlAnyone tried Geph VPN ?
    link
    fedilink
    Français
    arrow-up
    1
    ·
    edit-2
    1 month ago

    Depends on what you need a VPN for.

    I don’t know them but they seems to be from Estonia marketing themselves for evading censorship. Are you in a country that censor VPN? If not why do you think the tradeoff might be worth? The 2 hops should have an impact on bandwidth and latency and there is probably no port forwarding.

    Using a VPN is just moving your trust from your ISP to the VPN. Why would you trust a VPN you know nothing about giving them access to all your internet traffic?


  • ivn@tarte.nuage-libre.frtoLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    Français
    arrow-up
    7
    ·
    2 months ago

    You’ll need to read the documentation to understand its concepts first. You don’t use mkfs but zpool to create a pool then use zfs to create the fs on it. ZFS is usually used with some sort of raid configuration so most doc will show this but you can create a pool with no replication using a single drive.





  • NixOS so I can keep my config in git. I have a single nix config for all my machines (desktop, laptop and server) so I can share configuration between them. I use it to configure both my system and my user config, my dotfiles, with home-manager. Even my neovim config is in nix thanks to nixvim.

    I don’t think I could go back now. It can be a bit of a pain from time to time and the learning curve is steep but it has so many advantages. Being able to rollback between config versions (called generations), having a consistent config between my machines, having it all in version control… The repo have so many packages and when there is a module it’s really easy to add a service. Writing new packages (derivations) and modules is also not that hard. It can be as simple as calling nix-init.

    Had my main ssd fail on me a few month back and it was very simple to just replay the config and just get everything working as before. I only had to do the partitioning by hand (it can be done by nix but I’ve not gotten around to it yet). That’s why I only backup data and home partitions, not system partitions.