나는 다음 명령을 실행했습니다.
apt-cache rdepends my-package-here
결과에는 내 설정에 설치되지 않은 앱이 포함됩니다. 설치된 패키지를 보고 싶습니다.
답변1
~에 따르면적절한 캐시를 사용하는 사람들심벌 마크:
--depends pkg...
depends shows a listing of each dependency a package has and all the possible other packages that can fulfill that dependency.
--rdepends pkg...
rdepends shows a listing of each reverse dependency a package has.
--installed
Limit the output of depends and rdepends to packages which are currently installed. Configuration Item: APT::Cache::Installed.
다음 명령을 사용할 수 있습니다.
apt-cache --installed rdepends my-package-here
my-package-here
Depends: something
Depends: something
Depends: something
Depends: something
Depends: something
Depends: something
Depends: something
답변2
시스템에 설치된 패키지만 표시하려는 경우
대신 다음 명령을 사용하십시오.
apt-rdepends --state-follow=Installed --state-show=Installed package_name