C# C3PO

Heh all!
I was wondering if anyone has a small C# sample that would allow me to
test receiving events (OnReady in particular)
to fire and how to use ClientState.SelectedMessages.
Thanks in advance!
Adam

OK, thank you.
Now I discovered another problem. I can install my C3PO on another Win XP
machine, but not on Win 2k systems. If I do so, I get an
GroupwareTypelibrary.MessageList error (DISP_E_EXCEPTION). On the 2k
system runs GW Client 6.5.6.
Michael Risch wrote:
> I think there was a bug that was fixed between those two releases...
> [email protected] (AThierer) wrote in news:SNvqg.1593$6c7.534@prv-
> forum2.provo.novell.com:
> >
> > Hi,
> >
> > I'm developing a C# C3PO with VS 2005 and GroupWise Client 6.5.6. Whenn
> I
> > install the C3PO on a computer with only GroupWise Client 6.5.4, I get
> a
> > TypeLibrary error.
> >
> > Do I have to compile the C3PO for every client-version with the
> > corresponding gw client installed (on the development machine)?
> >
> > The problem occurs with GroupwareTypeLibrary (gwcma1.dll) and
> > C3POTypeLibrary (gwdt31.dll).
> >
> > Thanks in advance,
> > Andy

Similar Messages

  • How can I get C3PO's working in the Cross Platform Client

    Hi!
    I need to know if it is possible to use C3PO's in the GroupWise 7 Cross
    Platform Client?
    If not, is there some method documented to achieve the same functionality?
    Thanks,
    Chris

    It's even mentioned in the API reference, section "LrView text properties":
    height_in_lines : (Read-Only)
        Calculates the minimum height using this as the number of lines
        that should fit. If height_in_lines is set to -1, and width or
        width_in_digits or width_in_chars is specified, text wraps.
        (number, default: 1)

  • C3PO - Scanning a Folder & Detecting user's "drag-and-drop" operations

    We are using Novell C3PO to export messages in XML format when the user
    press a button at the GroupWise Client message window, and this was done to
    provide an integration with a ERP software (from a very famous company here
    in Brazil), so the user reads his emails and can click this button and open
    the ERP ORDER SCREEN with all costumer's data filled in, that increases the
    productivity of the Sales Departament.
    REsuming, the main porpouse is to collect information of each email to open
    the Order Screen of the ERP system, without having to type everything again.
    The costumer wanted to go on and get several messages at the same time, that
    was stored on a GroupWise Folder, using a simple redirection rule and this
    was done using Visual Basic (called here "looking process"), that looks for
    messages into a specific folder in the GroupWise Client called "_Send". So,
    convert that messages to XML and then move to another folder called
    "_History".
    Now we can drag many messages at the same time to the folder _Send and then
    they will be converted. It is working very well. The problem is that the
    GroupWise Client computers are becoming slower because of the "looking
    process" (that VB application). We used VB because we could not find a
    process or a feature in C3PO that selects several messages at the same time
    and read them one-by-one.
    QUESTIONS :
    1- Can I have this "Looking Process" using C3PO tools ?
    2- Is there a way to detect a "Drag-and-Drop" event in the GroupWise Client
    with C3PO, so I would not need to scan those folders ?

    Jose Calil Nassur wrote:
    > We are using Novell C3PO to export messages in XML format when the user
    > press a button at the GroupWise Client message window, and this was done to
    > provide an integration with a ERP software (from a very famous company here
    > in Brazil), so the user reads his emails and can click this button and open
    > the ERP ORDER SCREEN with all costumer's data filled in, that increases the
    > productivity of the Sales Departament.
    > REsuming, the main porpouse is to collect information of each email to open
    > the Order Screen of the ERP system, without having to type everything again.
    >
    >
    I've been doing something similar, but rather than creating a new
    message, I've been using custom properties
    on each mail, so as they arrive I add two tags, one with a tagID, and
    the other with metadata. I then write
    searches for each folder returning only the message that are yet to be
    tagged. Nice and efficient, written
    in C#. I've run over my big mailbox (2GB) and the box hardly raises a sweat.
    Sincerely,
    Adam Bradley
    Identity Concepts
    Mobile : +61 419 637 518
    email : adam_j_bradley \at\ identityconcepts.com.au
    irc: #nidm on freenode.net
    Web : http://www.identityconcepts.com.au

  • C3PO question

    Hello,
    I am very new here. I was following the instructions and example for
    adding a customized button to the Groupwise toolbar. And everything went
    fine for adding the icon via the "Using Visual Basic .dll" instructions.
    It all worked fine. I selected Run-->Start from the Visual Studio menu,
    and then restarted Groupwise, and lo and behold, there was my new icon on
    the toolbar. However, I need to be able to push this out to all our PCs.
    And they will not have visual Studio on them, and we want it automatically
    installed. How do I push out this .dll? How do I get the .dll to run from
    a command line prompt? Are there any other .dlls that I will have to make
    sure are on the PC's as well? Any ideas appreciated.
    Thanx, Janet

    Adam Bradley wrote:
    >
    > In my question to get a working C# GDS plugin C3PO I return! When I
    > try to use "ClientState.SelectedMessages()" such as with
    > ---snip---
    > GroupwareTypeLibrary.MessageList _messageList =
    > (C3POTypeLibrary.IGWClientState6)GDS3CPOv2.g_C3POM anager.ClientState.SelectedMessages();
    >
    > ---snip---
    > The IDE returns the error "Error 2 'object' does not contain a
    > definition for 'SelectedMessages'".
    >
    > Any ideas?
    > Thanks in advance.
    > Adam
    From now on I'll wait 30 minutes before posting anything - seems the
    following works just fine
    ---snip---
    GDS3CPOv2._clientState =
    (C3POTypeLibrary.IGWClientState6)GDS3CPOv2.g_C3POM anager.ClientState;
    GroupwareTypeLibrary.Message _message =
    (GroupwareTypeLibrary.Message)GDS3CPOv2._clientSta te.CommandMessage;
    ---snip---
    Adam

  • How to Add C3PO Toolbar Buttons with GroupWise in C#

    Hello
    i try How to Add C3PO Toolbar Buttons with GroupWise in C#. I do all like
    i read here
    http://support.novell.com/techcenter...a20000906.html
    But i can see any result
    i create file with Wizard(witout project)
    Then i add this file to my EXE project
    and add 2 button "Reg C3PO"(RegC3po();) and "Unreg C3PO"(UnRegC3po();)
    and init
    what i do wrong?
    i try find ansver but find only this
    http://newsportal.novell.com/article...sup.gwc3po#925
    what its mean?
    news:SR%Zg.16416$[email protected]:
    about this question
    http://newsportal.novell.com/article...sup.gwc3po#673
    C3POs still don't work in the address book?
    Kirill

    Kirill wrote:
    > Hello and Merry Chritmas :)
    >
    > regsvr32 onlu for DLL. My project create EXE file :(
    >
    > Kirill
    Ups......
    You'll, according to the readme generated by your C3PO Wizard, have to run
    Regasm.exe <your C3PO server>
    That will create the needed regkeys...
    Also, you might have to add the typelib wrapper and assambly to the GAC, bu typing:
    Gacutil -i <your C3PO server>
    Best Regards
    Tommy Mikkelsen
    IT Quality A/S
    Denmark
    Novell Developer Forums SYSOP
    Please Report back any success or failure, That way we all learn
    Sorry, but no support through email
    "I hate bugs".......Tommy Lee Jones, MIB
    Be a GroupWiseR, go http://www.groupwiser.net

  • Runtime Error 217 after GroupWise closes (C# C3PO)

    Hello,
    I made a C3PO with C#, everything works fine until i close the GroupWise Client (8.0.2, Win 7 , 32 Bit). 2 seconds after closing, I get a GroupWise-MessageBox: 'Runtime Error 217'.
    The Windows Event Log says the error occured in the Kernelbase.dll.
    Did anyone have this error some time and knows how to fix this?

    Hi Sankar,
    Clearly RFC destination WORKFLOW_LOCAL_250 doesnot exist. But please don't create it directly using Sm59.
    Log into client 250 and go to transaction SWU3. Here you will get option for creating RFC destination making use of user WF-BATCH. In case there is workflow expert in your project take his help.
    Once this is done this dump should not come.
    Regards.
    Ruchit.

  • Get Message Details with C3PO & ObjAPI

    Has been a while since my last attempts but I have started experimenting
    with C3PO on GW2012 again.
    I hooked into the GW.MESSAGE.MAIL eGW_CMDID_OPEN event just fine,
    get the message ID, and now try to retrieve some message details with
    ObjectAPI.
    No shared folders, or proxies, just personal messages.
    The exception occurs when calling gwAccount.GetMessage(msgId)
    This seems so basic, it must be something pretty simple.
    Any suggestion?
    Thanks
    Wolfgang
    ' function called from execute handler
    ' get details of this message
    Dim cCode As String
    Dim msgId As String
    Dim msgObj As Object ' ObjAPI message object
    ' actually these objects are stored globally,
    ' and moved here just for testing purposes
    Dim gwCommander As Object ' TokenAPI handle
    Dim gwSession As Object ' ObjAPI session object
    Dim gwAccount As Object ' ObjAPI account object
    Set gwCommander = CreateObject("GroupWiseCommander")
    Set gwSession = CreateObject("NovellGroupWareSession")
    Set gwAccount = gwSession.Login()
    cCode = gwCommander.Execute("itemmessageidfromview()", msgId)
    If (cCode = "True") Then
    ' OK: shows my email address & message id
    ' like xxxxxxxx.xxxx.xxxxx.xx.xxxxx.x.xxxxx.x
    MsgBox ("getCurrentMessage: " & gwAccount.Owner + " -> " + msgId)
    ' ERR: Object variable or With block variable not set
    msgObj = gwAccount.GetMessage(msgId)
    ' never gets here
    MsgBox ("getCurrentMessage(): " & msgObj.Subject )
    End If

    On 4/15/2013 12:40 PM, Wolfgang Schreiber wrote:
    > Has been a while since my last attempts but I have started experimenting
    > with C3PO on GW2012 again.
    >
    > I hooked into the GW.MESSAGE.MAIL eGW_CMDID_OPEN event just fine,
    > get the message ID, and now try to retrieve some message details with
    > ObjectAPI.
    > No shared folders, or proxies, just personal messages.
    >
    > The exception occurs when calling gwAccount.GetMessage(msgId)
    >
    > This seems so basic, it must be something pretty simple.
    > Any suggestion?
    >
    > Thanks
    >
    > Wolfgang
    >
    I may be misrecalling but shouldn't it be
    Set msgObj = gwAccount.GetMessage(msgId)
    >
    > ' *************************************************
    >
    > ' function called from execute handler
    > ' get details of this message
    > '
    > Dim cCode As String
    > Dim msgId As String
    > Dim msgObj As Object ' ObjAPI message object
    >
    > ' actually these objects are stored globally,
    > ' and moved here just for testing purposes
    > Dim gwCommander As Object ' TokenAPI handle
    > Dim gwSession As Object ' ObjAPI session object
    > Dim gwAccount As Object ' ObjAPI account object
    > Set gwCommander = CreateObject("GroupWiseCommander")
    > Set gwSession = CreateObject("NovellGroupWareSession")
    > Set gwAccount = gwSession.Login()
    >
    > cCode = gwCommander.Execute("itemmessageidfromview()", msgId)
    >
    > If (cCode = "True") Then
    > ' OK: shows my email address & message id
    > ' like xxxxxxxx.xxxx.xxxxx.xx.xxxxx.x.xxxxx.x
    > MsgBox ("getCurrentMessage: " & gwAccount.Owner + " -> " + msgId)
    >
    > ' ERR: Object variable or With block variable not set
    > msgObj = gwAccount.GetMessage(msgId)
    >
    > ' never gets here
    > MsgBox ("getCurrentMessage(): " & msgObj.Subject )
    > End If
    >
    > ' *************************************************

  • C3PO App Rights

    Hi
    my c3po app runs fine with admin rigths! But if i use only USER rigths,
    groupwise hangs on startup logo !?
    any suggestions?
    regards
    Joerg Daehler

    There is a "Common" tab that can setup rights that will be assigned to users
    when they are associated to the application object.
    User's will have these rights inside and outside of the application object.
    The File tab for practical purposes has no function for application objects.
    steve hall wrote:
    > sorry i thought that was what the files tab was for in common in console one
    > "steve hall" <[email protected]> wrote in message
    > news:QLEbd.3102$[email protected]..
    > > i have make an app object object that requires
    > >
    > > all rights to the g:\champsta directiory
    > >
    > > the only way i can get it to work is to grant the rights to the user
    > >
    > > i have granted the rights in the app object as well and it does not work
    > > unless the user it self has the rights
    > >
    > >
    > > user is run zen 3.2 sp3
    > > win98se
    > > client 3.4
    > >
    > >
    > > thanks inadvance
    > > steve
    > >
    > >

  • C3Po error

    I have a C3PO that works off of the email send button. It seems to work
    fine for all users except one. For that user, it works fine most of the
    time but sometimes GroupWise spell checker returns an error:
    "Error - A valid dialect is required to spell check text"
    Obviously the spell checker works most of the time so I have ruled out
    changing or setting the dialect used. So I think that my c3po and the
    spell checker are both trying to execute at the same time and sometimes
    they don't get along well.
    My question is: Is there a way to wait for the spell checker to finish
    before my code executes? Or is there another way to work around the spell
    checker?
    Any other ideas would be appreciated!
    Thanks,
    Harry

    Having exactly the same problem - help gratefully received!
    > I have a C3PO that works off of the email send button. It seems to work
    > fine for all users except one. For that user, it works fine most of the
    > time but sometimes GroupWise spell checker returns an error:
    >
    > "Error - A valid dialect is required to spell check text"
    >
    > Obviously the spell checker works most of the time so I have ruled out
    > changing or setting the dialect used. So I think that my c3po and the
    > spell checker are both trying to execute at the same time and sometimes
    > they don't get along well.
    >
    > My question is: Is there a way to wait for the spell checker to finish
    > before my code executes? Or is there another way to work around the
    spell
    > checker?
    >
    > Any other ideas would be appreciated!
    > Thanks,
    > Harry

  • Writing C3PO with SQLWindows 2005

    Hello everybody! I try to create an C3PO by GUPTA SQLWindows 2005. Is there
    anybody, who did do it? I need help.
    Rud Igor

    I've never heard of anyone using GUPTA SQL for this. But if it supports COM
    bindings and interfaces, it shouldn't be horrible.
    Generate a copy using C3PO wizard of a VB or VC project, look at the code,
    and learn.
    <[email protected]> wrote in message
    news:b5Lqh.740$[email protected]..
    > Hello everybody! I try to create an C3PO by GUPTA SQLWindows 2005. Is
    > there
    > anybody, who did do it? I need help.
    >
    > Rud Igor

  • How to set Default Mailing Address in GW8 using C3PO objects

    I am just migrating to GW8 and trying to set the default mailing address for a contact programatically using AddressBookEntry object from VB code using
    C3Po ClientState and related properties. I am using IGWAccount9 object and creating a new addressbookentry object using the AddressBookEntries.Add object. To this new object, i set a value to the DefaultMailingAddress Property. I am not thrown an exception but the value does not get set also.
    Thanks in advace for your help.
    -JP

    I am just migrating to GW8 and trying to set the default mailing address for a contact programatically using AddressBookEntry object from VB code using
    C3Po ClientState and related properties. I am using IGWAccount9 object and creating a new addressbookentry object using the AddressBookEntries.Add object. To this new object, i set a value to the DefaultMailingAddress Property. I am not thrown an exception but the value does not get set also.
    Thanks in advace for your help.
    -JP

  • C3po HKEY-CURRENT_USER registration

    I have written a c3po to present toolbar buttons to selected users in a
    virtual desktop environment (Citrix). The toolbar buttons call a 3rd
    party program.
    If I register the c3po under the HKEY_LOCAL_MACHINE key then all users
    will see the toolbar buttons created by the c3po.
    How can I get GroupWise to see the register entries under:
    HKEY_CURRENT_USER\SOFTWARE\Novell\GroupWise\Client \DataTypes\
    instead of:
    HKEY_LOCAL_MACHINE\SOFTWARE\Novell\GroupWise\5.0\C 3PO\DataTypes\
    Thanks, Jim Borak, Southwest Gas Corp.

    I don't believe you can.
    "jgb1" <[email protected]> wrote in message
    news:NbkAd.11310$[email protected]..
    >I have written a c3po to present toolbar buttons to selected users in a
    > virtual desktop environment (Citrix). The toolbar buttons call a 3rd
    > party program.
    >
    > If I register the c3po under the HKEY_LOCAL_MACHINE key then all users
    > will see the toolbar buttons created by the c3po.
    >
    > How can I get GroupWise to see the register entries under:
    > HKEY_CURRENT_USER\SOFTWARE\Novell\GroupWise\Client \DataTypes\
    > instead of:
    > HKEY_LOCAL_MACHINE\SOFTWARE\Novell\GroupWise\5.0\C 3PO\DataTypes\
    >
    > Thanks, Jim Borak, Southwest Gas Corp.
    >

  • Simple C3PO Toolbar Button

    I was wondering if someone can point me to a simple C3PO sample that I could look at?
    I'm trying to create a basic C3PO to put a button on the toolbar that will allow sending of a message with customized values. I took a look at the Wizard and tried to use that to make a basic C3PO, but I cannnot get an icon to appear on the toolbar. I'm doing this in VB, using Visual Studio 2010. I've worked with the Admin APIs a lot, but never a C3PO. Is there anything out there I can look at? At this point, I cannot event get a dummy button to appear on the tool bar (I'm using a Windows 7 machine). Thanks.
    Matt

    Hi Matt,
    the trick is that you have to include a BITMAP ressource, not an ICON ressource in your project (look at my post just before yours)
    Rainer
    >>> matt<[email protected]> schrieb am 18.09.2010 um 05:06 in Nachricht <[email protected]>:
    I was wondering if someone can point me to a simple C3PO sample that I
    could look at?
    I'm trying to create a basic C3PO to put a button on the toolbar that
    will allow sending of a message with customized values. I took a look
    at the Wizard and tried to use that to make a basic C3PO, but I cannnot
    get an icon to appear on the toolbar. I'm doing this in VB, using
    Visual Studio 2010. I've worked with the Admin APIs a lot, but never a
    C3PO. Is there anything out there I can look at? At this point, I
    cannot event get a dummy button to appear on the tool bar (I'm using a
    Windows 7 machine). Thanks.
    Matt
    matt
    matt's Profile: http://forums.novell.com/member.php?userid=1582
    View this thread: http://forums.novell.com/showthread.php?t=421241

  • C3PO and Languages

    Hi,
    Does anyone know how to identify which language a GW client is using from within a C3PO?
    Thanks
    Don

    Tokens....
    Search the doc for wLanguage
    Also look at this registrykey:
    HKEY_CURRENT_USER\Software\Novell\GroupWise\Interf ace Language
    But then you'll have to check also, that GW wasn't launched with an
    override parameter for the /l-xx
    That I beleave can be done by looking with the ObjectAPI at the
    Application.CommandLine
    Tommy Mikkelsen
    IT Quality A/S, Denmark
    Novell Support Forums SYSOP
    Sorry, but no support through email
    Be a GroupWiseR, go http://www.groupwiser.net

  • Xorg-1.8, fails to start

    Hi all, after recent upgrade xorg wont start, i dont have xorg.conf, and im really in stuck, here is Xorg.0.log:
    [ 54385.216]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 54385.217]
    X.Org X Server 1.8.1.902 (1.8.2 RC 2)
    Release Date: 2010-06-21
    [ 54385.217] X Protocol Version 11, Revision 0
    [ 54385.217] Build Operating System: Linux 2.6.34-ARCH x86_64
    [ 54385.217] Current Operating System: Linux c3po 2.6.34-ARCH #1 SMP PREEMPT Sat Jun 19 00:07:49 CEST 2010 x86_64
    [ 54385.217] Kernel command line: root=/dev/disk/by-uuid/327a2d42-748e-4e5c-b0cf-2c7627a15d53 ro
    [ 54385.217] Build Date: 21 June 2010 12:01:49PM
    [ 54385.217]
    [ 54385.218] Current version of pixman: 0.18.2
    [ 54385.218] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 54385.218] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 54385.218] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jun 23 12:22:27 2010
    [ 54385.222] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 54385.224] (==) No Layout section. Using the first Screen section.
    [ 54385.224] (==) No screen section available. Using defaults.
    [ 54385.224] (**) |-->Screen "Default Screen Section" (0)
    [ 54385.224] (**) | |-->Monitor "<default monitor>"
    [ 54385.224] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 54385.224] (==) Automatically adding devices
    [ 54385.224] (==) Automatically enabling devices
    [ 54385.230] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 54385.230] Entry deleted from font path.
    [ 54385.235] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 54385.235] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 54385.235] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 54385.235] (II) Loader magic: 0x7ce880
    [ 54385.235] (II) Module ABI versions:
    [ 54385.235] X.Org ANSI C Emulation: 0.4
    [ 54385.235] X.Org Video Driver: 7.0
    [ 54385.235] X.Org XInput driver : 9.0
    [ 54385.235] X.Org Server Extension : 3.0
    [ 54385.247] (--) PCI:*(0:1:0:0) 1002:5e4b:174b:0620 ATI Technologies Inc RV410 [Radeon X700 Pro (PCIE)] rev 0, Mem @ 0xd0000000/268435456, 0xfdff0000/65536, I/O @ 0x0000ae00/256, BIOS @ 0x????????/131072
    [ 54385.247] (--) PCI: (0:1:0:1) 1002:5e6b:174b:0621 ATI Technologies Inc RV410 [Radeon X700 Pro (PCIE)] (Secondary) rev 0, Mem @ 0xfdfe0000/65536
    [ 54385.248] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 54385.249] (II) LoadModule: "extmod"
    [ 54385.253] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 54385.255] (II) Module extmod: vendor="X.Org Foundation"
    [ 54385.255] compiled for 1.8.1.902, module version = 1.0.0
    [ 54385.255] Module class: X.Org Server Extension
    [ 54385.255] ABI class: X.Org Server Extension, version 3.0
    [ 54385.255] (II) Loading extension MIT-SCREEN-SAVER
    [ 54385.255] (II) Loading extension XFree86-VidModeExtension
    [ 54385.255] (II) Loading extension XFree86-DGA
    [ 54385.255] (II) Loading extension DPMS
    [ 54385.255] (II) Loading extension XVideo
    [ 54385.255] (II) Loading extension XVideo-MotionCompensation
    [ 54385.255] (II) Loading extension X-Resource
    [ 54385.255] (II) LoadModule: "dbe"
    [ 54385.255] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 54385.256] (II) Module dbe: vendor="X.Org Foundation"
    [ 54385.256] compiled for 1.8.1.902, module version = 1.0.0
    [ 54385.256] Module class: X.Org Server Extension
    [ 54385.256] ABI class: X.Org Server Extension, version 3.0
    [ 54385.256] (II) Loading extension DOUBLE-BUFFER
    [ 54385.256] (II) LoadModule: "glx"
    [ 54385.256] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 54385.259] (II) Module glx: vendor="X.Org Foundation"
    [ 54385.259] compiled for 1.8.1.902, module version = 1.0.0
    [ 54385.259] ABI class: X.Org Server Extension, version 3.0
    [ 54385.259] (==) AIGLX enabled
    [ 54385.259] (II) Loading extension GLX
    [ 54385.260] (II) LoadModule: "record"
    [ 54385.260] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 54385.261] (II) Module record: vendor="X.Org Foundation"
    [ 54385.261] compiled for 1.8.1.902, module version = 1.13.0
    [ 54385.261] Module class: X.Org Server Extension
    [ 54385.261] ABI class: X.Org Server Extension, version 3.0
    [ 54385.261] (II) Loading extension RECORD
    [ 54385.261] (II) LoadModule: "dri"
    [ 54385.261] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 54385.263] (II) Module dri: vendor="X.Org Foundation"
    [ 54385.263] compiled for 1.8.1.902, module version = 1.0.0
    [ 54385.263] ABI class: X.Org Server Extension, version 3.0
    [ 54385.263] (II) Loading extension XFree86-DRI
    [ 54385.263] (II) LoadModule: "dri2"
    [ 54385.263] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 54385.264] (II) Module dri2: vendor="X.Org Foundation"
    [ 54385.264] compiled for 1.8.1.902, module version = 1.2.0
    [ 54385.264] ABI class: X.Org Server Extension, version 3.0
    [ 54385.264] (II) Loading extension DRI2
    [ 54385.264] (==) Matched ati as autoconfigured driver 0
    [ 54385.264] (==) Matched vesa as autoconfigured driver 1
    [ 54385.264] (==) Matched fbdev as autoconfigured driver 2
    [ 54385.264] (==) Assigned the driver to the xf86ConfigLayout
    [ 54385.264] (II) LoadModule: "ati"
    [ 54385.265] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 54385.265] (II) Module ati: vendor="X.Org Foundation"
    [ 54385.265] compiled for 1.8.0, module version = 6.13.0
    [ 54385.265] Module class: X.Org Video Driver
    [ 54385.265] ABI class: X.Org Video Driver, version 7.0
    [ 54385.265] (II) LoadModule: "radeon"
    [ 54385.265] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 54385.270] (II) Module radeon: vendor="X.Org Foundation"
    [ 54385.271] compiled for 1.8.0, module version = 6.13.0
    [ 54385.271] Module class: X.Org Video Driver
    [ 54385.271] ABI class: X.Org Video Driver, version 7.0
    [ 54385.272] (II) LoadModule: "vesa"
    [ 54385.272] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 54385.273] (II) Module vesa: vendor="X.Org Foundation"
    [ 54385.273] compiled for 1.8.0, module version = 2.3.0
    [ 54385.273] Module class: X.Org Video Driver
    [ 54385.273] ABI class: X.Org Video Driver, version 7.0
    [ 54385.273] (II) LoadModule: "fbdev"
    [ 54385.273] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 54385.274] (II) Module fbdev: vendor="X.Org Foundation"
    [ 54385.274] compiled for 1.8.0, module version = 0.4.2
    [ 54385.274] ABI class: X.Org Video Driver, version 7.0
    [ 54385.274] (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
    [ 54385.289] (II) VESA: driver for VESA chipsets: vesa
    [ 54385.289] (II) FBDEV: driver for framebuffer: fbdev
    [ 54385.289] (--) using VT number 8
    [ 54385.300] (II) Primary Device is: PCI 01@00:00:0
    [ 54385.300] (II) [KMS] Kernel modesetting enabled.
    [ 54385.300] (WW) Falling back to old probe method for vesa
    [ 54385.300] (WW) Falling back to old probe method for fbdev
    [ 54385.300] (II) Loading sub module "fbdevhw"
    [ 54385.300] (II) LoadModule: "fbdevhw"
    [ 54385.300] (II) Loading /usr/lib/xorg/modules/linux/libfbdevhw.so
    [ 54385.300] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 54385.300] compiled for 1.8.1.902, module version = 0.0.2
    [ 54385.300] ABI class: X.Org Video Driver, version 7.0
    [ 54385.301] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 54385.301] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 54385.301] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 54385.301] (==) RADEON(0): Default visual is TrueColor
    [ 54385.301] (==) RADEON(0): RGB weight 888
    [ 54385.301] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 54385.301] (--) RADEON(0): Chipset: "ATI Radeon X700 PRO (RV410) (PCIE)" (ChipID = 0x5e4b)
    [ 54385.301] (II) RADEON(0): PCIE card detected
    [ 54385.301] (II) RADEON(0): KMS Color Tiling: disabled
    [ 54385.301] drmOpenDevice: node name is /dev/dri/card0
    [ 54385.301] drmOpenDevice: open result is 8, (OK)
    [ 54385.301] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 54385.301] drmOpenDevice: node name is /dev/dri/card0
    [ 54385.301] drmOpenDevice: open result is 8, (OK)
    [ 54385.301] drmOpenByBusid: drmOpenMinor returns 8
    [ 54385.301] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 54385.309] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 54385.329] (II) RADEON(0): Output S-video has no monitor section
    [ 54385.384] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 54385.392] (II) RADEON(0): EDID for output VGA-0
    [ 54385.412] (II) RADEON(0): EDID for output S-video
    [ 54385.466] (II) RADEON(0): EDID for output DVI-0
    [ 54385.466] (II) RADEON(0): Manufacturer: NEC Model: 6692 Serial#: 16843009
    [ 54385.466] (II) RADEON(0): Year: 2006 Week: 26
    [ 54385.466] (II) RADEON(0): EDID Version: 1.3
    [ 54385.466] (II) RADEON(0): Digital Display Input
    [ 54385.466] (II) RADEON(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    [ 54385.466] (II) RADEON(0): Gamma: 2.20
    [ 54385.466] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
    [ 54385.466] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 54385.466] (II) RADEON(0): First detailed timing is preferred mode
    [ 54385.466] (II) RADEON(0): redX: 0.640 redY: 0.329 greenX: 0.300 greenY: 0.600
    [ 54385.466] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 54385.466] (II) RADEON(0): Supported established timings:
    [ 54385.466] (II) RADEON(0): 720x400@70Hz
    [ 54385.466] (II) RADEON(0): 640x480@60Hz
    [ 54385.466] (II) RADEON(0): 640x480@67Hz
    [ 54385.466] (II) RADEON(0): 640x480@72Hz
    [ 54385.466] (II) RADEON(0): 640x480@75Hz
    [ 54385.466] (II) RADEON(0): 800x600@56Hz
    [ 54385.466] (II) RADEON(0): 800x600@60Hz
    [ 54385.466] (II) RADEON(0): 800x600@72Hz
    [ 54385.466] (II) RADEON(0): 800x600@75Hz
    [ 54385.466] (II) RADEON(0): 832x624@75Hz
    [ 54385.466] (II) RADEON(0): 1024x768@60Hz
    [ 54385.466] (II) RADEON(0): 1024x768@70Hz
    [ 54385.466] (II) RADEON(0): 1024x768@75Hz
    [ 54385.466] (II) RADEON(0): 1280x1024@75Hz
    [ 54385.466] (II) RADEON(0): 1152x864@75Hz
    [ 54385.466] (II) RADEON(0): Manufacturer's mask: 0
    [ 54385.466] (II) RADEON(0): Supported standard timings:
    [ 54385.466] (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 54385.466] (II) RADEON(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 54385.466] (II) RADEON(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 54385.466] (II) RADEON(0): Supported detailed timing:
    [ 54385.466] (II) RADEON(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    [ 54385.466] (II) RADEON(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 54385.466] (II) RADEON(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 54385.466] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 81 kHz, PixClock max 140 MHz
    [ 54385.466] (II) RADEON(0): Monitor name: 90GX2
    [ 54385.466] (II) RADEON(0): Serial No: 67120771GB
    [ 54385.466] (II) RADEON(0): EDID (in hex):
    [ 54385.466] (II) RADEON(0): 00ffffffffffff0038a3926601010101
    [ 54385.466] (II) RADEON(0): 1a10010380261e78eade95a3544c9926
    [ 54385.466] (II) RADEON(0): 0f5054bfef80714f8140818001010101
    [ 54385.466] (II) RADEON(0): 010101010101302a009851002a403070
    [ 54385.467] (II) RADEON(0): 1300782d1100001e000000fd00384b1f
    [ 54385.467] (II) RADEON(0): 510e000a202020202020000000fc0039
    [ 54385.467] (II) RADEON(0): 304758320a20202020202020000000ff
    [ 54385.467] (II) RADEON(0): 00363731323037373147420a2020006c
    [ 54385.467] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 54385.467] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 54385.467] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 54385.467] (II) RADEON(0): Output VGA-0 disconnected
    [ 54385.467] (II) RADEON(0): Output S-video disconnected
    [ 54385.467] (II) RADEON(0): Output DVI-0 connected
    [ 54385.467] (II) RADEON(0): Using exact sizes for initial modes
    [ 54385.467] (II) RADEON(0): Output DVI-0 using initial mode 1280x1024
    [ 54385.467] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 54385.467] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:fac0000
    [ 54385.467] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 54385.468] (==) RADEON(0): DPI set to (96, 96)
    [ 54385.468] (II) Loading sub module "fb"
    [ 54385.468] (II) LoadModule: "fb"
    [ 54385.469] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 54385.471] (II) Module fb: vendor="X.Org Foundation"
    [ 54385.471] compiled for 1.8.1.902, module version = 1.0.0
    [ 54385.471] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 54385.471] (II) Loading sub module "ramdac"
    [ 54385.471] (II) LoadModule: "ramdac"
    [ 54385.471] (II) Module "ramdac" already built-in
    [ 54385.471] (II) Loading sub module "exa"
    [ 54385.471] (II) LoadModule: "exa"
    [ 54385.471] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 54385.472] (II) Module exa: vendor="X.Org Foundation"
    [ 54385.472] compiled for 1.8.1.902, module version = 2.5.0
    [ 54385.472] ABI class: X.Org Video Driver, version 7.0
    [ 54385.472] (II) UnloadModule: "vesa"
    [ 54385.472] (II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 54385.472] (II) UnloadModule: "fbdev"
    [ 54385.472] (II) Unloading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 54385.472] (II) UnloadModule: "fbdevhw"
    [ 54385.472] (II) Unloading /usr/lib/xorg/modules/linux/libfbdevhw.so
    [ 54385.472] (--) Depth 24 pixmap format is 32 bpp
    [ 54385.472] (II) RADEON(0): [DRI2] Setup complete
    [ 54385.472] (II) RADEON(0): [DRI2] DRI driver: r300
    [ 54385.472] (II) RADEON(0): Front buffer size: 5120K
    [ 54385.472] (II) RADEON(0): VRAM usage limit set to 226483K
    [ 54385.474] (==) RADEON(0): Backing store disabled
    [ 54385.474] (II) RADEON(0): Direct rendering enabled
    [ 54385.474] (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    [ 54385.474] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 54385.474] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 54385.474] (II) EXA(0): Driver registered support for the following operations:
    [ 54385.474] (II) Solid
    [ 54385.474] (II) Copy
    [ 54385.474] (II) Composite (RENDER acceleration)
    [ 54385.474] (II) UploadToScreen
    [ 54385.474] (II) DownloadFromScreen
    [ 54385.474] (II) RADEON(0): Acceleration enabled
    [ 54385.474] (==) RADEON(0): DPMS enabled
    [ 54385.474] (==) RADEON(0): Silken mouse enabled
    [ 54385.474] (II) RADEON(0): Set up textured video
    [ 54385.476] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 54385.476] (--) RandR disabled
    [ 54385.476] (II) Initializing built-in extension Generic Event Extension
    [ 54385.476] (II) Initializing built-in extension SHAPE
    [ 54385.476] (II) Initializing built-in extension MIT-SHM
    [ 54385.476] (II) Initializing built-in extension XInputExtension
    [ 54385.476] (II) Initializing built-in extension XTEST
    [ 54385.476] (II) Initializing built-in extension BIG-REQUESTS
    [ 54385.476] (II) Initializing built-in extension SYNC
    [ 54385.476] (II) Initializing built-in extension XKEYBOARD
    [ 54385.476] (II) Initializing built-in extension XC-MISC
    [ 54385.476] (II) Initializing built-in extension SECURITY
    [ 54385.476] (II) Initializing built-in extension XINERAMA
    [ 54385.476] (II) Initializing built-in extension XFIXES
    [ 54385.476] (II) Initializing built-in extension RENDER
    [ 54385.476] (II) Initializing built-in extension RANDR
    [ 54385.476] (II) Initializing built-in extension COMPOSITE
    [ 54385.476] (II) Initializing built-in extension DAMAGE
    [ 54385.488] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 54385.488] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 54385.489] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 54385.489] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 54385.489] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r300_dri.so
    [ 54385.489] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 54385.489] (II) RADEON(0): Setting screen physical size to 338 x 270
    [ 54385.645] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 54385.645] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 54385.645] (II) LoadModule: "evdev"
    [ 54385.645] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 54385.646] (II) Module evdev: vendor="X.Org Foundation"
    [ 54385.646] compiled for 1.8.0, module version = 2.4.0
    [ 54385.646] Module class: X.Org XInput Driver
    [ 54385.646] ABI class: X.Org XInput driver, version 9.0
    [ 54385.646] (**) Power Button: always reports core events
    [ 54385.646] (**) Power Button: Device: "/dev/input/event2"
    [ 54385.681] (II) Power Button: Found keys
    [ 54385.681] (II) Power Button: Configuring as keyboard
    [ 54385.682] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 54385.682] (**) Option "xkb_rules" "evdev"
    [ 54385.682] (**) Option "xkb_model" "evdev"
    [ 54385.682] (**) Option "xkb_layout" "us"
    [ 54385.736] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 54385.736] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 54385.736] (**) Power Button: always reports core events
    [ 54385.736] (**) Power Button: Device: "/dev/input/event1"
    [ 54385.745] (II) Power Button: Found keys
    [ 54385.745] (II) Power Button: Configuring as keyboard
    [ 54385.745] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 54385.745] (**) Option "xkb_rules" "evdev"
    [ 54385.745] (**) Option "xkb_model" "evdev"
    [ 54385.745] (**) Option "xkb_layout" "us"
    [ 54385.755] (II) config/udev: Adding input device BTC USB Multimedia Keyboard (/dev/input/event5)
    [ 54385.755] (**) BTC USB Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 54385.755] (**) BTC USB Multimedia Keyboard: always reports core events
    [ 54385.755] (**) BTC USB Multimedia Keyboard: Device: "/dev/input/event5"
    [ 54385.785] (II) BTC USB Multimedia Keyboard: Found keys
    [ 54385.785] (II) BTC USB Multimedia Keyboard: Configuring as keyboard
    [ 54385.785] (II) XINPUT: Adding extended input device "BTC USB Multimedia Keyboard" (type: KEYBOARD)
    [ 54385.785] (**) Option "xkb_rules" "evdev"
    [ 54385.785] (**) Option "xkb_model" "evdev"
    [ 54385.785] (**) Option "xkb_layout" "us"
    [ 54385.786] (II) config/udev: Adding input device BTC USB Multimedia Keyboard (/dev/input/event6)
    [ 54385.786] (**) BTC USB Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 54385.786] (**) BTC USB Multimedia Keyboard: always reports core events
    [ 54385.786] (**) BTC USB Multimedia Keyboard: Device: "/dev/input/event6"
    [ 54385.808] (II) BTC USB Multimedia Keyboard: Found keys
    [ 54385.808] (II) BTC USB Multimedia Keyboard: Configuring as keyboard
    [ 54385.808] (II) XINPUT: Adding extended input device "BTC USB Multimedia Keyboard" (type: KEYBOARD)
    [ 54385.808] (**) Option "xkb_rules" "evdev"
    [ 54385.808] (**) Option "xkb_model" "evdev"
    [ 54385.808] (**) Option "xkb_layout" "us"
    [ 54385.812] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event7)
    [ 54385.812] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 54385.812] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
    [ 54385.812] (**) Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event7"
    [ 54385.835] (II) Logitech USB-PS/2 Optical Mouse: Found 10 mouse buttons
    [ 54385.835] (II) Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
    [ 54385.835] (II) Logitech USB-PS/2 Optical Mouse: Found relative axes
    [ 54385.835] (II) Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
    [ 54385.835] (II) Logitech USB-PS/2 Optical Mouse: Configuring as mouse
    [ 54385.835] (**) Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 54385.835] (**) Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 54385.835] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE)
    [ 54385.835] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
    [ 54385.835] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
    [ 54385.835] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
    [ 54385.835] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
    [ 54385.835] (II) Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
    [ 54385.836] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
    [ 54385.836] (II) No input driver/identifier specified (ignoring)
    [ 54385.838] (II) config/udev: Adding input device USB 2.0 Camera (/dev/input/event4)
    [ 54385.838] (**) USB 2.0 Camera: Applying InputClass "evdev keyboard catchall"
    [ 54385.838] (**) USB 2.0 Camera: always reports core events
    [ 54385.838] (**) USB 2.0 Camera: Device: "/dev/input/event4"
    [ 54385.861] (II) USB 2.0 Camera: Found keys
    [ 54385.861] (II) USB 2.0 Camera: Configuring as keyboard
    [ 54385.861] (II) XINPUT: Adding extended input device "USB 2.0 Camera" (type: KEYBOARD)
    [ 54385.861] (**) Option "xkb_rules" "evdev"
    [ 54385.861] (**) Option "xkb_model" "evdev"
    [ 54385.861] (**) Option "xkb_layout" "us"
    [ 54385.863] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event3)
    [ 54385.863] (II) No input driver/identifier specified (ignoring)
    [ 54385.866] (II) config/udev: Adding input device PC Speaker (/dev/input/event0)
    [ 54385.866] (II) No input driver/identifier specified (ignoring)
    [ 54386.078] (II) Power Button: Close
    [ 54386.078] (II) UnloadModule: "evdev"
    [ 54386.091] (II) Power Button: Close
    [ 54386.091] (II) UnloadModule: "evdev"
    [ 54386.108] (II) BTC USB Multimedia Keyboard: Close
    [ 54386.108] (II) UnloadModule: "evdev"
    [ 54386.135] (II) BTC USB Multimedia Keyboard: Close
    [ 54386.135] (II) UnloadModule: "evdev"
    [ 54386.188] (II) Logitech USB-PS/2 Optical Mouse: Close
    [ 54386.188] (II) UnloadModule: "evdev"
    [ 54386.215] (II) USB 2.0 Camera: Close
    [ 54386.215] (II) UnloadModule: "evdev"
    there is no errors, so its really strange, any advice ???
    Thanks

    You have a bunch of warnings though:
    [ 54385.300] (II) [KMS] Kernel modesetting enabled.
    [ 54385.300] (WW) Falling back to old probe method for vesa
    [ 54385.300] (WW) Falling back to old probe method for fbdev
    Try to set up a minimal xorg.conf and check if your system if fully updated.
    Registered: 2008-06-23
    Posts: 2
    2 posts in two years - happy ArchAnniversary :-)

Maybe you are looking for

  • Upgrading OS 10.2.8 to 10.4 in a Mirrored Drive Door PowerMac G4

    Hello, I'm trying to upgrade the OS from 10.28. to 1.4 in my Mirrored Drive Door Power Mac G4. All the system requirements are met, the firmware is current, and there should be no problem, but I get a message saying "The system can't be installed in

  • BEx Precalculation..

    Hi everybody,  I almost succeeded in implementing the BEx Precalculation for my workbooks, but :  1. It does not work when I try to schedule a workbook precalculation from the HTML Broadcaster. I obtain the following message : 'Error occurred during

  • JaxB returns incompatible type class

    Hi, I want to use JaxB to parse an XML inside an EJB. I got the eclipse plugin for doing that and exchanged delivered JaxB 2.1 with the one I found in NWDS 7.10 SP7 (JaxB 2.0). Generated Java Files show as comment: "This file was generated by the Jav

  • MBA or iPad for Writers

    So, come March, with the anticipated arrival of the long awaited and less-rumored iPad 3, I will probably be joining the throngs of people eager to get my hands on and fall in love with another Apple device.  But wait!  As I mull over the decision to

  • New MacBook Pro BeachBall

    I just got a new MacBook Pro this weekend to add to the current Macbook I have. It obviously has Snow Leopard 10.6.1. Now, since using this new MacBook Pro, I always get the beach ball whenever I try to open Safari or FireFox. It takes forever to loa