Skip to content

Instantly share code, notes, and snippets.

@imasif
Last active August 29, 2015 14:07
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 imasif/86cfa8e348f35c0e6302 to your computer and use it in GitHub Desktop.
Save imasif/86cfa8e348f35c0e6302 to your computer and use it in GitHub Desktop.
How to install oh-my-zsh on Elementary OS #oh-my-zsh
# Install oh-my-zsh on Elementary OS
## We need curl, vim, git & zsh
### In Your Terminal:
$ sudo apt-get update
$ sudo apt-get install -y curl
$ sudo apt-get install -y vim
$ sudo apt-get install -y git
$ sudo apt-get install -y zsh
## And after that
$ curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | bash
$ sudo chsh -s $(which zsh) $(whoami)
## Now LogOut and LogIn
@imasif
Copy link
Author

imasif commented Sep 29, 2014

To update/upgrade oh-my-zsh type in the terminal:
$ upgrade_oh_my_zsh

@imasif
Copy link
Author

imasif commented Sep 29, 2014

Update Bash to the latest version available:
$ sudo apt-get update && sudo apt-get install --only-upgrade bash

@imasif
Copy link
Author

imasif commented Oct 21, 2014

Check for shellShock:

$ env x='() { :;}; echo vulnerable' bash -c "echo this is a test"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment