this post was submitted on 30 Apr 2025
1014 points (97.7% liked)

linuxmemes

24840 readers
391 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
     

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

    (page 2) 50 comments
    sorted by: hot top controversial new old
    [–] SSNs4evr@leminal.space 1 points 5 days ago

    I'm getting ready to change one of my Ubuntu machines over to Mint, as the next iteration of Ubuntu requires more RAM. While I've done these changes many times, I've never quite understood the deal with setting up the partitions.

    [–] glitchdx@lemmy.world 1 points 6 days ago (10 children)

    if I could copy pasta with ctrl-c and ctrl-v in terminal, then 90% of my hatred of the command line would evaporate instantly.

    [–] grrgyle@slrpnk.net 3 points 6 days ago

    What Ctrl+Shift+(do a little spin)+Ins isn't intuitive enough for you??

    Jokes aside, that's understandable. I guess I've just become used to it, but there must be some way to override the default binding if you don't like it... Personally I like the kitty terminal's approach which uses mod+c/v for copy and paste in the terminal like you'd expect, while still leaving ctrl+c/v for sigint and verbatim respectively.

    load more comments (9 replies)
    [–] it_depends_man@lemmy.world 165 points 1 week ago (16 children)

    Also, updates.

    "hey computer! Update!"

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

    "y"

    "ok... done!"

    πŸ‘Œ

    [–] KneeTitts@lemmy.world 0 points 6 days ago (1 children)

    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.

    load more comments (1 replies)
    [–] pennomi@lemmy.world 132 points 1 week ago (6 children)

    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?

    [–] grue@lemmy.world 28 points 1 week ago* (last edited 1 week ago) (10 children)

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

    load more comments (10 replies)
    load more comments (4 replies)
    [–] umbrella@lemmy.ml 18 points 1 week ago (1 children)

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

    load more comments (1 replies)
    load more comments (12 replies)
    [–] yesman@lemmy.world 111 points 1 week ago (6 children)

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

    load more comments (6 replies)
    [–] kibiz0r@midwest.social 109 points 1 week ago (18 children)
    • 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
    [–] LovableSidekick@lemmy.world 1 points 5 days ago* (last edited 5 days ago)

    For me the Home/End keys also go to the start/end of a line like ctrl-a/ctrl-e, and ctrl-tab/ctrl-Tab move the cursor fwd/back a word at a time.

    [–] ICastFist@programming.dev 1 points 5 days ago

    What's the shortcut for scrolling the terminal?

    load more comments (16 replies)
    [–] hansolo@lemm.ee 72 points 1 week ago (7 children)

    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.

    [–] wise_pancake@lemmy.ca 34 points 1 week ago (2 children)

    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.

    load more comments (2 replies)
    load more comments (6 replies)
    [–] DmMacniel@feddit.org 36 points 1 week ago (4 children)

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

    [–] Flax_vert@feddit.uk 21 points 1 week ago (2 children)

    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

    load more comments (2 replies)
    load more comments (3 replies)
    [–] amotio@lemmy.world 26 points 1 week ago (2 children)

    Just wait when you try AUR on arch systems. I was long time ubuntu based user but once I tasted rolling release and AUR I don't want to go back.

    [–] BuboScandiacus@mander.xyz 23 points 1 week ago (4 children)

    It is going to make to want to go back

    Someday

    When you least expect it, and have a deadline

    load more comments (4 replies)
    load more comments (1 replies)
    [–] some_guy@lemmy.sdf.org 25 points 1 week ago

    Welcome in from the cold. We have hot cocoa and blankets.

    [–] kittenzrulz123@lemmy.blahaj.zone 18 points 1 week ago (2 children)

    Just wait until you find the fun TUI utilities, ill share a few:

    • Shell: Fish (has powerful auto-complete, very fast, written in rust)
    • Montior: Btop (monitors all system resources and processes)
    • Fetch: Fastfetch (perfect for showing off on !unixporn@lemmy.world, for !unixsocks@lemmy.blahaj.zone Hyfetch is reccomnded)
    • Brower: BrowSH (its a browser in your terminal)
    • Text Editor: Vim (the best text editor, remeber to use esc + : + q to close or wq to write close vim. However when you open vim you can never quit)
    • File manager: Ranger (if cd + ls is too inconvenient)
    • Games (yes you can even play games in the terminal): 2048, Chess-TUI, NSnake, and Micro Tetris

    More cool TUI tools

    [–] cupcakezealot@lemmy.blahaj.zone 3 points 6 days ago (1 children)

    next step to full on conversion is making your own dotfiles repo :)

    load more comments (1 replies)
    [–] ArcaneSlime@lemmy.dbzer0.com 2 points 6 days ago (1 children)

    I have to check out some of these!

    As for the browser, how does it display sites? Does it display images/video/play audio or is it mostly for just the text based stuff? How about ads/adblockers?

    [–] MonkeMischief@lemmy.today 2 points 6 days ago (1 children)

    My guess is it works like Lynx.

    https://en.m.wikipedia.org/wiki/Lynx_(web_browser)

    You mainly get basic text formatting with some colors. It's kinda neat. I imagine text heavy sites like Wikipedia (or Lemmy instances! Maybe other Fediverse stuff?) would be decent with it.

    You can open media with external applications it says though.

    Also hey, it's not running all that fancy privacy-killing JavaScript! :D

    In some situations I imagine it's fantastic for making your browsing look like you're working on something important, if you have a problem with nosy shoulder-surfers.

    Thanks, I'll definitely have to try these, they look neat!

    load more comments
    view more: β€Ή prev next β€Ί