Ubuntu 控制台设置与优化
1. 关闭多余的控制台
一般的发行版都默认是tty1-6,共计6个虚拟控制台,虽然控制台必不可少,但对于桌面用户而言,6个又有些多余,Ubuntu 8.10下,我是这样去掉多余控制台的
在 /etc/event.d/ 下,有tty1,tty2,……,tty6,等6个文件,打开,内容大致如下:
代码:
start on runlevel 2
start on runlevel 3
stop on runlevel 0
stop on runlevel 1
stop on runlevel 4
stop on runlevel 5
stop on runlevel 6
respawn
exec /sbin/getty 38400 tty6
start on runlevel 3
stop on runlevel 0
stop on runlevel 1
stop on runlevel 4
stop on runlevel 5
stop on runlevel 6
respawn
exec /sbin/getty 38400 tty6
我将其改为类似如下的样子:
代码:
stop on runlevel 2
stop on runlevel 3
stop on runlevel 0
stop on runlevel 1
stop on runlevel 4
stop on runlevel 5
stop on runlevel 6
#respawn
#exec /sbin/getty 38400 tty6
stop on runlevel 3
stop on runlevel 0
stop on runlevel 1
stop on runlevel 4
stop on runlevel 5
stop on runlevel 6
#respawn
#exec /sbin/getty 38400 tty6
这样改掉tty4-6,就只有3个控制台了。不过,个人认为这对于所谓“节省资源”几乎没多大意义,之所以修改,只是为了心安罢了:)
2. 修改控制台的分辨率
这个很多人介绍过了,因为Ubuntu 8.10默认已经开启了FrameBuffer,因此,我们只需要修改menu.lst文件即可。
对应关系如下:
代码:
depth 640×480 800×600 1024×768 1280×1024
8bit 769 771 773 775
15bit 784 787 790 793
16bit 785 788 791 794
24bit 786 789 792 795
8bit 769 771 773 775
15bit 784 787 790 793
16bit 785 788 791 794
24bit 786 789 792 795
选择对应分辨率和色深的对应代码,在/boot/grub/menu.lst内找到对应启动条目添加vga=***,即可(标红色的代码是添加的):
代码:
title Ubuntu 8.10, kernel 2.6.27-9-generic
uuid 328eed5f-0f89-41b8-b021-730ae3f167d1
kernel /boot/vmlinuz-2.6.27-9-generic root=UUID=328eed5f-0f89-41b8-b021-730ae3f167d1 ro quiet splash vga=792
initrd /boot/initrd.img-2.6.27-9-generic
quiet
3. 控制台字体设置
Ubuntu 8.10默认应该安装了 console-setup 服务,如果你的没有,那么 apt-get install console-setup 即可。
更改控制台字体,可以,sudo dpkg-reconfigure console-setup,不过要注意前几步的键盘配置不要乱改,除非你明确知道选择什么:)。可以选择的基本上有fixed和terminus,各有特色,可以自己试试看。
4. 中文控制台的安装和使用
这个没什么多说,安装:
代码:
sudo apt-get install zhcon
使用:
代码:
zhcon –utf8 –drv=*** ## 这里有一点问题,后面介绍
5. 关于中文控制台分辨率
zhcon的配置文件在 /etc/zhcon.conf
代码:
#screen resolution
x_resolution = 1024
y_resolution = 768
color_depth = 16
x_resolution = 1024
y_resolution = 768
color_depth = 16
很容易看懂吧?在这里修改分辨率和色深即可。
不 过有一点需要说明的是,google到的很多资料,都会告诉你使用 zhcon –utf8 –drv=vga 来启动zhcon,然而,在vga驱动地下,无论你如何更改zhcon.conf文件的参数,分辨率始终只有 640*480。如果一定喜欢大分辨率,那么只有用fb驱动或者不写这个参数,使之default吧。
6. 关于zhcon下的字体问题
说实话,zhcon默认的字体界面不大美观,然而遗憾的是我暂时也没有特别的办法:
zhcon使用一种在标准的linux psf字体格式的基础上扩展了的bpsf格式来存放字库,存放在 /usr/lib/zhcon/font/ 目录下。
可以通过修改配置文件zhcon.conf或.zhconrc中的 ascfont 和(gbkfont,big5font,jisfont,kscmfont )来选择不同的字体。
代码:
将使用16点阵字体。
ascfont = font/asc16.bpsf
gbfont = font/gb-16.bpsf
gbkfont = font/gbk-16.bpsf
big5font = font/big5-16.bpsf
jisfont = font/jis-16.bpsf
kscmfont = font/kscm-16.bpsf
将使用12点阵字体显示简体汉字。
ascfont = font/asc12.bpsf
gbfont = font/hzk12.bpsf
将使用24点阵楷体字显示简体汉字。
ascfont = font/asc24.bpsf
gbfont = font/gb-24-kai.bpsf
ascfont = font/asc16.bpsf
gbfont = font/gb-16.bpsf
gbkfont = font/gbk-16.bpsf
big5font = font/big5-16.bpsf
jisfont = font/jis-16.bpsf
kscmfont = font/kscm-16.bpsf
将使用12点阵字体显示简体汉字。
ascfont = font/asc12.bpsf
gbfont = font/hzk12.bpsf
将使用24点阵楷体字显示简体汉字。
ascfont = font/asc24.bpsf
gbfont = font/gb-24-kai.bpsf
以上这段配置范例,是zhcon官方给出的。zhcon的字体机制决定了我们只能用这种bpsf格式的字库,网络上几乎没有任何可用的资源,除非你自己去制作字库,呵呵,为了个中文控制台去研究怎么搞这东西,至少我真的没这精力和水平~~,认了吧 >_
第二,更糟糕的是,我喜欢小些的字体,12号,但,ubuntu 8.10目前提供的zhcon安装包里面,中文字体最小似乎只是16号,这样,设置了12号字以后,英文字体明显会比中文字体小一些,这也是个美中不足吧。