Is there anything I can use to take an inventory of the filesystem before and after some process to see what's changed?
Thanks! jlc
On Tue, 24 Feb 2009 14:49:11 -0700 Joseph L. Casale wrote:
Is there anything I can use to take an inventory of the filesystem before and after some process to see what's changed?
yum install checkinstall
http://asic-linux.com.mx/~izto/checkinstall/
Quoting "Joseph L. Casale" JCasale@activenetwerx.com:
Is there anything I can use to take an inventory of the filesystem before and after some process to see what's changed?
Thanks! jlc
I believe the audit subsystem can do this for you .. check out http://www.cyberciti.biz/tips/linux-audit-files-to-see-who-made-changes-to-a-file.html
Barry
On Tue, Feb 24, 2009, Joseph L. Casale wrote:
Is there anything I can use to take an inventory of the filesystem before and after some process to see what's changed?
I frequently do something like this:
touch /tmp/copyctrl # do update here find / ! -type d -newer /tmp/copyctrl | sort > /tmp/changelist
Bill
On Tue, 2009-02-24 at 14:49 -0700, Joseph L. Casale wrote:
Is there anything I can use to take an inventory of the filesystem before and after some process to see what's changed?
A simple thing I've done is to use touch to make a timestamp file just before running the process. Then a find command check for files or directories that have a modification time later than the timestamp file is used. I think the parameter is "-later"? Use the man page to confirm.
WFM very well.
Thanks!
<snip sig stuff>
HTH
On Tue, 2009-02-24 at 14:49 -0700, Joseph L. Casale wrote:
Is there anything I can use to take an inventory of the filesystem before and after some process to see what's changed?
OOPS! My first reply ignored the fact you wanted an "inventory". I presume you mean a "snapshot" that you can use for a diff?
Thanks! jlc
<snip sig stuff>
http://www.ext3cow.com/Welcome.html
-----Ursprüngliche Nachricht----- Von: centos-bounces@centos.org [mailto:centos-bounces@centos.org] Im Auftrag von Joseph L. Casale Gesendet: Dienstag, 24. Februar 2009 22:49 An: 'CentOS mailing list' Betreff: [CentOS] Checking for changes
Is there anything I can use to take an inventory of the filesystem before and after some process to see what's changed?
Thanks! jlc _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
-----Ursprüngliche Nachricht----- Von: centos-bounces@centos.org [mailto:centos-bounces@centos.org] Im Auftrag von Joseph L. Casale Gesendet: Dienstag, 24. Februar 2009 22:49 An: 'CentOS mailing list' Betreff: [CentOS] Checking for changes
Is there anything I can use to take an inventory of the filesystem before and after some process to see what's changed?
Thanks! jlc
---- No one has mentioned Dconfig by Dag Wieers. I think it work really good.
JohnStanley