Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

zhcon(1) [debian man page]

ZHCON(1)							    User Manual 							  ZHCON(1)

NAME
zhcon - fast CJK console environment for GNU/Linux and BSD SYNOPSIS
zhcon [OPTIONS]... [FILES]... DESCRIPTION
Zhcon is a fast Linux console system which supports framebuffer device. It can display Chinese, Japanese and Korean double byte characters. Supported encodings are: GB2312, GBK, BIG5, JIS and KSC. It can also use input methods (table based) from MS pwin98 and UCDOS for MS-DOS. -h, --help Print help and exit -V, --version Print version and exit --utf8 use iconv filter to convert UTF-8 stream from/to system encoding (default=off) --drv=STRING specify video driver (auto, fb, ggi, vga) (default=`auto') If a program name is given as a command line argument, zhcon will run this program on start instead of a shell, and quit when the program exits. For example: zhcon screen will run screen in zhcon insteal of default user shell. CONFIGURATION FILE
On startup, zhcon first try to load configuration from ~/.zhconrc. If failed, it will use /etc/zhcon.conf by default. The configure file has many options that can be used to control the behavior of zhcon. See the comments in the file for instruction on customizing zhcon. KEY SUMMAY
CTRL_ALT_H: active online help ALT_SPACE: open/close CJK mode CTRL_SPACE: open/close input method ALT_SPACE: show/hide input bar CTRL_,: toggle Full/Half char mode CTRL_.: toggle Chinese symbol CTRL_F1: set encode to GB2312 CTRL_F2: set encode to GBK CTRL_F3: set encode to BIG5 CTRL_F4: set encode to JIS CTRL_F5: set encode to KSCM CTRL_F7: toggle between nativebar and overspot input style CTRL_F9: toggle GB2312/BIG5 auto-detect mode CTRL_F10: menu mode CTRL_ALT_1 - CTRL_ALT_9: switch to input method 1 to 9 CTRL_ALT_0: English mode History mode keys: SHIFT_PAGEUP: scroll up half screen in history SHIFT_PAGEDOWN: scroll down half screen in history SHIFT_ARROWUP: scroll up one line in history SHIFT_ARROWDOWN: scroll down one in history SEE ALSO
/usr/share/doc/zhcon/README.gz, /usr/share/doc/zhcon/manual.ps.gz. AUTHORS
ejoy <ejoy@users.sourceforge.net> Hu Yong <ccpaging@etang.com> Rick Lei <rick@chinaren.com> This manual page was written by Aron Xu <happyaron.xu@gmail.com>, for the Debian project (and may be used by others). Fast CJK console environment June 2011 ZHCON(1)

Check Out this Related Man Page

Encode::CN(3pm) 					 Perl Programmers Reference Guide					   Encode::CN(3pm)

NAME
Encode::CN - China-based Chinese Encodings SYNOPSIS
use Encode qw/encode decode/; $euc_cn = encode("euc-cn", $utf8); # loads Encode::CN implicitly $utf8 = decode("euc-cn", $euc_cn); # ditto DESCRIPTION
This module implements China-based Chinese charset encodings. Encodings supported are as follows. Canonical Alias Description -------------------------------------------------------------------- euc-cn /euc.*cn$/i EUC (Extended Unix Character) /cn.*euc$/i /GB[-_ ]?2312(?:D.*$|$)/i (see below) gb2312-raw The raw (low-bit) GB2312 character map gb12345-raw Traditional chinese counterpart to GB2312 (raw) iso-ir-165 GB2312 + GB6345 + GB8565 + additions MacChineseSimp GB2312 + Apple Additions cp936 Code Page 936, also known as GBK (Extended GuoBiao) hz 7-bit escaped GB2312 encoding -------------------------------------------------------------------- To find how to use this module in detail, see Encode. NOTES
Due to size concerns, "GB 18030" (an extension to "GBK") is distributed separately on CPAN, under the name Encode::HanExtra. That module also contains extra Taiwan-based encodings. BUGS
When you see "charset=gb2312" on mails and web pages, they really mean "euc-cn" encodings. To fix that, "gb2312" is aliased to "euc-cn". Use "gb2312-raw" when you really mean it. The ASCII region (0x00-0x7f) is preserved for all encodings, even though this conflicts with mappings by the Unicode Consortium. See <http://www.debian.or.jp/~kubota/unicode-symbols.html.en> to find out why it is implemented that way. SEE ALSO
Encode perl v5.8.0 2002-06-01 Encode::CN(3pm)
Man Page