How can I view a live log on a Linux Server, so that I can see new log entries instantly as they are being added?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Over the Terminal

In the most simple case:

tail -f /var/log/name-of-logfile-you-want-to-watch

The -f option "follows" the file and will automatically update the view as the file is being updated. For a list of possible log files, you can see this article or just explore them yourself.


Using a GUI log viewer

If you have GNOME as a graphical environment installed, it comes with a log viewer called gnome-system-log. Open it with:

gnome-system-log &

You will find a manual here.

link|improve this answer
If there are any other requirements (your question wasn't that specific), just report back. – slhck Jul 29 '11 at 10:37
Great answer, thanks. Just one more question, what dose the trail function actually do? – wowpatrick Jul 29 '11 at 11:50
tail not trail. tail prints the "tail" of given file :). By default last 10 lines. – Beniamin Jul 29 '11 at 13:03
Thanks! Stupid typos! – wowpatrick Jul 29 '11 at 13:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.