Out of memory Cent OS Linux: unicode_start hang issue: Solved
I found two solutions (as of now)
1. Open vi /etc/sysconfig/i18n this file contains a reference to unicode (UTF-8). We have take out all the references to UTF-8)
Code before:
[code lang=”js”]
LANG="en_US.UTF-8"
SUPPORTED="en_US.UTF-8:en_US:en"
SYSFONT="latarcyrheb-sun16"
[/code]
Code after:
[code lang=”js”]
LANG="en_US"
SUPPORTED="en_US:en"
SYSFONT="latarcyrheb-sun16"
[/code]
2. Another solution is to change the shell from “bash” to “sh” in unicode_start script
We need to open the vi /bin/unicode_start and from first line change “#!/bin/bash” to “#!/bin/sh“.
References: https://bugzilla.redhat.com/show_bug.cgi?id=622981