• Tlaloc_Temporal
    link
    fedilink
    arrow-up
    3
    ·
    1 month ago

    On the rare occasions you need to use a terminal, how often is it for something completely new? Something you need to look up to understand?

    Also, how often is the MAN page enough lookup, without having to sift through 17 sites than are describing subtly different things?

    • tron@midwest.social
      link
      fedilink
      arrow-up
      4
      ·
      1 month ago

      I find the documentation to be very good for Arch based distros. The EOS forums or Archlinux.org wiki almost always has what I need. Otherwise the github page usually has Arch install directions that are very clear. The major things I’ve had to do in terminal is just initial set up of applications, enabling things to run on startup or changing configs. For example, and this is the most complicated example I can think of. I use grub-btrfs to put my Timeshift snapshots into the grub menu. All I really had to do was 3 commands:

      sudo systemctl start grub-btrfsd

      sudo systemctl enable grub-btrfsd

      sudo systemctl edit --full grub-btrfsd

      The first two commands start the daemon and set it to run on start up, the 3rd command is editing the config so I could use Timeshift over Snapper. Again this is the most complicated example I can think of and its 3 lines. Not only that but I was able to find documentation on two different sites. In under a minute of googling.