Amazon Linux WorkSpaces에서 기본 글꼴을 Noto로 설정
글꼴 다운로드
Google Noto Fonts 사이트 에서 다음 글꼴(zip 파일)을 다운로드합니다.
zip 파일 확장
다운로드한 zip 파일을 확장합니다.
여기에서는 zip 파일이 ~/Downloads 디렉토리에 있다고 가정합니다.
cd ~/Downloads
unzip NotoSansCJKjp-hinted.zip
unzip NotoSerifCJKjp-hinted.zip
LICENSE_OFL.txt 또는 README를 덮어 쓸지 묻을 때 선택 사항은 어느 것일 수 있습니다. (이 두 파일은 필요하지 않기 때문에.)
글꼴 복사
확장된 otf 파일을 시스템 디렉토리에 복사합니다.
sudo mkdir -p /usr/share/fonts/opentype/noto
sudo cp *.otf /usr/share/fonts/opentype/noto
sudo chmod 755 /usr/share/fonts/opentype/noto/*.otf
기본 글꼴을 Noto로 설정
다음 내용으로/etc/fonts/local.conf 파일을 만듭니다.
/etc/fonts/local.conf
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="pattern">
<test qual="any" name="family"><string>sans-serif</string></test>
<edit name="family" mode="prepend" binding="same"><string>Noto Sans CJK JP</string></edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>serif</string></test>
<edit name="family" mode="prepend" binding="same"><string>Noto Serif CJK JP</string></edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>monospace</string></test>
<edit name="family" mode="prepend" binding="same"><string>Noto Sans Mono CJK JP</string></edit>
</match>
</fontconfig>
설정 사용
sudo fc-cache -f
확인
fc-match "sans-serif"
fc-match "serif"
fc-match "monospace"
산출:
NotoSansCJKjp-Medium.otf: "Noto Sans CJK JP" "Medium"
NotoSerifCJKjp-Medium.otf: "Noto Serif CJK JP" "Medium"
NotoSansMonoCJKjp-Regular.otf: "Noto Sans Mono CJK JP" "Regular"
할 수있었습니다
덤
Noto를 기본값으로 설정하면 나에게 터미널 글꼴이 꽤 작습니다. 이 때문에, 나는 항상 폰트 사이즈를 11 pt 로 재설정하고 있습니다.
참고
yum의 리포지토리에도 있었습니다만, 이번은 공식 사이트로부터 다운로드합니다. ↩
Reference
이 문제에 관하여(Amazon Linux WorkSpaces에서 기본 글꼴을 Noto로 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mosop/items/c5ec8792988f6faeec71텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)