Skip to content

Instantly share code, notes, and snippets.

@joselcvarela
Last active April 27, 2017 16:09
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 joselcvarela/9af9d26905ae452f8e7462ab4f84d462 to your computer and use it in GitHub Desktop.
Save joselcvarela/9af9d26905ae452f8e7462ab4f84d462 to your computer and use it in GitHub Desktop.
##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 "your_email@example.com"
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