修改Linux文本(命令行)模式的分辨率

 

进入到/boot/grub/目录下,然后就可以看到里面有个名为menu.lst的文件,用vim将其打开,可以看到以下内容:

# 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/hda2
# initrd /initrd-version.img
#boot=/dev/hda
default=0
timeout=5
gfxmenu (hd0,0)/message
title RedFlag (2.6.22.6-1)
root (hd0,0)
kernel /vmlinuz-2.6.22.6-1 ro root=LABEL=/ vga=788 splash=silent
initrd /initrd-2.6.22.6-1.img

其中这个vga=788就是控制你的分辨率与色彩模式的,你可以把它改成你的显示器支持的你喜欢的任意模式。数字对应的含义如下:

 

 

色深
640×480 800×600 1024×768 1280×1024
256
769 771 773 775
15位 784 787 790 793
16位 785 788 791 794
24位 786 789 792 795

 

或直接使用命令:

xrandr -s 1024x768 -r 75

s:size 大小

r:rate 刷新率

 

framebuffer下的

fbset -a //显示当前的信息

fbset -xres 1024 -yres 768

你可能感兴趣的:(linux,vim)