Shell 终端支持显示中文日志
# shell 终端支持显示中文
# 检查当前采用的字符集
echo $LANG
# 检查本机是否存在中文字符集
locale -a |grep zh
如果发现结果中没有 zh_CN.utf8
,那就装一下字体包:
apt-get update && apt-get language-pack-zh-hans -no-install-recommends
# 修改系统采用的字符集
写入相关配置:
echo 'export LANG="zh_CN.UTF-8"' >> /etc/profile
这个命令的含义是将 export LANG="zh_CN.UTF-8"
这段追加到 /etc/profile
中。
然后执行一下 source /etc/profile
即可。
接下来你的终端就能正常显示中文了。
上次更新: 2023/11/25, 4:11:00