• 1 Post
  • 17 Comments
Joined 4 months ago
cake
Cake day: March 14th, 2024

help-circle







  • Fisch@discuss.tchncs.detolinuxmemes@lemmy.worldA broken man
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    2 months ago

    I do the same. In case someone wants to know how it works with an Android phone, you connect your phone to your PC over USB and then you get a notification on your phone that says something like “Charging over USB”. If you tap on that, you can change the connection mode and one of the modes is “USB tethering”. If you select that, your PC will have an internet connection over the USB connection to your phone. It’s kinda like hotspot over USB.










  • A mini-pc with an Intel N100 will be a little more expensive (I bought one for ~150€) but it’s about 5-6 times faster than the Pi and mine also came with 16gb of RAM and a 500gb SSD. It requires very little power and because of that, it’s also very quiet. AV1 decode is also great if you plan to run something like Kodi on it or you want to do transcoding from an AV1 video with Jellyfin (I haven’t migrated those to it yet, so I don’t know how well it works in practice). I’m not sure but it might not even be a lot more expensive than a Pi with 8gb of RAM and an additional 500gb SSD.


  • You just need the docker and docker-compose packages. You make a docker-compose.yml file and there you define all settings for the container (image, ports, volumes, …). Then you run docker-compose up -d in the directory where that file is located and it will automatically create the docker container and run it with the settings you defined. If you make changes to the file and run the command again, it will update the container to use the new settings. In this command docker-compose is just the software that allows you to do all this with the docker-compose.yml file, up means it’s bringing the container up (which means starting it) and -d is for detached, so it does that in the background (it will still tell you in the terminal what it’s doing while creating the container).