I am a Linux beginner/amateur and I have sort of had enough of copy and pasting commands I find on the internet without having a good understanding of how they actually work.

I guess my end goal is to be able to comfortably install and use arch Linux with my own customization’s and be able to fix it when things go wrong.

What tips/ideas do you have for getting better at navigating the terminal, and getting a better understanding of how the os works. What is a good roadmap to follow? And how did you, advanced Linux user, get to the stage your at now?

Edit: my current distro is bazzite just in case you were interested and thanks for all the replies you are all really helpful.

  • @BlindFrog
    link
    05 days ago

    rm -rf /
    make computer faster

    (͠≖ ͜ʖ͠≖)

    • @[email protected]OP
      link
      fedilink
      English
      24 days ago

      Wait I did this to my main drive everything went black is this suposed to happen? will it start working again?

      • @[email protected]
        link
        fedilink
        14 days ago

        in case you aren’t joking, rm -rf / (albiet with a warning now) will delete allll the files on your system, so everything going black is the expected result.

        rm is remove, the - is to indicate that you want to pass arguments, and r&f are recursive (delete stuff in the folders in this folder) and force (don’t ask for confirmation). The slash afterwards designates the root folder, the folder with everything in it.

        So “rm -rf /” means “remove, recursively and forcefully, everything in the / directory”