Amazon Linux WorkSpaces에서 기본 글꼴을 Noto로 설정

Amazon WorkSpaces(Amazon Linux 2)에서 기본 글꼴(sans-serif, serif, monospace)을 Google Noto 글꼴로 설정했습니다. Amazon Linux라고 해서, 순서에 어떠한 차이는 없었습니다만, 일단 비망록으로서 남겨 둡니다.

글꼴 다운로드



Google Noto Fonts 사이트 에서 다음 글꼴(zip 파일)을 다운로드합니다.
  • Noto Sans CJK KR 1
  • Noto Serif CJK KR

  • 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 로 재설정하고 있습니다.

    참고


  • How to install fonts



  • yum의 리포지토리에도 있었습니다만, 이번은 공식 사이트로부터 다운로드합니다.

    좋은 웹페이지 즐겨찾기