Ubuntu 에서 추가 글꼴 설정하기.
[#1] 폰트 다운로드
- 나눔고딕 font
- Monaco font download
[#2] Font 설정
sudo mkdir /usr/share/fonts/truetype/custom/
sudo cp *.ttf /usr/share/fonts/truetype/custom/
sudo fc-cache -f -v
Ubuntu 11.04 에서는 antialias true 로 enable 되어 있어서 추가로 설정하지 않아도 되는듯…
[#3] 적용
[#4] Emacs 에서 monaco font 설정
다른 글을 보니깐 아래와 같이 하면 된다고 하던데…
echo “Emacs.font: Monaco-10″ > ~/.Xresources
xrdb -merge ~/.Xresources
잘 안 되는 듯 하여, emacs configuration file 에 font 설정하도록 추가.
덕분에 gitHub 사용법 좀더 찾아보고 https://github.com/tkhwang/tkhwang-dotemacs 에도 update 완료.
(if (eq system-type 'gnu/linux) (progn (setq initial-frame-alist '((top . 10) (left . 100))) (setq default-frame-alist (append '( (font . "-*-Monaco-normal-normal-normal-*-13-*-*-*-m-0-iso10646-1") (width . 140) (height . 80) ) default-frame-alist))))
출처 : http://tkhwang.pe.kr/humblecoding/archives/680
'Embedded Lab > linux, x86' 카테고리의 다른 글
[우분투 10.10 maveric apt-get update 에러] (0) | 2014.05.04 |
---|---|
[ln 명령어] (0) | 2014.02.06 |
[특수문자표] (0) | 2013.11.04 |
[GFS(Google File System)] (0) | 2013.10.28 |
[top 명령어] (0) | 2013.10.23 |