Eu encontrei este aqui :
Append " vga=ask" to the kernel parameter specification in your boot loader (grub, lilo, etc.) or at the boot prompt. You will be presented with a list of standard VGA text modes, then asked to enter a mode or "scan". Type "scan" (without the quotes) and press Enter. This logic executes extremely early in the boot process, before the CPU switches from real mode to protected mode. (It has to run in real mode because it's going to make video BIOS calls.) Linux will probe the video BIOS, asking it for all the available text modes. It will then try to set them all, eliminating the ones that can't be set. (Sometimes a given video BIOS is used with more than one chipset, and not all modes will work with all chipsets.) During this time, you may see strange things on your screen and hear strange noises from inside your monitor. Linux will then present a list of all text video modes supported by the video BIOS for this chipset. (These modes may or may not work on your monitor, however, particularly if you have a fixed-frequency or dual-frequency monitor.) Choose a mode from the list. Linux will then set that mode via a video BIOS call and proceed with the boot process. To use that mode on a regular basis, specify it explicitly in the vga boot parameter. Caution: the boot loader may not support the specification of a hexadecimal number. Convert it to decimal. For example, video mode 0x0f00 should be specified as vga=3840. This method also results in a true hardware-level text mode, which means that screen scrolling is very fast! The down side is that you are limited to the text modes supported by the video BIOS, and you can't change the mode without a reboot.