From 5cdca98c5301fac4e0396270a50b0948143aecfe Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Thu, 9 May 2013 17:15:17 -0300 Subject: Docs for Ubuntu >= 12.10 The package that provides add-apt-repository changed --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index 4d55e9e..f9c5731 100644 --- a/readme.md +++ b/readme.md @@ -90,6 +90,8 @@ Here's a sample script to install the approriate dependencies on an Ubunutu serv # Install node and depencencies sudo apt-get update -y sudo apt-get install python-software-properties python g++ make -y +# On Ubuntu 12.10 and greater, add-apt-repository is provided by the software-properties-common package +#sudo apt-get install software-properties-common -y sudo add-apt-repository ppa:chris-lea/node.js -y sudo apt-get update -y sudo apt-get install nodejs npm -y -- cgit v1.2.3 From 892982270a49adeb9b49190981117c7d8478ae92 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Thu, 9 May 2013 17:19:08 -0300 Subject: Update docs for installing node Recent node packages from ppa:chris-lea/node.js install npm --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f9c5731..74589ef 100644 --- a/readme.md +++ b/readme.md @@ -94,7 +94,7 @@ sudo apt-get install python-software-properties python g++ make -y #sudo apt-get install software-properties-common -y sudo add-apt-repository ppa:chris-lea/node.js -y sudo apt-get update -y -sudo apt-get install nodejs npm -y +sudo apt-get install nodejs -y # Forever to keep server running sudo npm install -g forever -- cgit v1.2.3