我知道我可以透過例如查找apt-cache policy <PKG>
包屬於哪個存檔。
但我怎麼才能找到檔案區,例如main
或contrib
對於已安裝的軟體包?
我希望能夠告訴我的朋友,例如「要安裝軟體包 HotNewStuff,您必須contrib
在 . 中啟用該部分/etc/apt/sources.list
」。
答案1
您可以使用apt
前端來查看。
apt show net-tools ⏎
Package: net-tools
Version: 1.60+git20161116.90da8a0-1ubuntu1
Priority: optional
Section: net
Origin: Ubuntu
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: net-tools Team <[email protected]>
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 803 kB
Depends: libc6 (>= 2.14), libselinux1 (>= 1.32)
Conflicts: ja-trans (<= 0.8-2)
Replaces: ja-trans (<= 0.8-2), netbase (<< 4.00)
Homepage: http://sourceforge.net/projects/net-tools/
Task: dns-server, cloud-image, server, xubuntu-desktop, ubuntustudio-desktop, ubuntu-mate-core, ubuntu-mate-desktop
Supported: 5y
Download-Size: 194 kB
APT-Manual-Installed: yes
APT-Sources: http://bg.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
從APT 來源您可以看到該軟體包已從安裝bionic/main
。
你需要的命令是
apt show <package>
為了方便起見,您可以使用grep
它來過濾它:
apt show <package> | grep -Po "APT-Sources: \K.*"