Skip to content

Instantly share code, notes, and snippets.

@philcleveland
Last active November 10, 2016 20:00
Show Gist options
  • Save philcleveland/75af2ed2e5a977e6c7b22f0d14d8ffbb to your computer and use it in GitHub Desktop.
Save philcleveland/75af2ed2e5a977e6c7b22f0d14d8ffbb to your computer and use it in GitHub Desktop.
echo ------------------------------------------------------------
echo --- Updating Packages
echo ------------------------------------------------------------
sudo apt-get update
echo ------------------------------------------------------------
echo --- Upgrading Packages
echo ------------------------------------------------------------
sudo apt-get upgrade
echo ------------------------------------------------------------
echo --- Updating Packages
echo ------------------------------------------------------------
sudo apt-get update
echo ------------------------------------------------------------
echo --- installing brave
echo ------------------------------------------------------------
cd ~/Downloads
wget -O brave.deb https://laptop-updates.brave.com/latest/dev/ubuntu64
sudo dpkg -i ./brave.deb
sudo apt-get -f install
echo ------------------------------------------------------------
echo --- installing curl
echo ------------------------------------------------------------
sudo apt-get install -y curl
curl -sL https://deb.nodesource.com/setup | sudo bash -
echo ------------------------------------------------------------
echo --- installing htop process mgr
echo ------------------------------------------------------------
sudo apt-get install htop
echo ------------------------------------------------------------
echo --- cleaning up
echo ------------------------------------------------------------
sudo apt autoremove
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment