linux操作之:设置控制台的分辨率,中文显示以及scim的问题

 中文显示很简单,就是安张一个zhcon软件就可以了,操作如下:
yum install zhcon
使用方法:
在终端下输入zhcon就可以了,或者使用完全路径,在终端下输入:
which zhcon 便可以查看到完整路径,
CTRL+D便可以关闭之

分辨率也很好设置:
lilo我没有用过,用的是grub,设置如下:
vim /etc/grub.conf
在kernel一行的末尾加上一句vga="一个数值"
这个数值跟你用的图像位数和你想用的分辨率有关,如下图:
色彩     800x600  1024x768 1280x1024
16bit    0x314      0x317       0x31a
24bit    0x315      0x318       0x31b
这里就列出这么几种,我改过后的grub.conf文件如下:
[root@BTazuo ~]# cat /etc/grub.conf
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You do not have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /, eg.
#          root (hd0,6)
#          kernel /boot/vmlinuz-version ro root=/dev/sda7
#          initrd /boot/initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,6)/boot/grub/splash.xpm.gz
hiddenmenu
title Fedora 7
        root (hd0,6)
        kernel /boot/vmlinuz-2.6.21-1.3194.fc7 ro root=LABEL=/1 rhgb quiet vga=0x318
        initrd /boot/initrd-2.6.21-1.3194.fc7.img
title Windows XP
        rootnoverify (hd0,0)
        chainloader +1


另外如果scim输入法出现了问题,一般地问题就是无法启动scim图标,其实可以先卸载然后再安装
yum remove scim
然后
yum install -y scim*
就安装好了,重启一下,进行输入法的设置就可以了

你可能感兴趣的:(linux操作之:设置控制台的分辨率,中文显示以及scim的问题)