- 浏览: 794053 次
- 性别:
- 来自: 大连
文章分类
- 全部博客 (417)
- ASP.NET MVC (18)
- WEB基础 (24)
- 数据库 (69)
- iPhone (20)
- JQuery (3)
- Android (21)
- UML (8)
- C# (32)
- 移动技术 (19)
- 条码/RFID (6)
- MAC (8)
- VSS/SVN (6)
- 开卷有益 (4)
- 应用软件 (1)
- 软件工程 (1)
- java/Eclipse/tomcat (61)
- 英语学习 (2)
- 综合 (16)
- SharePoint (7)
- linux (42)
- Solaris/Unix (38)
- weblogic (12)
- c/c++ (42)
- 云 (1)
- sqlite (1)
- FTp (2)
- 项目管理 (2)
- webservice (1)
- apache (4)
- javascript (3)
- Spring/Struts/Mybatis/Hibernate (4)
- 航空业务 (1)
- 测试 (6)
- BPM (1)
最新评论
-
dashengkeji:
1a64f39292ebf4b4bed41d9d6b21ee7 ...
使用POI生成Excel文件,可以自动调整excel列宽等(转) -
zi_wu_xian:
PageOffice操作excel也可以设置表格的行高列宽,并 ...
使用POI生成Excel文件,可以自动调整excel列宽等(转) -
wanggang0321:
亲,我在pptx(office2007以上版本)转pdf的时候 ...
JODConverter]word转pdf心得分享(转) -
xiejanee:
楼主:你好!我想请问下 你在代码中用DOMDocument* ...
Xerces-C++学习之——查询修改XML文档 (转)
Solaris locale 设置分两种情况:Partial locale Full locale
前者,可以在特定的locale执行程序,不过显示的信息是英文的,所以就是部分locale。
后者,Full locale,全部显示的都是你特定选择的区域语言。
只安装software 的盘,就会出现前者的情况。
相关命令
如何管理locale信息
locale -a,显示安装的语言包信息
ls /usr/lib/locale,可以在该目录下查看有哪些语言包已经安装
locale -ck -decimal_point
修改locale
首先需要安装相应语言包然后vi /etc/TIMEZONE ,LANG=something
或localeadm
----------------------------
Locale
简单说就是一组「地区语言」的资讯。它包括了
LC_CTYPE: 字符定义
LC_MESSAGES: 讯息显示
LC_TIME: 时间显示格式
LC_NUMERIC: 数字显示格式
LC_MONETARY: 货币显示格式
LC_COLLATE: 字母顺序与字符串比较
其中,与一般使用者最有关系的,是 LC_CTYPE 与 LC_MESSAGES 。
LC_CTYPE 直接关系到某些字符或内码在目前的locale
下是否可印? 要如何转换? 对应到那一个字? .... 等等。
LC_MESSAGES 则关系到软体的讯息输出是什么样的语文。真正完整的locale
支持,是当我们在shell prompt下,直接设好环境变数,则我们马上就能切换到那个语言。
以上文字由Linux红联社区翻译自:IBM
Solaris
Locale
的设置方法如下
(1)查看当前locale
状态:
# locale
LANG=en_US
LC_CTYPE= "en_US"
LC_NUMERIC= "en_US"
LC_TIME= "en_US"
LC_COLLATE= "en_US"
LC_MONETARY= "en_US"
LC_MESSAGES= "en_US"
LC_ALL=en_US
(2)查看系统中已安装的语言包:
# locale
-a
(3)用户自定义locale
:
For: sh, ksh, bash
# LANG=C; export LANG
# LC_ALL=C; export LC_ALL
For: csh:
# setenv LANG C
# setenv LC_ALL
(4)或者编辑环境文件,只对当前用户有效:
$HOME/.profile or $HOME/.cshrc
或,更改系统默认的locale
,
修改文件:
vi /etc/default/init
example:
# Lines of this file should be of the form VAR=value, where VAR is one of
# TZ, LANG, or any of the LC_* environment variables.
LANG=C
LC_ALL=C
附录 :
You can change your system locale
on UNIX and Linux systems.
You can set environment variables to control the system locale
. You can set these variables to be system-wide, or on a per-session basis:
LC_ALL
Overrides all LC_* environment variables with the given value
LC_CTYPE
Character classification and case conversion
LC_COLLATE
Collation (sort) order
LC_TIME
Date and time formats
LC_NUMERIC
Non-monetary numeric formats
LC_MONETARY
Monetary formats
LC_MESSAGES
Formats of informative and diagnostic messages, and of interactive responses
LC_PAPER
Paper size
LC_NAME
Name formats
LC_ADDRESS
Address formats and location information
LC_TELEPHONE
Telephone number formats
LC_MEASUREMENT
Measurement units (Metric or Other)
LC_IDENTIFICATION
Metadata about the locale
information
LANG
The default value, which is used when either LC_ALL is not set, or an applicable value for LC_* is not set
NLSPATH
Delimited list of paths to search for message catalogs
TZ
Time zone
LC_MESSAGES
and NLSPATH are the most important variables to the broker. These
variables define the language and location of response messages that the
broker uses. The broker profile file, mqsiprofile, sets NLSPATH. Either
you, or your system must set LC_MESSAGES. The value set in LC_MESSAGES
must be a value that the broker recognizes. LC_CTYPE is also important
to the broker because it defines the character conversion that the
broker performs when interacting with the local environment.
If you use common desktop environment (CDE), use this environment to
set the locale
instead of setting LANG and LC_ALL directly. The NLSPATH
variable respects either method. Before setting the code page, check
that it is one of the Supported code pages.
For example, to set WebSphere® Message Broker to run in a UTF-8 environment set the following values in the profile:
LANG=en_US.utf-8
LC_ALL=en_US.utf-8
Where en_US sets the language, and utf-8 sets the code page.
发表评论
-
weblogic 发布webservice
2013-01-16 16:23 0将webservice打成war包,或者按war包展开的目录格 ... -
gcc/g++编译
2012-07-16 13:57 19731. gcc/g++在执行编译工作的时候,总共需要4步 ... -
如何查看solaris操作系统的版本号
2012-07-10 17:44 3878如何查看solaris操作系统的版本号 我知道的有下面 ... -
solaris10中U盘的使用方法
2012-07-10 15:50 4306一般情况下U 盘插上去都可以自动识别,如果不能自动识别 ... -
solaris studio官方文档
2012-07-10 11:35 938Oracle Solaris Studio 12.3 Info ... -
在Solaris 10上安装和使用中文输入法 (转)
2012-07-09 14:22 12961, 安装 Open Solaris 11 添加中文包和中文 ... -
给solaris10安装语言包
2012-07-09 09:48 3130增加zh_TW语言包 把solaris10的光盘 mount ... -
solaris10设置IP
2012-07-06 16:40 1131设置IP 假设要将IP 设置为192.168.1 ... -
isainfo 以及 虚拟机等
2012-07-06 14:47 0如何启动Solaris 32-bit/64-bit内核 对 ... -
在solaris操作系统下使用Oracle10.1g廋客户端
2012-07-06 10:17 1524转自:http://blog.csdn.net/l ... -
more 命令 用于分屏显示
2012-07-04 14:45 1225more 命令 用于分屏显示 原文链 ... -
Weblogic 10.3.5在64位Windows系统下的安装和配置
2012-07-02 16:56 2455今天, 笔者将向大家介绍Oracle Weblogic 10. ... -
dtlogin
2012-06-29 16:46 2034Solaris 桌面登录详解 2007-12-13 1 ... -
solaris 10系统上架构phpwind论坛环境(转)
2012-06-21 16:54 1798前提:solaris 已经安装 ... -
cat用法
2012-06-21 09:45 1025cat主要有三大功能: 1.一次显示整个文件。$ cat ... -
Solaris 10下 Oracle 11G proc 的C程序示例(转)
2012-06-18 16:09 1421Solaris 10下 Oracle 11G pr ... -
Solaris 10安装jdk1.6及修改成默认JDK(转)
2012-06-15 09:38 3329今天来给大家讲一下solaris 10安装jdk1.6.从su ... -
linux ln用法
2012-06-15 09:36 1173ln 建立一个到文件的链接 语法:ln ... -
linux显示文本命令大全(cat/tac/more/head/less/tail)
2012-06-05 11:12 1345http://pengzhenloveseo.blog ... -
Weblogic中的热部署——修改JSP、java类无需重启Weblogic
2012-06-04 15:01 2120Weblogic中的热部署——修改JSP、java类无需重启W ...
相关推荐
1. "solaris安装乱码问题.htm": Solaris安装过程中可能出现字符编码问题,解决方法通常涉及调整locale设置和字体支持。 2. "在solaris下安装oracle10.htm":Oracle数据库在Solaris上的部署涉及到系统兼容性、库文件...
1. 编辑 `/etc/default/init` 文件,添加或更新如下行,将 `locale` 替换为你想要的环境,例如:`LANG=zh.UTF-8`。 2. 确保所有用户都退出 CDE(Computer Desktop Environment)桌面环境。 3. 执行管理员命令以停止...
12. **Testing and Debugging**:为了确保应用程序的国际化和本地化功能正确无误,Oracle Solaris提供了一系列的测试和调试工具,帮助开发者验证其在不同locale下的行为。 总之,Oracle Solaris 11.3为开发者提供了...
solaris:Solaris Windows:Windows zos:z / OS POSIX兼容系统 查找环境LANGUAGE 查找环境LC_ALL 查找环境LC_MESSAGES 查找环境LANG 读取文件$XDG_CONFIG_HOME/locale.conf 读取文件$HOME/.config/locale....
9. **国际化和本地化**:通过使用locale和nls(Native Language Support)功能,开发者可以创建支持多种语言和文化环境的应用程序。 10. **系统管理接口**:如SMF(Service Management Facility)提供了一种声明式...
本文档将详细介绍 Sun 服务器 Solaris9 的安装方法,包括服务器的启动、语言选择、Locale 选择、终端类型选择等步骤。 一、服务器启动 在安装 Solaris9 之前,需要首先启动服务器。开机上电,等待显示器亮后,按 ...
9. **locale**:这个目录包含了不同语言和地区的本地化资源,用于支持国际化和本地化。 解压“jre-8u351-solaris-sparcv9.tar.gz”后,用户通常需要将解压后的目录添加到系统路径中,以便系统可以在任何地方找到并...
8. **国际化和本地化**:如locale和多语言支持。 9. **并发编程**:信号量、互斥锁、条件变量等同步机制。 这些函数为开发者提供了丰富的工具,使他们能够利用Oracle Solaris 11的特性和性能优势。理解和掌握这部分...
- base_config_sysidcfg_system_locale 设置系统语言环境。 - base_config_sysidcfg_timezone 设置时区。 - base_config_sysidcfg_terminal 设置终端类型。 - base_config_sysidcfg_security_policy 设置安全...
然而,描述中提到的是在Solaris操作系统上处理C99标准的“localeconv”函数部分的问题。这表明压缩包中的内容可能与编程语言的本地化设置和FPGA的软件开发有关。 `localeconv` 是C语言的一个函数,用于获取当前本地...
可以通过修改 `/etc/default/locale` 文件或 `/etc/sysconfig/i18n` 文件来实现: - 编辑相应的配置文件。 - 设置所需的语言环境变量。 - 重启系统或重新登录以应用更改。 ##### 5. Solaris 7 自动注销问题 **知识...
- **1.5 Solaris 7自动注销**: 分析了Solaris操作系统中用户会话超时的机制。 - **1.6 一个目录拥有setgid设置,怎么理解**: 解释了setgid权限位的意义及应用场景。 - **1.7 非Sun Console上有无等价Stop-A的按键...
1. **多操作系统支持**:支持Windows、Linux、Solaris等多种操作系统在同一台计算机上并行运行,无需重新启动。 2. **3D图形加速**:改进了对DirectX 10和OpenGL 3.3的支持,使得在虚拟机中运行图形密集型应用更加...
- 支持Sun Solaris、HP-UX、IBM AIX、RedHat Linux、SUSE Linux。 - 规定了最低处理器、内存和磁盘空间需求。 2. 检查Informatica环境变量 - 需要设置环境变量IATEMPDIR、PATH、JRE_HOME等。 - 注意临时磁盘...