Dosyaları henüz yüklemediğiniz bir pakette bulmak istiyorsanız, apt-file kullanın.
apt-get install -y apt-file
apt-file update
Sonra bir şey bulmak için:
apt-file search /usr/bin/file
veya
apt-find search file
Nerede "dosya" aradığın şeyin adı.
Her debian sistemde bunu yapmak istemiyorsanız, bu betiği kullanabilirsiniz:
#!/bin/bash
which apt-get >/dev/null || { echo apt-get not found >&2; exit 1; }
which apt-file >/dev/null || { apt-get install -y apt-file; apt-file update; }
unset i; IFS=$'\x0a'; select i in $( apt-file search "/$@" ); do
test -n "$i" || break; apt-get install "${i%% *}"; done
Bunu daha sonra çırptım, ama iyi çalışıyor gibi görünüyor.
Not: "dpkg -S" yalnızca önceden kurduğunuz şeyleri bulur.
dpkg -S `which COMMANDHERE`
benim için çalıştı.