Apt

“apt list”在哪裡搜尋?

  • May 2, 2022

apt list可以列出所有可用的軟體包,是否apt在某個數據庫或某個目錄中的文件中搜尋?apt list --installed可以列出所有已安裝的包,那麼在哪裡apt搜尋呢?

apt list使用/var/lib/apt/lists/*_Packages(對應於其配置中的儲存庫)和相關_Translation文件中可用的資訊。

已安裝的軟體包在/var/lib/dpkg/status.

要查看系統上使用了哪些文件,請執行

strace -e openat apt list > /dev/null

strace -e openat apt list --installed > /dev/null

引用自:https://unix.stackexchange.com/questions/701041