I’d like to settle on a distro, but none of them seem to click for me. I want stability more than anything, but I also value having the latest updates (I know, kind of incompatible).

I have tested Pop!_Os, Arch Linux, Fedora, Mint and Ubuntu. Arch and Pop being the two that I enjoyed the most and seemed the most stable all along… I am somewhat interested in testing NixOS although the learning curve seems a bit steep and it’s holding me back a bit.

What are you using as your daily drive? Would you recommend it to another user? Why? Why not?

    • Rikudou_Sage@lemmings.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      It’s a containers system. It’s similar to a virtual machine, you can run so-called images, which are a copy of the virtual machine that are hosted on the internet. For example, to run a mysql server: docker run -it --name mysql -p 3306:3306 mysql:8. This will run an interactive container (-it) called mysql (--name mysql) which will run the version 8 of mysql (the image name and version, mysql:8) which will forward the port 3306 from container to the port 3306 on your host PC (-p 3306:3306). You can have multiple containers, so for example multiple mysql versions (they can’t have the same host port if they’re running at the same time).