On a Linux server (RHEL 6.2) with a 50GB drive, disk usage which is normally around 57% spiked for about an hour to 100%. It has returned to normal again.
Is there some way to find out what files were created or deleted around that time?
On a Linux server (RHEL 6.2) with a 50GB drive, disk usage which is normally around 57% spiked for about an hour to 100%. It has returned to normal again.
Is there some way to find out what files were created or deleted around that time?
As detailed @ http://xmodulo.com/2012/11/how-to-find-recently-modified-files-on-linux.html
Search for files in /target_directory and all its sub-directories, that have been modified in the last 60 minutes:
Search for files in /target_directory and all its sub-directories, that have been modified in the last 2 days:
You can also specify the range of update time. To search for files in /target_directory and all its sub-directories, that have been modified in the last 7 days, but not in the last 3 days:
All these commands so far only print out the locations of files that are matched. You can also get detailed file attributes of recently modified files, using "-exec" option as follows.
To search for files in /target_directory (and all its sub-directories) that have been modified in the last 60 minutes, and print out their file attributes:
Alternatively, you can use xargs command to achieve the same thing: