Linux - man 中文手册
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux - man 中文手册相关的知识,希望对你有一定的参考价值。
Debian/ubuntu 1、安装中文man
apt-get install manpages-zh # Debian/ubuntu
2、给中文man手册取一个别名
echo "alias cman=man -M /usr/share/man/zh_CN" >> ~/.bashrc
3、使配置生效
source ~/.bashrc
Centos/Redhat 1、下载源代码
wget https://src.fedoraproject.org/repo/pkgs/man-pages-zh-CN/v1.5.2.tar.gz/1bbdc4f32272df0b95146518b27bf4be/v1.5.2.tar.gz
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
2、解压源代码编译安装
tar zxvf manpages-zh-1.5.1.tar.gz
cd manpages-zh-1.5.1/
./configure --disable-zhtw --prefix=/usr/local/zhman
make && make install
4、给中文man手册取一个别名
echo "alias cman=man -M /usr/local/zhman/share/man/zh_CN " >>.bash_profile
5、使配置生效
source .bash_profile
以上是关于Linux - man 中文手册的主要内容,如果未能解决你的问题,请参考以下文章