M BUZZ CRAZE NEWS
// news

ThoughtCrime sslstrip installation tar

By Daniel Rodriguez
matt@matt-macbook:$ sudo tar zxvf sslstrip-0.9.tar.gz
tar (child): sslstrip-0.9.tar.gz: Cannot open: No such file or directory
tar (child): error is not recoverable: exiting now
tar: child returned status 2
tar: Error is not recoverable: exiting now

How can I install this software?

1

1 Answer

This error was caused mainly because of you forget to add the full pathname of that file you are trying to extract.

cd /path/to/the/directory/where/
sudo tar -zxvf sslstrip-0.9.tar.gz

This will extract the tar.gz file to the same directory where tar.gz file is located.

OR

sudo tar -xzvf /full/path/to/sslstrip-0.9.tar.gz

This will extract tar.gz file to the /home/$USER directory.

How do I install a .tar.gz (or .tar.bz2) file?

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy