DATA 전문가로 가는 길

[Unix/Linux] Ubuntu SSH 접근 할 때 한글 깨짐 현상 처리 방법[ PuTTY, Nabi ] 본문

OS/Fundamental

[Unix/Linux] Ubuntu SSH 접근 할 때 한글 깨짐 현상 처리 방법[ PuTTY, Nabi ]

EstenPark 2009. 5. 21. 19:56
1.서버 설정 내역

1) sudo apt-get install nabi ( nabi 설치 )

2) locale-gen ko_KR.UTF-8

3) /etc/environment 환경 설정
 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
LANGUAGE="ko_KR:ko:en_GB:en"
LANG="ko_KR.UTF-8"
#LANG="ko_KR.EUC-KR"


4) /etc/profile 환경 설정
 LANG="ko_KR.UFT-8"

5) root - /root/.profile 환경 설정
 #LANG=C
 #LANGUAGE=C

6) vi .gnomerc 환경 설정
export LANG=ko_KR.UTF-8
export LC_ALL=ko_KR.UTF-8
export XMODIFIERS="@im=nabi"
export GTK_IM_MODULE=hangul3f
export GDK_USE_XFT=1
nabi &

7) sudo dpkg-reconfigure locales
    - 패키지 확인

2.SSH PuTTY 설정 방법

1) PuTTY Configuration(창) -> Window -> Translation 설정
Received data assumed to be in which character set
UTF-8


Comments