this post was submitted on 13 Dec 2023
24 points (100.0% liked)

Arch Linux

7175 readers
2 users here now

The beloved lightweight distro

founded 4 years ago
MODERATORS
 

Hey, sometimes when I do pacman -Syu, I see some weird package being installed and I am curious which explicitly installed package is installing/updating it.

How do I so with pacman?

I know we can easily find out why an installed package is being installed, but what about before the package is being installed?

top 7 comments
sorted by: hot top controversial new old
[–] [email protected] 12 points 8 months ago (1 children)

pacman -Qi is the correct tool for this job.

[–] [email protected] 1 points 8 months ago (1 children)

Ah, it worked. I thought Qi only works for packages that are already installed. Didn't knew it worked for things that are synced as a new dependency of a package

[–] [email protected] 4 points 8 months ago

Dependencies are installed, they're just installed as dependencies lol

[–] [email protected] 8 points 8 months ago* (last edited 8 months ago) (3 children)

I believe Pacman -Si or -Sii [package name] is what you are looking for.

-Sii is reverse dependencies iirc

[–] [email protected] 6 points 8 months ago

also pactree [-r] would be quite useful

[–] victorz 2 points 8 months ago

From the pacman man page:

   -i, --info
       Display information on a
       given sync database package.
       Passing two --info or -i
       flags will also display
       those packages in all
       repositories that depend on
       this package.
[–] [email protected] 1 points 8 months ago

Oh, I didn't knew you can pass 2 is. I was depending on the tab completion from pacman, but I didn't see that it says you could specify i's