On SLES, without graphical interface, my screen resolution is currently at 1280*1024.
I need to change to 1024*780 which is the maximum supported by my new rack console.
Can someone tell me how to change it?
Thanks!
Software/Hardware used:
ASKED:
August 5, 2009 10:49 AM
UPDATED:
May 8, 2013 6:07 PM
>
>Try running sax2 from the command line and see if you can change display settings using this utility.
>
If you can’t, locate xorg.conf and change “screen” section to substitute 1024×768 for 1280×1024 in “modes” lines and, of course, “1024 768″ for “1280 1024″ in “virtual” lines.
If you start X-server with startx from commandline, you can just create a new xorg.conf in the home directory – it takes over the system-wide…
The “screen” section in xorg.conf looks like this, and “device” and “monitor” lines should refer to real “device” and “monitor” sections in the file…
####################Section "Screen"
Identifier "LCD"
Device "nv6200"
Monitor "vg712s"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Virtual 1280 960
Depth 16
Modes "1280x960" "1024x768" "800x600"
EndSubSection
SubSection "Display"
Viewport 0 0
Virtual 1280 960
Depth 24
Modes "1280x960" "1024x768" "800x600"
EndSubSection
EndSection
###########