Terminal, Prompt changed to "-Bash-4.2" and colors lost
The prompt variable $PS1
was probably not set, so the built-in default \s-\v\$
is used.
When bash starts up interactively, it sources a configuration file, usually either ~/.bashrc
or ~/.bash_profile
, presuming they exist, and this is how a fancier prompt is set. From man bash
:
INVOCATION
[...] When bash is invoked as an interactive login shell, or as a non-interactive shell with the --login option, it first reads and executes commands from the file /etc/profile, if that file exists. After reading that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile, in that order [...]
[...] When an interactive shell that is not a login shell is started, bash reads and executes commands from ~/.bashrc, if that file exists.
Not having your prompt set can occur in two different contexts then, login shells and non-login shells. If you use a display manager to log directly into the GUI, you don't encounter login shells unless you switch to a virtual console (via, e.g. CtrlAlt + F1 to F6). However, you can test your bash login profile in the GUI by opening a new login shell explicitly: bash -l
.
Problem occurs with non-login shells
If the problem occurs with, e.g., normal GUI terminals, then either your ~/.bashrc
is missing, or it has been edited to exclude sourcing a global file, probably /etc/bashrc
.
If
~/.bashrc
does not exist, there should be a/etc/skel/.bashrc
used to create it for new users. Simply copy that file into your home directory, and your default prompt should come back for the next new shell you open.If
~/.bashrc
does exist, check to see if there is a line somewhere that sources/etc/bashrc
:. /etc/bashrc -OR- source /etc/bashrc
If not, check if that file exists (it should, at least on most linux distros) and add such a line to your
~/.bashrc
.
Problem occurs with login shells
If the problem occurs with login shells as well as non-login shells, the problem is probably the same as above. If it occurs only with login shells, you either don't have one of the files mentioned for login shells under the INVOCATION quote above, or they don't source your ~/.bashrc
, which is normal on most linux distros. If none of those files exists, create ~/.bash_profile
with this in it:
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
This allows you, for the most part, to keep your configuration in one file (~/.bashrc
).
If no matter what you do you cannot get a prompt back, you can create one and put it into ~/.bashrc
this way:
if [ "$PS1 ]; then
PS1= .... # see below
fi
This is because $PS1 is set and has a default value for interactive shells, and you don't want to set it otherwise since other things may use this value to determine whether this is an interactive environment.
The bash man page contains a section PROMPTING which describes how to set a prompt with dynamic features such as your user name and current working directory, which would be, e.g.,:
PS1="\u \w:"
There's a guide to using color here. Pay attention to the fact that you should enclose non-printed characters in \[
and \]
(there's a discussion of this at the end of the answer about colors).
Just paste this in ~/.bashrc and ~/.bash_profile as root on effected user.
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi