How can I list all package names and their versions available from a specific package source (official repositories, PPAs or other repositories) ?
Also, how can I filter only the installed packages from that list?
If one version of a package is available from the queried source, but the installed version is from anywhere else, it should not appear in the output.
apt-get update
and thenapt-cache dump
? It should work as dump lists all the packages available. Not sure though. – 7_R3X May 10 '16 at 20:00apt list --installed | grep wily-security
? – Ron May 14 '16 at 14:34