
This article has not been completed yet. However, it may already contain helpful Information and therefore it has been published at this stage.
# Shows the last 10 lines of a file
tail /var/log/<logfile>
# Shows the first 5 Lines of a file
head -5 /var/log/<logfile>
# Live Logfile View for the last 10 Lines
tail -f /var/log/<logfile>
# Show the whole content of a file
cat /var/log/<logfile>
Possible other useful commands:
zcat
– Displays all the contents of logfile.gz
zmore
– See the file in pages, without decompressing the files
zgrep
– Search inside a compressed file
Source:
How To View and Configure Linux Logs on Ubuntu and Centos | DigitalOcean
Linux and the applications that run on it can generate all different types of messages, which are recorded in various log files. Linux uses a set of configuration files, directories, programs, commands and daemons to create, store and recycle these log messages. Knowing where the system keeps its lo…

Linux: How to view log files on the shell