Most of the log files in linux can be found in /var/log . You can go to this directory with cd command but root permission is required.
cd /var/log
To view the log files in real time:
tail -f /path/toFile.log
For example, to view the live version of yum log files execute tht following command:
tail -f /var/log/yum.log
Recent Comments