A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

一、安装中文版man
官方下载地址:https://code.google.com/archive/p/manpages-zh/      
GITHUB项目地址: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
安装方法二
源码网址 https://src.fedoraproject.org/repo/pkgs/man-pages-zh-CN/

1、获取安装包

[root@localhost opt]# wget  https://src.fedoraproject.org/re ... ges-zh-1.5.1.tar.gz
2、解压并安装

[root@localhost opt]# tar xf manpages-zh-1.5.1.tar.gz
[root@localhost opt]# cd manpages-zh-1.5.1/
[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]# cd ~
[root@localhost ~]# echo "alias cman='man -M /usr/local/zhman/share/man/zh_CN' " >>.bash_profile
[root@localhost ~]# source .bash_profile
4.使用我们新建的中文cman查询命令

[root@localhost ~]# cman ls

二、默认语言修改成中文
      vim /etc/locale.conf

     #打开这个配置文件

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"

1 个回复

倒序浏览
有问题欢迎添加小优:DKA-2018
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马