This wiki has had no edits or log actions made within the last 45 days and has been automatically marked as inactive. If you would like to prevent this wiki from being closed, please start showing signs of activity here. If there are no signs of this wiki being used within the next 15 days, this wiki will be closed in accordance to the Dormancy Policy (which all wiki founders accept when requesting a wiki). If this wiki is closed and no one reopens it 135 days from now, this wiki will become eligible for deletion. Note: If you are a bureaucrat, you can go to Special:ManageWiki and uncheck "inactive" yourself.

Pacman

From SteamDeck Linux Wiki

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.

Cookies help us deliver our services. By using our services, you agree to our use of cookies.