We've been moving servers to EC2 lately and I ran into an issue recently involving locales. We use a script to build an AMI from scratch that is largely based on a simplified RightScale script. However, we recently worked on an international project and I discovered that the locale was not set during the scripted install (issuing locale at the command line results in posix). It appear there is no i18n file by default. However, checking a development server that I installed locally (via GUI) the i18n file exists.
What package(s) do I need to install and which program can I run (command line) to configure this during the scripted install?
We're running the current version of CentOS. (5.4)
You can find out what provides using the rpm command. (e.g. rpm -q --whatprovides /full/path/to/your/file )
Hope this helps... ;-)
The "-a" flag on locale will show you all locales for which support is installed. Does that output anything other than posix?
The file /etc/sysconfig/i18n is where the locale gets set for boot time. Here is an example:
That is what you would change in the scripted install (I am assuming that your scripted install is not a "Kickstart" type installation. If it is Kickstart then the "lang" directive controls this).