0

I have a zip file ( which is named ccnx-0.7.0.tar.gzip) and a related sha file( which is named ccnx-0.7.0.tar.gz.SHA1). i downloaded them from "https://www.ccnx.org/software-archives/#" how can i extract this file in ubuntu?

thanks in advanced

samira
  • 13

1 Answers1

0

You can extract it by running

tar -xvzf ccnx-0.7.0.tar.gzip

in your terminal.

You will find the output in your current directory.

You can type

man tar

for more options and infos about tar

Droplet
  • 151