Capture all data that was changed during Linux installation

I am trying to figure out which files were changed when I run the installation of the application through make install. I can look at the script, but it calls other scripts and may or may not touch other files, etc. How to do this programmatically?

+3
source share
2 answers

Implementation: http://asic-linux.com.mx/~izto/checkinstall/

Several ways come to mind. First, use LD_PRELOAD to track all open files. Second approach, compare the file system before and after.

+2
source

​​ , inotify ( inotify) , --prefix =/home/myusername

, checkinstall ( installwatch LD_PRELOAD) , , , , , .deb.

: inotify, /, installwatch makefiles/install.

0

Source: https://habr.com/ru/post/1704943/


All Articles