Skip to content Skip to sidebar Skip to footer

How To Decode .lzo_deflat File?

does anyone have either a command-line or python library that can decode a .lzo_deflate file? These file formats are used by Hadoop, for example.

Solution 1:

Google for Python LZO, and check your linux distribution for lzop:

Many Linux distributions (e.g. Debian, Ubuntu) will have this:

liblzo2-2 - data compression library
liblzo2-dev - data compression library (development files)
lzop - fast compression program
python-lzo - Python bindings for the LZO data compression library

Solution 2:

Post a Comment for "How To Decode .lzo_deflat File?"