Linux之man命令详解及中文汉化
程序员文章站
2022-07-02 21:50:43
一、安装中文版man 官方下载地址:https://code.google.com/archive/p/manpages-zh/ GITHUB项目地址:https://github.com/man-pages-zh/manpages-zh 安装方法一 1、Debian / Ubuntu安装 sudo ......
一、安装中文版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/repo/pkgs/man-pages-zh-cn/manpages-zh-1.5.1.tar.gz/13275fd039de8788b15151c896150bc4/manpages-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"