Centos7使用yum命令安裝中文語言包

2021-10-08 03:23:24 字數 2205 閱讀 6422

檢視系統版本

[root@localhost ~]# cat /etc/redhat-release
centos linux release 7.0.1406 (core)

安裝語言包

[root@localhost ~]# yum groupinstall "fonts"
檢視系統是否有安裝中文語言包 (列出所有可用的公共語言環境的名稱,包含有zh_cn)

[root@localhost ~]# locale -a |grep "zh_cn"

zh_cn

zh_cn.gb18030

zh_cn.gb2312

zh_cn.gbk

zh_cn.utf8

若發現以上幾項,說明系統已安裝中文語言包,無需再安裝

_.zh是中文的代號、cn是中國的代號、gb18030,gb2312,utf8是語言字符集

[root@localhost ~]# cat /etc/locale.conf 

lang=en_us.utf-8

[root@localhost ~]# cp /etc/locale.conf /etc/locale.conf_bak
[root@localhost ~]# vim /etc/locale.conf # 修改後原英文錯誤資訊會變成中文資訊

lang="zh_cn.gb18030"

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"

or

[root@localhost ~]localectl set-locale lang=zh_cn.utf-8

[root@localhost ~]# reboot # 重新系統

[root@localhost ~]# echo $lang # 檢視當前使用的系統語言

zh_cn.utf8

or 

[root@localhost ~]# locale

lang=zh_cn.utf-8

lc_ctype="zh_cn.utf-8"

lc_numeric="zh_cn.utf-8"

lc_time="zh_cn.utf-8"

lc_collate="zh_cn.utf-8"

lc_monetary="zh_cn.utf-8"

lc_messages="zh_cn.utf-8"

lc_*****="zh_cn.utf-8"

lc_name="zh_cn.utf-8"

lc_address="zh_cn.utf-8"

lc_telephone="zh_cn.utf-8"

lc_measurement="zh_cn.utf-8"

lc_identification="zh_cn.utf-8"

lc_all=

[root@localhost ~]# export.utf8 # 將系統語言臨時設定為中文,export方式不需要重新登入

[root@localhost ~]#

如果上一步沒用

vim /etc/profile.d/lang.sh
修改內容

if [ -n "$lang" ]; then

case $lang in

*.utf8*|*.utf-8*)

if [ "$term" = "linux" ]; then

if [ "$consoletype" = "vt" ]; then

case $lang in

ja*) lang=en_us.utf-8 ;;

ko*) lang=en_us.utf-8 ;;

si*) lang=en_us.utf-8 ;;

zh*) lang=en_us.utf-8 ;;  //這裡修改為zh_cn.utf_8

ar*) lang=en_us.utf-8 ;;

fa*) lang=en_us.utf-8 ;;

he*) lang=en_us.utf-8 ;;

en_in*) ;;

*_in*) lang=en_us.utf-8 ;;

esac

fifi

;;

centos7使用yum命令安裝redis

redis的臨時密碼配置 redis cli進入redis的客戶端 config get requirepss檢視臨時密碼,如果是第一次設定,結果如下 config set requirepass your password 設定你的密碼 config get requirepass再次檢視密碼時出...

Centos7下 使用yum命令安裝mysql

記錄這個的原因是因為我之前使用ssh secure file transfer client上傳mysql安裝包,然後再linux環境裡面安裝mysql時各種問題難以解決,可能是因為centos7的版本跟之前的6有些不一樣,centos 7 版本將mysql資料庫軟體從預設的程式列表中移除,用mar...

Centos7上的yum命令

用過centos系統的人都知道yum命令了,主要是用於管理系統裡面的軟體 進入命令介面的方法 在centos圖形介面的任意地方右鍵 open terminal 1.安裝乙個軟體時 httpd是安裝的軟體名 yum y install httpd2.安裝多個相類似的軟體時 httpd是安裝的軟體名 y...