2016년 4월 14일 목요일

Ubuntu SSH sever Hangul(unicode) Setting, - 우분투 SSH 한글깨짐 해결

Ubuntu SSH sever Hangul(unicode) Setting.

1. check current locale by typing locale in terminal.

gray@csh-ubuntu:~$ locale
LANG=en_US.UTF-8
LANGUAGE=en_US
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=en_US.UTF-8
gray@csh-ubuntu:~$

2. Set locale value as UTF-8. ( such as, 'en_US.UTF-8') except LANGUAGE value.

3. if LC_ALL=  is empty fill it with en_US.UTF-8 ( use "export LC_ALL=en_US.UTF-8" command in a terminal)

4. Adding 'export LC_ALL=en_US.UTF-8' in ~/.bashrc.

5. restart ssh by using command 'sudo service ssh restart'






sublime close without confirmation

  Close without confirm   Yes, you can just write a plugin to set the view as scratch and close it. Then create a keybinding for that c...