If you continue to get error messages like
Code:
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
..make sure that the locale you are using
locally (as in on the machine that you use to connect to a remote host) is also available on the server.
In my case the default locale on my
laptop was
en_GB.UTF-8, but the
server was using
en_US.UTF-8 only. I solved this by adding en_GB.UTF-8 to /etc/default/locale (via "dpkg-reconfigure locales" on a Debian box).
It took me a while to figure this out..
