Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.31 KB | None | 0 0
  1. # Pacman
  2. alias pac="sudo pacman -S"      # default action          - install one or more packages
  3. alias pacu="sudo pacman -Syu"   # '[u]pdate'              - upgrade all packages to their newest version
  4. alias pacs="pacman -Ss"         # '[s]earch'              - search for a package using one or more keywords
  5. alias paci="pacman -Si"         # '[i]nfo'                - show information about a package
  6. alias pacr="sudo pacman -Rs"    # '[r]emove'              - uninstall one or more packages
  7. alias pacp="sudo pacman -Rns"   # '[p]urge'               - purge a package + config files
  8. alias pacl="pacman -Sl"         # '[l]ist'                - list all packages of a repository
  9. alias pacll="pacman -Qqm"       # '[l]ist [l]ocal'        - list all packages which were locally installed (e.g. AUR packages)
  10. alias paclo="pacman -Qdt"       # '[l]ist [o]rphans'      - list all packages which are orphaned
  11. alias paco="pacman -Qo"         # '[o]wner'               - determine which package owns a given file
  12. alias pacf="pacman -Ql"         # '[f]iles'               - list all files installed by a given package
  13. alias pacc="sudo pacman -Sc"    # '[c]lean cache'         - delete all not currently installed package files
  14. alias pacm="makepkg -fsci"      # '[m]ake'                - make package from PKGBUILD file in current directory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement