CentOS7 安装中文帮助手册

1.首先确定系统安装中文字体否

locale

LANG=zh_CN.UTF8
LC_CTYPE="zh_CN.UTF8"
LC_NUMERIC="zh_CN.UTF8"
LC_TIME="zh_CN.UTF8"
LC_COLLATE="zh_CN.UTF8"
LC_MONETARY="zh_CN.UTF8"
LC_MESSAGES="zh_CN.UTF8"
LC_PAPER="zh_CN.UTF8"
LC_NAME="zh_CN.UTF8"
LC_ADDRESS="zh_CN.UTF8"
LC_TELEPHONE="zh_CN.UTF8"
LC_MEASUREMENT="zh_CN.UTF8"
LC_IDENTIFICATION="zh_CN.UTF8"
LC_ALL=

备注:如果显示是英文的 请修改为中文

[root@localhost ~]# LANG=zh_CN.UTF8

2.rpm安装中文帮助手册

挂在光盘 将man-pages-zh-CN-1.5.2-4.el7.noarch.rpm拷贝到本机

 [root@localhost ~]# mount -t iso9660 /dev/cdrom /mnt
 [root@localhost ~]# cd /mnt
 [root@localhost ~]# cp man-pages-zh-CN-1.5.2-4.el7.noarch.rpm ~ 
 [root@localhost ~]# cd ~
 [root@localhost ~]# rpm -ivh man-pages-zh-CN-1.5.2-4.el7.noarch.rpm
  1. [root@localhost ~]# vi ~/.bashrc
   [root@localhost ~]# alias cman='man -M /usr/share/man/zh_CN/'

默认rpm安装路径为/usr/share/man/zh_CN/

  1. 编辑LANG为中文
  [root@localhost ~]#  vi /etc/locale.conf
  
    LANG="zh_CN.UTF-8"

推荐方法二

yum过滤查询中文是否安装

[root@localhost ~]# yum list | grep man.*zh
man-pages-zh-CN.noarch 1.5.2-4.el7 base

未安装就使用yum安装

[root@localhost ~]# yum -y install man-pages-zh-CN.noarch

编辑对应配置文件

[root@localhost ~]# vi .bashrc
[root@localhost ~]# alias cman=‘man -M /usr/share/man/zh_CN‘

使之生效

[root@localhost ~]# source .bashrc

测试查看

[root@localhost ~]# cman ls

你可能感兴趣的:(LINUX)