ATI card + OS driver + multi monitor

Hello everyone,
I'm stuck configuring the RadeonHD drivers for multi monitor setup. The system starts with both screens cloned; logging in is in clone mode too. After that the second display is being turned of (no signal). Using xrandr --auto will enable the second display to life and clones the sreen again. xrandr --output DVI-I_1/analog --left-of DVI-I_2/analog will create a big desktop only the second display can only be used for a half screen mouse will go further anything else will not.
I've started with a autogenerated, by xorg, xorg.conf file and tweaked to the one below
xorg.conf
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
# Load "glx"
# Load "dbe"
# Load "dri2"
# Load "extmod"
# Load "dri"
# Load "record"
EndSection
Section "Monitor"
Identifier "AL1916W"
VendorName "Acer"
ModelName "AL1916W"
DisplaySize 1440 900
EndSection
Section "Monitor"
Identifier "AL2016W"
VendorName "Acer"
ModelName "AL2016W"
Option "RightOf" "AL1926W"
DisplaySize 1680 1050
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "AccelMethod" # [<str>]
#Option "offscreensize" # [<str>]
#Option "SWcursor" # [<bool>]
#Option "ignoreconnector" # [<str>]
#Option "forcereduced" # [<bool>]
#Option "forcedpi" # <i>
#Option "useconfiguredmonitor" # [<bool>]
#Option "HPD" # <str>
#Option "NoRandr" # [<bool>]
#Option "RROutputOrder" # [<str>]
#Option "DRI" # [<bool>]
#Option "TVMode" # [<str>]
#Option "ScaleType" # [<str>]
#Option "UseAtomBIOS" # [<bool>]
#Option "AtomBIOS" # [<str>]
#Option "UnverifiedFeatures" # [<bool>]
#Option "Audio" # [<bool>]
#Option "AudioStreamSilence" # [<str>]
#Option "HDMI" # [<str>]
#Option "COHERENT" # [<str>]
#Option "ForceLowPowerMode" # [<bool>]
#Option "LowPowerModeEngineClock" # <i>
Option "monitor-DVI-I_1/analog" "AL1916W"
Option "monitor-DVI-I_2/analog" "AL2016W"
Identifier "Card0"
Driver "radeonhd"
VendorName "ATI Technologies Inc"
BoardName "RV710 [Radeon HD 4350]"
BusID "PCI:2:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
# Monitor "AL1916W"
SubSection "Display"
Depth 24
# Virtual 3840 1920
EndSubSection
EndSection
My Xorg.0.log shows the line (WW) RADEONHD(0): Option "monitor-DVI_I_2/analog" is not used wich puzzles me!
Information:
X.Org X Server 1.7.1.901 (1.7.2 RC 1)
xrandr program version       1.3.2
Server reports RandR version 1.3
xf86-video-radeonhd 1.3.0-1
If more information, from Xorg.0.log or anywhere else, is needed just ask....
Thanks in advance,
Arjan Gelderblom
Last edited by Bloged (2009-12-14 10:02:05)

Sorry for the delay, but I was away for the weekend!
Andrwe wrote:Please try setting the bigger one monitor right-of the small one.
xrandr --output DVI-I_2/analog --right-of DVI-I_1/analog
This doens't change much except that now the smaller monitor has the problems!
litemotiv wrote:try using xf86-video-ati instead of radeonhd. i tried to get xrandr working for over a week having exactly the same problem, ultimately switched drivers and had everything set up in ~10 minutes.
Changed to ati instead of the radeonhd drivers still gives the same error!
Eratosthenes wrote:
I think you need to set a valid virtual size in your xorg. I think the one you have commented out is too large.
Mine is:
Subsection "Display"
Virtual 3200 1200
EndSubsection
Changed see new xorg.conf
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
# Load "glx"
# Load "dbe"
# Load "dri2"
# Load "extmod"
# Load "dri"
# Load "record"
EndSection
Section "Monitor"
Identifier "AL1916W"
VendorName "Acer"
ModelName "AL1916W"
EndSection
Section "Monitor"
Identifier "AL2016W"
VendorName "Acer"
ModelName "AL2016W"
Option "RightOf" "AL1926W"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "AccelMethod" # [<str>]
#Option "offscreensize" # [<str>]
#Option "SWcursor" # [<bool>]
#Option "ignoreconnector" # [<str>]
#Option "forcereduced" # [<bool>]
#Option "forcedpi" # <i>
#Option "useconfiguredmonitor" # [<bool>]
#Option "HPD" # <str>
#Option "NoRandr" # [<bool>]
#Option "RROutputOrder" # [<str>]
#Option "DRI" # [<bool>]
#Option "TVMode" # [<str>]
#Option "ScaleType" # [<str>]
#Option "UseAtomBIOS" # [<bool>]
#Option "AtomBIOS" # [<str>]
#Option "UnverifiedFeatures" # [<bool>]
#Option "Audio" # [<bool>]
#Option "AudioStreamSilence" # [<str>]
#Option "HDMI" # [<str>]
#Option "COHERENT" # [<str>]
#Option "ForceLowPowerMode" # [<bool>]
#Option "LowPowerModeEngineClock" # <i>
Option "monitor-DVI-1" "AL1916W"
Option "monitor-DVI-0" "AL2016W"
Identifier "Card0"
Driver "ati"
VendorName "ATI Technologies Inc"
BoardName "RV710 [Radeon HD 4350]"
BusID "PCI:2:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "AL1916W"
SubSection "Display"
Depth 24
Virtual 3120 1050
EndSubSection
EndSection
Andrwe wrote:BTW could you please sent teh log, maybe there is something you may have missed.
Because of the switch to ati from radeon the log is different now... but here it is: http://pastebin.com/m77d0ea0b
This one at least shows that my seccond monitor is connected which failed in radeonhd!
Thanks for all the help,
Arjan Gelderblom
Edit: changed topic title to have it apply better to it's content
Last edited by Bloged (2009-12-14 10:02:47)

Similar Messages

  • 2x ATI cards, 2x dual-link monitors. How to make it work?

    As per the subject, I have 2 ATI cards, they both seem to be detected/initialised by the kernel OK on bootup and are listed in lspci. I need two cards as I want to power two large displays which require dual-link dvi connections.
    I can see from the X.org log that X only detects one of the cards, even if I specify two device sections with the relevant busID of each card in the xorg.conf. X just seems to complete ignore it. I'm using the open source radeon driver with an up-to-date arch system.  This has been driving me crazy for a couple of weeks now, to the point where I'm considering getting another PC to use to power the second screen!!
    LSPCI section:
    01:00.0 VGA compatible controller: ATI Technologies Inc Cayman PRO [Radeon HD 6950]
    01:00.1 Audio device: ATI Technologies Inc Device aa80
    02:00.0 VGA compatible controller: ATI Technologies Inc Cayman PRO [Radeon HD 6950]
    02:00.1 Audio device: ATI Technologies Inc Device aa80
    Device section from xorg:
    Section "Device"
    Identifier "Card0"
    Driver "radeon"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "radeon"
    BusID "PCI:2:0:0"
    EndSection
    I think the key to this is getting X to load the driver for the second graphics card, then I can configure it with xrandr - but I haven't got a clue how to do this... I'm guessing it's possible though??
    Thanks for any help!!
    Last edited by mrheh (2011-11-02 17:15:47)

    01:00.0 VGA compatible controller: ATI Technologies Inc Cayman XT [AMD Radeon HD 6900 Series]
    01:00.1 Audio device: ATI Technologies Inc Device aa80
    02:00.0 VGA compatible controller: ATI Technologies Inc Cayman XT [AMD Radeon HD 6900 Series]
    02:00.1 Audio device: ATI Technologies Inc Device aa80
    /etc/X11/xorg.conf.d/10-monitor.conf
    Section "Monitor"
        Identifier    "Monitor0"
        Option        "Enable" "true"
    EndSection
    Section "Monitor"
        Identifier    "Monitor1"
        Option        "Enable" "true"
    EndSection
    Section "Device"
        Identifier    "Device0"
        Driver        "radeon"
        BusID        "PCI:1:0:0"
    EndSection
    Section "Device"
        Identifier    "Device1"
        Driver        "radeon"
        BusID        "PCI:2:0:0"
    EndSection
    Section "Screen"
        Identifier    "Screen0"
        Device        "Device0"
        Monitor        "Monitor0"
        SubSection "Display"
            Depth    24
            Modes    "2560x1600"
        EndSubSection
    EndSection
    Section "Screen"
        Identifier    "Screen1"
        Device        "Device1"
        Monitor        "Monitor1"
        SubSection "Display"
            Depth     24
            Modes    "2560x1600"
        EndSubSection
    EndSection   
    Section "ServerLayout"
        Identifier    "My Server"
        Screen        0    "Screen0"    0    0
        Screen        1    "Screen1"    RightOf    "Screen0"
        Option         "Xinerama"    "1"
    EndSection

  • Card to drive dual monitors

    Wife has decided she wants to have dual monitors, and from what I've read, her current ATI 4350 has difficulties with that
    A quick search shows that the ATI 4650 has two DVI output connectors, so SHOULD do what she wants with no problems
    Any comments?

    function(){return A.apply(null,[this].concat($A(arguments)))}
    JSS1138 wrote:
    >her current ATI 4350 has difficulties with that
    The card has multiple outputs.  Try it before you spend any money.
    Well, you win the prize... the ATI 4350 does work... albeit with a LOT of trying different options to get it all to work properly
    When I got home last night wife want to try RIGHT NOW and I was too tired to go back out... so I turned my computer off and "temporarily" moved my 24 inch monitor over next to her 24 inch
    I know now why I found so many questions/complaints about setting up a dual monitor system
    Hardware is easy...  simply connect the 2nd monitor to the 2nd output... program/logic is NOT intuitive at all, so it took me about half an hour of clicking around to get things set up and working properly
    Right now, I have borrowed "her" 2nd monitor back to check email and messages this morning, and as soon as I finish here my computer goes dark again so I can put "her" 2nd monitor back in place
    Of course the good thing is... later today I go to Costco (only local store I could find with one in stock) to buy a 27 inch monitor for my side of the office

  • Graphics Card to drive Dual Monitors

    I have just purchased a xserve and I want to run dual monitors. Are there any graphic cards I can put in the PCIe slot to with dual DVI out. On the website the 1900xt is supposed to work but is a double wide and I need the other slot for raid card

    function(){return A.apply(null,[this].concat($A(arguments)))}
    JSS1138 wrote:
    >her current ATI 4350 has difficulties with that
    The card has multiple outputs.  Try it before you spend any money.
    Well, you win the prize... the ATI 4350 does work... albeit with a LOT of trying different options to get it all to work properly
    When I got home last night wife want to try RIGHT NOW and I was too tired to go back out... so I turned my computer off and "temporarily" moved my 24 inch monitor over next to her 24 inch
    I know now why I found so many questions/complaints about setting up a dual monitor system
    Hardware is easy...  simply connect the 2nd monitor to the 2nd output... program/logic is NOT intuitive at all, so it took me about half an hour of clicking around to get things set up and working properly
    Right now, I have borrowed "her" 2nd monitor back to check email and messages this morning, and as soon as I finish here my computer goes dark again so I can put "her" 2nd monitor back in place
    Of course the good thing is... later today I go to Costco (only local store I could find with one in stock) to buy a 27 inch monitor for my side of the office

  • 7800GT won't drive both monitors

    I've just upgraded my system core as follows:
    Mobo: ASUS P5WD2 Premium
    uPU: Intel Pentium 4 3.2 GHz Socket 775
    RAM: 2G DDR2
    BIOS: AMI V08.00.10
    HDD: Maxtor Y080P0 EIDE 80GB
    VGA: NX7800GT
    Monitors: 2 x Formac Gallery 2010
    OS: Win2K Pro SP4
    My problem is that I cannot get the graphics card to drive both monitors simultaneously (even before Windows has started), although it will operate either on its own (via the corresponding DVI port - i.e. both are working). I even managed to get it to drive monitor 2 (via DVI port 2) during startup by disconnecting monitor 1 temporarily during power up, only to see it switch back to monitor 1 (via DVI port 1) once the Win2K drivers had loaded and started.
    What's frustrating is that while I was initially configuring the motherboard's BIOS in an attempt to overcome problems with reading my HDD, I managed to get the graphics card to drive both monitors (purely in text mode, because I couldn't get Windows to start), but cannot now recall the setup that acheived this.
    Can anyone advise how I can configure the graphics card and/or my motherboard's BIOS to drive both monitors simultaneously?

    Boffin,
    Just to verify, you are using the Drivers from the nVidia Website, not the ones from MSI. If you are using MSI or have used MSI, run Driver Cleaner and then install the nVidia Drivers from the nVidia Website. Also make sure in Display Settings you extend your desktop to the second monitor.
    If non of this helps, it sounds like it is time for a fresh install of Win2k or a great time to switch to a fresh install of WinXP.
    Take Care,
    Richard

  • I want to Connect my Mac Mini as a Slave to a Mac pro Server while at the same time using the Mac mini's thunderbolt ports peripherals ( ie monitor, Sound Card, Hard drives) Creating a poor man's new mac Pro. Can this be Done?

    I want to Connect my Mac Mini as a Slave to a Mac pro Server while at the same time using the Mac mini's thunderbolt ports peripherals ( ie monitor, Sound Card, Hard drives) Creating a poor man's new mac Pro. Can this be Done?

    Well, I really would love the new unreleased mac pro however , I'm not sure of the expected cost , Everyone speculates from $3,000 to $8,000, in which I may have to wait a while to purchase.
    To the point .... I want fully functional thunderbolt ports to be on the current mac pro's .... wonder if anyone had workarounds yet?...  or could I chain the the current mac pro to a mac mini to make that happen?

  • How to How to install ATI Radeon HD2600 driver on bootcamp 3.0 windows 7 partition w/black screen problem

    Ok....so i've posted this question in a different way, and i gotten several "scratch the surface" answers from people just saying to install "Ati catalyst", or insert the os x dvd and run set up.exe, and update  to boot camp 3.1 or 3.2...while these all seem like great suggestions, I am finding myself needing more specific direction or "hand holding" so to speak.....here is the MAIN problem...
    The Background/history
    I used boot camp (3.0, and i found updates for 3.1 for imac and for windows, but can't find for mac pro, AND they all are ".exe" files which run on windows..which as you'll see is the big part of my problem...So I recently updated my mac pro (with the ATI Radeon HD2600 graphic PCIe card with 10.6.7 from 10.5.8.  I created a single partitioned drive to install windows 7 professional 64 bit.  The download software function didn't work (Thanks, APPLE for that poor level of support) so have to select the option that i have already downloaded, or have other media with the drivers already on it....i restarted with the windows 7 disk in.... 
    The installation of Windows 7 Pro 64-bit
    So the installation of windows 7 seemed to go flawlessly, was able to use my existing 23" hd apple cinema display (so somehow it has drivers that work with the graphics card, or maybe the motherboard's on board video components) and i select english, and install now, custom, blah, blah, blah...installation causes a few reboots, then restarts ultimately back in os x since that is the default boot os i use on this desk top and have to do the "opt" button to select booting in windows....so when i try restarting in windows, now using the actual boot drive on which i am installing it, it ran through another reboot or two, but then after that, my display goes black....  in the communities, the solution sounds super simple... "go download the ATI catalyst for the black screen problem....windows 7 doesn't have device drivers that work with the ATI radeon hd2600...no problem, just go download and install...."
    The problem, re-emphasized :  I cannot even finish the install for windows, because of this driver problem....i cannot see anything....I have tried to reboot in safe mode, and that then seems to invoke whatever basic drivers that do work, likely through the motherboards onboard video vs the actual graphic card, and the screen works and says that it's wanting to complete the installation, so i'm thinking awesome this is gonna work....and then.. "windows installation was not completed and cannot be completed in SAFE MODE, need to restart, blah, blah, blah" pops up...and forces reboot...so Safe Mode allows me to see, but won't allow me to finish the install of windows 7...and without completing the install i can't run (ranther I DONT KNOW HOW TO) any of the various .exe files everyone is telling me are the solutions to my problem...like update 3.1 and 3.2 bootcamp...they're all .exe files?  not sure why, because bootcamp runs in 10.6.7 i thought, but whatever...it needs running Windows to execute...then the ATI radeon hd2600 driver for windows 7 that i downloaded from the site has an installation program that is an .exe file, which needs windows to run...  Does this make sense, why i can't just use these fixes, that seem to be the only fixes out there....so can someone school me step by step here (not just the highlights) of how to update bootcamp, and how to install the ati radeon driver  without having been able to complete the windows 7 installation because the monitor goes and stays black????
    This is so very frustrating for the record...and any substantial help "not just go download this..." would be immensely appreciated.
    Some other things i've been told to try that i've tried and nothing seems to happen as i'm told it will....
    ---I've been told to install the osx dvd and run "setup.exe"  - AGAIN...it's an exe file...and 2 - when i put in the os x file it just wants to re install 10.6...so need more help if this is even a real solution to understand how to make it work...
    ---I've been told to update boot camp to 3.1 and/or 3.2 from 3.0, using Apple Software Update....Well, my software update is saying everything is up to date and there is nothing new to download at all, and when i reverify the bootcamp version it is still only 3.0.2...and again downloading the updates from www.apple.com/support/  for 3.1 and 3.2...all of those are .exe files...need windows to run them...again, refer to the problem described in detail above...
    ---I've been referred to the black screen on imac early 2011 thread saying it should fix my problem...and reading it it SEEMED like the most promising resolution...it involves creating a boot flash drive for windows 7 and an xml file that sets the imac drivers to auto install during the windows installation..and it got me farther than anything else..but still ultimately ended up in the darned black screen...my assumption is that it's because it's for imac and not mac pro so not ati-radeon specific drivers....ok....that's enough..please...anyone who thinks they can help...your help is desperately needed...thanks so much in advance!

    hey Hatter, thanks so much for getting back...so just to be super clear...is there no way to install the drivers using an exe file given my current state? no way to do it with command prompt or something?  if can make work with existing card, i'd prefer it...now when you say it's 'toast' how do you mean?  it works well with the os x partitions and always has...so i'm not sure i follow, just want to be clear...
    Now to your point of starting with only the one drive installed...so i would put that bootcamp drive in bay 1 and disconnect the rest...i'm not totally sure what you're suggesting the effect should be of doing this?  just that i'm just installing windows without the bootcamp deal...but if windows 7 doesn't support the ati radeon hd2600, it still will go black screen no? or you're saying it will run video through the motherboard if it's the only bootdrive, and will run all the way through the windows install without trying to switch over to the hd2600?  (slrry flr these questions..just really want to make sure i understand what you're telling me..thanks so much for your patience and help by the way...it's very greatly appreciated...your support is priceless!
    So now, assuming none of the above is possible...referring now to the ati 5770 that you referred to...you mention it works with 10.6 well, and that windows 7 supports it ...2 questions on that
         1) Windows 7 supports" meaning, out of the box windows 7 supports it? or will i have to install drivers still through some update, because again, if that's how i have to do it, then won't work, cuz can't start windows to see anything to install any drivers or run any thing at all...so it would have to just work with initial installation.
         2)hardware wise for my Mac Pro 3,1...intel dual quad core xeon, blah blah....will this card work? it's a PCIe and should fit on my board no prob, etc?

  • Zen Kernel and new ati radeon oss driver

    Hey together!
    A few days ago I get new ati-driver from testing and since then, I can't start the xserver with the zen kernel and ums. I can use the normal kernel 2.6.33 normally.
    Here is my Xorg log:
    X.Org X Server 1.7.6
    Release Date: 2010-03-17
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux linux-laptop 2.6.33-ZEN #1 ZEN SMP PREEMPT Fri Mar 5 13:29:19 CET 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/5394d0b7-4952-4f87-87bc-a4762f73b8c4 ro quiet
    Build Date: 18 March 2010 07:32:34PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    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: Fri Mar 19 14:12:54 2010
    (II) Loader magic: 0x81e4c60
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (--) using VT number 7
    (--) PCI:*(0:1:0:0) 1002:5653:144d:e003 ATI Technologies Inc Radeon Mobility X700 (PCIE) rev 0, Mem @ 0xd0000000/134217728, 0xc0100000/65536, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
    (==) Using default built-in configuration (30 lines)
    (==) --- Start of built-in configuration ---
    Section "Device"
    Identifier "Builtin Default ati Device 0"
    Driver "ati"
    EndSection
    Section "Screen"
    Identifier "Builtin Default ati Screen 0"
    Device "Builtin Default ati Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default vesa Device 0"
    Driver "vesa"
    EndSection
    Section "Screen"
    Identifier "Builtin Default vesa Screen 0"
    Device "Builtin Default vesa Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default fbdev Device 0"
    Driver "fbdev"
    EndSection
    Section "Screen"
    Identifier "Builtin Default fbdev Screen 0"
    Device "Builtin Default fbdev Device 0"
    EndSection
    Section "ServerLayout"
    Identifier "Builtin Default Layout"
    Screen "Builtin Default ati Screen 0"
    Screen "Builtin Default vesa Screen 0"
    Screen "Builtin Default fbdev Screen 0"
    EndSection
    (==) --- End of built-in configuration ---
    (==) ServerLayout "Builtin Default Layout"
    (**) |-->Screen "Builtin Default ati Screen 0" (0)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default ati Device 0"
    (==) No monitor specified for screen "Builtin Default ati Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default vesa Screen 0" (1)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default vesa Device 0"
    (==) No monitor specified for screen "Builtin Default vesa Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default fbdev Screen 0" (2)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default fbdev Device 0"
    (==) No monitor specified for screen "Builtin Default fbdev Screen 0".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AutoAddDevices.
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "ati"
    (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    (II) Module ati: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 6.12.192
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 6.0
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 6.12.192
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 6.0
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 1.7.5, module version = 2.3.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 6.0
    (II) LoadModule: "fbdev"
    (WW) Warning, couldn't open module fbdev
    (II) UnloadModule: "fbdev"
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
    ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Radeon 4800 Series, ATI Radeon 4800 Series, ATI FirePro M7750,
    ATI M98, ATI M98, ATI M98, ATI Mobility Radeon HD 4650,
    ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
    ATI FirePro M5750, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon HD 4350,
    ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
    ATI Mobility Radeon 4500 Series, ATI FirePro RG220, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon RV710,
    ATI Radeon HD 3470, ATI Mobility Radeon HD 3430,
    ATI Mobility Radeon HD 3400 Series, ATI Radeon HD 3450,
    ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Radeon HD 3450,
    ATI FirePro V3700, ATI FireMV 2450, ATI FireMV 2260, ATI FireMV 2260,
    ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
    ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
    ATI Radeon HD 3600 PRO, ATI Mobility Radeon HD 3650,
    ATI Mobility Radeon HD 3670, ATI Mobility FireGL V5700,
    ATI Mobility FireGL V5725, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3100 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3100 Graphics, ATI Radeon HD 3300 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3000 Graphics,
    ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4290,
    CYPRESS, ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5900 Series, ATI Radeon HD 5900 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, CEDAR, CEDAR, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, CEDAR, ATI Radeon HD 5450,
    CEDAR
    (II) VESA: driver for VESA chipsets: vesa
    (II) Primary Device is: PCI 01@00:00:0
    (II) [KMS] drm report modesetting isn't supported.
    (WW) Falling back to old probe method for vesa
    (II) RADEON(0): TOTO SAYS 00000000c0100000
    (II) RADEON(0): MMIO registers at 0x00000000c0100000: size 64KB
    (II) RADEON(0): PCI bus 1 card 0 func 0
    (II) RADEON(0): Creating default Display subsection in Screen section
    "Builtin Default ati Screen 0" for depth/fbbpp 24/32
    (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) RADEON(0): Default visual is TrueColor
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules/libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 0.1.0
    ABI class: X.Org Video Driver, version 6.0
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (--) RADEON(0): Chipset: "ATI Mobility Radeon X700 (M26) (PCIE)" (ChipID = 0x5653)
    (--) RADEON(0): Linear framebuffer at 0x00000000d0000000
    (II) RADEON(0): PCIE card detected
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules/libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org Video Driver, version 6.0
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (II) RADEON(0): ATOM BIOS detected
    (II) RADEON(0): ATOM BIOS Rom:
    SubsystemVendorID: 0x144d SubsystemID: 0x5653
    IOBaseAddress: 0x3000
    Filename:
    BIOS Bootup Message:
    M26-P Samsung M26 Firenze ATOMBIOS BR14537/rel9.10.1.0/CL199610
    (II) RADEON(0): Framebuffer space used by Firmware (kb): 20
    (II) RADEON(0): Start of VRAM area used by Firmware: 0x7ffb000
    (II) RADEON(0): AtomBIOS requests 20kB of VRAM scratch space
    (II) RADEON(0): AtomBIOS VRAM scratch base: 0x7ffb000
    (II) RADEON(0): Cannot get VRAM scratch space. Allocating in main memory instead
    (II) RADEON(0): Default Engine Clock: 358000
    (II) RADEON(0): Default Memory Clock: 345000
    (II) RADEON(0): Maximum Pixel ClockPLL Frequency Output: 500000
    (II) RADEON(0): Minimum Pixel ClockPLL Frequency Output: 200000
    (II) RADEON(0): Maximum Pixel ClockPLL Frequency Input: 13500
    (II) RADEON(0): Minimum Pixel ClockPLL Frequency Input: 1000
    (II) RADEON(0): Maximum Pixel Clock: 400000
    (II) RADEON(0): Reference Clock: 27000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: drmOpenMinor returns 10
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.32.0
    (==) RADEON(0): Page Flipping disabled
    (II) RADEON(0): Will try to use DMA for Xv image transfers
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=131072K, accessible=131072K (PCI BAR=131072K)
    (--) RADEON(0): Mapped VideoRAM: 131072 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) RADEON(0): PLL parameters: rf=2700 rd=7 min=20000 max=50000; xclk=40000
    (WW) RADEON(0): LVDS Info:
    XRes: 1280, YRes: 800, DotClock: 68900
    HBlank: 128, HOverPlus: 21, HSyncWidth: 32
    VBlank: 16, VOverPlus: 4, VSyncWidth: 4
    (II) RADEON(0): Skipping TV-Out
    (II) RADEON(0): TMDS PLL from BIOS: 16500 b0112
    (II) RADEON(0): Skipping Component Video
    (II) RADEON(0): Output VGA-0 has no monitor section
    (II) RADEON(0): I2C bus "VGA-0" initialized.
    (II) RADEON(0): Output LVDS has no monitor section
    (II) RADEON(0): I2C bus "LVDS" initialized.
    (II) RADEON(0): Output DVI-0 has no monitor section
    (II) RADEON(0): I2C bus "DVI-0" initialized.
    (II) RADEON(0): Port0:
    XRANDR name: VGA-0
    Connector: VGA
    CRT1: INTERNAL_DAC1
    DDC reg: 0x60
    (II) RADEON(0): Port1:
    XRANDR name: LVDS
    Connector: LVDS
    LCD1: INTERNAL_LVDS
    DDC reg: 0x1a808
    (II) RADEON(0): Port2:
    XRANDR name: DVI-0
    Connector: DVI-D
    DFP1: INTERNAL_TMDS1
    DDC reg: 0x64
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    Dac detection success
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    finished output detect: 0
    Backtrace:
    0: /usr/bin/X (xorg_backtrace+0x3b) [0x809f7db]
    1: /usr/bin/X (0x8048000+0x54715) [0x809c715]
    2: (vdso) (__kernel_rt_sigreturn+0x0) [0x7785e40c]
    3: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x77226000+0x83208) [0x772a9208]
    4: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x77226000+0x3790c) [0x7725d90c]
    5: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x77226000+0x3988b) [0x7725f88b]
    6: /usr/bin/X (InitOutput+0x5c8) [0x80ab048]
    7: /usr/bin/X (0x8048000+0x1a550) [0x8062550]
    8: /lib/libc.so.6 (__libc_start_main+0xe6) [0x7747db86]
    9: /usr/bin/X (0x8048000+0x1a2f1) [0x80622f1]
    Segmentation fault at address 0x7734f808
    Fatal server error:
    Caught signal 11 (Segmentation fault). Server aborting
    Can anyone help me? Thanks!

    When I install an old xf86-video-ati package from 27.02.2010, everything works. So the problem seems to be the new ati-driver.

  • Multi monitor hardware options?

    Hi, I'm looking for new hardware for a 6 monitor setup. Currently I have 4 monitors, I have manage to get triple screen running with 2x nvidia gt240 on nvidia drivers. Three monitors across 2 cards is the maximum nvidia allows on a consumer card.
    What are my options to get 6 monitor setup on a single xserver with opengl?
    I did some searching and here is my options:
    Option 1:
    Get 2x nvidia Quadro card with 4 port each. Nvidia allows more than 3 screens across multiple cards for Quadros. Use nvidia drivers for good opengl. Expensive
    Option 2:
    Get Ati eyefinity 6 card with 6 port. Radeon driver and Catalyst works, except radeon driver does not have opengl 4.x yet and its slower than catalyst.
    Another downside is latest eyefinity 6 card is HD7870 which is quite old.
    Option 3:
    Get 2x Ati cards with 4 port each. Does the radeon driver or catalyst driver have restriction on multiple screen on multiple cards?
    I'm not sure what currently is the best setup. Another Option I am thinking about is getting a new system with intel graphics builtin, can I run intel and nvidia(proprietary driver) together on a single xserver? Also can I run nvidia(proprietary driver) with radeon driver together on a single xserver?
    Last edited by lenk (2015-06-08 00:32:32)

    Quote:but I want to ensure that you're happy with this?
    Thanks for asking
    As we have designed it that way: Yes, arrays must be supported; I am just a bit frightened about the consequences this will have and all the unforeseen problems that we might run into
    Regards,
    Kai

  • Xfce4 with three ATI 7970 but only one monitor

    Hi everybody,
    I'm running xfce4 and I have 3 of those graphic cards installed to do opencl computing on them. As I wasn't able to run the Intel driver and the ATI driver in parallel I've connected my monitor to one of the ATI cards. This works well as long as I have only one or two cards running. As soon as I enable the third card my window manager breaks: I cannot maximize windows, terminals and some other windows don't have a frame and I can't change the desktop (ctrl+alt+arrow).
    What I did is nothing but following:
    $ sudo aticonfig --adapter=all --initial
    reboot
    Than the window manager breaks. To fix it I've changed the first few lines in the xorg.conf and commented the third screen:
    $ head /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    Screen "aticonfig-Screen[1]-0" RightOf "aticonfig-Screen[0]-0"
    # Screen "aticonfig-Screen[2]-0" RightOf "aticonfig-Screen[1]-0"
    EndSection
    Section "Module"
    EndSection
    Below that "Device" and "Screen" sections still exists for Device[2]/Screen[2]
    After rebooting the window manager works fine again, but I can only run jobs on the first two GPUs:
    $ aticonfig --adapter=all --odgt
    Adapter 0 - AMD Radeon HD 7900 Series
    Sensor 0: Temperature - 53.00 C
    Adapter 1 - AMD Radeon HD 7900 Series
    Sensor 0: Temperature - 55.00 C
    ERROR - Get temperature failed for Adapter 2 - AMD Radeon HD 7900 Series
    How can I fix this? Is there a way do deactivate a card but still use it for opencl? Running "amdxdg-su -c amdccle" doesn't work and running amdccle without I can't disable any screen.
    Cheers,
    Jonas

    I now sow following in the dmesg:
    [ 1110.994136] xfwm4[4052]: segfault at 9 ip 00007ff64183987a sp 00007fff50131d30 error 4 in libglib-2.0.so.0.3800.2[7ff6417d6000+fe000]
    [ 1111.032054] xfwm4[4068]: segfault at 0 ip 00007f2bba521f84 sp 00007fff2f43e088 error 4 in libc-2.18.so[7f2bba4a6000+1a0000]
    [ 1111.040547] xfwm4[4064]: segfault at 9 ip 00007f24215d287a sp 00007fffb869b7c0 error 4 in libglib-2.0.so.0.3800.2[7f242156f000+fe000]
    [ 1111.082268] xfwm4[4072]: segfault at 9 ip 00007f099856987a sp 00007fff7ff52db0 error 4 in libglib-2.0.so.0.3800.2[7f0998506000+fe000]
    [ 1111.120968] xfwm4[4080]: segfault at 9 ip 00007fa048c3487a sp 00007fff44590ea0 error 4 in libglib-2.0.so.0.3800.2[7fa048bd1000+fe000]
    [ 1111.162588] xfwm4[4089]: segfault at 9 ip 00007f15ba66187a sp 00007fff93bc3290 error 4 in libglib-2.0.so.0.3800.2[7f15ba5fe000+fe000]
    So I've tried to restart xfwm4 and it worked! But after rebooting xfwm4 crashes again and I have to manually restart it

  • Nvidia card giving me same trouble as Ati card

    Okay, originally I was using a Radeon 9500 Pro video card.  The problem was that anything OGL accelerated completely froze my system; I couldn't run glxgears without it freezing.  I tried and tried and tried to find a solution to the problem, using the open source drivers v. proprietary ones, minimal xorg.conf files, whatever.  Nothing worked.  Same symptoms on Ubuntu and Arch.  Since I was dual booting with Windows, I tried the card on Windows; it worked fine with any 3d application (I even tried Planet Penguin Racer so I could use the same game on each OS.  Windows could handle it, Linux froze as soon as the game booted up everytime.)
    So I ordered an Nvidia 6200 to hopefully remedy the problem because I assumed it was a video driver problem.  I installed the card, pacman'd the nvidia drivers, generated a xorg.conf and rebooted.  I made it to the desktop and typed glxinfo into the console.  I had direct rendering and everything seemed to be okay.  I ran glxgears.  1600fps, 1600fps, 1600fps... boom, my computer went back to KDM.  Uh oh.  I logged back in and ran glxgears again, except this time it hard froze JUST LIKE my Ati card.  Big uh oh.  I powered down and powered back on (because alt-ctrl-backspace couldn't kill X) and logged in again.  I tried to watch a video file, and it rebooted my machine.  At least my Ati card let me do that safely.  I tried again just to double check myself, and sure enough my computer FROZE again, it didn't just reboot.  Now here I am, out of options.
    Obviously there is something wrong with my machine somewhere, whether it be buried deep within Linux or my motherboard or god knows where else.  What I want to know is how I can diagnose this problem?  I'm not going back to Windows, there are too many reasons for me to stay in Linux (most are for development reasons as I'm a CS major, but the media applications are way better in Linux too.)
    In summary, is there anything I can do to remedy or diagnose my problem?  This is very frustrating... I can't afford a new computer to 'start over' and buy hardware that I KNOW is compatible. 
    Edit/Update:  I reinstalled my Ati card because I'm going to RMA the Nvidia one.  I've got a working xorg.conf file (at least, it can connect to the Xserver).  However, it always freezes when I load KDE, before it even makes it past that loading bar and to the desktop.  I don't know what causes it, but I do know that I can run TWM without it crashing AND I have direct rendering.  Any ideas how I can remedy this?
    Here is the xorg.conf, btw.  Just in case.
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "aticonfig-Screen[0]" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "dri"
    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 "aticonfig-Monitor[0]"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]"
    Driver "fglrx"
    VendorName "ATI Technologies Inc"
    BoardName "Radeon 9500 Pro"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]"
    Device "aticonfig-Device[0]"
    Monitor "aticonfig-Monitor[0]"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024" "1024x768" "800x600"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Last edited by The Orange Peanut (2008-04-08 21:51:43)

    I had this on my desktop - I had switched from ATI to NVIDIA and as a result, all my 3d/videos kept freezing or crashing - turns out it was a conflict with the libGL libraries. I had some wrongly-linked files left over.
    You could try removing mesa (which shouldn't be on your system), and reinstalling the nvidia driver, and checking the system for any stray libGL.so.* libraries.

  • ATI Card Radeon 9600 Pro freeze problem

    I've got some problems with this drivers...
    My card is: ATI Card Radeon 9600 Pro
    Kernel: 2.6.15-ARCH
    Installation (or compliation) of this package goes very well
    My xorg.conf looks like
    Section "Module"
    Load "dbe" # Double buffer extension
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    Load "type1"
    Load "freetype"
    Load "glx" # libglx.a
    Load "dri" # libdri.a
    EndSection
    Section "Device"
    Identifier "ATI Graphics Adapter"
    Driver "fglrx"
    # ### generic DRI settings ###
    # === disable PnP Monitor ===
    #Option "NoDDC"
    # === disable/enable XAA/DRI ===
    Option "no_accel" "no"
    Option "no_dri" "no"
    # === misc DRI settings ===
    Option "mtrr" "off" # disable DRI mtrr mapper, driver has its own code for mtrr
    # ### FireGL DDX driver module specific settings ###
    # === Screen Management ===
    Option "DesktopSetup" "(null)"
    Option "ScreenOverlap" "0"
    Option "GammaCorrectionI" "0x06419064"
    Option "GammaCorrectionII" "0x06419064"
    # === OpenGL specific profiles/settings ===
    Option "Capabilities" "0x00000000"
    Option "CapabilitiesEx" "0x00000000"
    # === Video Overlay for the Xv extension ===
    Option "VideoOverlay" "on"
    # === OpenGL Overlay ===
    # Note: When OpenGL Overlay is enabled, Video Overlay
    # will be disabled automatically
    Option "OpenGLOverlay" "off"
    # === Center Mode (Laptops only) ===
    Option "CenterMode" "off"
    # === Pseudo Color Visuals (8-bit visuals) ===
    Option "PseudoColorVisuals" "off"
    # === QBS Management ===
    Option "Stereo" "off"
    Option "StereoSyncEnable" "1"
    # === FSAA Management ===
    Option "FSAAEnable" "no"
    Option "FSAAScale" "1"
    Option "FSAADisableGamma" "no"
    Option "FSAACustomizeMSPos" "no"
    Option "FSAAMSPosX0" "0.000000"
    Option "FSAAMSPosY0" "0.000000"
    Option "FSAAMSPosX1" "0.000000"
    Option "FSAAMSPosY1" "0.000000"
    Option "FSAAMSPosX2" "0.000000"
    Option "FSAAMSPosY2" "0.000000"
    Option "FSAAMSPosX3" "0.000000"
    Option "FSAAMSPosY3" "0.000000"
    Option "FSAAMSPosX4" "0.000000"
    Option "FSAAMSPosY4" "0.000000"
    Option "FSAAMSPosX5" "0.000000"
    Option "FSAAMSPosY5" "0.000000"
    # === Misc Options ===
    Option "AGPMode" "8"
    Option "UseFastTLS" "0"
    Option "BlockSignalsOnLock" "on"
    Option "UseInternalAGPGART" "no"
    Option "ForceGenericCPU" "no"
    BusID "PCI:1:0:0" # vendor=1002, device=4150
    Screen 0
    EndSection
    But here the horror begins... Any time I switch to virtual console (Alt+Ctrl+Fn), then goes back to X and try to move a window everything freeze except mouse. The only way out is hard reset. By the way, I've notcied that it happens when loading "dri" module. But without "dri" there is no direct rendering. Is there any way to have "dri" and non-freezeing X-server?

    Ive got nearly the same problem:
    Maybe its a bug in combination of the ATI drivers and the Kernel 2.6.15
    See following thread:
    http://bbs.archlinux.org/viewtopic.php?t=18456
    phxx

  • ProDesk600 to drive four monitors

    Can a ProDesk 600 with the internal OEM AMD Radeon HD 8490 graphics card drive four monitors? And how? Please show me. Thank you.

    Hi,
    It says it can support 4 monitors:
          http://www.cdw.com/shop/products/AMD-Radeon-HD-8490-graphics-card-Radeon-HD-8490-1-GB/3118868.aspx
    but it does not say how and that is a big question mark. I saw people getting many troubles to connect more than 2 monitors to video card which is triple its price.  Please read the following article and work out which type of card you need to buy:
       http://www.multiplemonitors.co.uk/blog/what-you-need-to-know-about-multi-monitor-graphics-cards/
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Help with ati open-source driver :what problems with my xorg.conf?

    I removed vesa driver and then :
    sudo pacman -S xf86-video-ati libgl
    I have browser http://wiki.archlinux.org/index.php/ATI
    I add me to the group video,add radeon to my rc.conf.
    and changed my xorg.conf like that.and then I type "startx",It did work,but the resolution is not right (it should be 1027x768 but I got a resolution 640x480),and I run glxinfo it said :"unable to open  display"
    I'm sure the     HorizSync VertRefresh is right besause when I try catalyst it works well :<
    my card is ati X550
    Here's my config:(can anyone who's ati card work with open-source driver works well give me your xorg.conf ?THX!)
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "radeon"
    Load "glx"
    Load "record"
    Load "extmod"
    Load "xtrap"
    Load "GLcore"
    Load "dbe"
    Load "dri"
    Load "drm"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "ImPS/2"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    #DisplaySize 320 240 # mm
    Identifier "Monitor0"
    VendorName "KTC"
    ModelName "1700"
    ### Comment all HorizSync and VertRefresh values to use DDC:
    HorizSync 28.0 - 80.0
    VertRefresh 50.0 - 200.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "radeon"
    VendorName "ATI Technologies Inc"
    BoardName "RV370 [Sapphire X550 Silent]"
    Option "XAANoOffscreenPixmaps" "true"
    Option "AGPMode" "4"
    Option "ColorTiling" "on"
    Option "AccelMethod" "EXA"
    Option "EnablePageFlip" "on"
    Option "AGPFastWrite" "true"
    BusID "PCI:1:0:0"
    EndSection
    Section "DRI"
    Group "video"
    Mode 0666
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1024x768"
    EndSubSection
    EndSection

    Ok, seems like you don't use [testing] because in this case x wouldn't even start, because RgbPath in the Section "Files" doesn't exist anymore and has to be removed.
    I do always recommend people to disable any kind of options in the Section "Device", if there are problems with the video card. You usually do not have to put radeon neigher into the Section "Module", nor into rc.conf! So remove them, radeon should be loaded because it's set as Driver in the Section "Device"
    Your problem with wrong resolution ... I'm not an expert in this, didn't ever have such a problem, but are you sure, that your HorizSync and VertRefresh values are right?

  • ATI Card power problem

    Hi all, I just bought my Mac Pro, got the stock 2.66 then added more RAM and an ATI card at the Apple Store and an extra hard drive. Now I was told by the Apple guys that they would install the ATI card in the top slot and pu the 7300 card in the bottom slot.
    So I get home and plug in my machine and I get an error message that my video cards power supply is not properly plugged in and I need to replug it in.
    I checked my system info and it turns out the top slot is still the nvidia card and when I plug my monitors into the bottom one (the ATI card) it only supports one of them.
    So when I get back into the country (I am in mexico on business) I plan to call Apple but I was hoping someone on here could tell me if this is something I can easily do myself? I really want to use the ATI card I payed for as my primary video card.
    Thanks in advance!!!
    -Stephen
    2.66 Mac Pro; Powerbook G4 17in   Mac OS X (10.4.8)  

    Well, got home and checked and sure enough the cord is not only not plugged in but it isn't even there! Called Apple and after getting them to understand my MONITORS where plugged in (They seemed to think that was the problem) they connected me to a Mac Pro "expert". He didn't have any ideas and said I probably needed to just take it back to the apple store I bought it from and ge them to plug it in.
    So tomorrow its off the genuis bar to try and convince them to just plug the ATI card into the power source!
    I am wondering now if anyone has experienced this or if anyone has the ATI card in their Mac Pro do you have it plugged in or not? THe apple care people told me it shouldn't need to be plugged in so I am curious now if its my machine or the ATI card...
    2.66 Mac Pro; Powerbook G4 17in   Mac OS X (10.4.8)  

Maybe you are looking for