• funkajunk
    link
    fedilink
    144 days ago

    Understanding chmod and chown are foundational knowledge to actually being able to call oneself a “Linux user”. Great video!

    • @ohshit604@sh.itjust.works
      link
      fedilink
      English
      15
      edit-2
      4 days ago

      Understanding chmod and chown are foundational knowledge to actually being able to call oneself a “Linux user”

      I gotcha, sudo chmod -R 777 /*, where we’re going we don’t need permission.

      • @MTK@lemmy.world
        link
        fedilink
        113 days ago

        Careful! This is very dangerous, you should instead do

        sudo chown -R user:user /*
        

        Where “user” is your username, and then do

        chmod -R 770 /*
        

        This will make sure that only your user has all the access!

        (Don’t do this)