I've got Ubuntu installed with Dutch as my language. I often work in the terminal and many of the outputs are in Dutch as well. This is very inconvenient though, because I often need to search for error messages I get, and on the interwebs error messages are unfortunately easier found in English than in Dutch.
Is there a way to have all terminal output in English, while all GUI's are in Dutch?
All tips are welcome!
LANG=C
, e.g.LANG=C sudo apt update
. You can also typeLANG=C
on its own and it will last until you close that terminal window. – Byte Commander Feb 04 '18 at 21:58LANG=C
automatically for every new terminal session just add the command to your~/.bashrc
. – dessert Feb 04 '18 at 22:09