1、centos/redhat下檢視某個檔案或命令屬於哪個rpm包:
# yum provides /etc/passwd
或者# rpm -qf /etc/passwd
tips:檢視到屬於某個包之後,可通過rpm -ql 《包名》來檢視該包具體提供哪些目錄結構:
如:# rpm -ql util-linux-2.35.1-1.p04.aarch64
2、ubuntu及衍生版:
# apt install apt-file
# apt-file update
檢視命令絕對路徑:
# which route
# apt-file search /sbin/route
linux下檢視某個檔案屬於哪個包
1 centos redhat下檢視某個檔案或命令屬於哪個rpm包 yum provides etc passwd 或者 rpm qf etc passwd 2 ubuntu及衍生版 sudo dpkg s whereis或sudo dpkg query s usr bin whereis 具體參考...
Linux下使用ps命令檢視某個程序檔案的啟動位置
使用ps命令,使用方法如下 ps ef grep shutdown 其中shutdown為關機命令,但是此時檢視到的只是相對路徑,沒有絕對路徑,如 其中4170就是程序id,此時進入 proc 4170 並通過 ls al檢視如下 ls al proc 4170 注意 參考 使用ps命令,使用方法如...
linux下查詢某個檔案
參考 一.通過檔名查詢法 舉例說明,假設你忘記了httpd.conf這個檔案在系統的哪個目錄 下,甚至在系統的某個地方也不知道,則這是可以使用如下命令 這個命令語法看起來很容易就明白了,就是直接在find後面寫上 name,表明要求系統按照檔名查詢,最後寫上httpd.conf這個目標檔名即可。稍等...