Tag: log
Important Logs
March 13, 2009
First show system events. Second command show events inherent to the process of booting kernel. tail /var/log/messages tail /var/log/dmesg
Archive all files with a given extension
September 16, 2008
Find all files with ‘.log’ extention and make an bzip archive find /var/log -name ‘*.log’ | tar cv –files-from=- |…
Tail Command in Follow Mode
February 21, 2008
View in real time what is added to a file. -f stands for Follow tail -f /var/log/messages
Watch a Log File for Changes using tail
September 2, 2007
This command will let you watch a log file for changes as soon as they happen
Recent Comments