centos6.3 中文字符集问题

来源:互联网 发布:爱美眉图片站源码 编辑:程序博客网 时间:2024/06/06 17:40

1 错误现象

  locale

  locale: Cannot set LC_CTYPE to default locale: No such file or directory
  locale: Cannot set LC_ALL to default locale: ?????????


2 解决

  localedef --no-archive -i zh_CN -f UTF-8 zh_CN.UTF-8

3  其它

  LC_ALL=zh_CN.UTF-8 java -Duser.language=zh -Duser.country=CN hello

  全局:

   vi /etc/profile 

   export LANG=zh_CN.UTF-8

   export  LC_ALL="zh_CN.UTF-8"

   立即生效  source /etc/profile

4  安装smplay 播放器

   sudo add-apt-repository ppa:rvm/smplayer
  sudo apt-get update
  sudo apt-get install smplayer smtube smplayer-themes


5  CentOS 启动提示unexpected inconsistency;RUN fsck MANUALLY
CentOS这两天服务器出了问题了,提示如下:
unexpected inconsistency;RUN fsck MANUALLY
An error occurred during the filesystem check
Propping you to shell the system will reboot
when you leave the shell
Give root password for mantennance
从网上找了一些教程,立马就解决了,过程如下:
按照系统提示,输入root用户的密码,进入命令行,
1。 输入命令,查找root所在分区是多少:
mount |grep “on/”
根据结果找到root所在分区,我的是/dev/sda2
2. 然后用命令fsck修复
fsck -y /dev/sda2
注:-y 选项指定检测每个文件是自动输入yes
3。 fsck修复boot分区
fsck -y /dev/sda1
3。reboot重启ok




原创粉丝点击