捣鼓阿里云上的VPS,入门Linux,记录一下部署 NodeJs+MongoDB 的过程
-
在 Ubuntu 12.04 ~ 13.04 中,默认安装的的 Node 版本是 0.6.x的
$ sudo apt-get install nodejs $ sudo apt-get install npm $ node -v
而在 Ubuntu 13.10 ~ 14.04 中则是 0.10.x 版本
我的版本是旧版,所以需要使用这种方式来安装:
$ sudo apt-get install software-properties-common $ sudo apt-get install python-software-properties // 安装以上两个包后才会有下面这个 add-apt-repository 命令: $ sudo add-apt-repository ppa:chris-lea/node.js $ sudo apt-get update $ sudo apt-get install python-software-properties python g++ make nodejs