레퍼런스 : https://infoages.com/2344
로그 게더링했는데 tgz 파일이 아니고 tzz 나오는 경우가 있다. (2023.05 이전 버전이면 그렇다 카더라)
해당 파일 까보는 방법 정리해주셔서 간단하게 적었다.


다 되면 반디집, 7zip 같은걸로 열면 된다.
아래는 명령어 백업
Linux:
1. Install lzop
http://www.lzop.org/
2. .tzz file convert to .tar file
# lzop -d -o filename.tar filename.tzz
3. create temp directory
e.g.)
# mkdir ./temp
4. extract tar
# tar -xf filename.tar -C ./temp
Windows:
1. Install lzop
http://www.lzop.org/download/lzop103w.zip
2. extract lzop103w and change directory to lzop.exe
e.g.)
C:\> cd C:\lzop\
3. copy .tzz file to same location
4. convert .tzz file
C:\> lzop.exe -d -S .tzz filename.tzz
5. extract compress file through any tool such like 7zip.