This could be the cause. If your $HOME directory doesn't contain .bashrc or .bash_profile, you can copy those over from /etc/skel directory.
$ ls ~/.bashrc /home/mlind/.bashrc if this command doesn't show any results, then copy the files to your $HOME $ cp /etc/skel/.bashrc ~/ $ cp /etc/skel/.bash_profile ~/ and either open new shell, or source .bashrc for current running shell $ . ~/.bashrc -- Tab-complete not completing https://launchpad.net/bugs/61608 -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
