Skip to content

Instantly share code, notes, and snippets.

@asahasrabuddhe
Last active April 3, 2018 09:54
Show Gist options
  • Save asahasrabuddhe/1fb67f2246451a7faeaea70e58df35aa to your computer and use it in GitHub Desktop.
Save asahasrabuddhe/1fb67f2246451a7faeaea70e58df35aa to your computer and use it in GitHub Desktop.
Ubuntu Software Installation
# Skype PPA
dpkg -s apt-transport-https > /dev/null || bash -c "sudo apt-get update; sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common -y"
echo "deb [arch=amd64] https://repo.skype.com/deb stable main" | sudo tee /etc/apt/sources.list.d/skypeforlinux.list
# Add VS Code PPA
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
# Add Docker PPA
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# Add NodeJS PPA
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install skypeforlinux code docker-ce docker-compose nodejs -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment