LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 04-02-2013, 10:51 PM   #1
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Rep: Reputation: Disabled
Question How to create correct xorg.conf for VIA EX15000LG + ACER AL 1716F


I successfully installed CentOS 6.2 on this vintage VIA EX15000LG PC but for some reason the display configuration part didn't identify the ACER AL 1716F (LCD monitor) connected to it, so the screen shows only part of the 1280x1024 configured resolution.

(if I remotely connect to this PC via VNC, from a system with a larger monitor, that 1280x1024 looks great)

I need help figuring out the correct xorg.conf for this unique VIA EX15000LG + ACER AL 1716F combination.

I know that in CentOS 6.2 there is no (need for) an xorg.conf file by default since the correct modes are supposed be automagically configured, but since this doesn't work for my unique combo, I believe I need to help the system by generating one.

So, I did 'sudo Xorg -configure' and that's what I received:


Code:
[root@localhost ~]# sudo Xorg -configure

X.Org X Server 1.10.4
Release Date: 2011-08-19
X Protocol Version 11, Revision 0
Build Operating System: c6b18n3 2.6.32-71.el6.x86_64 
Current Operating System: Linux localhost.localdomain 2.6.32-220.el6.i686 #1 SMP Tue Dec 6 16:15:40 GMT 2011 i686
Kernel command line: ro root=/dev/mapper/vg_ber-lv_root rd_NO_LUKS LANG=en_US.UTF-8 rd_LVM_LV=vg_ber/lv_swap rd_NO_MD quiet SYSFONT=latarcyrheb-sun16 rhgb  rd_LVM_LV=vg_ber/lv_root  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM
Build Date: 07 December 2011  11:33:27PM
Build ID: xorg-x11-server 1.10.4-6.el6 
Current version of pixman: 0.18.4
        Before reporting problems, check https://www.redhat.com/apps/support/
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr  2 23:21:29 2013
List of video drivers:
        vmware
        amd
        sisusb
        glint
        sis
        cirrus
        tdfx
        s3virge
        savage
        radeon
        i128
        v4l
        voodoo
        dummy
        rendition
        ati
        openchrome
        qxl
        geode
        mach64
        i740
        trident
        nouveau
        vmwlegacy
        ztv
        nv
        ast
        neomagic
        siliconmotion
        apm
        mga
        intel
        xgi
        r128
        fbdev
        vesa
(EE) Failed to load module "vmwgfx" (module does not exist, 0)
(EE) vmware: Please ignore the above warnings about not being able to to load module/driver vmwgfx
(++) Using config file: "/root/xorg.conf.new"
(EE) open /dev/fb0: No such device
Number of created screens does not match number of detected devices.
  Configuration failed.
The resulting 'xorg.conf.new' file is attached. It looks very nice and polished but since the correct monitor has not been identified, it basically reflects the current incorrect configuration.

How do I continue from here? Do I really need to specify 3 monitors there? (I really have only that single monitor connected, through a DVI analog connector).

Thanks.
Attached Files
File Type: txt xorg.conf.txt (5.5 KB, 40 views)

Last edited by d420; 04-02-2013 at 10:58 PM.
 
Old 04-03-2013, 08:08 AM   #2
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
I'd start with the xorg.conf below. If the vesa driver doesn't do what you need, try fbdev. I had problems with the openchrome driver in the distant past; don't know if those problems have been resolved as that hardware is long gone.

Code:
Section "ServerLayout"
  Identifier     "X.org Configured"
  Screen      0  "Screen0" 0 0
  InputDevice    "Mouse0" "CorePointer"
  InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
  ModulePath   "/usr/lib/xorg/modules"
  FontPath     "catalogue:/etc/X11/fontpath.d"
  FontPath     "built-ins"
EndSection

Section "Module"
  Load  "record"
  Load  "extmod"
  Load  "dri2"
  Load  "dri"
  Load  "glx"
  Load  "dbe"
EndSection

Section "InputDevice"
  Identifier  "Keyboard0"
  Driver      "kbd"
EndSection

Section "InputDevice"
  Identifier  "Mouse0"
  Driver      "mouse"
  Option      "Protocol" "auto"
  Option      "Device" "/dev/input/mice"
  Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
  Identifier   "Monitor0"
  VendorName   "Monitor Vendor"
  ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"            # [<bool>]
        #Option     "DefaultRefresh"      # [<bool>]
        #Option     "ModeSetClearScreen"  # [<bool>]
  Identifier  "Card0"
  Driver      "vesa"
  BusID       "PCI:1:0:0"
EndSection

Section "Screen"
  Identifier "Screen0"
  Device     "Card0"
  Monitor    "Monitor0"
  SubSection "Display"
    Viewport   0 0
    Depth     24
    Modes    "1280x1024" "1024x768" "800x600"
  EndSubSection
EndSection
 
1 members found this post helpful.
Old 04-03-2013, 06:54 PM   #3
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by RockDoctor View Post
I'd start with the xorg.conf below.
Your xorg.conf already shows signs of improvement: As is, it first gives me what the monitor's OSD reports as:
Code:
1280x720
H: 45KHz  V:60Hz
Analog Input
If I press Ctrl-+, I get another mode:
Code:
1280x960
H: 59KHz  V:60Hz
Analog Input
Both modes, however, are off-center and don't fill the entire screen. So I have to continue experimenting with the direction you gave me:

Quote:
Originally Posted by RockDoctor View Post
If the vesa driver doesn't do what you need, try fbdev.
Thank you. I will report back my findings.
 
Old 04-03-2013, 07:07 PM   #4
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Original Poster
Rep: Reputation: Disabled
OK, I tried 'fbdev' (instead of 'vesa') for the 'Driver' line and I got a "no screens found" error.

This is the relevant snippet from /var/log/Xorg.0.log:

Code:
[ 75048.995] (II) Loading extension DOUBLE-BUFFER
[ 75048.995] (II) LoadModule: "fbdev"
[ 75048.996] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[ 75048.996] (II) Module fbdev: vendor="X.Org Foundation"
[ 75048.996] 	compiled for 1.10.4, module version = 0.4.2
[ 75048.996] 	ABI class: X.Org Video Driver, version 10.0
[ 75048.996] (II) FBDEV: driver for framebuffer: fbdev
[ 75048.997] (--) using VT number 7

[ 75049.013] (II) Loading sub module "fbdevhw"
[ 75049.014] (II) LoadModule: "fbdevhw"
[ 75049.014] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[ 75049.014] (II) Module fbdevhw: vendor="X.Org Foundation"
[ 75049.014] 	compiled for 1.10.4, module version = 0.0.2
[ 75049.014] 	ABI class: X.Org Video Driver, version 10.0
[ 75049.014] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[ 75049.014] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[ 75049.176] (EE) open /dev/fb0: No such device
[ 75049.181] (WW) Falling back to old probe method for fbdev
[ 75049.181] (II) UnloadModule: "fbdev"
[ 75049.181] (II) Unloading fbdev
[ 75049.181] (II) UnloadModule: "fbdevhw"
[ 75049.181] (II) Unloading fbdevhw
[ 75049.181] (EE) Screen(s) found, but none have a usable configuration.
[ 75049.181] 
Fatal server error:
[ 75049.181] no screens found
What does that error mean? AFAIK, there is a screen definition in that xorg.conf (all I changed was the Driver)


Also, since the original install didn't complain about the video "card" and only complained about the monitor, is it possible that all I need is fix the "Monitor" section?

If so, what values should I place there?

Last edited by d420; 04-03-2013 at 07:09 PM.
 
Old 04-03-2013, 07:18 PM   #5
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,654
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
I have one of those, here is the spec from xorg.conf...
Code:
Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Acer AL1716"
    HorizSync       30.0 - 81.0
    VertRefresh     55.0 - 75.0
    Option         "DPMS"
EndSection
edit ""Monitor0"" to suit yours

Last edited by GlennsPref; 04-03-2013 at 07:20 PM.
 
1 members found this post helpful.
Old 04-03-2013, 07:49 PM   #6
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by GlennsPref View Post
I have one of those, here is the spec from xorg.conf...
Code:
Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Acer AL1716"
    HorizSync       30.0 - 81.0
    VertRefresh     55.0 - 75.0
    Option         "DPMS"
EndSection
Thanks! I tried exactly this and I am receiving the similar results (off-center and display not entirely filled).

I also tried the following Modlines (one at a time, of course):

Code:
Modeline "1280x1024" 151.83  1280 1360 1544 1888  1024 1024 1027 1072  +hsync +vsync
Modeline "1280x1024" 138.54  1280 1368 1504 1728  1024 1025 1028 1069  -HSync +Vsync
Modeline "1280x1024" 156.43  1280 1312 1904 1936  1024 1043 1056 1076
Copied from here and here. But that didn't solve the problem.

At least I now know what correct values for the monitor's HorizSync and VertRefresh are, but I am out of ideas right now.

BTW, lspci reports the video card as:

Code:
01:00.0 VGA compatible controller: VIA Technologies, Inc. CX700/VX700 [S3 UniChrome Pro] (rev 03)
Which just let me find this Bug 488192 report with some suggested working parameters?

I will try out some of the values and see what happens.

Last edited by d420; 04-03-2013 at 08:44 PM.
 
Old 04-03-2013, 08:28 PM   #7
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Original Poster
Rep: Reputation: Disabled
More trial and error...

I tried the following:

Code:
Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Unknown"
	ModelName    "Acer AL1716"

	HorizSync       31.0 - 81.0
    	VertRefresh     55.0 - 75.0
	Option         "DPMS"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "openchrome"
	BusID       "PCI:1:0:0"
EndSection


Section "Screen"
  Identifier "Screen0"
  Device     "Card0"
  Monitor    "Monitor0"
  SubSection "Display"
    Viewport   0 0
    Depth     24
    Modes    "1280x1024"
  EndSubSection
EndSection
I am getting "Input Not Supported" on the monitor (the message is generated by the monitor, not by the PC).

I am attaching the /var/log/Xorg.0.log for better insight... I don't really know how to translate the information there into a working xorg.conf.
Attached Files
File Type: log Xorg.0.log (62.2 KB, 20 views)
 
Old 04-04-2013, 04:26 PM   #8
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
Are you using gtf to get the modelines you're trying? Here's an example:
Code:
~$ gtf 1280 1024 60

  # 1280x1024 @ 60.00 Hz (GTF) hsync: 63.60 kHz; pclk: 108.88 MHz
  Modeline "1280x1024_60.00"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
You can change the name of the mode; I typically drop the frequency, so the above would get pasted into the "Monitor" section of my xorg.conf file as
Code:
Modeline "1280x1024"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
; and the Modes line of the "Screen" section would appear as in the post immediately above this post
 
Old 04-04-2013, 05:21 PM   #9
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,654
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
Ok,
Quote:
I am attaching the /var/log/Xorg.0.log for better insight..
not too many signs of fault with xorg.

Have you reset your Acer monitor to auto?

If not, press the power button to get the osd menu,

use the arrow keys, 2 center buttons on the front screen of the AL1716,

to move to auto and select.

The screen jiggles about finding the center and edges, blah, blah.....

Just a thought....

Here's my entire xorg.conf...
Also, X will look for it's config files in several places, but it looks at /etc/X11/xorg.conf first.
That's why you may not have an /etc/X11/xorg.conf with everything in it. The current approach is to modularise and reuse code.

If you search, using locate, for xorg.d
Code:
locate xorg.d
locate xorg.conf.d
you may find the other components there in smaller files.

I have 2 monitors and use one desktop spread across when using kde. But nothing is assigned to the Acer before X starts.
Main mon is configured, the second monitor is right of main.
/etc/X11/xorg.conf
Code:
Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
    FontPath        "/usr/share/fonts/default/Type1"
EndSection

Section "Module"
    Load           "dbe" # Double-Buffering Extension
    Load           "v4l" # Video for Linux
    Load           "extmod"
    Load           "glx" # 3D layer
    Disable        "dri"
EndSection

Section "InputClass"
      Identifier "mouse speed adjustment"
      MatchIsPointer "on"
      MatchProduct "Razer Razer Orochi"
      Option "ConstantDeceleration" "2"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "MouseSystems"
    Option         "Device" "/dev/gpmdata"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
    #Option         "Device" "/dev/evdev"
    Option 	   "Resolution" "5000"
EndSection

Section "InputDevice"
    # generated from data in "/etc/sysconfig/keyboard"
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "XkbLayout" "us"
    Option         "XkbModel" "pc105"
EndSection

Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "BenQ G2420HD"
    HorizSync       24.0 - 83.0
    VertRefresh     50.0 - 76.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 570"
    Option         "PCI ID" "1086:10de"
    VideoRam       1417216 # 1384mb
    #Driver         "vesa"  # backup display
    BusID          "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "1"
    Option         "TwinViewXineramaInfoOrder" "DFP-0"
    Option         "metamodes" "DFP: 1920x1080 +0+0, CRT: nvidia-auto-select +1920+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "Enable"
    Option         "RENDER" "Enable"
    Option         "HWCursor"
EndSection
Hth.

Last edited by GlennsPref; 04-04-2013 at 05:42 PM. Reason: [/code] & xorg.conf.d
 
Old 04-06-2013, 11:30 AM   #10
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Original Poster
Rep: Reputation: Disabled
Arrow

Quote:
Originally Posted by RockDoctor View Post
Are you using gtf to get the modelines you're trying?
No, I didn't use 'gtf' (I didn't know about it), but now (thanks to you) I do and this is what I received:
Code:
# 1280x1024 @ 60.00 Hz (GTF) hsync: 63.60 kHz; pclk: 108.88 MHz
Modeline "1280x1024_60.00"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
Unfortunately this didn't help. Even with this totally correct monitor setting, I am still getting the previous behavior (either with vesa or openchrome).

I know that it is possible to achieve perfect 1280x1024 display with this motherboard+monitor combo, because I have Windows XP on it in dual-boot and it works perfectly in 1280x1024. All I have to do now is to find the right settings.

I am attaching the latest xorg.conf I tried (without much progress)

Regarding generating the 1280x1024 Modeline via 'gtf': How do I know what the correct Horizonal Hz to specify for this monitor? (I used 60Hz, but perhaps it requires a different frequency for this mode?)

The answer may be found in the official specs: 75Hz! So, I tried it with a 75Hz Modeline but still no change in behavior.

(I also tried it with a 50Hz Modline, no help here either)

I suspect I should be using the openchrome (which currently produces "Input Not Supported") but with some very specific options from this list:

Code:
        #Option     "PrintVGARegs"       	# [<bool>]
        #Option     "PrintTVRegs"        	# [<bool>]
        #Option     "I2CScan"            	# [<bool>]
        #Option     "VBEModes"           	# [<bool>]
        #Option     "NoAccel"            	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "ExaNoComposite"     	# [<bool>]
        #Option     "ExaScratchSize"     	# <i>
        #Option     "SWCursor"           	# [<bool>]
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "Rotate"             	# [<str>]
        #Option     "VideoRAM" 	  	     	# <i>
        #Option     "ActiveDevice" "CRT|LCD|DFP" # [<str>]
        #Option     "BusWidth"           	# [<str>]
        #Option     "Center" "true"           	# [<bool>]
        #Option     "PanelSize" "1280x1024"      # [<str>]
        #Option     "ForcePanel" "on"    	# [<bool>]
        #Option     "TVDotCrawl"         	# [<bool>]
        #Option     "TVDeflicker"        	# <i>
        #Option     "TVType"             	# [<str>]
        #Option     "TVOutput"           	# [<str>]
        #Option     "TVPort"             	# [<str>]
        #Option     "DisableVQ"          	# [<bool>]
        #Option     "DisableIRQ"         	# [<bool>]
        #Option     "EnableAGPDMA"       	# [<bool>]
        #Option     "NoAGPFor2D"         	# [<bool>]
        #Option     "NoXVDMA"            	# [<bool>]
        #Option     "VbeSaveRestore"     	# [<bool>]
        #Option     "DisableXvBWCheck"   	# [<bool>]
        #Option     "ModeSwitchMethod"   	# [<str>]
        #Option     "MaxDRIMem"          	# <i>
        #Option     "AGPMem"             	# <i>
But which one(s) and what values?
Attached Files
File Type: txt xorg.conf-vesa-acer-al1716.txt (1.4 KB, 36 views)

Last edited by d420; 04-06-2013 at 02:24 PM. Reason: wrong xorg.conf file + it's not 60Hz, it's 75Hz!
 
Old 04-06-2013, 02:20 PM   #11
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by GlennsPref View Post
Have you reset your Acer monitor to auto?
Yes, I did. Behavior is the same.


Quote:
Originally Posted by GlennsPref View Post
If you search, using locate, for xorg.d
`locate xorg.d` yields nothing.
`locate xorg.conf.d` yields the following:
Code:
/etc/X11/xorg.conf.d
/usr/share/X11/xorg.conf.d
/usr/share/man/man5/xorg.conf.d.5.gz
But both directories are empty.


Quote:
Originally Posted by GlennsPref View Post
Here's my entire xorg.conf...
Your monitor section doesn't include the ACER AL1716F and it refers to an NVidia card? How can I use it?
 
Old 04-06-2013, 06:51 PM   #12
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
This seems like a strange suggestion, but, thinking back to the problems I had with my monitor, one of the key factors in making it display in its full 1680x1050 glory was to set the display size in the "Monitor" section. Based on your monitor's specs, your "Monitor" section should therefore be:
Code:
Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Unknown"
	ModelName    "Acer AL1716"
        DisplaySize  338 270
	HorizSync       30.0 - 81.0
    	VertRefresh     55.0 - 75.0
	Option         "DPMS"
        # 1280x1024 @ 75.00 Hz (GTF) hsync: 80.17 kHz; pclk: 138.54 MHz
        Modeline "1280x1024_75.00"  138.54  1280 1368 1504 1728  1024 1025 1028 1069  -HSync +Vsync
and you should use Mode 1280x1024_75.00 in the "Screen" section of your xorg.conf file.
 
Old 04-06-2013, 10:34 PM   #13
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by RockDoctor View Post
...set the display size in the "Monitor" section.
Thanks. I tried the numbers you suggested, then a brute 1280 1024, and still no go.

In my searches, I found this hint about correct openchrome options.

I tried them, but still no go.

I am attaching the latest xorg.conf, which displays the entire 1280x1024 but through a smaller viewport which seems to be about 1/4 of the actual resolution of the monitor. It may be usable that way but not very convenient and definitely strange.
Attached Files
File Type: txt xorg.conf-with-openchrome-options.txt (3.5 KB, 26 views)
 
Old 04-07-2013, 07:41 AM   #14
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
A slight modification of your most recent xorg.conf for you to try:

Code:
Section "ServerLayout"
  Identifier     "X.org Configured"
  Screen      0  "Screen0" 0 0
  InputDevice    "Mouse0" "CorePointer"
  InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
  ModulePath   "/usr/lib/xorg/modules"
  FontPath     "catalogue:/etc/X11/fontpath.d"
  FontPath     "built-ins"
EndSection

Section "Module"
  Load  "record"
  Load  "extmod"
  Load  "dri2"
  Load  "dri"
  Load  "glx"
  Load  "dbe"
EndSection

Section "InputDevice"
  Identifier  "Keyboard0"
  Driver      "kbd"
EndSection

Section "InputDevice"
  Identifier  "Mouse0"
  Driver      "mouse"
  Option      "Protocol" "auto"
  Option      "Device" "/dev/input/mice"
  Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
  Identifier   "Monitor0"
  VendorName   "Unknown"
  ModelName    "Acer AL1716"

  DisplaySize  338 270
  HorizSync    30.0 - 81.0
  VertRefresh  55.0 - 75.0
  Option       "DPMS"
  # 1280x1024 @ 60.00 Hz (GTF) hsync: 63.60 kHz; pclk: 108.88 MHz
  Modeline "1280x1024"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync

EndSection


Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "PrintVGARegs"        # [<bool>]
        #Option     "PrintTVRegs"         # [<bool>]
        #Option     "I2CScan"             # [<bool>]
        #Option     "VBEModes"            # [<bool>]
        #Option     "NoAccel"             # [<bool>]
        #Option     "AccelMethod"         # <str>
        #Option     "ExaNoComposite"      # [<bool>]
        #Option     "ExaScratchSize"      # <i>
        #Option     "SWCursor"            # [<bool>]
        #Option     "ShadowFB"            # [<bool>]
        #Option     "Rotate"              # [<str>]
        #Option     "VideoRAM"            # <i>
        #Option     "ActiveDevice"        # [<str>]
        #Option     "BusWidth"            # [<str>]
        #Option     "Center"              # [<bool>]
        #Option     "PanelSize"           # [<str>]
        #Option     "ForcePanel"          # [<bool>]
        #Option     "TVDotCrawl"          # [<bool>]
        #Option     "TVDeflicker"         # <i>
        #Option     "TVType"              # [<str>]
        #Option     "TVOutput"            # [<str>]
        #Option     "TVPort"              # [<str>]
        #Option     "DisableVQ"           # [<bool>]
        #Option     "DisableIRQ"          # [<bool>]
        #Option     "EnableAGPDMA"        # [<bool>]
        #Option     "NoAGPFor2D"          # [<bool>]
        #Option     "NoXVDMA"             # [<bool>]
        #Option     "VbeSaveRestore"      # [<bool>]
        #Option     "DisableXvBWCheck"    # [<bool>]
        #Option     "ModeSwitchMethod"    # [<str>]
        #Option     "MaxDRIMem"           # <i>
        #Option     "AGPMem"              # <i>

  Option     "AccelMethod"          "exa"
  Option     "ExaNoComposite"       "true"
  Option     "ExaScratchSize"       "8192"
  Option     "ActiveDevice"         "LCD,CRT"
  Option     "EnableAGPDMA"         "true"

  Identifier  "Card0"
  Driver      "openchrome"
  VendorName  "VIA Technologies, Inc."
  BoardName   "VX800/VX820 Chrome 9 HC3 Integrated Graphics"
  BusID       "PCI:1:0:0"
EndSection

Section "Screen"
  Identifier "Screen0"
  Device     "Card0"
  Monitor    "Monitor0"
  SubSection "Display"
    Viewport   0 0
    Depth     24
    Modes "1280x1024" "1024x768"
  EndSubSection
EndSection
 
1 members found this post helpful.
Old 04-09-2013, 05:04 AM   #15
d420
LQ Newbie
 
Registered: Feb 2012
Posts: 17

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by RockDoctor View Post
A slight modification of your most recent xorg.conf for you to try:

Code:
  Option      "ZAxisMapping" "4 5 6 7"
Nope. Didn't work.

I think I am going to give up. This box is going to be a headless server anyway and so after initial install, I will simply continue configuration from a remote X server (Ubuntu). Oh well.

Thanks for all the help!
 
  


Reply

Tags
lcd, video card, x11, xorg.conf



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
cannot create xorg.conf file anjanu Linux - Laptop and Netbook 12 09-18-2011 01:50 AM
[SOLVED] how to create xorg.conf manually? Miax Linux - Software 6 10-19-2010 11:14 AM
add correct ati driver in xorg.conf for my pcie card esteeven Linux - Hardware 3 06-13-2010 03:42 AM
Help setting correct driver for ATI Rage 128 in xorg.conf Meson Linux - Hardware 15 07-29-2009 03:18 PM
CentOS 5 - How to create xorg.conf satimis Linux - Distributions 1 10-14-2007 10:45 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 10:33 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration