linux 设置中文版man手册

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 设置中文版man手册相关的知识,希望对你有一定的参考价值。

参考技术A 操作系统为centos7

cd ~
vi .bash_profile

alias cman='man -M /usr/local/share/man/zh_CN'
source .bash_profile #更新bash_profile 使其生效

Linux之man手册汉化

1.下载中文man手册:
wget https://src.fedoraproject.org/repo/pkgs/man-pages-zh-CN/manpages-zh-1.5.2.tar.bz2/cab232c7bb49b214c2f7ee44f7f35900/manpages-zh-1.5.2.tar.bz2

2.下载解压man手册所要用到的依赖:
yum install bzip2

3.解压包:
tar -jxvf manpages-zh-1.5.2.tar.bz2

4.设置编译参数:
./configure --disable-zhtw

5.编译安装:
make && make install

6.为了同时保留英文的man,所以我们这里重新建一个cman命令作为中文查询
vim /root/.bashrc

7.在.bashrc文件中增加:
alias cman=‘man -M /usr/local/share/man/zh_CN‘

8.更新.bashrc使其生效:
source /root/.bashrc

以上是关于linux 设置中文版man手册的主要内容,如果未能解决你的问题,请参考以下文章

如何把Linux中的中文man手册变回英文版

Linux设置中文man手册

linux安装man中文手册并保留英文man手册

Linux - man 中文手册

Linux 下 man 手册显示中文

Linux man手册的基本组成和使用方法