1. 한글 관련 패키지 인스톨 명령어를 실행합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
$ sudo apt-get install language-pack-ko
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libllvm4.0
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  language-pack-ko-base
The following NEW packages will be installed:
  language-pack-ko language-pack-ko-base
0 upgraded, 2 newly installed, 0 to remove and 67 not upgraded.
Need to get 832 kB of archives.
After this operation, 3,580 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 language-pack-ko-base all 1:16.04+20160627 [830 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 language-pack-ko all 1:16.04+20160627 [1,828 B]
Fetched 832 kB in 1s (656 kB/s)
Selecting previously unselected package language-pack-ko-base.
(Reading database ... 130187 files and directories currently installed.)
Preparing to unpack .../language-pack-ko-base_1%3a16.04+20160627_all.deb ...
Unpacking language-pack-ko-base (1:16.04+20160627) ...
Selecting previously unselected package language-pack-ko.
Preparing to unpack .../language-pack-ko_1%3a16.04+20160627_all.deb ...
Unpacking language-pack-ko (1:16.04+20160627) ...
Setting up language-pack-ko (1:16.04+20160627) ...
Setting up language-pack-ko-base (1:16.04+20160627) ...
Generating locales (this might take a while)...
  ko_KR.UTF-8... done
Generation complete.
 
cs



2. 한글 관련 패키지 인스톨 명령어를 실행합니다.

1
2
3
4
5
6
7
8
9
10
11
$ sudo apt-get install language-pack-ko-base
Reading package lists... Done
Building dependency tree
Reading state information... Done
language-pack-ko-base is already the newest version (1:16.04+20160627).
language-pack-ko-base set to manually installed.
The following package was automatically installed and is no longer required:
  libllvm4.0
Use 'sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 67 not upgraded.
 
cs



3. 환경 변수를 추가 및 등록

 3-1. environment 편집

1
2
$ sudo vi /etc/environment
 
cs


 3-2. 하단에 이하의 내용을 추가

1
2
3
4
LANG="ko_KR.UTF-8"
LANG="ko_KR.EUC-KR"
LANGUAGE="ko_KR:ko:en_GB:en"
 
cs


 3-3. 변경된 내용을 적용

1
2
$ source /etc/environment
 
cs



+ Recent posts