Skip to content

Instantly share code, notes, and snippets.

@tiglek
Last active August 15, 2023 08:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save tiglek/a9ea9d886b4896e18538acdead7c6a08 to your computer and use it in GitHub Desktop.
Save tiglek/a9ea9d886b4896e18538acdead7c6a08 to your computer and use it in GitHub Desktop.
Ubuntu 한글 글꼴 설치

네이버 나눔 글꼴(https://zetawiki.com/wiki/%EB%82%98%EB%88%94%EA%B8%80%EA%BC%B4)

Download and Install

# download and extract font files(.ttf)
wget http://cdn.naver.com/naver/NanumFont/fontfiles/NanumFont_TTF_ALL.zip
wget https://github.com/naver/nanumfont/releases/download/VER2.5/NanumGothicCoding-2.5.zip
unzip NanumFont_TTF_ALL.zip
unzip NanumGothicCoding-2.5.zip

# install system-wide (or ~/.local/share/fonts for user-wide)
sudo mkdir -p /usr/share/fonts/truetype/nanum-gothic
sudo mv *.ttf /usr/share/fonts/truetype/nanum-gothic

# check
fc-list | grep -i nanum

/usr/share/fonts/truetype/nanum-gothic/NanumPen.ttf: 나눔손글씨 펜,Nanum Pen Script:style=Regular
/usr/share/fonts/truetype/nanum-gothic/NanumGothicCoding-Bold.ttf: 나눔고딕코딩,NanumGothicCoding:style=Bold
/usr/share/fonts/truetype/nanum-gothic/NanumGothicExtraBold.ttf: 나눔고딕,NanumGothic,NanumGothicExtraBold,나눔고딕 ExtraBold:style=Bold,ExtraBold,Regular
/usr/share/fonts/truetype/nanum-gothic/NanumMyeongjoBold.ttf: 나눔명조,NanumMyeongjo:style=Bold
/usr/share/fonts/truetype/nanum-gothic/NanumGothicCoding.ttf: 나눔고딕코딩,NanumGothicCoding:style=Regular
/usr/share/fonts/truetype/nanum-gothic/NanumBrush.ttf: 나눔손글씨 붓,Nanum Brush Script:style=Regular
/usr/share/fonts/truetype/nanum-gothic/NanumGothicBold.ttf: 나눔고딕,NanumGothic:style=Bold
/usr/share/fonts/truetype/nanum-gothic/NanumMyeongjo.ttf: 나눔명조,NanumMyeongjo:style=Regular
/usr/share/fonts/truetype/nanum-gothic/NanumGothic.ttf: 나눔고딕,NanumGothic:style=Regular
/usr/share/fonts/truetype/nanum-gothic/NanumMyeongjoExtraBold.ttf: 나눔명조,NanumMyeongjo,NanumMyeongjoExtraBold,나눔명조 ExtraBold:style=ExtraBold,Regular

Download URL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment