Hi everyone,
I'm having a really frustating time trying to change the screen resolution on my system, which is a Dell Inspiron 1150 with an i855 graphics card. No matter what I do, it won't change from 1024x768. I'd really like it to be 1280x1024, as I had it in Windows on the same machine.
I've tried changing the monitor type (I've tried both Generic 1280x1024 LCD display and Dell laptop 1280x1024 display) and screen resolution through the GUI available at System>Admin>Display. After I change the settings there, however, it tells me it's updated xorg.conf (which it has), but when I restart X, the screen resolution is still 1024x768, no matter what I had changed it to and apparently no matter what xorg.conf says. Even if I try to just reduce the resolution to a smaller setting like 800x600, it still doesn't change. The Gnome screen resolution configuration panel under Sys>Preferences also doesn't help, as it gives 1024x768 as the only choice, again no matter what xorg.conf says.
As you can see from my xorg.conf file (posted below), the Screen section is definitely configured to support resolutions other than 1024x768. Even if I remove all the entries in the Mode line except 1280x1024, however, it still produces a 1024x768 resolution.
I have 915resolution installed, and if I run the command
Code:
# 915resolution 49 1280 1024
I get the positive output
Code:
Chipset: 855GM
BIOS: TYPE 1
Mode Table Offset: $C0000 + $29f
Mode Table Entries: 39
Patch mode 49 to resolution 1280x1024 complete
but even after doing that and restarting X, the resolution doesn't change to anything besides 1024x768.
I've tried using both the intel and i810 drivers, but there's no difference.
I don't understand why the X server appears to be completely disregarding the resolution settings specified in xorg.conf. Is there a way to absolutely force it to run at a specified resolution? Any other ideas?
Thanks a lot for any help.
xorg.conf:
Code:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
Option "XkbVariant" "intl"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
EndSection
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
#HorizSync 31.5 - 90.0
#VertRefresh 59.0 - 75.0
Identifier "Monitor0"
ModelName "Dell 1280x1024 Laptop Display Panel"
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "i810"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1400x1050" "1280x1024" "1280x960" "1280x800" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection
EndSection