Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ssh
- resource
- xargs
- lsof
- 네트워크
- port
- Mac
- IntelliJ
- tomcat
- maVen
- web.xml
- Windows
- Eclipse
- grep
- netsh
- vscode
- 줄바꿈 문자
- VirtualBox
- GIT
- import
- Windows 10
- bash
- 단축키
- Quartz
- context
- Source
- profile
- find
- plugin
- JavaScript
Archives
- Today
- Total
develog
[linux] 리눅스 서버에 폰트 설치하기 본문
# 폰트 위치
/usr/share/fonts
# 폰트 설치
# /usr/share/fonts 하위 아무 곳이나 설치
/usr/share/fonts/truetype/nanum-ttf
/usr/share/fonts/opentype/nanum-otf
/usr/share/fonts/_custom/nanum-ttf
/usr/share/fonts/_custom/nanum-otf
# 폰트 캐시 갱신
sudo fc-cache -fv
# 폰트 목록 보기
fc-list | grep -i 'nanum'
fc-list :lang=ko
# 시스템 전체 폰트 설치 경로
/usr/share/fonts/
/usr/local/share/fonts/
# 사용자 전용 폰트 설치 경로
~/.fonts/
~/.local/share/fonts/
Comments