Чтобы решить эту проблему нужно сделать следующее.
Для GRUB 2 редактируем файл:
ubuntu@ubuntu:~$ sudo nano /etc/default/grub
Добавляем nomodeset (через пробел) в строку:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
получается
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
Далее обязательно делаем update-grub, чтобы обновить изменения.
Это еще не все, теперь надо создать файл /etc/X11/xorg.conf со следующим содержимым:
Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
Option "NoDDC"
Option "IgnoreEDID" "true"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
Option "ConnectedMonitor" "LCD"
Option "PreferredMode" "1280x1024"
Horizsync 31.00-81.00
Vertrefresh 56.00-75.00
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
SubSection "Display"
Depth 24
Modes "1280x1024"
EndSubSection
Device "Configured Video Device"
EndSection
(c)http://forum.ubuntu.ru/index.php?topic=101855.msg882035#msg882035