Tôi muốn tìm các gói liên quan đến transmission
, một khách hàng BitTorrent nhưng không thể tìm thấy cách tìm kiếm các mô tả gói.
Tại sao làm điều này?
Trong một số trường hợp nhất định, tên gói không rõ ràng; ví dụ, một ứng dụng điều khiển từ xa cho Truyền có thể được đặt tên transmission-remote-gtk
(một cái cũ hơn) hoặc transgui
(gần đây hơn). Mô tả của cả hai gói bao gồm truyền mặc dù. Nó sẽ là thực tế cho người dùng không biết rằng tôi, người hy vọng các gói khác có tên không rõ ràng nếu có một cách để tìm kiếm mô tả gói thay thế.
Trên hệ thống của tôi chỉ aptitude search
nhìn vào tên gói. Mặt khác, eix -S
dưới Gentoo.
Vậy làm cách nào để tìm kiếm các gói theo mô tả trong Debian? (Tôi đoán rằng tôi có thể duyệt tất cả các gói có sẵn và grep
kết quả. Tôi mong đợi một phương pháp phù hợp hơn, tất nhiên do đó là câu hỏi của tôi.)
EDIT : Liệt kê kết quả bằng các lệnh tích hợp aptitude
vàapt-cache
Theo đề xuất của Marco và MatthewRock, có aptitude search '~d<string>'
và apt-get search
. Tuy nhiên, cả hai dường như cũng bao gồm các kết quả không liên quan đến chuỗi tìm kiếm (ít nhất là trên hệ thống của tôi):
# 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
...
với aptitude
hoặc
# 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
...
với apt-cache
. Ở trên thậm chí bao gồm các kết quả không khớp với "truyền" hoặc "trans". Thật kỳ lạ.
apt-cache show between
đưa ra một vài mô tả đoạn giữa, bao gồm cả dòng Những điều này có vẻ xấu và không theo thủ tục: truyền không thể mã hóa nổi lên qua tĩnh, cá nhân tôi sử dụngapt-cache search transmission | grep -i transmission
để giải quyết vấn đề này. Không chắc chắn nếu có một cách tốt hơn.