Simplified Chinese Solaris User's Guide

Chapter 7 Configuring a Simplified Chinese Solaris System

You can use the procedures this chapter to set a system-wide default locale or to add a new locale from the Solaris DVD and CD media. You also change the font path set by the Xsession script included in the Simplified Chinese Solaris Operating System. The following sections are included in this chapter.

Setting the Default Locale

You can make a system-wide change to the default locale with the following procedure.

How to Set the Default Locale

  1. Become superuser.

  2. Edit the /etc/default/init file.

  3. Add or update the LANG variable with the appropriate locale.


    LANG=locale
    

    You can set the LANG variable with one of the following locales: zh, zh.GBK, zh_CN.GB18030, zh.UTF-8

  4. Instruct all users to exit CDE.

  5. Kill the dtconfig process.


    # /usr/dt/bin/dtconfig -kill
    
  6. Reboot the system.


    # reboot
    

Using Aliases to Set the Locale

You can use aliases to change locales in a terminal window without typing long command lines or editing your .dtlogin file and running source every time.

How to Set Locale Aliases for the Korn Shell

  1. Put aliases such as the following in your .profile file.


    alias chn "export LANG=zh; /bin/stty cs8 -istrip defeucw"
    alias chn_GBK "export LANG=zh.GBK; /bin/stty cs8 -istrip \defeucw"
    alias asc "export LANG=C; /bin/stty cs7 istrip defeucw"
    alias chn "export LANG=zh; /bin/stty cs8 -istrip defeucw"

How to Set Locale Aliases for the C Shell

  1. Put aliases such as the following in your .cshrc file.


    alias chn_EUC "setenv LANG zh; /bin/stty cs8 -istrip defeucw"
    alias chn_GBK "setenv LANG zh.GBK; /bin/stty cs8 -istrip \defeucw"
    alias asc "setenv LANG C; /bin/stty cs7 istrip defeucw"
    alias chn_UTF-8 "setenv LANG=zh.UTF-8; /bin/stty cs8 -istrip defeucw"