Disabilitare la modalità video alta risoluzione in Debian
Se in Debian si vuole avere la vecchia console 80x25, controllare tutti questi settaggi:
Blacklist framebuffer
- Blacklistare i moduli di framebuffer
- Per schede nVidia
echo blacklist nouveau | sudo tee /etc/modprobe.d/blacklist-nouveau.conf
- Per schede Radeon
Edit /etc/modprobe.d/i915-kms.conf or /etc/modprobe.d/radeon-kms.conf accordingly.
- Genericamente blacklistare il modulo (ad esempio hyperv_fb):
lsmod | grep fb
- Impostare:
sudo /etc/init.d/kmod restart
- Reboot, e verificare che /dev/fb0 non esista
ls /dev/fb*
Modalità grafica di boot
- Impostare la modalità testo:
sudoedit /etc/default/grub
GRUB_TERMINAL=console
- Aggiungere il parameto
nomodesetal kernel:
sudoedit /etc/default/grub
- Genericamente mettere
GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset"
- Per schede nVidia
GRUB_CMDLINE_LINUX_DEFAULT="quiet nouveau.modeset=0"
- Per schede Radeon
GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset"
- Generico:
GRUB_GFXPAYLOAD_LINUX=keep
- Ricostruire la config di grub2
sudo update-grub
Console setup
- Verificare che non ci sia un font strano in
sudoedit /etc/default/console-setup
- Eventualmente, riconfigurare:
sudo dpkg-reconfigure console-setup
- Scegliere il font VGA 8x16
- Mettere
sudoedit /etc/default/console-setup
VIDEOMODE=""
Riferimenti
- Debian User Forums • View topic - Disable framebuffer after squeeze 32bit installation
- KernelModesetting - Debian Wiki
- GrubTransition - Debian Wiki
- Debian User Forums • View topic - How to change resolution of console (tty)?
- boot - Where/when does a (Debian) Linux system change the console display mode? - Server Fault