Skip to content

Instantly share code, notes, and snippets.

@adalbertopita
Last active September 20, 2017 18:42
Show Gist options
  • Save adalbertopita/03b4a8ac07f897b42c66e6b0d9b2291b to your computer and use it in GitHub Desktop.
Save adalbertopita/03b4a8ac07f897b42c66e6b0d9b2291b to your computer and use it in GitHub Desktop.
installers
Installers:
Git
sudo apt install git
Terminator
sudo apt-get install terminator
Vim
sudo apt-get install vim
Chrome
add: deb http://dl.google.com/linux/chrome/deb/ stable main to ->
sudo vim /etc/apt/sources.list
sudo apt-get update
sudo apt-get install google-chrome-stable
NVM
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash
Node
nvm install v6.9.1
Visual Studio Code
https://code.visualstudio.com/docs/?dv=linux64_deb
Sublime Text 3
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt-get update
sudo apt-get install sublime-text
Nginx
sudo apt-get update
sudo apt-get install nginx
sudo ufw allow 'Nginx HTTP'
sudo systemctl status nginx
sudo systemctl start nginx
sudo systemctl stop nginx
Spotify
# 1. Add the Spotify repository signing keys to be able to verify downloaded packages
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 0DF731E45CE24F27EEEB1450EFDC8610341D9410
# 2. Add the Spotify repository
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
# 3. Update list of available packages
sudo apt-get update
# 4. Install Spotify
sudo apt-get install spotify-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment