How list installed packages

Issues related to applications and software problems and general support
Post Reply
MakeTopSite
Posts: 46
Joined: 2019/10/11 09:13:47

How list installed packages

Post by MakeTopSite » 2020/01/09 13:14:42

... and sort by size ?

stevemowbray
Posts: 519
Joined: 2012/06/26 14:20:47

Re: How list installed packages

Post by stevemowbray » 2020/01/09 13:21:26

Code: Select all

rpm -qa --qf '%{SIZE} %{NAME}\n' | sort -n

MakeTopSite
Posts: 46
Joined: 2019/10/11 09:13:47

Re: How list installed packages

Post by MakeTopSite » 2020/01/10 16:13:55

Thank you. Is it please possible to distinguish which files from these packages are running / used (or are not) by system now ?

BShT
Posts: 584
Joined: 2019/10/09 12:31:40

Re: How list installed packages

Post by BShT » 2020/01/10 16:34:48

ps
ps aux
ps ux

stevemowbray
Posts: 519
Joined: 2012/06/26 14:20:47

Re: How list installed packages

Post by stevemowbray » 2020/01/10 17:07:11

lsof or fuser will tell you about currently open files.

Post Reply