1) 한글설치
[shell]$sudo locale-gen ko_KR.UTF-8[/shell]
2) /etc/environment 파일 편집
[shell]$sudo vi /etc/environment[/shell]
[plain]LANG=”ko_KR.UTF-8″ <– 추가[/plain]
3) /etc/profile 파일 편집
[shell]$sudo vi /etc/profile[/shell]
[plain]LANG=”ko_KR.UTF-8″<–추가[/plain]
4) 사용자(여기서는 root)의 프로파일(/root/.profile) 편집
[shell]$sudo vi /root/.profile[/shell]
[plain]# LANG=C <– 주석처리
LANGUAGE=C[/plain]
위의 두 곳을 주석처리(#)
You must log in to post a comment.