3

I'm trying to install some packages like Zeroconf and TightVNC. Install seems to go fine but each time I get a notice like this in Terminal:

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

Is this something I need to worry about or can easily fix?

Steve Robillard
  • 34,988
  • 18
  • 106
  • 110
thibmaek
  • 289
  • 6
  • 19

2 Answers2

4

Commenting out SendEnv LANG LC_* in my mac's /etc/ssh_config fixed it!

Chetan Bhargava
  • 1,252
  • 3
  • 15
  • 29
thibmaek
  • 289
  • 6
  • 19
4

With latest Raspbian release Jessie, you can set the LC_ALL to value C in ~/.bashrc file and everything else would set to what you choose and you wouldn't get any warning or error messages. Here's how -

Open your .bashrc file with nano editor -

sudo nano ~/.bashrc

Now add below line to the end of the file -

export LC_ALL=C

Save the file, reboot your Pi and everything should be fixed. Hope it helps.

giri-sh
  • 787
  • 10
  • 18