Recently, centos7 installed nodejs, and found that the compressed package was node-v8.11.1-linux-64.tar.xz compressed package after wget command.Using the previous tar -zvxf found that it could not be decompressed.
The solution is as follows:
xz -d node-v8.11.1-linux-64.tar.xz
At this time, a node-v8.11.1-linux-64.tar file will be generated in this directory
tar -xvf node-v8.11.1-linux-64.tar
Perfect decompression, get it done!
Recommended Posts