posted by 빠담아빠다 2016. 3. 10. 16:28

/etc/sysconfig/i18n 를 수정해야 함.


1.linux 버전

[root@server01 ~]# cat /etc/redhat-release 

Red Hat Enterprise Linux Server release 6.3 (Santiago)



현재 영어로 되어있는 내 i18n 파일 내용


[root@server01 sysconfig]# cat i18n

LANG="en_US.UTF-8"

SYSFONT="latarcyrheb-sun16"




-> 변경

[root@lsfse002 sysconfig]# cat i18n

LANG="ko_KR.UTF-8"

SUPPPORTED="ko_KR.UTF-8:ko_KR.eucKR:ko_KR:ko"

SYSFONT="lat0-sun16"

SYSFONTACM="8859-15"


=====================참고==============================

CentOS 한글 설정 및 X Window설치

CentOS(Redhat) 2014/01/13 12:15

X Windows System, Gnome Desktop 환경설치
yum groupinstall "x window system" "gnome desktop environment"

 

한글폰트 설치
yum install fonts-korean

 

X Window 실행
startx

 

한글깨짐 현상 수정
vagrant를 이용하여 centos를 설치한 후 ssh로 연결하면 한글이 깨짐



- ibus 한글 설치

 

yum install kde-i18n-Korean <- 여기서 "K"는 한글

yum install fonts-korean

yum install ibus-hangul

 

/etc/sysconfig/i18n의 설정을 바꿔야함.

 

(1) UTF-8 모드로 운영할때 [이것을 적용]
LANG="ko_KR.UTF-8"
SUPPPORTED="ko_KR.UTF-8:ko_KR.eucKR:ko_KR:ko"
SYSFONT="lat0-sun16" <---여기서 lat0 의 0은 숫자0
SYSFONTACM="8859-15" <- 이것을 추가 하지 않음

(2) euc_KR 모드로 사용할때
LANG="ko_KR.eucKR"
SUPPORTED="ko_KR.eucKR:ko_KR:ko"
SYSFONT="lat0-sun16"
SYSFONTACM="8859-15" <- 이것을 추가 하지 않음


출처 : http://freesp.tistory.com/trackback/47

http://freesp.tistory.com/entry/CentOS-한글-설정-및-X-Window설치