老想把一些自己知道的东西告诉大家,但是又老没有时间,以后我会陆续写一些原创文章和翻译的文章和大家一起交流
一直希望solaris可以象freebsd和linux那样按alt+功能键切换控制台,今天搞定了,和大家共享一下,只限solairs7和以前的系统
首先说明sun的官方网站是不支持的,详细情况请大家看这里http://access1.sun.com/FAQSets/Solarisx86FAQs.html#19
但是他的FAQ又有介绍http://access1.sun.com/cgi-bin/rinfo2html?244502.faq
从Solaris x86 2.4到7,solairs操作系统默认安装都不支持这个功能,可以说很幸运,solairs7以前的系统,没有真正的把这个功能从内核里关掉,还算sun有点人性,不知道sun是怎么想的,可能大脑有问题:),如果我们手工配置一下,就可以支持这个功能了.从solairs8 x86开始,这个功能就被移除了.
我的操作系统solairs7 x86,下面开始工作
首先用grep命令检查设备文件名:
# grep -i chanmux /etc/name_to_major
chanmux <num>
在/dev目录下创建一个设备文件,number这个参数就是上面那个grep命令的结果 :
mknod /dev/vt01 c <number> 1
mknod /dev/vt02 c <number> 2
etc...
然后在/etc/inittab里添加:
v1:234:respawn:/usr/lib/saf/ttymon -g -h -p "VT1 Login: " -T AT386 -d /dev/vt01 -l console
v2:234:respawn:/usr/lib/saf/ttymon -g -h -p "VT2 Login: " -T AT386 -d /dev/vt02 -l console
etc...
然后用init命令从读inittab文件,或者reboot,也可以用一下命令:
/usr/sbin/init q
好了,现在可以测试一下了
Alt-PrintScreen F1 切换到VT1
Alt-PrintScreen F2 切换到VT2,
Alt-PrintScreen P 切换到上一个界面.
Alt-PrintScreen N 切换到下一个界面.
Alt-PrintScreen H 切换到X console screen (不是Alt-PrintScreen F500) {this.resized=true; this.width=500;}" onmouseover="this.style.cursor='hand'" onclick="{window.open('http://bbs.chinaunix.net/forum/images/smiles/icon_cool.gif');}" src="http://bbs.chinaunix.net/forum/images/smiles/icon_cool.gif" onmousewheel="return bbimg(this)" border=0.
注意:这里是"Alt"和"PrintScreen" 一起按,然后在按F2