1

Possible Duplicate:
How to fix “The system is running in low-graphics mode” error?

I just bought a new laptop and am attempting to put Ubuntu 10.04 on its own partition. After installation, I found that I was unable to change my screen resolution and that it labelled my monitor type as "unknown". I figured the issue was that I did not have the nvidia drivers installed so I downloaded and installed them from nvidia's website.

This process involved killing the xserver while install went through, which wasn't too much trouble. After installing the drivers, upon a fresh reboot I am given an error message stating that Ubuntu is running in low-graphics mode. I am given 5 options to choose from, but none gets my screen resolution working properly.

I have an nvidia 550M on a new Asus laptop. Asus N53SN

Brand new, fresh install of Ubuntu 10.04.

What my xorg.conf file looks like:

Section "ServerLayout"
Identifier "Layout0"
Screen  0  "Screen0" 0 0
InputDevice  "Keyboard0" "CoreKeyboard"
InputDevice  "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"

# generated from default
Identifier   "Mouse0"
Driver     "mouse"
Option    "Protocol" "auto"
Option    "Device" "/dev/psaux"
Option    "Emulate3Buttons" "no"
Option     "ZAxisMapping"  "4 5"
EndSection

Section "InputDevice"

# generated from default
Identifier   "Keyboard0"
Driver    "kbd"
EndSection

Section "Monitor"
Identifier   "Monitor0"
VendorName   "Unknowkn"
ModelName    "Unknown"
HorizSync   28.0-33.0
VertRefresh   43.0-72.0
Option    "DPMS"
EndSection

Section "Device"
Identifier   "Device0"
Driver    "nvidia"
VendorName  "NVIDIA Corporation"
EndSection

Section "Screen"
Identifier   "Screen0"
Device   "Device0"
Monitor    "Monitor0"
DefaultDepth    24
SubSection    "Display"
    Depth    24
EndSubsection
EndSection
Zanna
  • 72,312
Simba
  • 11

1 Answers1

0

Run gksudo gedit /etc/modprobe.d/blacklist.conf, and add the following to the bottom:

blacklist vga16fb
blacklist nouveau
blacklist rivafb
blacklist nvidiafb
blacklist rivatv

...save and reboot.

PS: If you want the monitor to become known, edit the "Monitor" section of xorg.cong, for example:

Section "Monitor"
Identifier   "Monitor0"
VendorName   "Aliens"
ModelName    "XoXo"
HorizSync   28.0-33.0
VertRefresh   43.0-72.0
Option    "DPMS"
EndSection
mikewhatever
  • 33,013