Показать историю файла (список пользователей, которые изменили файл)


9

Существует ли команда для отображения списка пользователей, которые изменили файл, предоставив историю файлов?

Я знаю, что это возможно с svn / git и т. Д., Но у нас есть файл конфигурации, которого нет в SVN, и кто-то изменил его.

Ответы:


12

Если вы ранее не включали какой-либо аудит, то нет инструмента, который мог бы сообщить об этом после изменения файла. Вы можете получить дату и время последнего изменения файла, но не историю изменений.

Продвигаясь вперед, вы можете установить, настроить, включить auditdпакет.

Со auditctlстраницы руководства :

-w path
    Insert  a  watch for the file system object at path. You cannot insert
    a watch to the top level directory. This is prohibited by the  kernel. 
    Wildcards  are not supported either and will generate a warning. The way
    that watches work is by tracking the inode internally. If you place a 
    watch on a file, its the same as  using  the  -F  path  option  on a 
    syscall rule. If you place a watch on a directory, its the same as using
    the -F dir option on a syscall rule.  The  -w form  of  writing watches 
    is for backwards compatibility and the syscall based form is more
    expressive. Unlike most syscall auditing rules,  watches  do  not impact
    performance  based on the number of rules sent to the kernel. The only 
    valid options when using a watch are the -p and -k. If you  need to     
    anything fancy like audit a specific user accessing a file, then use 
    the syscall auditing form with the path or dir fields.

Более подробно об этом говорится в разделе « Ведение журнала создания скрытых файлов».


Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.