ubuntu添加中文字体

1239 查看

查看系统类型

cat /proc/version

查看中文字体

fc-list :lang=zh-cn

安装字体

apt-get install -y --force-yes --no-install-recommends fonts-wqy-microhei

apt-get install -y --force-yes --no-install-recommends ttf-wqy-zenhei

docker


FROM java:8

VOLUME /tmp

RUN apt-get update \

    && apt-get install -y --force-yes --no-install-recommends \

        fonts-wqy-microhei \

        ttf-wqy-zenhei

参考