I feel like the people I interact with irl don’t even know how to boot from a USB. People here probably know how to do some form of coding or at least navigate a directory through the command line. Stg I would bet money on the average person not even being able to create a Lemmy account without assistance.

  • lars
    link
    fedilink
    arrow-up
    10
    ·
    10 months ago

    sudo chmod 000 / for security

    • TranquilTurbulence@lemmy.zip
      cake
      link
      fedilink
      English
      arrow-up
      9
      ·
      10 months ago

      And it’s also so much faster than full disk encryption. Cool little trick the admins don’t want you to know.

      • lars
        link
        fedilink
        arrow-up
        3
        ·
        10 months ago

        You don’t even need to do it recursively:

        sudo find / -path '/*/*' -prune -o -exec chmod 000 {} +
        

        This is extremely fast.