auf einem Rechner ist in der /etc/apt/sources.list noch ein Nicht-Debian Repository angegeben.
Code: Alles auswählen
...
deb http://deb.grml.org/ grml-stable main
deb-src http://deb.grml.org/ grml-stable main
...
Habe zwar eine Lösung gefunden.
Code: Alles auswählen
#!/bin/sh
# dieser Code ist nicht zuverlässig
# this code is not reliable
dpkg --get-selections | while read FILE
do
FILE=${FILE%*install}
apt-cache madison ${FILE} | tee -a installed_debs.log
done
# anschließend noch
grep 'http://deb.grml.org/' installed_debs.log
SubOptimal