unreachable.cloud
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
alecsargent@lemmy.zip to linuxmemes@lemmy.world · 1 day ago

It's all about those little file mode bits

lemmy.zip

external-link
message-square
46
link
fedilink
1
external-link

It's all about those little file mode bits

lemmy.zip

alecsargent@lemmy.zip to linuxmemes@lemmy.world · 1 day ago
message-square
46
link
fedilink

alert-triangle
You must log in or register to comment.
  • Drunk & Root@sh.itjust.works
    link
    fedilink
    arrow-up
    0
    ·
    12 hours ago

    real question is how do you pronounce chmod

    • recursivethinking@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      10 hours ago

      shmod. and then cho-wn (ch’own? cho-un?)

      and of course, hweel (jk on this one)

    • Bakkoda@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      12 hours ago

      c h mod

  • BigBrownBeaver@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    16 hours ago

    chmod -R ug+rwX,o=r *

  • Nyadia@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    0
    ·
    21 hours ago

    I don’t use chmod nearly often enough to remember these numbers. I know there’s a mathematical way to figure it out, but I cba to do that when u+wrx more or less tells me exactly what it does (grant the User Write, Read, and eXecute permissions)

  • undefinedTruth@lemmy.zip
    link
    fedilink
    arrow-up
    0
    ·
    22 hours ago

    chmod 755 for when setting permissions to directories. chmod +x for making something executable right when I am about to run it.

  • PerogiBoi@lemmy.ca
    link
    fedilink
    arrow-up
    0
    ·
    22 hours ago

    Chmod 777 I live erratically without consequence.

  • SaharaMaleikuhm@feddit.org
    link
    fedilink
    arrow-up
    0
    ·
    22 hours ago

    Nope, +x for life

  • katy ✨@piefed.blahaj.zone
    link
    fedilink
    English
    arrow-up
    0
    ·
    23 hours ago

    chmod -R 777 / galaxy brain

  • W98BSoD@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    • Funkt4st1c@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      22 hours ago

      This is drake erasure and I’m LOVING EVERY MINUTE OF IT, JERRY

    • trashman@feddit.org
      link
      fedilink
      English
      arrow-up
      0
      ·
      22 hours ago

      Yo dawg, heard you like memes

  • WFH@lemmy.zip
    link
    fedilink
    arrow-up
    0
    ·
    1 day ago

    chmod -R 600 ~/, because I dont trust anyone, not even myself.

    • palordrolap@fedia.io
      link
      fedilink
      arrow-up
      0
      ·
      23 hours ago

      I forgor the tilde and its taking a long time. wat do

      • Clay_pidgin@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        0
        ·
        18 hours ago

        Tilde is a shortcut to /home/palordrolap

      • the_strange@feddit.org
        link
        fedilink
        arrow-up
        0
        ·
        22 hours ago

        sudo rm -rf / --no-preserve-root

        Start from scratch

  • Matty_r@programming.dev
    link
    fedilink
    arrow-up
    0
    ·
    1 day ago

    Dont forgot setfacl

  • Unpigged@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    0
    ·
    1 day ago

    I like to chmod it chmod it

  • gigaqps@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    1 day ago

    But those are different

    • alecsargent@lemmy.zipOP
      link
      fedilink
      arrow-up
      0
      ·
      23 hours ago

      Had to be done for the joke. :)

    • Ephera@lemmy.ml
      link
      fedilink
      arrow-up
      0
      ·
      1 day ago

      Yeah, not only does +x leave read/write permissions untouched, it also only makes it executable for the user, not for everyone and their cat.

      • Mr.Chewy@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        1 day ago

        Cat doesn’t execute anything tho, it just reads and gives output

        • NominatedNemesis@reddthat.com
          link
          fedilink
          arrow-up
          0
          ·
          17 hours ago

          Except if you use kitty terminal emulator with unsecure remote access. Issue

          Then with cat, you could execute arbitrary commands…

        • SaharaMaleikuhm@feddit.org
          link
          fedilink
          arrow-up
          0
          ·
          22 hours ago

          The cat command executes the cat program.

          • quantumvoid0@programming.dev
            link
            fedilink
            English
            arrow-up
            0
            ·
            19 hours ago

            What happens when u try to cat the cat program, is that considered reading or executing

            • NominatedNemesis@reddthat.com
              link
              fedilink
              arrow-up
              0
              ·
              17 hours ago

              Both, they are not mutually exclusive.

  • Maxxie@piefed.blahaj.zone
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    this but in reverse 🤷‍♀️

  • red_bull_of_juarez@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    0
    ·
    1 day ago

    u=rwX,g=rX,o=rX because this won’t make every file executable, only folders.

    • quarrel4you@piefed.social
      link
      fedilink
      English
      arrow-up
      0
      ·
      14 hours ago

      Careful: chmod -X also looks for any existing exec bits:

      $ umask 0
      $ >foo >bar
      $ ls -al foo bar
      -rw-rw-rw- 1 user group 0 Sep 10 00:00 bar
      -rw-rw-rw- 1 user group 0 Sep 10 00:00 foo
      $ chmod o+x foo
      $ ls -al foo bar
      -rw-rw-rw- 1 user group 0 Sep 10 00:00 bar
      -rw-rw-rwx 1 user group 0 Sep 10 00:00 foo
      $ chmod u=rwX,g=rX,o=rX foo bar
      $ ls -al foo bar
      -rw-r--r-- 1 user group 0 Sep 10 00:00 bar
      -rwxr-xr-x 1 user group 0 Sep 10 00:00 foo
      
  • morto@piefed.social
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    chmod 666 so only the devil can execute it

linuxmemes@lemmy.world

linuxmemes@lemmy.world

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: [email protected]

Hint: :q!


Sister communities:
  • [email protected]
  • [email protected]
  • [email protected]
  • [email protected]

Community rules (click to expand)

1. Follow the site-wide rules
  • Instance-wide TOS: https://legal.lemmy.world/tos/
  • Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like “every user of thing”.
  • Don’t get baited into back-and-forth insults. We are not animals.
  • Leave remarks of “peasantry” to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry of any kind will not be tolerated. This is an LGBTQ+-friendly community – if that is a problem for you, you should leave.
3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • Don’t come looking for advice, this is not the right community.
4. No recent reposts
  • Everybody uses Arch btw, can’t quit Vim, <loves / tolerates / hates> systemd, and wants to interject for a moment. You can stop now.
5. 🇬🇧 Language/язык/Sprache
  • This is primarily an English-speaking community. 🇬🇧🇦🇺🇺🇸
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
6. (NEW!) Regarding public figures

We all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.

  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.

 

Please report posts and comments that break these rules!


Important: never execute code or follow advice that you don’t understand or can’t verify, especially here. The word of the day is credibility. This is a meme community – even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don’t remove France.

Visibility: Public
globe

This community can be federated to other instances and be posted/commented in by their users.

  • 29 users / day
  • 179 users / week
  • 496 users / month
  • 576 users / 6 months
  • 0 local subscribers
  • 32.8K subscribers
  • 179 Posts
  • 911 Comments
  • Modlog
  • mods:
  • zephyr@lemmy.world
  • rtxn@lemmy.world
  • BE: 0.19.20
  • Modlog
  • Instances
  • Docs
  • Code
  • join-lemmy.org