Skip to content

logdissect-2.1

Compare
Choose a tag to compare
@dogoncouch dogoncouch released this 14 Jun 15:20
· 146 commits to master since this release

logdissect-2.1

A robust CLI syslog forensics tool, with a Python library module for parsing and storing log data.

Changes

See CHANGELOG.md

Usage

See README.md

Installing

logdissect can be installed for Python 2, Python 3, or both. If installing for both, installing for 3 then 2 is recommended. This will result in the executable version using the Python 2 module, which is faster.

Installing with pip

Python 2 (standard, faster)

Requirements: python, python-setuptools, python-pip

sudo -h pip install logdissect

Python 3

Requirements: python3, python3-setuptools, python3-pip

sudo -h pip3 install logdissect

Installing manually

Python 2 (standard, faster)

Requirements: python, python-setuptools

wget https://github.com/dogoncouch/logdissect/archive/v2.1.tar.gz
tar -xzf v2.1.tar.gz
cd logdissect-2.1
sudo make all

md5sum:

38600f7940ac90a7e6bbbe587171846f  v2.1.tar.gz

Python 3

Replace sudo make all with sudo python3 setup.py install in the standard instructions to install for Python 3.