ubuntu添加中文字体

查看系统类型 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 tt

查看系统类型

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

参考

  1. dorowu/ubuntu-desktop-lxde-vnc

  2. 软件包: fonts-wqy-zenhei (0.9.45-5ubuntu1)

关键字:ubuntu, docker