Learning it students know that Linux is a good thing, but beginners often because too many commands feel headache, more headache is all the help documents are English. In fact, Linux is strong, it is its powerful command line, so complicated commands to a level six below the English level of the students to see is really a very cruel thing, and even greatly dispel the enthusiasm of many students to learn Linux.
This article provides a simple way for the poor English Linux beginners to turn man help information into Chinese.
Steps
- Download the Open source man-pages Chinese Brochure Package
- Configure Unpacking Manual Package
- Installation Test Chinese Manual
Download the Open source man-pages Chinese Brochure Package
Address: https://manpages-zh.googlecode.com/files/manpages-zh-1.5.1.tar.gz
Command-line wget
download by command
wget https://manpages-zh.googlecode.com/files/manpages-zh-1.5.1.tar.gz
Configure Unpacking Manual Package
- Set the locale to Chinese
To view native locales:
echo $LANG
If not zh_CN.utf8
, export LANG=zh_CN.utf8
set by command
If the set command execution is unsuccessful, you can run locale -a
the view system supported character set
- Unzip the installation package below:
tar -zxvf manpages-zh-1.5.1.tar.gz
Go to unzip directory:
cd manpages-zh-1.5.1
Installation
Execute the following command sequentially
./configure --disable-zhtw
If you need to install the traditional characters, run directly ./configure
. But that would require installing the package, which zh-autoconvert
is Debian's Deb package, which is cumbersome to install on other operating systems.
make
make install
If the command executes successfully, then congratulations, Chinese help install successfully.
Test
man find
Can see the help information of Chinese
Resources
- Http://www.cnblogs.com/chengmo/archive/2010/10/27/1862553.html
- Http://blog.163.com/[email protected]/blog/static/605114812012625166231/
Linux Build man Chinese help manual