Process
跟踪程序使用了哪些文件
我正在尋找一種方法來跟踪程序安裝程序(InstallAnywhere)使用了哪些文件。我不能使用
lsof
,因為據我所知它適用於活動程序,我想要一個可以像這樣工作的工具:Time: -------------------------------------------------------- Tool start here: |-------------------------------------------| Installer starts here: |-----------------------------------|
您還可以考慮在 strace 下呼叫您的命令:
strace -f -e trace=file -o /path/to/logfile your_command
logfile``your_command
將包含由或其子程序執行的每個與文件相關的操作。
看起來checkinstall是你想要的。