説明で Debian パッケージを検索するには?

説明で Debian パッケージを検索するには?

BitTorrentクライアントに関連するパッケージを見つけたいのですが、transmissionパッケージの説明を取得する方法が見つかりません。

なぜこのようなことをするのですか?

場合によっては、パッケージ名は明確ではありません。たとえば、転送に使用されるリモートコントロールアプリケーションの名前は、transmission-remote-gtk(以前)またはtransgui(最新)のいずれかです。これら2つのパッケージの説明は次のとおりです。広がるしかし。これは非実用主義者にとって実用的です。知っている私は、パッケージの説明を見つける方法がある場合は、他のパッケージにも不明な名前が必要なユーザーです。

私のシステムでは、aptitude searchパッケージ名だけが見つかります。反対側はeix -SGentooの下にあります。

もしそうなら、Debianで説明でソフトウェアパッケージを検索する方法は? (私は利用可能なすべてのパッケージとgrep結果を見つけることができると思いました。もっと適切なアプローチがあると期待していましたが、もちろんそれは私の問題でした。)


編集する:組み込みコマンドで結果を一覧表示aptitudeします。apt-cache

提案通り表示そしてマシュー・ロックaptitude search '~d<string>'とがありますapt-get search。しかし、どちらも検索文字列とは無関係の結果を含むようです(少なくとも私のシステムでは)。

# 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      
...

そしてaptitudeまたは

# 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
...

そしてapt-cache。上記には、「transmission」または「trans」と一致しない結果も含まれます。本当に変です。

ベストアンサー1

使用apt-cache:

apt-cache search packagename

これは、aptが関連性があると見なすパッケージを示しています(ほとんどの説明と名前にパッケージ名が含まれていません)。

説明または名前にpackagenameを含むパッケージのみが必要な場合は、grepを使用して以下をパイプします。

apt-cache search packagename | grep 'packagename'

しかし!その他の構造ツール:

axi-cache search packagename

ここでaxi-cacheの詳細を読むことができます。axi-cache関連性に応じてスコアをソートし、一致率を表示するので、所望の結果が得られる可能性が高くなります。私の新しい交換品のようですapt-cache

axi-cacheの一部ですapt-xapianパッケージ

おすすめ記事