How to install Node.Js in Kali Linux
Описание
In this tutorial i ll show you how to install Node.js Runtime in Kali Linux
Some important tools i used -
GDEBI - for graphical installation(to install type "sudo apt-get install gdebi" in termial)
Link for the Pre Compiled .deb package....
https://dl.dropboxusercontent.com/u/97344867/node_0.10.33-1_i386.deb
If you want to generate your own .deb package(for mroe adventure), then these are the commands:-
sudo apt-get install python g++ make checkinstall fakeroot
src=$(mktemp -d) && cd $src
wget -N http://nodejs.org/dist/node-latest.tar.gz
tar xzvf node-latest.tar.gz && cd node-v*
./configure
sudo fakeroot checkinstall -y --install=no --pkgversion $(echo $(pwd) | sed -n -re's/.+node-v(.+)$/\1/p') make -j$(($(nproc)+1)) install
sudo dpkg -i node_*
Рекомендуемые видео



















