一,、安裝中文版man
官方下載地址:https://code.google.com/archive/p/manpages-zh/
GITHUB項(xiàng)目地址:https://github.com/man-pages-zh/manpages-zh
安裝方法一
1,、Debian / Ubuntu安裝
sudo apt update
sudo apt install manpages-zh
2、Arch Linux:
pacman -Syu
pacman -S man-pages-zh_cn man-pages-zh_tw
3,、Red Hat / CentOS:
yum update
yum install man-pages-zh-CN
4,、Fedora:
dnf update
dnf install man-pages-zh-CN
安裝方法二
源碼網(wǎng)址 https://src./repo/pkgs/man-pages-zh-CN/
1、獲取安裝包
[root@localhost opt]# wget https:
2,、解壓并安裝
[root@localhost opt]# tar xf manpages-zh-1.5.1.tar.gz
[root@localhost opt]
[root@localhost manpages-zh-1.5.1]# ./configure --disable-zhtw --prefix=/usr/local/zhman
[root@localhost manpages-zh-1.5.1]# make && make install
3,、 為了不覆蓋man,我們新建cman命令作為中文查詢
[root@localhost man1]
[root@localhost ~]
[root@localhost ~]
4.使用我們新建的中文cman查詢命令
[root@localhost ~] 默認(rèn)語(yǔ)言修改成中文
vim /etc/locale.conf
#打開這個(gè)配置文件
LANG="zh_CN.UTF-8"
LANGUAGE="zh_CN.GB18030:zh_CN.GB2312:zh_CN"
SUPPORTED="zh_CN.UTF-8:zh_CN:zh:en_US.UTF-8:en_US:en"
SYSFONT="lat0-sun16"
|