this post was submitted on 27 Jun 2025
403 points (97.0% liked)

linuxmemes

25877 readers
736 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
    403
    Dirty Talk (lemmy.zip)
    submitted 1 day ago* (last edited 1 day ago) by [email protected] to c/[email protected]
     

    Disclaimer: Do not run this command.

    you are viewing a single comment's thread
    view the rest of the comments
    [–] [email protected] 47 points 1 day ago (2 children)

    asexuals and demisexuals be like sudo chmod -R 700 /

    [–] [email protected] 4 points 1 day ago* (last edited 1 day ago)

    You and @[email protected] really out did yourselves

    [–] [email protected] 54 points 1 day ago* (last edited 1 day ago) (3 children)

    Doms with cuck and denial fetishes have partners like

    sudo chmod -R 077 /
    
    [–] [email protected] 4 points 21 hours ago
    sudo chown -R nobody:nobody /
    
    [–] [email protected] 12 points 1 day ago (3 children)

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

    [–] [email protected] 5 points 23 hours ago* (last edited 23 hours 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).

    [–] [email protected] 39 points 1 day ago* (last edited 1 day 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.

    [–] [email protected] 5 points 1 day ago

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

    [–] [email protected] 9 points 1 day 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.

    [–] [email protected] 4 points 1 day 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.

    [–] [email protected] 9 points 1 day 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.

    [–] [email protected] 4 points 1 day ago* (last edited 1 day ago)

    Thank you for the explaination ^^

    [–] [email protected] 31 points 1 day ago