I thought it’d be a pain but installing programs through the terminal is actually so nice, I never would have expected it

136 points

Also, updates.

“hey computer! Update!”

“Sure thing, here is a list of 57 packages I will update, y/n?”

“y”

“ok… done!”

👌

permalink
report
reply
110 points

But how do Linux users handle the crippling loneliness of their operating system not pestering them with ads on every update? How else can you know if your computer loves you? Where is the warmth of the corporate embrace?

permalink
report
parent
reply
57 points
23 points

They discontinued that native app and have a kinda broken pwa. But open-source community delivers.

https://github.com/IsmaelMartinez/teams-for-linux

permalink
report
parent
reply
6 points

I have been harmed by this web page in a way that is too sacred to recover from. Dying now.

permalink
report
parent
reply
23 points
*

We shitpost on Lemmy and start flame wars about vi vs. emacs, X11 vs Wayland, sysvinit vs systemd, snaps vs flatpak, etc.

permalink
report
parent
reply
14 points

All of those wars have long since ended.
Neovim, Wayland, Systemd and Flatpak have won.

permalink
report
parent
reply
12 points

Sometimes I run the update command and there hasn’t been an update since yesterday. I think that’s pretty close.

permalink
report
parent
reply
9 points
there is nothing to do ;_;
permalink
report
parent
reply
10 points

“Welcome to Costco. I love you.”

permalink
report
parent
reply
3 points

I really wanted mr. Satya to watch my screen with Recall 😥

permalink
report
parent
reply
16 points

plus it makes you feel like a hacker for a few seconds

permalink
report
parent
reply
3 points

Underrated comment

permalink
report
parent
reply
16 points

“Hey computer, I don’t like when you ask for that confirmation, just do it”

“Oh, -y, I got you”

permalink
report
parent
reply
6 points

Two clicks with the update thingy on Mint, if I could never have to use the terminal I might be tempted to uninstall Windows completely.

permalink
report
parent
reply
4 points

New copypasta of 2025: I use Arch btw I use Mint btw

permalink
report
parent
reply
2 points

It’s actually I use NixOS fwiw

permalink
report
parent
reply
-1 points

Guess what I did last night? I spent 4 hours working on getting PSD, XCF and KRA thumbnailers working in Mint. It took custom scripts to be written and each one required different commands because KRA files are just a zip file so you have to extract that and grab one of 3 possible preview files that might exist inside that zip and make that the thumbnail, while in gimp files you cant just use convert command, even convert[0] will only turn the first layer into a thumbnail and thats completely useless. And to top off all that, I finally got thumbnails working in gnome/nautilus but Only the XCF thumbs will generate in cinnamon/nemo (I still have no clue why that is) but I cannot just switch to gnome because there is technically no gnome variant of Mint so gnome doesnt work 100%… etc etc etc

Linux is still not there, this stuff should be simple and automatic. If a 20 year professional took 4 hours to get this far, the average user will give up immediately. Yes Mint is still my daily driver, but seriously thumbnails should not be this much work.

permalink
report
parent
reply
3 points
*

publish your scripts and you might save the next guy some hours 🙂

permalink
report
parent
reply
88 points

The Windows terminal has some very good commands. ‘ssh username@server’ can log you right into a Linux machine!

permalink
report
reply
11 points

Times like this make me miss reddit gold

permalink
report
parent
reply
16 points

Just make a $2 donation to their host. Much better than reddit gold.

permalink
report
parent
reply
9 points

Nope.

permalink
report
parent
reply
7 points

Lemmy Lemon 🍋?

permalink
report
parent
reply
6 points

Just donate $5 to your instance or the lemmy devs.

permalink
report
parent
reply
4 points

I setup open SSH on windows so you can swing it both ways!

My main gripe is it runs cmd.exe and I gotta powershell to jump into that. If you auto powershell it doesn’t work right.

permalink
report
parent
reply
73 points
  • tab completion works in more places than you might expect
  • ctrl-a/ctrl-e for start/end of line
  • ctrl-u to clear the command you’ve typed so far but store it into a temporary pastebuffer
  • ctrl-y to paste the ctrl-u’d command
  • ctrl-w to delete by word (I prefer binding to alt-backspace though)
  • ctrl-r to search your command history
  • alt-b/alt-f to move cursor back/forwards by word
  • !! is shorthand for the previous run command; handy for sudo !!
  • !$ is the last argument of the previous command; useful more often than you’d think
  • which foo tells you where the foo program is located
  • ls -la
  • cd without any args takes you to your home dir
  • cd - takes you to your previous dir
  • ~ is a shorthand for your home dir
permalink
report
reply
6 points
*

I’ve been using the commandline for so long but was always too lazy to look up the rest of these commands after ctrl+a/e and ctrl+r THANK YOU!!!

post this commend again and again! There’s always lazy idiots like me who will be helped that way!

permalink
report
parent
reply
5 points
  • alt-. also pastes the last argument of the previous command (useful if you need to modify it a bit)
  • instead of any shortcuts starting with “alt” you can also press “esc” followed by the second key, e.g. pressing “esc”, releasing it and then “a” is the same as pressing “alt-a” (useful if you have only one hand available, or if alt is not availalble)
  • if you put a space before a command, it will not be saved in history (useful sometimes, e.g. if you pass a password directly as an argument)
permalink
report
parent
reply
4 points

Makes me realize just how illogical and bad these shortcuts are

permalink
report
parent
reply
5 points

I believe, these are Emacs shortcuts. There’s also set -o vi in bash, but I’ve never used it, so can’t vouch for it.

permalink
report
parent
reply
1 point

That’s good to know. It’s interesting that the other commenter thinks emacs shortcuts are illogical. I’ll make my best guesses at the logic

  • ctrl-a/ctrl-e for start/end of line

a is the beginning of the alphabet; e for end (of line)

  • ctrl-u to clear the command you’ve typed so far but store it into a temporary pastebuffer
  • ctrl-y to paste the ctrl-u’d command

No idea here. Seems similar to nano with k-“cut” and u-”uncut”.

  • ctrl-w to delete by word

w for word obviously.

  • ctrl-r to search your command history
  • alt-b/alt-f to move cursor back/forwards by word

r reverse, b back, f forward. Not sure why alt vs control though; presumably ctrl+b and ctrl+f do different things although I know emacs likes to use Alt (“Meta”) a lot.

permalink
report
parent
reply
1 point

Explains why they are so illogical! Unfortunately i think its better to just learn the defaults since i remote into lots of servers where i dont carry my config

permalink
report
parent
reply
3 points

Nice list, TIL about Ctrl+U and Ctrl+Y.

If I may add, Ctrl+X into Ctrl+E opens $EDITOR to edit the current line.

permalink
report
parent
reply
2 points

If you’re looking for a full list of these kind of navigation shortcuts, they all come from readline so read the man page for that. Or just look up the basic navigation of emacs which is what readline is mimicking.

permalink
report
parent
reply
66 points

I once installed HP shitbox printer drivers from the command line in 30 seconds, and the shitbox printer just…worked.

My heart soared higher than the eagle. I touched the face of the one true FOSS God, and felt that thing when astronauts have epiphanies about the Earth. 10/10, would recommend.

permalink
report
reply
30 points

The moment I loved the FOSS community was when I went on an Linux IRC channel, complained about my wifi not working, and some stranger messaged me detailed instructions with a patch in 20 minutes that completely fixed my issue.

permalink
report
parent
reply
8 points

At the same time it encourages people to just trust whatever people are telling them to input in the terminal, which is potentially dangerous.

permalink
report
parent
reply
7 points

Piping curl into sh is sadly a very common install method these days

But you are right

permalink
report
parent
reply
14 points
*

I once plugged my linux laptop into the scanner and it just worked

I spent days tinkering with proprietary, outdated (seriously, win XP as target) programs that provide sort-of drivers, and nothing worked, on windows.

permalink
report
parent
reply
9 points

I think that is just wildly amazing that printer drivers in Linux so often just work. I plugged in a wireless printer the other day and the hardest part was connecting it to the network. Once that was done BOOM Ubuntu found it and I could print. Those driver maintainers are doing a great job!

permalink
report
parent
reply
12 points

Capitalism vs Communism on a small scale

One is “We’re not making profit anymore, so not paying anyone to do this. Also not publishing the source because of IP.”, the other one is “I have fun doing this, I think I’ll adapt the driver to my printer. Open ofc, so others can benefit, while all others, including me, benefit from others achievements.”

permalink
report
parent
reply
4 points
*

Funnily enough, you have the Apple folks to thank for that.
sane-airprint is a Mac invention, but Macs use the common Unix printer system, so Linux benefits from it

permalink
report
parent
reply
8 points

Mine worked out of the box on mint. Like, it detected the network HP shitbox and I could print, no user intervention. I was floored.

permalink
report
parent
reply
5 points

Same on most distros I’ve tried recently. Fedora, OpenSUSE, CachyOS, Bazzite. Not vanilla Arch obviously

permalink
report
parent
reply
35 points

When the GUI fails, Terminal will have your back; can I get an Amen?

permalink
report
reply
17 points

When my computer starts to run out of ram and I immediately try and switch into the CLI so I can launch htop and kill the offender

permalink
report
parent
reply
9 points

find the traitor and kill him!

permalink
report
parent
reply
11 points

It’s usually Minecraft or Firefox

permalink
report
parent
reply
15 points

Amen. Hallelujah! AMEN! Ooh yeah brothers and sisters, AaaAAaAmen!

PS: this is not a cult BTW

permalink
report
parent
reply
8 points

It is, but it’s a very nice cult.

permalink
report
parent
reply
5 points

amen

permalink
report
parent
reply

linuxmemes

!linuxmemes@lemmy.world

Create post

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 figures

We 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.

Community stats

  • 9.7K

    Monthly active users

  • 1.4K

    Posts

  • 41K

    Comments