0

I am not able to extract tar file Command tar -xvfz node_archive.tar.gz khem

Error

show error tar:z: can't open :No such file or directory tar: Error is not recoverable : Exiting now

1 Answers1

1

Run the following commands on terminal,

cd /path/to/the/directory/which/contains/node_archive.tar.gz
tar -xzvf node_archive.tar.gz
Avinash Raj
  • 78,556