Last active
April 27, 2017 16:09
-
-
Save joselcvarela/9af9d26905ae452f8e7462ab4f84d462 to your computer and use it in GitHub Desktop.
This file contains 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
##Remove junk | |
sudo apt-get remove --purge libreoffice* | |
sudo apt-get clean | |
sudo apt-get autoremove | |
## Update | |
sudo apt update | |
sudo apt upgrade | |
## if Virtual Machinde | |
sudo apt-get install -y dkms build-essential linux-headers-generic linux-headers-$(uname -r) | |
./media/[username]/VBOX.../VBoxLinux... | |
## endif | |
## Dev Tools | |
sudo apt install git npm ruby ruby-dev zsh | |
## Oh my zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
## Node | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash | |
nvm install node | |
sudo npm i -g node-sass eslint yarn | |
##Git SSH Key | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
eval $(ssh-agent -s) | |
ssh-add ~/.ssh/id_rsa | |
less ~/.ssh/id_rsa.pub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment