0

Trying to install node on AWS Ubuntu server instance. I did it few days before, but today it will not let me unzip the file no matter what! You can see the errors in the picture.

Does anybody know why is it doing this and how could i fix it?

wget https://nodejs.org/dist/v6.9.1/node-v6.9.1.tar.gz
tar-xvf node-v6.9.1.tar.gz

enter image description here

Cristian Muscalu
  • 9,007
  • 12
  • 44
  • 76

1 Answers1

0

As a workaround i installed node with curl using these exact 2 commands
Source

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
Community
  • 1
  • 1
Cristian Muscalu
  • 9,007
  • 12
  • 44
  • 76