I am working on a unix server and I guess during some time in past the file system had been full. However, I need some solid data to prove it. Will there be any OS logs or something of that sort to confirm my assumption?
It's an AIX system.
|
I am working on a unix server and I guess during some time in past the file system had been full. However, I need some solid data to prove it. Will there be any OS logs or something of that sort to confirm my assumption? It's an AIX system. |
||||
|
On AIX, you will get entries in the standard error log if a filesystem operation fails due to a filesystem being full. You can view that error log with the You will see something like this,
|
|||
|
|
|
I'll agree with EightBitTony with his answer. For a detailed description about which exact filesystem was full, you could go ahead with the following commands: errpt | grep -i "unable to allocate to allocate space in filesystem" You could also pinpoint the exact date and time for it in the first command itself where you will know it from the timestamp given. |
|||
|
|
|
I suspect without proof that there is a log entry sent to the console when a disk-full condition occurs. If so, |
|||
|
|
dd if=/dev/zero of=output.dat bs=1024 count=FILE_SIZE_IN_BYTESto fill up the rest of the space. – jmathew Oct 19 '12 at 19:12