Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS ec2 en_US.UTF-8 issue

https://aws.amazon.com/amazon-linux-ami/2012.03-release-notes/

-bash: warning: setlocale: LC_CTYPE: cannot change locale (UTF-8)
[ec2-user@ip-10-136-14-68 ~]$ vi ~/.bash_profile
[ec2-user@ip-10-136-14-68 ~]$ 


    # .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH

export LC_CTYPE="en_US.UTF-8"

how do you solve this?

like image 841
Shaun Stanislaus Avatar asked Aug 18 '12 06:08

Shaun Stanislaus


2 Answers

Another solution is to add these lines to /etc/environment

LANG=en_US.utf-8
LC_ALL=en_US.utf-8

The next time you log in the warning message should have disappeared.

like image 87
Michiel Kauw-A-Tjoe Avatar answered Oct 02 '22 01:10

Michiel Kauw-A-Tjoe


Open your ssh_config file (in my case under Ubuntu it's located here : /etc/ssh/ssh_config), and comment this line:

SendEnv LANG LC_*

This means :

#SendEnv LANG LC_*
like image 39
TOC Avatar answered Oct 02 '22 01:10

TOC