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

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

1 Answer

+1 vote
by (348k points)
selected by
 
Best answer

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.

...