码迷,mamicode.com
首页 > 其他好文 > 详细

centos6.5和centos7修改系统字符集

时间:2016-09-23 21:44:02      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:中文   centos6.5   centos7   字符集   

centos6.5和centos7修改系统默认字符集的方法不一样了,但是临时设置的都是一样的。

  1. 查看系统支持的字符集

    [root@host3 ~]# locale -a 

    技术分享

  2. centos6.5修改系统字符集

    临时生效:

    [root@host3 mysqldata]# LANG="zh_CN.utf8"
    [root@host3 mysqldata]# echo $LANG
    zh_CN.utf8
    永久生效:
    # vim /etc/sysconfig/i18n
    LANG="zh_CN.utf8"
    保存退出,下次重启系统后就是中文字符集了。
  3. centos7修改系统字符集

    临时生效:

    [root@host3 mysqldata]# LANG="zh_CN.utf8"
    [root@host3 mysqldata]# echo $LANG
    zh_CN.utf8

    修改配置文件/etc/locale.conf

    [root@host3 ~]# vim /etc/locale.conf    


    LANG="zh_CN.UTF-8"

    保存退出,下次重启系统后就是中文字符集了




centos6.5和centos7修改系统字符集

标签:中文   centos6.5   centos7   字符集   

原文地址:http://canonind.blog.51cto.com/8239025/1855925

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!