Linux

如何找到已安裝在 Knoppix 上的應用程序?

  • February 5, 2016

我用 Knoppix 創建了一個可啟動的 USB 驅動器。它工作正常,但我專門尋找 chntpw 和擦除硬碟的工具。這個問題是關於在哪裡可以找到 Synaptic 包管理器說已經安裝的包 (chntpw)。

如何找到已安裝的應用程序?我瀏覽了菜單,但在任何地方都沒有看到。

謝謝,喬諾

用於dpkg -L chntpw顯示包內容,然後在 中查找路徑/usr/bin/bin/

例如dpkg -L wget顯示以下輸出,

# dpkg -L wget
/.
/usr
/usr/bin
/usr/bin/wget
/usr/share
/usr/share/doc
/usr/share/doc/wget
/usr/share/doc/wget/README
/usr/share/doc/wget/changelog.Debian.gz
/usr/share/doc/wget/AUTHORS
/usr/share/doc/wget/MAILING-LIST
/usr/share/doc/wget/copyright
/usr/share/doc/wget/NEWS.gz
/usr/share/info
/usr/share/info/wget.info.gz
/usr/share/man
/usr/share/man/man1
/usr/share/man/man1/wget.1.gz
/etc
/etc/wgetrc

然後你就知道/usr/bin/wget要執行的是二進製文件

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