On Archlinux it is not recommended to update only one package with the package manager pacman. Let’s say I have 11 packages, and one of them is extra/firefox (true story). Updating only a pacman -S firefox could introduce problems, but installing a new single package if it wasn’t there is okay.

So my question is, could we get around this by removing and installing the same package again in one go: pacman -Rs firefox && pacman -S firefox

  • ulterno@programming.dev
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    No, pacman -S firefox will not update your firefox.

    pacman -Sy firefox will update your firefox and nothing else.

    If you have done pacman -Sy once, then your list of packages and their versions gets updated.
    From then on, using pacman -S <package> on any package, whether or not it was already installed, will now get the new version of it.

    On the other hand, if you have not updated for long, then if you run pacman -Su to update, it will update nothing, because it looks at the old package list and compares it to installed packages and all of them match.
    If you were to use pacman -Sy and then pacman -Su, then it would do the update, similar to pacman -Syu.
    If you did pacman -Sy yesterday and then do pacman -Su today, then it will update up to yesterday’s packages and will ignore any updates from that point to today.

    This can be considered analogous to apt update and apt upgrade.
    If you run apt upgrade without apt update, you only upgrade upto the packages that you got until the last apt update.

    • N0x0n@lemmy.ml
      link
      fedilink
      arrow-up
      0
      ·
      24 hours ago

      Isn’t pacman -Syu the recommended way to update anyway? I have always used that o. EndeavourOS and hadn’t any issues.

      Except for the recent nouveau nvidia driver :/