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

help-circle

  • It will work fine, the issue is drive degradation. Especially if you don’t have a lot of ram, swap will be used a lot. SSDs degrade with writes, so swapping on them reduces their life. This is especially noticeable on old or cheap SSDs, which tend to degrade faster. One example is those 8GB RAM macs with soldered 256GB SSDs, which due to cheap and small SSDs and low RAM were breaking really quickly.

    If your SSDs have a lot if space, they are relatively new and you have a lot of RAM (32 GB is perfectly fine), you won’t have much issue. If you’re worried about it, you can always check drive health with smartctl






  • The issue is that some idiot suddenly appeared on the systemd repo to immediately push a change that adds the posibility of logging the user’s age into systemd. The community complained and explained that nobody wanted that change, and yet this idiot pushed through, ignored the feedback, and ended up getting the pull request merged. Not only that, but the discussion thread was locked to prevent criticism, and the merge was done by Microsoft employees. After the merge, someone tried to undo the change, and the effort was blocked by a Microsoft employee.

    Despite the excuses, Systemd is not an OS, and it doesn’t even need to comply with any age verification laws. The fact that someone went and implemented a deeply unpopular change into a system that shouldn’t even deal with that info and that is used by most Linux distros, just to aid a surveillance government in implementing better surveillance on the entire world’s users is what lead to the pushback.

    Additionally, Lennart Poettering used Claude to review the pull request, and has been using it for developing SystemD. I’m not gonna go too deep into that, but trust me, it’s really bad.

    Double additionally, Lennart Poettering also defended not properly securing this sensitive data, because that would be too bothersome for him.



  • If you want a decently hidden VPN, I recommend setting up an OpenVPN instance, with a TCP tunnel, encapsulated within Stunnel. It manages to stay hidden even with DPI.

    The setup is a bit convoluted, especially if you want everything to use certificates for maximum security. It’s also not the fastest VPN, and TCP isn’t the most efficient for a VPN. But it’s decent enough for a normal user.

    You can set it up on both Linux and Windows, even having both ends of the tunnel on Windows, but it’s easier and better to set it up on Linux.








  • Keep in mind that:

    • Anonymous mode doesn’t really do anything, but it also doesn’t hurt having it on.
    • Disabling DHT and PeX will make you unable to download torrents from certain platforms, like TPB, unless they are also registered in other trackers.

    In addition, I’d also set it to only allow encrypted connections, which for some reason they don’t say there.

    Either way, Mullvad is not a good VPN for torrenting, because it can’t do port forwarding anymore. You already know this, but you’ll have a lot of issues with low torrent availability, low speeds and a difficulty to seed.

    If you already don’t mind paying for a VPN, why not look into seedboxes? They also hide your IP when torrenting, they can have port forwarding and better speeds than your VPN or home internet, they’re online 24/7 so you can seed a lot, and you can connect to them with a VPN to get the torrented files if you really want.

    Additionally, you can also buy a VPN with port forwarding and bind only your torrent client to it, so that no other traffic or information is flowing through it. This works if you don’t trust any VPN offering port forwarding.

    If you want an explanation on the private tracker logic: Private trackers usually have requirements to join. That way, companies can’t plant fake seeds that identify you and snitch to the ISP. They’re also relatively small, so not closely monitored. When you get a torrent from a private tracker, DHT, PeX and local peer discovery are disabled on that torrent. As long as you have encryption enabled, you’ll be relatively safe from ISP letters. However, this only applies if you’re getting your torrents only from private trackers.





  • The number is the signal you send to the program. There’s a lot of signals you can send (not just 15 and 9).

    The difference between them is that 15 (called SIGTERM) tells the program to terminate by itself (so it can store its cached data, create a save without losing data or corrupting, drop all its open connections gracefully, etc). 9 (called SYGKILL) will forcefully kill a program, without waiting for it to properly close.

    You normally should send signal 15 to a program, to tell it to stop. If the program is frozen and it’s not responding or stopping, you then send signal 9 and forcefully kill it. No signal is “better” than the other, they just have different usecases.