So well, I have a vserver with Debian 6.0.
Now I would like to install Node.js, but none of the tutorials on the web seem to work. I have tried all of the results google
If anyone else needs step-by-step instructions, I used the following steps from Install Node.js on Debian Squeeze and it installed with no problems:
sudo apt-get update && sudo apt-get install git-core curl build-essential openssl libssl-devgit clone https://github.com/nodejs/node.gitcd nodegit checkout v5.0.0 (or the version you want to build)./configuremakesudo make installnode -v npm -vI didn't have to install any additional sources into apt to get it to build.