首先修改系統(tǒng)配置文件/etc/locale.conf(低版本對應文件為 /etc/sysconfig/i18n)內(nèi)容為 LANG="zh_CN.UTF-8" 保存退出,重啟linux。
點擊下載中文man源碼包 (鏈接如果失效可以下載附件文件)
把解壓出來的manpages-zh-1.5.2.tar.bz2上傳到服務器上。
解壓:
gz解包命令: tar -zxvf
bz2解包命令:tar -jxvf
[root@VM_13_60_centos tmp]# tar -jxvf manpages-zh-1.5.2.tar.bz2
manpages-zh-1.5.2/
manpages-zh-1.5.2/missing
manpages-zh-1.5.2/COPYING
manpages-zh-1.5.2/Makefile.in
manpages-zh-1.5.2/ChangeLog
manpages-zh-1.5.2/src/
manpages-zh-1.5.2/src/mann/
...
通過$?查看命令執(zhí)行結(jié)果,0則成功
#echo $? (0則成功)
[root@VM_13_60_centos tmp]# echo $?
0
進入manpages-zh-1.5.2目錄并執(zhí)行 ./configure --prefix=/usr/local/zhman --disable-zhtw
[root@VM_13_60_centos tmp]# cd /tmp/manpages-zh-1.5.2/
[root@VM_13_60_centos manpages-zh-1.5.2]# ls
aclocal.m4 AUTHORS ChangeLog configure configure.in COPYING DOCS INSTALL install-sh Makefile.am Makefile.in missing NEWS README src utils
[root@VM_13_60_centos manpages-zh-1.5.2]# ./configure --prefix=/usr/local/zhman --disable-zhtw
#make make install (沒安裝make工具的請yum或apt)
家目錄下創(chuàng)建 .bash_profile 文件 (粘貼alias cman='man -M /usr/local/zhman/share/man/zh_CN' 保存)
#source .bash_profile(為了讓剛剛添加的alias生效)
測試中文man:
# cman ln