first last wrote:
Is there any way to find out what packages come from where? I have a mixed CentOS with some Fedora updates (i know, I was just trying to add ardour and a couple of multimedia programs so I can ditch windows), but it has now become unstable, so I'd like to know what packages did I get from fedora.
try this command : ( all on one line )
for f in `rpm -qa` ; do echo -n $f ; rpm --qf " %{VENDOR} %{DISTRIBUTION} \n" -q $f ; done
this should tell you where the packages installed on your machine came from.