GRUB2 ALTERAR RESOLUÇÃO

Nesta vídeo aula mostro como alterar a resolução do Grub2.

COMENTAR BLACKLIST DE DRIVER FRAMEBUFFER

vi /etc/modprobe.d/blacklist-framebuffer

Comentar as linhas:

#vesafb

ESC:x - Para gravar e sair

ADICIONAR MÓDULOS NO INITRAMFS

vi /etc/initramfs-tools/modules

vesafb

fbcon

ESC:x - Para gravar e sair

ATUALIZAR O INITRAMFS

update-initramfs -u

COLETAR INFORMAÇÕES

apt-get install hwinfo

hwinfo --framebuffer

Mode 0x033c: 1920x1440 (+1920), 8 bits

Mode 0x034d: 1920x1440 (+3840), 16 bits

Mode 0x033a: 1600x1200 (+1600), 8 bits

Mode 0x034b: 1600x1200 (+3200), 16 bits

Mode 0x035a: 1600x1200 (+6400), 24 bits

Mode 0x0307: 1280x1024 (+1280), 8 bits

Mode 0x031a: 1280x1024 (+2560), 16 bits

Mode 0x031b: 1280x1024 (+5120), 24 bits

Mode 0x0305: 1024x768 (+1024), 8 bits

Mode 0x0317: 1024x768 (+204, 16 bits

Mode 0x0318: 1024x768 (+4096), 24 bits

Mode 0x0312: 640x480 (+2560), 24 bits

Mode 0x0314: 800x600 (+1600), 16 bits

Mode 0x0315: 800x600 (+3200), 24 bits

Mode 0x0301: 640x480 (+640), 8 bits

Mode 0x0303: 800x600 (+832), 8 bits

Mode 0x0311: 640x480 (+1280), 16 bits

OBSERVE A LISTAGEM, O QUE INTERESSAR É 1024X768 24bits QUE É 0X0318

EDITAR GRUB2

vi /etc/default/grub

Adicionar na linha:

GRUB_CMDLINE_LINUX_DEFAULT="quit text vga=0x0318"

ESC:x - Para gravar e sair

ATUALIZAR O GRUB2

update-grub2

REINICIAR O SISTEMA

reboot