this post was submitted on 27 Aug 2026
454 points (96.3% liked)

linuxmemes

32628 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 of any kind will not be tolerated. This is an LGBTQ+-friendly community -- if that is a problem for you, you should leave.
  • 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 3 years ago
    MODERATORS
     
    top 50 comments
    sorted by: hot top controversial new old

    I use an fzf based script that queries for updates and lets me choose what to install.

    If you use xbps, or are just curious:

    ::: xu #!/bin/env sh

    self="$(basename "$0")"

    error() { printf '%s:' "$self" >&2 # shellcheck disable=SC2068 printf ' %s' $@ >&2 printf '\n' >&2 }

    fatal() { error "$@" exit 1 }

    if [ -x "$(command -v sk)" ]; then finder=sk elif [ -x "$(command -v fzf)" ]; then finder=fzf else echo "neither fzf or sk are installed" >&2 exit 1 fi

    tmp="$(mktemp)" || fatal "couldn't source bindings" grep '^export' "$DOTFILES/.zshenv" | grep -E 'FZF|SKIM' >"$tmp" . "$tmp" rm "$tmp"

    shellcheck disable=SC2046

    choices="$(xbps-install -nSu | cut -f1 -d' ' | sed 's/-[^-]*$//g' | $finder | tr '\n' ' ')"

    [ -n "$choices" ] || exit

    guard=pkexec command -v "$guard" >/dev/null 2>/dev/null || guard=sudo

    shellcheck disable=SC2086

    while ! $guard xbps-install -Syu $choices; do :; done

    :::

    [–] konomi@piefed.blahaj.zone 45 points 2 days ago (7 children)

    I'll keep making Debian users aware that they can do it all in one command since Trixie.

    sudo apt --update --autoremove --with-new-pkgs upgrade
    
    [–] antianarchist@sopuli.xyz 24 points 2 days ago

    First they changed apt-get to apt. Now this.

    I can’t keep up with all the sudden changes.

    load more comments (6 replies)
    [–] captain_aggravated@sh.itjust.works 9 points 1 day ago (1 children)

    I do both. If I know exactly what I want to install, I'll install it from the terminal because it's often more direct. If I go "I need an app that does thing, what's available?"

    [–] naevaTheRat@lemmy.dbzer0.com 1 points 1 day ago (1 children)

    pacman can list all packages and their description, then you just grep for key words

    [–] captain_aggravated@sh.itjust.works 2 points 1 day ago (1 children)

    apt-search and dnf-search both exist. I have used both. I prefer a GUI for that because they'll provide things like screenshots, no CLI tool does, neither to TUI tools like Aptitude.

    [–] naevaTheRat@lemmy.dbzer0.com 1 points 1 day ago (1 children)

    I wasn't sure, the gui is nicer in some ways but defs less direct and given that you said "terminal is more direct" I thought you were using the gui because you hadn't made some simple helper scripts for searching the database quickly

    The GUI app stores are much better than any helper script I could write.

    [–] ActualGrapesTasteGreen@piefed.zip 28 points 2 days ago (10 children)

    This one hurts.

    load more comments (9 replies)
    [–] godsammitdam@lemmy.zip 2 points 1 day ago

    The fingers tho

    [–] ruuster13@lemmy.zip 49 points 2 days ago (4 children)

    If that's the game we're gonna play:

    yay

    [–] sorghum@sh.itjust.works 18 points 2 days ago (1 children)

    I'm old enough to

    yum

    RIP in peace yellow dog linux

    Yum was used on way more than Yellow Dog Linux. CentOS, Fedora, RHEL, etc all did

    [–] waz@feddit.uk 1 points 1 day ago
    load more comments (2 replies)
    [–] sudoer777@lemmy.ml 9 points 1 day ago* (last edited 1 day ago) (2 children)

    nix flake update && nixos-rebuild switch --flake .

    Or nh os switch

    [–] Zacpod@lemmy.world 2 points 1 day ago

    Nix has ruined me. I can never go back.

    load more comments (1 replies)
    [–] Jiral@lemmy.world 9 points 1 day ago (1 children)

    Non of those.

    sudo zypper dup

    [–] nailbar@sopuli.xyz 5 points 1 day ago (2 children)

    Another on Tumbleweed?? Hi!

    load more comments (2 replies)
    [–] pirate2377@lemmy.zip 1 points 1 day ago

    On Arch, Discover only updates flatpaks though, smh

    [–] thethunderwolf@lemmy.dbzer0.com 1 points 1 day ago (1 children)

    but gui app will also update flatpaks

    Cachy has a tray icon running the updates in terminal. It likely can be started from terminal as well and I think it was like octopy?

    [–] hakunawazo@lemmy.world 2 points 1 day ago

    Write that down

    [–] ScoffingLizard@lemmy.dbzer0.com 2 points 1 day ago (1 children)
    [–] Evil_Incarnate@sopuli.xyz 8 points 1 day ago

    Did not finish. Used a lot in racing after an accident....oh wait...

    [–] Crumpled6273@lemmy.ca 27 points 2 days ago (3 children)

    Yes. At the beginning I preferred distro's specifically with a graphical software manager. Now i force uninstall it and use terminal for anything.

    [–] abbadon420@sh.itjust.works 17 points 2 days ago

    My first Ubuntu (8), the software manager was so buggy, that I rage quit and learned about the terminal

    load more comments (2 replies)
    [–] chronicledmonocle@lemmy.world 17 points 2 days ago (7 children)

    There is nothing wrong with using your distro's app center. Often it will save you extra steps by updating things like Flatpaks as well, if you use them (or Snaps, if you're an insane person).

    load more comments (7 replies)
    [–] Hawk@lemmy.dbzer0.com 3 points 1 day ago (1 children)
    [–] Sir_Premiumhengst@lemmy.world 7 points 2 days ago (1 children)

    ujust update

    I use Bazzite BTW

    I use bazzite on my BC250 console but bazzite's package management is horrible lmao.

    It's good for something you install and never touch but not adequate for general purpose computing.

    Pacman is an amazing package manager, dnf is probably better but inertia has me prefer pacman. The rest suck

    [–] hperrin@lemmy.ca 16 points 2 days ago (1 children)

    Don’t forget

    flatpak update
    
    [–] eaterofclowns@lemmy.world 3 points 1 day ago

    Hey just wanted to say thanks this might have solved an issue I've had for a couple of months that crashed Cyberpunk when launching via Heroic!

    [–] TabbsTheBat@pawb.social 18 points 2 days ago (7 children)

    The only time I use the software center is if im looking for software to do a job without already knowing the name of the program that would

    load more comments (7 replies)
    [–] plateee@piefed.social 8 points 2 days ago (2 children)

    Aren't you supposed to do apt full-upgrade instead of apt upgrade?

    Also wtf is pkcon for?

    load more comments (2 replies)
    [–] antianarchist@sopuli.xyz 9 points 2 days ago (1 children)
    [–] Nutteman@lemmy.world 6 points 2 days ago* (last edited 2 days ago)

    When I just want to go to bed and deal with the repercussions of my actions in the morning:

    yay --noconfirm && reboot
    
    [–] Lettuceeatlettuce@lemmy.ml 5 points 2 days ago (3 children)
    sudo apt update && sudo apt upgrade -y && sudo flatpak update -y
    
    load more comments (3 replies)
    [–] djdarren@piefed.social 11 points 2 days ago* (last edited 2 days ago) (3 children)
    load more comments (3 replies)
    load more comments
    view more: next β€Ί