Zeigt den Verlauf einer Datei an (Liste der Benutzer, die eine Datei geändert haben)


9

Gibt es einen Befehl zum Anzeigen einer Liste von Benutzern, die eine Datei mit einem Dateiversionsverlauf geändert haben?

Ich weiß, dass dies mit svn / git usw. möglich ist, aber wir haben eine Konfigurationsdatei, die nicht in SVN enthalten ist, und jemand hat sie geändert.

Antworten:


12

Wenn Sie zuvor keine Überwachung aktiviert haben, gibt es kein Tool, das dies melden kann, nachdem die Datei geändert wurde. Sie können das Datum und die Uhrzeit der letzten Änderung der Datei abrufen, jedoch keinen Revisionsverlauf.

In Zukunft können Sie das auditdPaket installieren, einrichten und aktivieren .

Von der auditctlManpage:

-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.

Weitere Informationen hierzu finden Sie in der Frage Protokollieren versteckter Dateierstellungen


Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.