Linux – Update only one package with pacman

arch linuxpackage-managementpacman

Is there a way to update only selected programs in pacman?

I'm running ArchLinux on my netbook, and the complete upgrade of my system takes up more temporary space than I have on my system, so I'd like to just update one program at a time

Best Answer

Pacman's install command really means 'synchronize', so the command to install a new package and to upgrade a single package is the same.

pacman -S packagename

This will upgrade the package.

Related Question