I've noticed on the Desktop version when typing commands like sudo apt-get install mysq I can tab complete like when resolving file paths. However in the server edition this does not happen. Is there a package I need for this, or a configuration file to make this happen?

link|improve this question

feedback

4 Answers

up vote 12 down vote accepted

That's strange, maybe package bash-completion is what you're looking for?

link|improve this answer
feedback

Check your ~.bashrc file. Last para of mine reads as follows:

# enable programmable completion features (you don't need to enable

# this, if it's already enabled in /etc/bash.bashrc and /etc/profile

# sources /etc/bash.bashrc). if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion fi

This is unmodified from the originally installed (desktop edition) file. Obviously if the section starting with if and ending with fi is commented out, then you won't get completion. Also check the other listed file locations of course.

link|improve this answer
feedback

Compare your '/etc/bash.bashrc' and '~/.bashrc' files. Easy way to diff two files:

vimdiff file1 file2
link|improve this answer
feedback

I strongly recommend you to check zsh

you can simply intall it with

sudo apt-get install zsh

it's better than bash, and it has a lot of great customizations

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.