Linux命令man文档改为中文

2021/12/5 7:16:40

本文主要是介绍Linux命令man文档改为中文,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

 

yum -y install wget
wget  https://src.fedoraproject.org/repo/pkgs/man-pages-zh-CN/manpages-zh-1.5.1.tar.gz/13275fd039de8788b15151c896150bc4/manpages-zh-1.5.1.tar.gz
tar -xvf manpages-zh-1.5.1.tar.gz
cd manpages-zh-1.5.1
./configure --disable-zhtw
make && make install
echo "alias cman='man -M /usr/local/share/man/zh_CN'" > /etc/profile.d/cman.sh
source /etc/profile.d/cman.sh
yum -y install kde-l10n-Chinese
LANG="zh_CN.UTF-8"
echo ""  >> /etc/locale.conf
echo "LANG=zh_CN.UTF8"  >> /etc/locale.conf
man ls

 



这篇关于Linux命令man文档改为中文的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程