apt-cache - 향후 명령 표시

apt-cache - 향후 명령 표시

패키지를 설치한 후 어떤 명령을 사용할 수 있는지 알아내는 방법이 있습니까 apt-get?

내가 달리고 싶다고 가정 해 봅시다 apt-get -y net-tools.

Host> apt-cache show net-tools
Package: net-tools
Version: 1.60-24.2
Installed-Size: 916
Maintainer: net-tools Team <[email protected]>
Architecture: amd64
Replaces: ja-trans (<= 0.8-2), netbase (<< 4.00)
Depends: libc6 (>= 2.4)
Conflicts: ja-trans (<= 0.8-2)
Description-en: The NET-3 networking toolkit
 This package includes the important tools for controlling the network
 subsystem of the Linux kernel.  This includes arp, ifconfig, netstat,
 rarp, nameif and route.  Additionally, this package contains utilities
 relating to particular network hardware types (plipconfig, slattach,
 mii-tool) and advanced aspects of IP configuration (iptunnel, ipmaddr).
 .
 In the upstream package 'hostname' and friends are included. Those are
 not installed by this package, since there is a special "hostname*.deb".
Homepage: http://net-tools.berlios.de/
Description-md5: 003fb6a11fdb767fff574478588a3ca8
Tag: admin::configuring, implemented-in::c, interface::commandline,
 network::configuration, network::routing, network::vpn, protocol::ipv6,
 role::program, scope::utility, use::routing
Section: net
Priority: important
Filename: pool/main/n/net-tools/net-tools_1.60-24.2_amd64.deb
Size: 346084
MD5sum: 7ef2fa3c53ba45adf9b3c369ef5ba458
SHA1: f8fa10c12f3309c69ed2a010e4824b6c41957c20
SHA256: a27cb96bc41b9349f6ab0a102cf8ed9210a129b2a67ca2a108675235d3600aaa

Host>

apt-cache show net-tools모든 정보가 표시 됩니까 (arp, ifconfig, netstat, rarp, nameif, Route, plipconfig, slattach, mii-tool, iptunnel, ipmaddr)?

답변1

apt-cache이를 수행할 방법이 없습니다. 그러나 apt-file요청하신 대로 처리해 드리겠습니다. 맨페이지:http://manpages.ubuntu.com/manpages/vivid/en/man1/apt-file.1.html

apt-file list net-toolsnet-tools가 설치되지 않은 경우에도 net-tools가 설치한 파일 목록을 실행하여 확인할 수 있습니다.

apt-file이 정보의 캐시가 실제로 사용되며 정기적으로 이 정보를 업데이트해야 합니다 apt-file update.

답변2

apt-file아직 패키지를 다운로드하지 않은 경우에도 패키지를 사용하여 패키지의 모든 파일을 나열할 수 있습니다. 그런 다음 grep을 통해 필터링합니다.

$ apt-file list net-tools | grep bin
net-tools: /bin/netstat
net-tools: /sbin/ifconfig
net-tools: /sbin/ipmaddr
net-tools: /sbin/iptunnel
net-tools: /sbin/mii-tool
net-tools: /sbin/nameif
net-tools: /sbin/plipconfig
net-tools: /sbin/rarp
net-tools: /sbin/route
net-tools: /sbin/slattach
net-tools: /usr/sbin/arp

관련 정보