Last active
November 10, 2016 20:00
-
-
Save philcleveland/75af2ed2e5a977e6c7b22f0d14d8ffbb to your computer and use it in GitHub Desktop.
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
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