Skip to content

Instantly share code, notes, and snippets.

@elmobp
Created November 20, 2019 23:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elmobp/4df0834778bfa056846082f41c22f4a3 to your computer and use it in GitHub Desktop.
Save elmobp/4df0834778bfa056846082f41c22f4a3 to your computer and use it in GitHub Desktop.
Ubuntu 19.10 Installer
#!/usr/bin/env bash
echo "Importing bp key"
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 3F5E6CB7
echo "Adding packages.bulletproof.net apt repo"
sudo echo "deb http://packages.bulletproof.net/ubuntu eoan main" > /etc/apt/sources.list.d/packages.bulletproof.net.list
echo "Upating apt"
sudo apt update
echo "Installing openconnect"
sudo apt -y install openconnect
echo "Downloading latest version of Chrome"
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
echo "Installing Chrome"
sudo dpkg -i google-chrome-stable_current_amd64.deb
echo "Cleaning up"
rm -f google-chrome-stable_current_amd64.deb
echo "Done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment