HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pamac — Utility for the GUI package manager pamac. If you can't see the AUR packages, enable it in `/etc/pam

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandpamacclipackageforguiutility
linux

Problem

How to use the pamac command: Utility for the GUI package manager pamac. If you can't see the AUR packages, enable it in /etc/pamac.conf or in the GUI. More information: <https://wiki.manjaro.org/index.php/Pamac>.

Solution

pamac — Utility for the GUI package manager pamac. If you can't see the AUR packages, enable it in /etc/pamac.conf or in the GUI. More information: <https://wiki.manjaro.org/index.php/Pamac>.

Install a new package:
pamac install {{package_name}}


Remove a package and its no longer required dependencies (orphans):
pamac remove --orphans {{package_name}}


Search the package database for a package:
pamac search {{package_name}}


List installed packages:
pamac list --installed


Check for package updates:
pamac checkupdates


Upgrade all packages:
pamac upgrade

Code Snippets

Install a new package

pamac install {{package_name}}

Remove a package and its no longer required dependencies (orphans)

pamac remove --orphans {{package_name}}

Search the package database for a package

pamac search {{package_name}}

List installed packages

pamac list --installed

Check for package updates

pamac checkupdates

Context

tldr-pages: linux/pamac

Revisions (0)

No revisions yet.