I do not know how I can decompress a file having tar.zst extension and even though I did look for solutions on the Internet I ended up having nothing useful regarding the matter.
相关问题
- iOS (objective-c) compression_decode_buffer() retu
- Is there a public implemention of LZSS compression
- How do I build a debian package whose sources incl
- excluding some folders in tar command not work
- Reading and Compressing a picture with RLE
相关文章
- Can I release an app without the device?
- c# saving very large bitmaps as jpegs (or any othe
- Archive option greyed out in xcode 4.5.2
- TAR encode/decode library for iPhone (ideally coco
- Merge multiple zip files into a single zip file in
- How to extract zip file using dotnet framework 4.0
- Add files to ZIP without paths, using SharpZipLib
- Fiddler doesn't decompress gzip responses
The extention .zst means that the archive is compressed by zstd.
The tar command has an option -I (--use-compress-program) to specify a command for compression/decompression.
You can use it as follows.
$ tar -I zstd -xvf archive.tar.zst
Decompress it in Terminal.
I know there aren't many resources available but I found this here: http://manpages.org/zstd
If you have a standard cmake + gcc build stack:
Download the library
Python