Quote:
Originally posted by poochdog
Hello,
I am wondering how I may get the above resolution. The computer I am using redhat linux 9 on is a Compaq NX9105 Laptop. I can't get this resolution in the display options. My graphics card is an Nvidia Gefore 4 Go. As this is the native resolution of the screen I really want to be able to use this mode. Any help would be great. Thanks
|
Assuming that the driver (nv or nvidia??) you are using will support a resolution higher than what you want you should be able to edit as root the configuration file (/etc/X11/XF86Config IIRC on Redhat) by hand, from my file on Debian.
Code:
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
# SubSection "Display"
# Depth 1
# EndSubSection
# SubSection "Display"
# Depth 4
# EndSubSection
# SubSection "Display"
# Depth 8
# EndSubSection
# SubSection "Display"
# Depth 15
# EndSubSection
# SubSection "Display"
# Depth 16
# EndSubSection
SubSection "Display"
Depth 24
Modes "2048x1536" "1920x1440" "1856x1392" "1792x1344" "1600x1200" "1400x1050" "1280x1024"
EndSubSection
EndSection
So you would in the Subsection "Display" for the DefaultDepth you are using put "1280x800" at the front of the line then restart the X server and see if works correctly.