Ubuntu

在 Ubuntu 上查找安裝目錄

  • June 26, 2009

是否有任何標準方法可以找到在 Ubuntu 上使用 aptitude 安裝的應用程序的安裝目錄?

whereis binary例如:

whereis bash

會產生類似於:

root@hostname:~# whereis apache2
apache2: /usr/sbin/apache2 /etc/apache2 /usr/lib/apache2 /usr/lib64/apache2 /usr/share/apache2 /usr/share/man/man8/apache2.8.gz

或者,您可以以 root 身份執行類似於以下內容的內容:

updatedb && locate apache

你能澄清你的要求嗎?

dpkg -L PACKAGENAME將顯示 PACKAGENAME 中的每個文件

whereis APPLICATION會顯示 APPLICATION 的完整路徑

dpkg -S /usr/full/path/to/file將顯示文件屬於哪個包。

引用自:https://serverfault.com/questions/18140