this post was submitted on 11 May 2026
1050 points (98.0% liked)

linuxmemes

31377 readers
2026 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.
  • 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 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
     

    alt textAn edit of xkcd 2501, "Average Familiarity":
    [Ponytail and Cueball are talking. Ponytail has her hand raised, palm up, towards Cueball.]
    Ponytail: Open-source alternatives are second nature to us foss nerds, so it's easy to forget that the average person probably only knows Linux and one or two degoogled Android ROMs.
    Cueball: And Firefox, of course.
    Ponytail: Of course.

    [Caption below the panel]
    Even when they're trying to compensate for it, experts in anything wildly overestimate the average person's familiarity with their field.

    partly inspired by the replies to this post but i see this kind of thing all the time (shoutout to the person who once genuinely asked "who still uses google these days?")

    made with this neat tool

    you are viewing a single comment's thread
    view the rest of the comments
    [–] NightmareQueenJune@lemmy.world 16 points 9 hours ago (1 children)

    No. People who are 30+ maybe. But there are tons of people in GenZ (my generation) and Alpha that don't even know what folders or symlinks are. And Firefox is a nieche browser since 10 years or so.

    [–] calcopiritus@lemmy.world 5 points 4 hours ago (2 children)

    Putting folders and symlinks in the same category is wild. Most people I know (basically every non-elderly non-toddler person) knows what a folder is. Yet only some of the programmers I know know what a symlink is. Not even a chance for non-programers.

    At most they'll know what a shortcut is. Which is not the same as a symlink.

    [–] EddoWagt@feddit.nl 1 points 2 hours ago (1 children)
    [–] calcopiritus@lemmy.world 1 points 1 hour ago

    I don't know you. My comment doesn't apply to you, sorry.

    Knowing what a symlink is doesn't make you a programmer. It's just that I don't know any non-programmer that knows what it is.

    [–] starman2112@sh.itjust.works 1 points 3 hours ago* (last edited 3 hours ago)

    I didn't know that symbolic links were a thing until like 2 years into using Linux daily. I didn't know there was a difference between symlinks and shortcuts until I saw this comment!

    To save others a trip to Wikipedia, both a symlink and a shortcut store a path to another file or directory. The biggest difference is that symlinks are resolved by your file system, whereas shortcuts are resolved by whatever program accesses them. So if your software doesn't know what a symlink is, that doesn't matter. It tries to access the symlink, and your file system says "oh hey they want that jpeg" and serves them that jpeg. Whereas if your software doesn't know what a shortcut is, it'll try to access the shortcut and be like "wtf this is just a file path, I was expecting a jpeg"

    They can also store relative file paths, while shortcuts can only store absolute filepaths. So if your symlink references a file that's in the same directory, you can move that directory and the symlink still works. Can't do that with a shortcut.