i installed Ubuntu in italian language. Now I would like to see the error commands in english.

For example if i write:

$ mmmm

This is showed:

mmmm: comando non trovato

I would like that

mmmmm: command was not found

is showed.

Any idea?

Regards

Javi

link|improve this question

50% accept rate
2  
To get the error messages in English, install the English version. – Randolph West Jan 20 '11 at 18:41
feedback

1 Answer

up vote 3 down vote accepted

The language used by most applications uses the LC_LANG or LANG environment variables to find your language.

You can override it by adding a line

LANG=en_US.UTF-8
  • to the file ~/.profile if you want it to be changed for all applications (including GUI applications)

  • to the file ~/.bashrc for only applications you launch from inside the terminal (assuming your shell is bash).

You can also override it on a per-application basis by prefixing your command with that definition, e.g.

$ LANG=en_US.UTF-8 ls
link|improve this answer
Or you can set it for just the current session by entering LANG=en_US.UTF-8 at the command prompt. – Dennis Williamson Jan 20 '11 at 19:01
feedback

Your Answer

 
or
required, but never shown

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