+3 votes
in Operating Systems by (63.5k points)

HestiaCP is creating backup files in .tar.zst format. How can I decompress those files?

1 Answer

0 votes
by (271k points)

You can try one of the following approaches to decompress .tar.zst files.

Approach 1:

  • Run the command: zstd -d file.tar.zst . It will create .tar file.
  • Run the command: tar -xf file.tar to decompress the file.
Approach 2:
  • Run the command: tar -I zstd -xf file.tar.zst to decompress the file. "-I" [-I, --use-compress-program=COMMAND] is used to specify the program name.

...