4

So after installing my out-of-the-box arch system I decided to remove some of the packages which I don't need. If I am not mistaken, in Windows you can go to Add/Remove Programs and get the info of the program's usage.

Is there a command to get the usage data about a specific package and the related programs?

P.S. I know, it might sound like premature optimization or micro optimization which is the source of all evil but still I'd like to keep my system as clean as possible. Also, this is not about cleaning pacman's cache.

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255
sitilge
  • 601
  • 1
  • 8
  • 27

1 Answers1

2

pacman -Q will list all installed programs.

pacman -Q [package name] will list if the particular program is installed in your system.

Since you want to mass-remove many packages, the easiest way of doing it is installing pamac-aur which is a graphical interface of pacman and aur. Using this you will be able to pick as many installed packages as you want and to remove them with one click. You can find pamac-aur here. This is the closest equivalent of Windows' Add/Remove Programs.

In order to install AUR packages you need to follow the official Arch Wiki about AUR.

Aventinus
  • 285