Lemmy
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
#Km91#@sh.itjust.works to linuxmemes@lemmy.world · 7 days ago

Rule

sh.itjust.works

external-link
message-square
127
link
fedilink
426
external-link

Rule

sh.itjust.works

#Km91#@sh.itjust.works to linuxmemes@lemmy.world · 7 days ago
message-square
127
link
fedilink
alert-triangle
You must log in or # to comment.
  • Captain Aggravated@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    9
    ·
    7 days ago

    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
      link
      fedilink
      arrow-up
      1
      ·
      6 days ago

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

      • Captain Aggravated@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        2
        ·
        6 days ago

        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
          link
          fedilink
          arrow-up
          1
          ·
          6 days ago

          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

          • Captain Aggravated@sh.itjust.works
            link
            fedilink
            English
            arrow-up
            1
            ·
            5 days ago

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

  • sudoer777@lemmy.ml
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    7 days ago

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

    Or nh os switch

    • Zacpod@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      6 days ago

      Nix has ruined me. I can never go back.

    • Paulemeister@feddit.org
      link
      fedilink
      arrow-up
      1
      ·
      7 days ago

      `nh os switch --update’

  • Jiral@lemmy.world
    link
    fedilink
    arrow-up
    9
    ·
    7 days ago

    Non of those.

    sudo zypper dup

    • Nailbar@sopuli.xyz
      link
      fedilink
      arrow-up
      5
      ·
      7 days ago

      Another on Tumbleweed?? Hi!

      • Jiral@lemmy.world
        link
        fedilink
        arrow-up
        3
        ·
        7 days ago

        indeed :)

        • mountaincalledmonkey@sopuli.xyz
          link
          fedilink
          English
          arrow-up
          4
          ·
          7 days ago

          me three!

  • plateee@piefed.social
    link
    fedilink
    English
    arrow-up
    6
    ·
    7 days ago

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

    Also wtf is pkcon for?

    • Jiral@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      7 days ago

      It is what Sailfish OS uses as default package manager even though it can also use zypper.

  • Hawk@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    3
    ·
    7 days ago

    paru

    • Evil_Incarnate@sopuli.xyz
      link
      fedilink
      arrow-up
      4
      ·
      6 days ago

      Yay!

  • godsammitdam@lemmy.zip
    link
    fedilink
    arrow-up
    2
    ·
    6 days ago

    The fingers tho

  • hakunawazo@lemmy.world
    link
    fedilink
    arrow-up
    3
    arrow-down
    1
    ·
    6 days ago

    Write that down

  • ScoffingLizard@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    2
    ·
    6 days ago

    TIL what dnf is finally.

    • Evil_Incarnate@sopuli.xyz
      link
      fedilink
      arrow-up
      8
      ·
      6 days ago

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

  • Sir_Premiumhengst@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    7 days ago

    ujust update

    I use Bazzite BTW

    • naevaTheRat@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      1
      ·
      6 days ago

      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

  • Lettuce eat lettuce@lemmy.ml
    link
    fedilink
    arrow-up
    3
    ·
    7 days ago
    sudo apt update && sudo apt upgrade -y && sudo flatpak update -y
    
    • festnt@sh.itjust.works
      link
      fedilink
      arrow-up
      3
      ·
      7 days ago

      flatpak is only “flatpak update -y” from what i remember

      • harmbugler@piefed.social
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 days ago

        Sure, if you want to type your password 17 times.

        • festnt@sh.itjust.works
          link
          fedilink
          arrow-up
          6
          ·
          7 days ago

          it’s not supposed to ask for any password at all

  • Zacryon@feddit.org
    link
    fedilink
    arrow-up
    3
    ·
    7 days ago

    Don’t forget to check needrestart or similar afterwards if you have no idea what has happened.

  • Shanmugha@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    7 days ago

    Duh. Why do you think I switched to Linux the moment I learned it existed

  • canaryWart@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    6 days ago

    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

    :::

  • Pirate2377@lemmy.zip
    link
    fedilink
    English
    arrow-up
    1
    ·
    6 days ago

    On Arch, Discover only updates flatpaks though, smh

  • iuminou@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    1
    ·
    6 days ago

    but gui app will also update flatpaks

    • KernelTale@programming.dev
      link
      fedilink
      English
      arrow-up
      3
      ·
      6 days ago

      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?

linuxmemes@lemmy.world

linuxmemes@lemmy.world

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: [email protected]

Hint: :q!


Sister communities:
  • [email protected]
  • [email protected]
  • [email protected]
  • [email protected]

Community rules (click to expand)

1. Follow the site-wide rules
  • Instance-wide TOS: https://legal.lemmy.world/tos/
  • Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
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 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.

Visibility: Public
globe

This community can be federated to other instances and be posted/commented in by their users.

  • 472 users / day
  • 3.17K users / week
  • 7.79K users / month
  • 16.3K users / 6 months
  • 1 local subscriber
  • 32.7K subscribers
  • 1.24K Posts
  • 32.3K Comments
  • Modlog
  • mods:
  • zephyr@lemmy.world
  • Err(()).unwrap()@lemmy.world
  • BE: 0.19.14
  • Modlog
  • Instances
  • Docs
  • Code
  • join-lemmy.org