Last active
March 15, 2017 23:55
-
-
Save whitershade/a39dafff6c5ae76a79e97d5f9ea7fbc6 to your computer and use it in GitHub Desktop.
Ubunta starter pack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Google Chrome | |
Для установки Google Chrome нужно загрузить ключ репозитория: | |
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 | |
Atom | |
sudo add-apt-repository ppa:webupd8team/atom | |
sudo apt-get update | |
sudo apt-get install atom | |
NVM | |
apt-get install build-essential libssl-dev | |
// check current ver at https://github.com/creationix/nvm | |
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash | |
NODE & NPM | |
nvm install node | |
GIT | |
sudo apt-get install git-all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment