2010-02-24 04:35:52 +00:00
|
|
|
|
|
|
|
LNAV
|
|
|
|
----
|
|
|
|
|
|
|
|
The log file navigator, lnav, is an enhanced log file viewer that
|
|
|
|
takes advantage of any semantic information that can be gleaned from
|
|
|
|
the files being viewed, such as timestamps and log levels. Using this
|
|
|
|
extra semantic information, lnav can do things like interleaving
|
|
|
|
messages from different files, generate histograms of messages over
|
|
|
|
time, and providing hotkeys for navigating through the file. It is
|
|
|
|
hoped that these features will allow the user to quickly and
|
|
|
|
efficiently zero in on problems.
|
|
|
|
|
|
|
|
|
|
|
|
PREREQUISITES
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Lnav requires the following software packages:
|
|
|
|
|
|
|
|
libpcre - The Perl Compatible Regular Expression (PCRE) library.
|
|
|
|
sqlite - The SQLite database engine.
|
|
|
|
ncurses - The ncurses text UI library.
|
|
|
|
readline - The readline line editing library.
|
|
|
|
zlib - The zlib compression library.
|
2011-07-21 03:16:47 +00:00
|
|
|
bz2 - The bzip2 compression library.
|
2013-09-10 16:42:30 +00:00
|
|
|
openssl - The OpenSSL cryptographic library. (Only the hash
|
|
|
|
functions from this library are used.)
|
2010-02-24 04:35:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
INSTALLATION
|
|
|
|
------------
|
|
|
|
|
|
|
|
Lnav follows the usual GNU style for configuring and installing software:
|
|
|
|
|
|
|
|
$ ./configure
|
|
|
|
$ make
|
|
|
|
$ sudo make install
|
|
|
|
|
|
|
|
|
|
|
|
USING
|
|
|
|
-----
|
|
|
|
|
|
|
|
The only file installed is the executable, "lnav". You can execute it
|
|
|
|
with no arguments to view the default set of files:
|
|
|
|
|
|
|
|
$ lnav
|
|
|
|
|
|
|
|
You can view all the syslog messages by running:
|
|
|
|
|
|
|
|
$ lnav /var/log/messages*
|
|
|
|
|
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
|
|
|
|
Lnav website:
|
|
|
|
|
2011-06-11 20:23:16 +00:00
|
|
|
http://lnav.org
|