• 1 Post
  • 47 Comments
Joined 2 years ago
cake
Cake day: July 4th, 2023

help-circle



  • I would approach it this way:

    1. Learn to configure and install Jellyfin the way you like it. You sound like you have a good start on that. JF handles metadata for you, and you can also manually match items if/when it matches up. The only extra plugins I install are some of the ones for extra metadata providers and TMDB box sets.
    2. Setup Jackett with the qB search so you can run manual searches for stuff against your indexers.
    3. If you want to use docker, learn docker. There’s a million tutorials around. You can use Docker Desktop on Windows if you want a GUI to help you out. Since docker on Windows runs on WSL2, it’s a good opportunity to mess around with Linux if you aren’t familiar.

    From there you can work your way up to full automation and such if you like. I don’t think it’s necessary for most people.

    As for data layout, just make some folders like movies, tv, music, etc, and lay out stuff in there logically. If you have a fancy storage setup, you might do separate shares for them, whatever works for you. Some people like to link from their “download” folder into their actual media folder to keep things clean. You can do hard and soft links on Windows with NTFS, but it’s kind of a pain.



  • I agree with the general idea of what you’re saying, but it’s a slippery slope.

    Most people I know personally would never take the effort to learn anything past the point of “Ask ChatGPT” when they have a problem. What happens when the model is wrong, or simply cannot solve the problem? Or maybe they have no network connection and cannot run something suitable locally?

    At that level of coddling, then they might not even have the ability to find and open a man page, or edit a config file without a GUI. And that’s a problem. It’s not even Linux-specific. I went to school with “smart” computer science students who don’t even understand file extensions or what a shortcut conceptually is.

    What I’m getting at, is there needs to be some kind of balance, or people will just gradually become more useless.










  • I’ve been using Arch off and on for a long time, since it was horrible to install and updates did often break stuff. This is not the case now 🖖, and the Arch wiki is your friend.

    1. Consider using btrfs with automated snapshots using yabsnap. It includes a configurable pacman hook in case something goes awry. Also just nice to have snapshots in case you accidentally delete a file or something.

    2. Use paru, an AUR helper. Good for random things which may not be officially packaged. Expect to run into failures, and learn to diagnose them. Sometimes it’s just a new dependency the packager missed. For both paru and pacman, clean the cache once in a while or automatically, or things will get out of hand.

    3. Do the “manual” setup, at least the first time, so you have an idea what’s going on. Don’t forget to install essential stuff like iwd (if needed) when you do pacstrap, or else you might have to boot from live again to fix it. Once you’re done, take care to follow the important post install steps, like setting up a user with sudo, a firewall, sshd, etc.

    As for general setup, I’ve recently embraced systemd-networkd and systemd-resolved. Might be worth giving it a shot, since there is no default network manager like application. You can even convert all your wireguard client configs into networkd interfaces.

    Best practice: Keep a personal log of various tweaks and things you’ve configured, and set up automated backups (more of general guidance).

    Have fun!