Volevo trovare pacchetti correlati a transmission
, un client BitTorrent, ma non sono riuscito a trovare come cercare le descrizioni dei pacchetti.
Perché farlo
In alcuni casi, i nomi dei pacchetti non sono ovvi; ad esempio, un'applicazione di controllo remoto per Trasmissione può essere denominata transmission-remote-gtk
(una più vecchia) o transgui
(più recente). La descrizione di entrambi i pacchetti include tuttavia la trasmissione . Sarebbe pratico per l' utente non consapevole che io sia, che si aspetta che altri pacchetti abbiano nomi non ovvi se ci fosse un modo per cercare la descrizione del pacchetto.
Sul mio sistema aptitude search
cerca solo i nomi dei pacchetti. D'altra parte c'è eix -S
sotto Gentoo.
Quindi come dovrei cercare i pacchetti per descrizione sotto Debian? (Immagino di poter sfogliare tutti i pacchetti disponibili e grep
i risultati. Mi aspetto un metodo più appropriato, ovviamente da qui la mia domanda.)
EDIT : Elenco dei risultati con comandi integrati aptitude
eapt-cache
Come suggerito da Marco e Matthew Rock c'è aptitude search '~d<string>'
e apt-get search
. Tuttavia i due sembrano includere anche risultati che non hanno nulla a che fare con la stringa di ricerca (almeno sul mio sistema):
# aptitude search '~dtransmission'
p atlc - calculateur de lignes de transmission arbitraires
p atlc:i386 - calculateur de lignes de transmission arbitraires
p atlc-examples - Exemples pour le calculateur de transmission de ligne arbitraire
p between - game about consciousness and isolation
p between:i386 - game about consciousness and isolation
p boinc-app-seti - SETI@home application for the BOINC client
p boinc-app-seti:i386 - SETI@home application for the BOINC client
p boinc-app-seti-dbg - debug symbols for SETI@home
p boinc-app-seti-dbg:i386 - debug symbols for SETI@home
p boinc-app-seti-graphics - SETI@home application for the BOINC client (with graphics)
p boinc-app-seti-graphics:i386 - SETI@home application for the BOINC client (with graphics)
p ca-cacert - CAcert.org root certificates
p cstream - general-purpose stream-handling tool similar to dd
p cstream:i386 - general-purpose stream-handling tool similar to dd
p cycle - programme de calendrier pour femme
...
con aptitude
o
# apt-cache search transmission
between - game about consciousness and isolation
boinc-app-seti - SETI@home application for the BOINC client
boinc-app-seti-dbg - debug symbols for SETI@home
boinc-app-seti-graphics - SETI@home application for the BOINC client (with graphics)
ca-cacert - CAcert.org root certificates
libcollada2gltfconvert-dev - COLLDADA to glTF conversion library -- development
cstream - general-purpose stream-handling tool similar to dd
freedv - Software Defined Radio (SDR)
glfer - program for reception and transmission of QRSS/DFCW signals
libgmetric4j-java - gmetric4j Ganglia metric transmission API
libgnuradio-noaa3.7.5 - gnuradio noaa satellite signals functions
hamfax - Receive/send radio facsimile transmissions with Soundcard/PTC-II
hylafax-server - Flexible client/server fax software - server daemons
hylafax-server-dbg - Debug symbols for the hylafax server
libijs-dev - IJS raster image transport protocol: development files
libijs-doc - IJS raster image transport protocol: documentation
ike-scan - discover and fingerprint IKE hosts (IPsec VPN Servers)
ion - NASA implementation of Delay-Tolerant Networking (DTN)
ion-doc - Interplanetary Overlay Network - examples and documentation
libion-dev - NASA implementation of Delay-Tolerant Networking (DTN) - development files
...
con apt-cache
. Quanto sopra include anche risultati che non corrispondono a "trasmissione" né "trans". Strano davvero.
apt-cache show between
fornisce una descrizione di diversi paragrafi in mezzo, inclusa la linea Queste cose che appaiono sono brutte e non procedurali: trasmissioni indecifrabili che ribollono attraverso statico, ... Personalmente usoapt-cache search transmission | grep -i transmission
per risolvere questo problema. Non sono sicuro se esiste un modo migliore.