Linux: RPM
Here is couple of functions I use when working with RPM packages:
Show containing "postg"
rpm -qa | grep postg
Show top 20:
rpm -qa | tail -20
Install package:
rpm -ivh somed-1.0.0.armv7l
Uninstall:rpm -e somed-1.0.0.armv7l
As an Amazon Associate I earn from qualifying purchases.