this post was submitted on 19 Mar 2025
1545 points (96.1% liked)

linuxmemes

23700 readers
3527 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. Even if you watch it on a Linux machine.
  • 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
     
    you are viewing a single comment's thread
    view the rest of the comments
    [–] endeavor@sopuli.xyz 3 points 13 hours ago (1 children)

    This is what made me realize maybe I should try my luck with the command line. I haven't had to touch any advanced stuff to do non advanced stuff in a while. Windows has conditioned me badly. For example when my laptop had no mic during a meeting I instantly assumed it was drivers fucking up again ala windows, so I started finding new drivers. After reverting the change I discovered it was just firefox that had disabled the mic. Smoothest "y no audio" bugfix I've ever had compared to "ready for the home user" windows discord, zoom, teams, skype constantly shitting the bed randomly.

    [–] MonkeMischief@lemmy.today 1 points 4 hours ago

    maybe I should try my luck with the command line.

    Today's your lucky day! :D Here's a really simple (and fun) way to start trying it out.

    https://linuxjourney.com/lesson/the-shell

    Such a lovely site.

    Something to remember is that even Linux's GUI is essentially just "visual shortcuts" for shell commands. Having the terminal open doesn't necessarily mean mucking about with the complex inner workings of your system. (But you can do that too!)

    You can do really simple low-risk things like moving files around, making new text documents, renaming stuff, and starting simple script programs, in your home directory.

    Heck, easiest way to make it less intimidating? Update your system with it.

    sudo apt update

    or

    zypper dup or so on. (Depending on distro)

    rm to remove stuff is the scary command that's worth treating with great respect. Get in the habit now of double checking yourself before slamming enter. I usually move (mv) things I intend to delete to my /tmp/ directory so I have a chance to fix it, or else it just erases on next reboot.

    Oh, and lastly, we've all done it and those who say "Well I never" are lying...but try to avoid copy pasting commands you don't recognize from the internet into your terminal! (Many forum replies are just like "try this long complicated one-liner to fix your issue!")

    Harmful commands can be hidden in text weirdly enough. There's examples online but it blew my mind how that was possible. So at the very least, type it out yourself, and it couldn't hurt doing a quick lookup to see what it's supposed to do before committing to it.

    The Linux community is often super helpful and lovely, but old posts could potentially be poisoned by bad actors and such, so keep your head up out there. :)