from http://ihoney.pe.kr/entry/%EC%9A%B0%EB%B6%84%ED%88%AC-%ED%95%9C%EA%B8%80%ED%8F%B0%ED%8A%B8-%EC%84%A4%EC%B9%98-%EB%B0%8F-%EC%95%88%ED%8B%B0%EC%96%BC%EB%A6%AC%EC%96%B4%EC%8B%B1-%EC%A0%81%EC%9A%A9%EB%B2%95 우분투 9.10 버전을 어렵게 어렵게 설치를 한 후, 어색한 폰트들 대신 익숙한 나눔폰트 계열로 수정하려고 하다가 이렇게 기록으로 남긴다. 다른 사람 블로그 찾아다니는 것이 귀찮은 게 가장 크다고 할까? ^^;; # sudo nautilus 명령실행하여 root 권한을 가진 노틸러스를 실행시킨다. # /usr/share/fonts/trutype 로 이동 하여 폴더를 생성한다. 생성된 폴더에 원하는 폰트들을 넣는다. 그런 후 터미널에서 # sudo -s passwd 입력 # fc-cache -f -v 폰트 리스트 점검을 하는 과정이 완료되고 난 후에 우분투 폰트 리스트에 해당하는 폰트들이 추가가 되었음을 확인해볼 수 있다. 우분투에서는 안티앨리어싱을 끄도록 설정이 되어 있기 때문에, 새로 추가된 폰트들을 넣을 경우 계단지어지고 깨지는 어색한 모습을 볼 수 있다. 폰트와 관련된 안티앨리어싱을 끄도록 하자. 터미널에서 아래의 명령어를 실행한다. # sudo gedit /etc/fonts/conf.d/29-language-selector-ko-kr.conf 열린 gedit 의 내용 중에서 아래 항목을 찾아 <match target~ 부분을 주석처리(<!-- -->로 막는다. <!-- Turn off antialias and autohint for Korean fonts depending on pixelsize --> <!-- <match target="font"> <test name="lang" compare="contains"> <string>ko</string> </test> <test name="pixelsize" compare="more"> <int>10</int> </test> <test name="pixelsize" compare="less"> <int>22</int> </test> <edit name="antialias" mode="assign"> <bool>false</bool> </edit> <edit name="autohint" mode="assign"> <bool>false</bool> </edit> <edit name="hintstyle" mode="assign"> <const>hintmedium</const> </edit> </match> --> 다음 항목 을 찾아 마찬가지로 주석처리한다. <!-- Turn off antialias and autohint for ttf-alee depending on pixelsize --> <!-- <match target="font"> <test name="family"> <string>Guseul</string> </test> <edit name="autohint" mode="assign"> <bool>true</bool> </edit> </match> <match target="font"> <test name="family"> <string>Guseul</string> <string>Guseul Mono</string> </test> <test name="pixelsize" compare="more"> <int>11</int> </test> <test name="pixelsize" compare="less"> <int>16</int> </test> <edit name="antialias" mode="assign"> <bool>false</bool> </edit> <edit name="autohint" mode="assign"> <bool>false</bool> </edit> </match> --> ※ 이 옵션은 저 파일을 삭제하는 것과 동일하므로, 차라리 저 파일을 삭제하는 것도 괜찮다. Alt + F2 하신 다음, gksu rm /etc/fonts/conf.d/29-language-selector-ko-kr.conf |
'IT > Unix&Linux' 카테고리의 다른 글
albert ... like alfred (0) | 2015.05.25 |
---|---|
리눅스(exfat 파티션) 실제 용량 맞추기 정상화... 사이즈 (0) | 2014.07.19 |
ubuntu xserver restart... 우분투 xserver 리스타트 (0) | 2012.08.14 |
우분투.. 리눅스에서 Sublime Text 한글 입력법... (0) | 2012.08.13 |
우분투 업데이트 업그레이드 (0) | 2012.07.11 |