Disabilitare la modalità video alta risoluzione in Debian

From RVM Wiki
Revision as of 16:28, 19 August 2011 by Gabriele.vivinetto (talk | contribs) (New page: Se si vuole avere la vecchi console 80x25, occorre: * Impostare la modalità testo: sudoedit /etc/default/grub GRUB_TERMINAL=console * Aggiungere il parameto <code>nomodeset</code> al...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Se si vuole avere la vecchi console 80x25, occorre:

  • Impostare la modalità testo:
 sudoedit /etc/default/grub
GRUB_TERMINAL=console
  • Aggiungere il parameto nomodeset al kernel:
sudoedit /etc/default/grub
    • Per schede nVidia
 GRUB_CMDLINE_LINUX_DEFAULT="quiet nouveau.modeset=0"
    • Per schede Radeon
 GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset
  • Ricostruire la config di grub2
sudo update-grub
  • 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.
  • Reboot, e verificare che /dev/fb0 non esista
ls /dev/fb*

Riferimenti