On 01/27/2013 01:31 PM, Reindl Harald wrote:
/etc/X11/xorg.conf.d/ to place whatever you need for xorg.conf parts like in my case xvnc
[root@srv-rhsoft:~]$ cat /etc/X11/xorg.conf.d/02-vnc.conf Section "Module" Load "vnc" EndSection Section "Screen" Identifier "Screen0" Option "passwordFile" "/root/.vnc/passwd" EndSection
/etc/X11/xorg.conf.d/ is there for keyboard.conf so I added monitor.conf to the directory:
[bobg@Box9:/etc/X11/xorg.conf.d]$ll total 8 -rw-rw-r--. 1 root root 161 Dec 29 12:49 00-anaconda-keyboard.conf -rw-rw-r--. 1 root root 617 Jan 27 14:43 10-monitor.conf
Then a copy paste from an Xorg page google found changing the resolution rates:
[bobg@Box9:/etc/X11/xorg.conf.d]$cat 10-monitor.conf Section "Monitor" Identifier "Monitor0" EndSection
Section "Device" Identifier "Device0" Driver "vesa" #Choose the driver used for this monitor EndSection
Section "Screen" Identifier "Screen0" #Collapse Monitor and Device section to Screen section Device "Device0" Monitor "Monitor0" DefaultDepth 16 #Choose the depth (16||24) SubSection "Display" Depth 16 Modes "1680x1050_60.00" #Choose the resolution EndSubSection EndSection
I am way out of my skill level here but does this look any where near what it needs? If so how do I get this to run?
Bob