分类: LINUX
2008-11-26 23:05:05
有时候我们开机的时候也许没有必要进入X-window界面。比如,我开机只是为了编译一个东西,或者是写一段程序,我可以在console下可以更高效的完成,例如编译软件的时候使用console会大大的提高编译效率。(甚至我用vi写程序的时候仍然可以使用mplayer播放歌曲。)
文件:
grub.rar
大小:
0KB
下载:
下载
安装完一个发行版后,一般默认启动的是x-window,我们可以通过更改
/etc/inittab
中的
id:5:initdefault:
这一行来实现开机默认启动X还是console。(3为console,5为X-window)
当然这有点不太现实,因为我们无法在开机的时候决定这个文件的内容,所以最好的办法是如果能在grub中选择。
下面是实现的办法:
更改/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 have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,0)
# kernel /vmlinuz-version ro root=/dev/sda3
# initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora Core (X-window)
root (hd0,0)
kernel /vmlinuz-2.6.15-1.2054_FC5 ro root=LABEL=/ rhgb quiet
initrd /initrd-2.6.15-1.2054_FC5.img
title Fedora Core (text console)
root (hd0,0)
kernel /vmlinuz-2.6.15-1.2054_FC5 ro root=LABEL=/ rhgb quiet vga=0x305 3
initrd /initrd-2.6.15-1.2054_FC5.img
其实很简单的,新增加一个启动的项目,在kernel最后一行加一数字3,进入level3模式(多用户console模式)
vga=0×305代表启动vga图形驱动模式,设置分辨率为0×305(1024×768)
觉得1024×768下的console更cool!