(Linux) Linux에서 글꼴을 추가하는 방법

Linux에서 글꼴을 추가하는 방법

1. 폰트 파일 다운로드

추가할 글꼴 파일을 다운로드합니다.

대부분의 글꼴 파일에는 .ttf 또는 .otf 확장자가 있습니다.

2. 폰트 파일 복사

글꼴 파일을 /usr/share/fonts 디렉토리 또는 글꼴 유형에 적합한 디렉토리에 복사합니다.

예를 들어 TrueType 글꼴의 경우 /usr/share/fonts/truetype 디렉토리에 복사합니다.

OpenType 글꼴의 경우 /usr/share/fonts/opentype 디렉토리에 복사하십시오.

복사할 때 파일 권한을 변경해야 할 수도 있습니다.

다음 명령을 사용하여 파일 권한을 변경할 수 있습니다.

sudo chmod 644 fontfile.ttf

3. 새로운 글꼴 캐시

글꼴을 추가했지만 Linux에서 인식하지 못할 수 있습니다.

따라서 글꼴 캐시를 업데이트해야 합니다.

sudo fc-cache -fv

4. 폰트 확인

글꼴이 올바르게 설치되었는지 확인하려면 다음을 실행하여 설치된 글꼴 목록을 볼 수 있습니다.

fc-list

설치된 글꼴 목록에서 새로 추가된 글꼴을 확인할 수 있습니다.

이제 Linux에 새 글꼴을 추가할 수 있습니다.


글꼴 파일 저장

$ pwd
/usr/share/fonts
$ ls
DroidSansFallback.ttf

적용하다

  • /usr/share/fonts: 캐시, 새 캐시 내용: 글꼴 1개, 디렉토리 1개
$ fc-cache -fv
/usr/share/fonts: caching, new cache contents: 1 fonts, 1 dirs
/usr/share/fonts/un-core: caching, new cache contents: 12 fonts, 0 dirs
/usr/share/X11/fonts/Type1: skipping, no such directory
/usr/share/X11/fonts/TTF: skipping, no such directory
/usr/local/share/fonts: skipping, no such directory
/root/.fonts: skipping, no such directory
/var/cache/fontconfig: cleaning cache directory
/root/.fontconfig: not cleaning non-existent cache directory
fc-cache: succeeded

글꼴 확인

  • Droid Sans 폴백: 스타일=일반
$ fc-list
Droid Sans Fallback:style=Regular
은 돋움,UnDotum:style=Regular
은 궁서,UnGungseo:style=Regular
은 그래픽,UnGraphic:style=Bold
은 바탕,UnBatang:style=Bold
은 디나루,UnDinaru:style=Bold,Light
은 필기,UnPilgi:style=Regular
은 디나루,UnDinaru:style=Regular
은 필기,UnPilgi:style=Bold
은 돋움,UnDotum:style=Bold
은 바탕,UnBatang:style=Regular
은 그래픽,UnGraphic:style=Regular
은 디나루,UnDinaru:style=Bold

yum install -y xorg-x11-font-utils ttmkfdir
mkfontscale
ttmkfdir

참조 URL

http://tend./96