this post was submitted on 27 Jun 2025
475 points (97.2% liked)

linuxmemes

25946 readers
996 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

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 will not be tolerated.
  • 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.
  • 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 figuresWe 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.

    founded 2 years ago
    MODERATORS
    475
    Dirty Talk (lemmy.zip)
    submitted 4 days ago* (last edited 4 days ago) by sanderium@lemmy.zip to c/linuxmemes@lemmy.world
     

    Disclaimer: Do not run this command.

    you are viewing a single comment's thread
    view the rest of the comments
    [–] cupcakezealot@piefed.blahaj.zone 52 points 4 days ago (2 children)

    asexuals and demisexuals be like sudo chmod -R 700 /

    [–] ArchAengelus@lemmy.dbzer0.com 60 points 4 days ago* (last edited 4 days ago) (3 children)

    Doms with cuck and denial fetishes have partners like

    sudo chmod -R 077 /
    
    [–] sanderium@lemmy.zip 34 points 4 days ago
    [–] Little8Lost@lemmy.world 13 points 4 days ago (3 children)

    What do the funny words mean? (i understand neither 700 & 077)

    [–] TheTechnician27@lemmy.world 40 points 4 days ago* (last edited 4 days ago) (2 children)
    • sudo is telling the computer to do this with root privileges.
    • chmod sets permissions.
    • Each digit of that three-digit number corresponds to the owner, the group, and other users, respectively. It's 0–7, where 0 means no access and 7 means access to read, write, and execute. So 077 is the exact inverse of 700, where 077 means "the owner cannot access their own files, but everyone else can read, write, and execute them". Corresponding 700 to asexuals is joking that nobody but the owner can even so much as touch the files.
    • / is the root directory, i.e. the very top of the filesystem.
    • The -R flag says to do this recursively downward; in this case, that's starting from /.

    So here, we're modifying every single file on the entire system to be readable, writable, and executable by everyone but their owner. And yes, this is supposed to be extremely stupid.

    [–] NutinButNet@hilariouschaos.com 9 points 4 days ago (1 children)

    This is the best comment I’ve come across in a while. Thank you so much for breaking it down so well.

    [–] Cenzorrll@lemmy.world 4 points 4 days ago

    Just wait until you need to figure out what you want when you want something other than all or none for those permissions. 4 is read, 2 is write, 1 is execute. Add them up to get what you want for each owner/group/other portion.

    [–] Little8Lost@lemmy.world 6 points 4 days ago

    Thank you a lot.
    The funny words have a useful meaning :D

    [–] KickMeElmo@sopuli.xyz 10 points 4 days ago (1 children)

    7 is read, write, and execute permissions. 700 is owner, but not group or others. 077 means the owner has no permissions, but group and others all have full permissions.

    [–] Little8Lost@lemmy.world 5 points 4 days ago* (last edited 4 days ago)

    Thank you for the explaination ^^

    [–] Ooops@feddit.org 7 points 4 days ago* (last edited 4 days ago)

    File permissions...

    allowed to execute=1, allowed to write=2, allowed to read=4

    grouped by owner/group/everyone.

    So one of your own files you have full access to while users in your usergroup are only allowed to read it and nobody else has any permissions would have: 740 (read+write+execute / read / none).

    [–] joyjoy@lemmy.zip 5 points 3 days ago
    sudo chown -R nobody:nobody /
    
    [–] LGTM@discuss.tchncs.de 5 points 4 days ago* (last edited 4 days ago)

    You and @ArchAengelus@lemmy.dbzer0.com really out did yourselves