Zsh
From DreamHost
Zsh is a shell. The name of the actual executable is zsh at /usr/bin/zsh
Enabling Zsh as Default
Login to your Dreamhost SSH account and execute the following:
chsh -s /usr/bin/zsh
Fixing Backspace
By default, your backspace key may not work properly in zsh. To fix it, execute the following:
echo "bindkey '^?' backward-delete-char" >> ~/.zshrc echo "bindkey '^[[3~' delete-char" >> ~/.zshrc

