Ubuntu – Which packages recommended ‘Missing Recommends’

package-managementsynaptic

The Synaptic Package Manager has a custom filter "Missing Recommends". Is there a way to find out which packages installed on my system recommended the packages listed in this filter?

Best Answer

Aptitude can perform some fairly fancy searches

This will show all the packages that have a Recommends that isn't satisfied:

aptitude search '?installed?broken-recommends'

To restrict it to a specific recommended package:

aptitude search '?installed?broken-recommends(PACKAGE)'
Related Question