• Possibly linux@lemmy.zip
    link
    fedilink
    English
    arrow-up
    70
    ·
    edit-2
    7 months ago

    That’s why I log in as root and edit all files to have open permissions. Next I disable all security settings and kernel security mitigations.

    After that my system is finally mine.

      • psud@aussie.zone
        link
        fedilink
        arrow-up
        7
        ·
        7 months ago

        I’m picturing all the services complaining their keys are insecure, their configs are insecure

        • BestBouclettes@jlai.lu
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          7 months ago

          Here is the breakdown:

          • chmod is the command to change the mode of the files (-rwxrwxrwx)
          • -R is the recurse flag,
          • a means “all”, you can also have u, g or o (respectively user, group and others) instead.
          • + is add (you can remove with -),
          • rw is the permissions (rw of rwx)

          I prefer changing permissions this way instead of using absolute values (0777 for instance) as it’s easier to reverse if you made a mistake.