Skip to content

Instantly share code, notes, and snippets.

@voronianski
Last active December 14, 2015 18:29
Show Gist options
  • Save voronianski/5130009 to your computer and use it in GitHub Desktop.
Save voronianski/5130009 to your computer and use it in GitHub Desktop.
Makefile ubuntu / elementary os
chrome-install:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
sudo apt-get install google-chrome-stable
sublime-install:
sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text
# installs 4.1.0 version (get latest number from official skype)
skype-install:
wget -O skype http://download.skype.com/linux/skype-ubuntu-precise_4.1.0.20-1_i386.deb
sudo dpkg -i skype
sudo apt-get -f install && sudo rm skype
# install node.js and npm latest
node-install:
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
sudo apt-get install npm
git-install:
sudo apt-get install git
node-helpers-install:
sudo npm install nodemon -g
sudo npm install express -g
sudo npm install jitsu -g
sudo npm install roots -g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment