bash
Turn on bash smart Completion
Edit file /etc/bash.bashrc sudo gedit /etc/bash.bashrc Uncomment the following lines, by removing the # in the beginning of the lines: #if [ -f /etc/bash_completion ]; then # . /etc/bash_completion #fi
Change your shell in Linux
Recently i had a problem with a user login through ssh. When I logged in I was only seeing the $ symbol and not myusername@server.com. And this wasn’t the only problem. Auto completition and up arrow key weren’t working at all. The problem was that I was using sh shell and not bash. So I [...]