xorg.conf for QNIX QX2710 27"?

brutalizer

[H]ard|Gawd
Joined
Oct 23, 2010
Messages
1,602
I need to configure xorg.conf because these cheap monitors does not have an EDID id (or something similar). So what values should I use? Anyone knows? I have once destroyed a monitor many years ago when I experimented with xorg.conf, so I am hesitant to experiment again.

I have found these posts:

------------------

"got my monitor working now using the settings cor35vet have posted, it worked when i changed option "DPMS" "true" to "DPMS" "false" and lowevering the pixelclock to 327.6 (one or both of them),"
Section "Monitor"
Identifier "DVI-0"
ModeLine "2560x1440" 393.12 2560 2608 2640 2720 1440 1443 1448 1507 -hsync +vsync
EndSection

--------------------
This apparently works for dual monitor for QNIX and another screen:

Section "Monitor"
Identifier "Monitor0"
VendorName "QNIX"
ModelName "QX2710"
HorizSync 88.8
VertRefresh 59.5
Option "DPMS"
# 60
Modeline "2560x1440" 241.50 2560 2608 2640 2720 1440 1443 1448 1481 +hsync -vsync
#DisplaySize 597 336 # one monitor
DisplaySize 672 597 # two in portrait mode
EndSection

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce 8800 GTS"
BusId "PCI:5:0:0" # eGPU
Option "Coolbits" "1"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
Option "TwinView" "1"
Option "TwinViewXineramaInfoOrder" "DFP-0"
Option "UseEDID" "False"
Option "UseEDIDDPI" "False"
Option "UseEDIDFreqs" "False"
Option "ExactModeTimingsDVI" "True"
Option "metamodes" "DFP-0: 2560x1440_60 +0 +0 { Rotation=left }, DFP-1: 2560x1440 +1440 +0 { Rotation=right }"
SubSection "Display"
Depth 24
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
Option "Xinerama" "0"
EndSection
 
Ok, problem solved, thanks to Cheetoz
Here is my xorg.config file for Solaris 11 Express, and QNIX QX2710
http://hardforum.com/showpost.php?p=1039897942&postcount=190
Everything works great. Disable graphics with
# svcadm disable gdm
modify the xorg.conf file and then enable graphics again with
# svcadm enable gdm

------------------
Here is the xorg.conf file for future references:



# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 319.17 (buildmeister@swio-display-x86-rhel47-10) Thu Apr 25 22:39:15 PDT 2013


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

Section "Files"
FontPath "/usr/X11R6/lib/X11/fonts/misc/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
EndSection

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

Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "keyboard"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "QNIX"
ModelName "QX2710"
DisplaySize 597 336
HorizSync 88.8 - 160.0
VertRefresh 59.5 - 120.0
# 2560x1440 is taken from the web, 2560x1440_60 is taken from cvt program
ModeLine "2560x1440" 241.50 2560 2608 2640 2720 1440 1443 1448 1481 +hsync -vsync
ModeLine "2560x1440_60" 312.25 2560 2752 3024 3488 1440 1443 1448 1493 -hsync +vsync
# Modeline "2560x1440_75" 397.25 2560 2760 3040 3520 1440 1443 1448 1506 -hsync +vsync
# ModeLine "2560x1440_85" 454.75 2560 2768 3048 3536 1440 1443 1448 1514 -hsync +vsync
# Modeline "2560x1440_96" 400.00 2560 2608 2640 2744 1440 1443 1448 1512 +hsync +vsync
# Modeline "2560x1440_100" 400.00 2560 2608 2640 2720 1440 1443 1448 1481 +Hsync +Vsync
# ModeLine "2560x1440_100" 542.25 2560 2776 3056 3552 1440 1443 1448 1527 -hsync +vsync
# ModeLine "2560x1440_120" 661.25 2560 2784 3064 3568 1440 1443 1448 1545 -hsync +vsync
Option "DPMS"
EndSection

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

Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
Option "UseEDID" "False"
Option "UseEDIDDPI" "False"
Option "UseEDIDFreqs" "False"
Option "ExactModeTimingsDVI" "True"
Option "ModeValidation" "AllowNonEdidModes, AllowNon60hzmodesDFPModes, NoEDIDDFPMaxSizeCheck, NoVertRefreshCheck, NoHorizSyncCheck, NoDFPNativeResolutionCheck, NoMaxSizeCheck, NoMaxPClkCheck, NoEDIDModes"
Option "NoBandWidthTest" "true"
SubSection "Display"
Depth 24
Modes "2560x1440_60" "2560x1440"
EndSubSection
EndSection
Reply With Quote
 
Last edited:
Back
Top