$ tar xvfJ fich.tar.xz
//cd to downloaded directory
$ tar xvfJ node.tar.xz
//then
sudo cp -r node-v14.15.5-linux-x64/{bin,include,lib,share} /usr/
tar -xf [file].tar.xz
cd [file]
./configure
make
sudo make install
Decompress:
$ tar xf [filename]
This will expand the contents of the file to a folder. Then the commands are, from the folder:
$ ./configure
$ make
$ sudo make install
This will compile the VLC source code, and then install it into your system.
Because you are installing as root,
this is why you must know that the source of the file is trustworthy.
tar xf [filename]
This will expand the contents of the file to a folder. Then the commands are, from the folder:
./configure
make
sudo make install
./configure
make
sudo make install