this post was submitted on 13 Apr 2026
403 points (96.1% liked)

linuxmemes

31039 readers
493 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
    top 50 comments
    sorted by: hot top controversial new old
    [–] vga@sopuli.xyz 1 points 10 hours ago

    New pride week just dropped

    [–] Gormadt@lemmy.blahaj.zone 10 points 22 hours ago* (last edited 22 hours ago)

    looks at PC "Are you ready champ?" - Me

    I've never been more ready. - My PC

    [–] Solrac@lemmy.world 8 points 21 hours ago

    I literally presented the first draft for switching to linux at the company I work for, today...

    [–] Hiro8811@lemmy.world 7 points 1 day ago

    The week of the Linux Desktop is everyday

    [–] frunch@lemmy.world 47 points 1 day ago (1 children)

    Just for clarification: with these style of posts, am i supposed to read the bottom one first? I can't remember when these types of posts came into circulation, but I've been puzzled about them ever since. It's like the first/top line is sometimes the punchline, and i feel like i spoiled a joke or story by reading it from top to bottom.

    [–] fushuan@lemmy.blahaj.zone 19 points 1 day ago (1 children)

    The user that screenshooted it had the bottom post selected, that's why it's bigger. However, top to bottom is the normal chronological order, see how they mention the other one to respond in the second and third posts.

    [–] wonderingwanderer@sopuli.xyz 9 points 1 day ago (3 children)

    Sometimes screencaps of xitter posts look like the repost the original post is below, and the repost's comments are above. It's really annoying, and makes it hard to tell on other screencaps where it should be obvious that it's read top-down.

    [–] Samskara@sh.itjust.works 1 points 16 hours ago (1 children)
    [–] wonderingwanderer@sopuli.xyz 1 points 4 hours ago

    I realize that, what I said was that the prevalence of posts (mostly from xitter) that read bottom to top creates the situation where it's not automatically obvious at a glance that a post should be ready from top-down anymore. Hence the confusion of the commenter above.

    I was explaining why they had to ask, not wondering why this post is read top-down.

    load more comments (2 replies)
    [–] lightnsfw@reddthat.com 20 points 1 day ago (6 children)

    How are you all just swapping OSes all the time like it's nothing? I have so much shit to configure.

    [–] Cosmonaut_Collin@lemmy.world 3 points 16 hours ago

    But that's the fun part. I switch OSes so I can get back into configuring.

    [–] dihutenosa@piefed.social 1 points 14 hours ago

    And then @lightnsfw@reddthat.com heard about NixOS, where the whole OS, along with all services like Matrix or nginx is configured using a couple of text files, all versioned in Git...

    [–] FauxLiving@lemmy.world 9 points 1 day ago (1 children)

    *Install OS for the first time ever*

    cd ~/.config
    
    git init
    

    *commit changes, push to repo x100000*

    [–] steel_for_humans@piefed.social 7 points 1 day ago (1 children)

    Being a Linux newbie that idea did not even cross my mind. MIND BLOWN. In all seriousness, though, are there ever user secrets in ~/.config? It seems like a crazy & genius idea at the same time.

    (I keep them in two Restic backups)

    [–] FauxLiving@lemmy.world 10 points 1 day ago (2 children)

    Welcome Linux newbie :)

    There can be secrets in .config and so you need to be deliberate about what you commit while also ensuring that your .gitignore file is properly filled out to exclude the files which would have secrets that you don't want to be portable. This requires a bit of work and you will, in the process, learn about how every single application that you use stores its config. You typically don't want to just git add ., though this is a lazy/simple option and can be acceptable if you keep your files and backups secured.

    This kind of configuration will also encourage you to not just hit the 'install plasma-apps metapackage' button and be more deliberate about the software that you install as you will need to individually address the .config files for each application in your settings repo.

    I'd recommend against using Github. First, remember that "the cloud" is just "someone else's computer". Trusting anybody (esp. Microsoft) with critical data is a bad idea. So, sync to a location where you create your good, secure primary backups. The kind you put on a disk in a safe deposit box.

    This is undoubtedly more work than simply re-configuring everything when you fresh install. The payoff is that your system's configuration will be portable and as consistent as possible across all environments and you can safely try new configurations with the trust that you can use git to revert any changes in case you don't like them/it breaks something.

    If you want to do even more work you can maintain a separate set of dotfiles for your desktop machines and the machines where you only interact via terminal. Things like tmux config/plugins, bash/zshrc files, useful scripts and the contents of .local/bin (which is where your user's executable scripts primarily reside) so you can ensure that your remote environments are consistent and equably capable.

    For more reading/search/youtubing on the topic, these kinds of repos are commonly referred to as 'dotfiles' or 'dots'. You will often find people who customize applications that share their dots (more common in the ricing community). Some projects are essentially glorified dotfiles (NVChad for nvim, for example).

    Additionally, if you have more complicated setups that need to drop files into system directories or just in multiple unrelated directories, you can add GNU Stow which basically lets you store all of your dotfiles, binaries, system configurations, etc in a single directory (which you make a git repo) and you configure GNU Stow with the locations where these files need to live and it puts the files there, via symlink with a single command. Stow is an added level of complexity, likely more than most people need, but if you interact with a lot of new machines and need a quick way to configure them all in as much depth as possible... this is one of the ways you can do it.

    [–] lightnsfw@reddthat.com 3 points 10 hours ago

    Thanks for typing all this up

    Thanks for the extensive explanation. I was almost certain you were joking about using Git for that purpose but it seems you are being serious :)

    I will stick to my Restic backups for now. :)

    load more comments (3 replies)
    [–] TachyonTele@piefed.social 28 points 1 day ago (4 children)

    (playing my games on linux)
    I'm doing my part!

    [–] HeroicBillyBishop@lemmy.ca 20 points 1 day ago (6 children)

    very impressed with linux gaming now

    my last try was 10+ years ago

    games are literally running better on my (getting) tired desktop, and I play Grim Fandango on a Ryzen 3 laptop with 4Gb Ram which could barely boot windoze

    load more comments (6 replies)
    load more comments (3 replies)
    [–] vapeloki@lemmy.world 20 points 1 day ago

    Tomorrow, I will pick up a second, empty, work notebook. I am part of a small group that implements a user driven Linux support in our 6k employee group.

    We will make it more then a week, I promise :)

    [–] binarytobis@lemmy.world 9 points 1 day ago (1 children)

    I’ve been having that classic moment for the last 3 months since switching at home:

    β€œCan you hear that?”

    β€œWhat?”

    β€œSilence.”

    [–] WhiskyTangoFoxtrot@lemmy.world 24 points 1 day ago (1 children)
    [–] HexaBack@lemmy.blahaj.zone 3 points 22 hours ago (1 children)

    could be, but probably referring to no notifications, fan noise, and/or HDD clicking

    [–] LorIps@lemmy.world 2 points 15 hours ago (2 children)

    Do people on Lemmy not know what a joke is?

    [–] HexaBack@lemmy.blahaj.zone 1 points 4 hours ago

    that's why I said could be

    probably forgot to pacman -S humor

    [–] Nilz@sopuli.xyz 22 points 1 day ago (1 children)

    Pride flag yet excluding laptop users.

    /s

    [–] OrganicMustard@lemmy.world 15 points 1 day ago (1 children)

    The L in LGBT is for laptop

    [–] HeyThisIsntTheYMCA@lemmy.world 6 points 1 day ago (1 children)

    i am confuse i thought it was Lettuce Gay Bacon and Tomato

    load more comments (1 replies)
    [–] Naich@piefed.world 14 points 1 day ago

    Been using it for a couple of decades now. It just keeps getting better. You can't say that about many things these days.

    [–] Nacktmull@lemmy.world 11 points 1 day ago

    On my PC, for some time now, every week is "week of the Linux desktop". My user experience only got better since I ditched microslop.

    [–] CosmicTurtle0@lemmy.dbzer0.com 8 points 1 day ago (2 children)

    Honestly, this is such a great idea. Get the IT team to create a bootable distro with all the apps the average user needs. Have a video they can watch to get the basics down, have IT available to install one-off software.

    At the end of the week give people the choice to keep going or go back to Windows/Mac and get feedback.

    Try again in a couple of quarters.

    Most people use web-based apps anyway.

    [–] prole@lemmy.blahaj.zone 1 points 14 hours ago

    I don't think a week is long enough

    [–] lightnsfw@reddthat.com 9 points 1 day ago (2 children)

    If they'd tried this while I was still doing tier 1 support I'd have burned that place to the ground by lunch time.

    There is a right way to do this and a wrong way. I've seen it done the wrong way plenty of times but I've also seen this done the right way.

    Most recently, there was a push to get rid of Microsoft Word, etc. and we were moving to Google Workplace.

    They made it clear that there would be training available throughout the transition and that approvals for exceptions would require division head sign off (essentially the VP).

    The day of, there were signs everywhere for how to get help. Extra people were hired to help people migrate. They were trained to get people out of Microsoft and into Drive. Prizes for best report. Slack channels, office hours, helpdesk, and even in person questions.

    Company put their money where their mouth was.

    It was the best case I saw of a company actually understanding how much of a pain it was going to be and doing what they could to lessen the burden.

    Compare that to another company I worked with that went from Macs to PC. "You figure it out." And IT support went off-shore.

    So yeah I get where you're coming from. But if an IT department handled a roll out the right way, I would volunteer for help desk.

    [–] FauxLiving@lemmy.world 3 points 1 day ago

    Tier 1 support exists to encourage you to finish your education so you can get a job that lets you create problems for Tier 1 support.

    [–] SaharaMaleikuhm@feddit.org 6 points 1 day ago (2 children)

    In honor of this week of the Linux desktop I updated my Arch system. Will update again for the next week of the Linux desktop. Keepe in the loop!

    load more comments (2 replies)
    load more comments
    view more: next β€Ί