Package Managers[edit | edit source]
Installing programs on Linux systems often includes the use of a package manager, and installing programs through other means is often considered bad practice and can cause accidental installation of malware.
A package manager is used to install programs in the form of packages. Packages can be shared between multiple programs or other packages in order to save space.
A repository will contain both a list of available packages along with their version names, and the packages themselves. A package manager will download the list to check for packages.
To verify that what the package manager downloads are genuinely what was requested for and have not been tampered, package signing is used.
Basic overview of using pacman[edit | edit source]
SteamOS 3 is based on Arch Linux, as such, it uses the package manager named pacman. The full official guide for pacman can be found here. Or can be accessed through the man command.
When installing packages through pacman
, root user privileges are needed. To do this, a program like sudo can be used. All actions which involve the "-S" pacman
flag will require root privileges.
The below will explain the commands in a way which may not be fully true to what the command does behind the scenes, but it will be more understandable for a normal user.
# pacman -Sy
Updates the local copy of the repository list to match the external repositories.
# pacman -Ss package_name
Searches for package_name in the local repositories.
# pacman -Syu
Checks for updates.
# pacman -Si
Shows information on a package. Can be used on both installed and not yet installed packages.
# pacman -Rs
Deletes a package and all other packages which were installed along with it. (if those packages are no longer needed)
# pacman -Qs package_name
Searches for package_name in installed packages.