Error in client: domain was null

I'm getting the following exception now that I've deployed one of the applications on another OC4J instance on a separate machine. I can connect fine and get the expected response when running out of my Intellij IDE or command line. Problem is I get the message I pasted below now when trying to connect after deploying on my second OC4J instance. I used port 3102 and then switched over to the default 23791 thinking this may resolve the problem but I still got the same error message. Anyone know what could be causing this and why I can connect fine at command line but not once deployed in OC4J?
Error in client: domain was null
java.lang.NullPointerException: domain was null
     at com.evermind.server.rmi.RMIServer.addNode(RMIServer.java:735)
     at com.evermind.server.rmi.RMIServer.getConnection(RMIServer.java:804)
     at com.evermind.server.rmi.RMIInitialContextFactory.getInitialContext(RMIInitialContextFactory.java:206)
     at com.evermind.server.ApplicationClientInitialContextFactory.getInitialContext(ApplicationClientInitialContextFactory.java:167)
     at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:660)
     at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:241)
     at javax.naming.InitialContext.init(InitialContext.java:217)
     at javax.naming.InitialContext.<init>(InitialContext.java:193)
     at gov.va.med.pats.client.RemoteClient.sendMessage(RemoteClient.java:47)
     at gov.va.med.pats.adapter.TechAdapter$QueueThreader.run(TechAdapter.java:101)

I'm getting the following exception now that I've deployed one of the applications on another OC4J instance on a separate machine. I can connect fine and get the expected response when running out of my Intellij IDE or command line. Problem is I get the message I pasted below now when trying to connect after deploying on my second OC4J instance. I used port 3102 and then switched over to the default 23791 thinking this may resolve the problem but I still got the same error message. Anyone know what could be causing this and why I can connect fine at command line but not once deployed in OC4J?
Error in client: domain was null
java.lang.NullPointerException: domain was null
     at com.evermind.server.rmi.RMIServer.addNode(RMIServer.java:735)
     at com.evermind.server.rmi.RMIServer.getConnection(RMIServer.java:804)
     at com.evermind.server.rmi.RMIInitialContextFactory.getInitialContext(RMIInitialContextFactory.java:206)
     at com.evermind.server.ApplicationClientInitialContextFactory.getInitialContext(ApplicationClientInitialContextFactory.java:167)
     at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:660)
     at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:241)
     at javax.naming.InitialContext.init(InitialContext.java:217)
     at javax.naming.InitialContext.<init>(InitialContext.java:193)
     at gov.va.med.pats.client.RemoteClient.sendMessage(RemoteClient.java:47)
     at gov.va.med.pats.adapter.TechAdapter$QueueThreader.run(TechAdapter.java:101)

Similar Messages

  • "domain was null"; rmicontext=false; JTA UserTransaction;EJB Transaction

    Hi folks!
    I´m doing a test with EJB´s and JTA transactions.
    The goal of the test is to verify if the OC4J will recognize a JTA User Transaction opened by a client just before an EJB method invocation and use it inside the EJB method, instead of opening a new transaction.
    So, I have an EJB with conteiner managed transaction feature "Required".
    And I have a client of this EJB, that opens a JTA UserTransaction and performs some updates and calls the EJB.
    After the EJB call, I throwed a RuntimeException. The proposal of throwing this exception is to force the rollback of all the transaction ( the updates made by the client and the updates made by the ejb must not be commited ).
    My method seems like this ( actually it´s a little bit more structured, but for understading purporses, i put it all in one method only here ):
    <pre>
    public void testTransaction () {
    boolean commit = false;
    javax.transaction.UserTransaction ut = null;
    try {
    // getting the JTA Transaction
    javax.naming.Context initCtx = new javax.naming.InitialContext();
    ut = (javax.transaction.UserTransaction) initCtx.lookup("java:comp/UserTransaction");
    ut.begin();
    try{
    //issue the update
    Connection conn = null;
    try {
    Context ic = new InitialContext();
         DataSource ds = (DataSource) ic.lookup("jdbc/JTADS");
         conn = ds.getConnection();
         PreparedStatement stmt = conn.prepareStatement("UPDATE dont_drop_this_table set field2 =? where field1 = ?");
         stmt.setString(1, "First Record");
         stmt.setInt(2, 1);
         stmt.executeUpdate();
    } finally {
    if (conn != null) conn.close();
    //issue another update via EJB
    Hashtable env = new Hashtable();
    String initialContextFactory = "com.evermind.server.rmi.RMIInitialContextFactory";
    String securityPrincipal = "jazn.com/admin";//admin
    String securityCredentials = "welcome";//admin
    String providerUrl = "ormi://localhost:23791/jta";
    env.put(Context.INITIAL_CONTEXT_FACTORY, initialContextFactory);
    env.put(Context.SECURITY_PRINCIPAL, securityPrincipal);
    env.put(Context.SECURITY_CREDENTIALS, securityCredentials);
    env.put("dedicated.rmicontext", "false");
    env.put("dedicated.connection", "false");
    env.put(Context.PROVIDER_URL, providerUrl);
    Context ctx = new InitialContext(env);
    Object home = ctx.lookup(jndiName);
    Object o = PortableRemoteObject.narrow(home, Class.forName("mytest.MyEJBHome"))
    Class clazz = o.getClass();
    Method method = clazz.getMethod("create", null);
    MyEJBBean bean = (MyEJBBean) method.invoke(o, null);
    //invoking ejb
    bean.updateTable(2, "Second Record")
    //force an ArrayOutOfBoundsException, in order to test
    //if the EJB container will rollback or commit the ejb transaction.
    int x[] = { 0 };
    x[1] = 1;
    x[2] = 1;
    } catch (Exception e) {
    throw new RuntimeException(e);
    //if there was no exception thrown until here... then commit
    commit = true;
    catch ( Exception e ) {
    throw new RuntimeException (e);
    finally {
    try {
    if ( commit ) ut.commit();
    else ut.rollback();
    } catch ( Exception e ) {
    throw new RuntimeException (e);
    </pre>
    Now my question:
    When I use dedicated.rmicontext = true or dedicated.connection = true, the EJB container commits the transaction, even after the exception thrown. I understand that EJB container open a new transaction, instead of use the existing one ( jta UserTransaction.
    When I use dedicated.rmicontext = false and dedicated.connection = false, the EJB container rollbacks the transaction, as I expected.
    I´ve seen many posts about "domain was null" message after a NullPointerException.
    I did many tests, but no NullPointerException was thrown, even when calling the EJB remotely nor issuing concurrent calls.
    - I need the container rollback the transaction.
    - I found that it only rollbacks when I put dedicated.rmicontext = false and dedicated.connection = false.
    - I found that when dedicated.rmicontext = false and dedicated.connection = false, a NullPointerException may ocurr.
    This "domain was null" problem seems to be an OC4J bug and the rmicontext=true an workaround for this bug, but I can´t use rmicontext=true because it will make the EJB transaction not to be the same JTA UserTransaction opened before the EJB call.
    Is there any other way to make an EJB transaction be the same JTA UserTransaction openned before the EJB call?
    PS: I´m using JDeveloper 10.1.2
    Thanks for any help...

    Can anybody help me?
    I need to know how can I set my EJB to use the same connection opened by a POJO class via JTA. ( Actually I need the EJB and POJO class be in same JTA transaction )
    If I set the dedicated.rmicontext to false, it works but I run to risk of getting a NullPointerException "domain was null".
    I realy need your help!
    Thanks!

  • Error Integrated Weblogic domain was not built | JDeveloper 11.1.2.0

    When I try to start integrated weblogic server, I get the following message:
    "The Server Instance cannot be started because the Integrated Weblogic domain was not built successfully"
    CreateDefaultDomain.log
    Log File: D:\JDeveloper\system11.1.1.2.36.55.36\o.j2ee.adrs\CreateDefaultDomain.log
    Label: JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
    Product Home: C:\Oracle\Middleware\jdeveloper\jdev\
    Domain: C:\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain
    "C:\Oracle\Middleware\jdeveloper\common\bin\wlst.cmd" "C:\JDeveloper\system11.1.1.2.36.55.36\o.j2ee.adrs\CreateDefaultDomain.py"
    Process started
    wlst > The input line is too long.
    Elapsed time: 26 ms
    Has anyone found a fix for this problem?
    I use Windows 2000 and JDeveloper 11.1.2.0
    Edited by: user11104528 on 07.04.2010 3:44

    Windows 2000 is not one of the certified OS (look here http://www.oracle.com/technology/products/jdev/collateral/papers/11/certification/index.html).
    Seams there is a problem with the quite long pathnames and the length of the command line resulting from them.
    You can try to shorten the path i.e. using a subst and set the product home to it.
    Timo

  • Functiontemplate from repository was null +SAP XI

    hi,all
      can any one suggest me why this error is coming
    >>>functiontemplate from repository was <null>
    thanx

    when I am sending data from JDBC-XI-RFC
    I am using BAPI function module as RFC at receiver side
    sxmb_moni shows all is working nice but RWB showing waiting ,after some time it is showing "system error"
    and in message detail I can see this error
    "functiontemplate from repository was <null>"
    Thx,

  • Error in RFC Receiver Adapter: functiontemplate from repository was null

    Hi Friends,
    i am working on JDBC -> RFC Scenario, JDBC Sender Adapter is working fine, but RFC Receiver Adapter is throwing this error message... can some one help me to solve this issue...
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>
    Thanks
    Srikanth

    Hi,
    I think the logon details what you are giving in Receiver CC may be wrong. Check all those details like Application Server,System Number,User,Password and client.
    Thanks.

  • Sender RFC adapter Error- request was null while trying to extract it.

    Hi All,
    I  have a scenario running in Production(PI 7.0 system) where SAP ECC sends RFC request through sender RFC adapter. The scenario was working fine but now I am getting the below error in default trace and I couldn't see any error in communication channel monitoring.
    java.lang.Exception: RfcServer[BAS_ECC_RFC_Snd]1[AFSenderD] request was <null> while trying to extract it.
    I have gone through the below thread and performed a full cache refresh but it didn't help :  
    [NULL]
    I have gone through SAP note:730870 and I couldn't get any help on this error. Can you please suggest your ideas to solve this issue.
    Thanks & Regards,
    Laawanya

    Hi Lawanya,
    Check you RFC and input data , whether the RFC call is able to get the data from ECC or not.
    you can test the same RFC in ECC with input data and you can check whether the RFC in ECC is return the value or not.
    I gues in your case the RFC in ECC is not return any data  to PI.

  • I got this error while my mac was backing up to time machine: he backup disk image "/Volumes/Data/Sanjeev's iMac.sparsebundle" could not be created (error (null)). Please could someone help

    I got this error while my mac was backing up to time machine: he backup disk image “/Volumes/Data/Sanjeev’s iMac.sparsebundle” could not be created (error (null)). Please could someone help

    Has the backup been working ok??
    If that is the case simply reboot the TC.. or if that fails, reboot the whole network, restarting in correct order..
    modem.. wait 2min
    TC.. wait 2min

  • Home DB error (404) and fails logs (Parameter was NULL)

    Hello, I installed the oracle-xe by apt-get like in http://www.oracle.com/technetwork/topics/linux/xe-on-kubuntu-087822.html
    I use Linux debian (mint) with KDE.
    The installation and configuration was successful. BUT when I try open Home (http://127.0.0.1:8080/apex) return error 404.
    This config was in port 8080
    tati@desa462-linux:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/config/scripts > cat /etc/default/oracle-xe |grep HTTP# HTTP_PORT : HTTP port for Oracle Application Express
    HTTP_PORT=8080
    I run enviroment script like in http://docs.oracle.com/cd/B25329_01/doc/install.102/b25144/toc.htm#BABDGCHH
    ". /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.sh"
    no return errors and variables was defined.
    listener port
    tati@desa462-linux:~ > netstat -a | grep 1521
    tcp        0      0 *:1521                  *:*                     LISTEN    
    no-listener
    tati@desa462-linux:~ > netstat -a | grep 8080
    tati@desa462-linux:~ >
    error log:
    [  OCRUTL][4132255488]u_set_comp_error: Parameter was NULL
    [  OCRUTL][4132255488]u_set_ocr_error: Parameter was NULL
    2014-12-08 10:21:47.224: [  OCROSD][4132255488]utgdv:2:ocr loc file  cannot  be opened
    2014-12-08 10:21:47.225: [  OCROSD][4132255488]utopen:1: Couldnt find ocr,[ocrmirror] location in config file
    [  OCRUTL][4132255488]u_set_gbl_comp_error: Parameter was NULL
    2014-12-08 10:21:47.225: [  OCRRAW][4132255488]proprinit: Could not open raw device
    2014-12-08 10:21:47.225: [ default][4132255488]a_init:7!: Backend init unsuccessful : [33]
    [  OCRUTL][4132255488]u_set_ocr_error: Parameter was NULL
    2014-12-08 10:21:47.225: [ CSSCLNT][4132255488]clsssinit: error(33 ) in OCR initialization
    Can any one help-me??

    You can have a look at other web applications in /webapps to see how correctly structured look like.
    You can also read this (very old) but still informative post.
    From what you say, it seems you have several challenges:
    * web-inf is in lower case instead of uppercase
    * the web application is named "uk" and not "demo-examples"
    Have you tried with http://localhost:1020/uk/HelloWorld ?

  • [SOLVED] Rad 7790+Catalyst = Error: unable to open display (null)

    Radeon HD 7790 + Catalyst = Error: unable to open display (null)
    Greetings,
    I've installed Arch 2 days ago(migrated from Fedora), but I'm still a newbie to linux, so please have patience.
    I've bought AMD Radeon HD 7790 recently and decided that it's time to upgrade system, but since then I had only problems with it. No LiveCD I tried (Fedora 20, Mint)  worked properly in graphics mode, so I suspected problem in built-in drivers and moved to linux with text-only installation (Arch), so I could install drivers later.
    I've followed wiki manual and installed catalyst, removed open source driver, added nomodeset parametr to GRUB etc. but I'm still stucked, because Xorg won't start(black screen and errors presented in Logs). Tried googling, but learned nothing except Radeon proprietary drivers are comparable to suicide.
    Versions:
    Kernel: 3-10.40-1-lts (catalyst_build_module sucessful)
    Catalyst: 14.4-10
    Xorg: 1.14.5-11
    Logs&Configs:
    lsmod
    fglrx 8672295 0
    amd_iommu_v2 7174 1 fglrx
    button 4765 1 fglrx
    fglrxinfo
    Error: unable to open display (null)
    Xorg.0.conf
    [ 2632.576]
    X.Org X Server 1.14.5
    Release Date: 2013-12-12
    [ 2632.594] X Protocol Version 11, Revision 0
    [ 2632.600] Build Operating System: Linux 3.12.6-1-ARCH x86_64
    [ 2632.606] Current Operating System: Linux localhost 3.10.40-1-lts #1 SMP Tue May 13 12:50:03 UTC 2014 x86_64
    [ 2632.606] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=4f60e723-44e9-4264-8d6c-ca62c43cf69c rw quiet nomodeset
    [ 2632.619] Build Date: 08 January 2014 01:35:51PM
    [ 2632.629]
    [ 2632.635] Current version of pixman: 0.32.4
    [ 2632.646] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2632.646] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2632.671] (==) Log file: "/var/log/Xorg.0.log", Time: Sun May 25 00:53:45 2014
    [ 2632.677] (==) Using config file: "/etc/X11/xorg.conf"
    [ 2632.684] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2632.690] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2632.690] (==) ServerLayout "aticonfig Layout"
    [ 2632.690] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 2632.690] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 2632.690] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 2632.690] (==) Automatically adding devices
    [ 2632.690] (==) Automatically enabling devices
    [ 2632.690] (==) Automatically adding GPU devices
    [ 2632.690] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2632.690] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2632.690] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 2632.690] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2632.690] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2632.690] (II) Loader magic: 0x7fac20
    [ 2632.690] (II) Module ABI versions:
    [ 2632.690] X.Org ANSI C Emulation: 0.4
    [ 2632.690] X.Org Video Driver: 14.1
    [ 2632.690] X.Org XInput driver : 19.1
    [ 2632.691] X.Org Server Extension : 7.0
    [ 2632.692] (--) PCI:*(0:2:0:0) 1002:665c:1458:226a rev 0, Mem @ 0xc0000000/268435456, 0xde800000/8388608, 0xdffc0000/262144, I/O @ 0x0000e800/256, BIOS @ 0x????????/131072
    [ 2632.698] Initializing built-in extension Generic Event Extension
    [ 2632.704] Initializing built-in extension SHAPE
    [ 2632.710] Initializing built-in extension MIT-SHM
    [ 2632.717] Initializing built-in extension XInputExtension
    [ 2632.723] Initializing built-in extension XTEST
    [ 2632.728] Initializing built-in extension BIG-REQUESTS
    [ 2632.734] Initializing built-in extension SYNC
    [ 2632.740] Initializing built-in extension XKEYBOARD
    [ 2632.745] Initializing built-in extension XC-MISC
    [ 2632.751] Initializing built-in extension SECURITY
    [ 2632.756] Initializing built-in extension XINERAMA
    [ 2632.761] Initializing built-in extension XFIXES
    [ 2632.767] Initializing built-in extension RENDER
    [ 2632.772] Initializing built-in extension RANDR
    [ 2632.777] Initializing built-in extension COMPOSITE
    [ 2632.782] Initializing built-in extension DAMAGE
    [ 2632.787] Initializing built-in extension MIT-SCREEN-SAVER
    [ 2632.792] Initializing built-in extension DOUBLE-BUFFER
    [ 2632.797] Initializing built-in extension RECORD
    [ 2632.802] Initializing built-in extension DPMS
    [ 2632.806] Initializing built-in extension X-Resource
    [ 2632.811] Initializing built-in extension XVideo
    [ 2632.816] Initializing built-in extension XVideo-MotionCompensation
    [ 2632.821] Initializing built-in extension XFree86-VidModeExtension
    [ 2632.825] Initializing built-in extension XFree86-DGA
    [ 2632.830] Initializing built-in extension XFree86-DRI
    [ 2632.834] Initializing built-in extension DRI2
    [ 2632.834] (II) "glx" will be loaded by default.
    [ 2632.834] (II) LoadModule: "glx"
    [ 2632.834] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2632.835] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 2632.835] compiled for 6.9.0, module version = 1.0.0
    [ 2632.839] Loading extension GLX
    [ 2632.839] (II) LoadModule: "fglrx"
    [ 2632.839] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 2632.863] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
    [ 2632.863] compiled for 1.4.99.906, module version = 14.10.2
    [ 2632.863] Module class: X.Org Video Driver
    [ 2632.863] (II) Loading sub module "fglrxdrm"
    [ 2632.863] (II) LoadModule: "fglrxdrm"
    [ 2632.863] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 2632.863] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 2632.863] compiled for 1.4.99.906, module version = 14.10.2
    [ 2632.863] (II) AMD Proprietary Linux Driver Version Identifier:14.10.2
    [ 2632.864] (II) AMD Proprietary Linux Driver Release Identifier: 14.10.1006
    [ 2632.864] (II) AMD Proprietary Linux Driver Build Date: Apr 17 2014 21:15:33
    [ 2632.864] (--) using VT number 2
    [ 2632.885] (WW) Falling back to old probe method for fglrx
    [ 2632.899] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
    [ 2632.901] ukiDynamicMajor: found major device number 250
    [ 2632.901] ukiDynamicMajor: found major device number 250
    [ 2632.901] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2632.901] ukiOpenDevice: node name is /dev/ati/card0
    [ 2632.901] ukiOpenDevice: open result is 11, (OK)
    [ 2632.901] ukiOpenByBusid: ukiOpenMinor returns 11
    [ 2632.901] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2632.904] (--) Chipset Supported AMD Graphics Processor (0x665C) found
    [ 2632.904] (WW) fglrx: No matching Device section for instance (BusID PCI:0@2:0:1) found
    [ 2632.905] (II) fglrx(0): pEnt->device->identifier=0x11bea10
    [ 2632.905] (II) fglrx(0): === [xdl_xs114_atiddxPreInit] === begin
    [ 2632.905] (II) Loading sub module "vgahw"
    [ 2632.905] (II) LoadModule: "vgahw"
    [ 2632.905] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 2632.905] (II) Module vgahw: vendor="X.Org Foundation"
    [ 2632.906] compiled for 1.14.5, module version = 0.1.0
    [ 2632.906] ABI class: X.Org Video Driver, version 14.1
    [ 2632.906] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 2632.906] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 2632.906] (==) fglrx(0): Default visual is TrueColor
    [ 2632.906] (**) fglrx(0): Option "DPMS" "true"
    [ 2632.906] (==) fglrx(0): RGB weight 888
    [ 2632.906] (II) fglrx(0): Using 8 bits per RGB
    [ 2632.906] (==) fglrx(0): Buffer Tiling is ON
    [ 2632.906] (II) Loading sub module "fglrxdrm"
    [ 2632.906] (II) LoadModule: "fglrxdrm"
    [ 2632.906] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 2632.906] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 2632.906] compiled for 1.4.99.906, module version = 14.10.2
    [ 2632.908] ukiDynamicMajor: found major device number 250
    [ 2632.908] ukiDynamicMajor: found major device number 250
    [ 2632.908] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2632.908] ukiOpenDevice: node name is /dev/ati/card0
    [ 2632.908] ukiOpenDevice: open result is 13, (OK)
    [ 2632.908] ukiOpenByBusid: ukiOpenMinor returns 13
    [ 2632.908] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2632.908] (**) fglrx(0): NoAccel = NO
    [ 2632.909] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
    [ 2632.909] (--) fglrx(0): Chipset: "AMD Radeon HD 7700 Series" (Chipset = 0x665c)
    [ 2632.909] (--) fglrx(0): (PciSubVendor = 0x1458, PciSubDevice = 0x226a)
    [ 2632.909] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
    [ 2632.909] (--) fglrx(0): Linear framebuffer (phys) at 0xc0000000
    [ 2632.909] (--) fglrx(0): MMIO registers at 0xdffc0000
    [ 2632.909] (--) fglrx(0): I/O port at 0x0000e800
    [ 2632.909] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 2632.909] (II) fglrx(0): AC Adapter is used
    [ 2632.914] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    [ 2632.914] (II) Loading sub module "vbe"
    [ 2632.914] (II) LoadModule: "vbe"
    [ 2632.915] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 2632.915] (II) Module vbe: vendor="X.Org Foundation"
    [ 2632.915] compiled for 1.14.5, module version = 1.1.0
    [ 2632.915] ABI class: X.Org Video Driver, version 14.1
    [ 2632.915] (II) fglrx(0): VESA BIOS detected
    [ 2632.915] (II) fglrx(0): VESA VBE Version 3.0
    [ 2632.915] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
    [ 2632.915] (II) fglrx(0): VESA VBE OEM: AMD ATOMBIOS
    [ 2632.915] (II) fglrx(0): VESA VBE OEM Software Rev: 15.32
    [ 2632.915] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2010, Advanced Micro Devices, Inc.
    [ 2632.915] (II) fglrx(0): VESA VBE OEM Product: BONAIRE
    [ 2632.915] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    [ 2632.915] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
    [ 2632.915] (--) fglrx(0): Video RAM: 2097152 kByte, Type: GDDR5
    [ 2632.915] (II) fglrx(0): PCIE card detected
    [ 2632.915] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 2632.915] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 2632.915] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf400000000, MCFBSize = 0x80000000)
    [ 2632.915] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 2632.915] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 2632.915] (II) Loading sub module "fb"
    [ 2632.915] (II) LoadModule: "fb"
    [ 2632.916] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 2632.916] (II) Module fb: vendor="X.Org Foundation"
    [ 2632.916] compiled for 1.14.5, module version = 1.0.0
    [ 2632.916] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2632.916] (II) fglrx(0): EDID Management option: EDID Management is enabled
    [ 2632.916] (II) Loading sub module "ddc"
    [ 2632.916] (II) LoadModule: "ddc"
    [ 2632.916] (II) Module "ddc" already built-in
    [ 2633.034] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0
    [ 2633.034] (II) fglrx(0): Output DFP2 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP3 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP4 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP5 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP6 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP7 has no monitor section
    [ 2633.034] (II) fglrx(0): Output CRT1 has no monitor section
    [ 2633.034] (II) Loading sub module "ddc"
    [ 2633.034] (II) LoadModule: "ddc"
    [ 2633.034] (II) Module "ddc" already built-in
    [ 2633.034] (II) fglrx(0): Connected Display0: CRT1
    [ 2633.034] (II) fglrx(0): Display0 EDID data ---------------------------
    [ 2633.034] (II) fglrx(0): Manufacturer: GSM Model: 4b31 Serial#: 78077
    [ 2633.034] (II) fglrx(0): Year: 2007 Week: 7
    [ 2633.034] (II) fglrx(0): EDID Version: 1.3
    [ 2633.034] (II) fglrx(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 2633.034] (II) fglrx(0): Sync: Separate Composite SyncOnGreen
    [ 2633.034] (II) fglrx(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    [ 2633.034] (II) fglrx(0): Gamma: 2.20
    [ 2633.034] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 2633.034] (II) fglrx(0): First detailed timing is preferred mode
    [ 2633.034] (II) fglrx(0): redX: 0.639 redY: 0.342 greenX: 0.297 greenY: 0.615
    [ 2633.034] (II) fglrx(0): blueX: 0.146 blueY: 0.068 whiteX: 0.313 whiteY: 0.329
    [ 2633.034] (II) fglrx(0): Supported established timings:
    [ 2633.034] (II) fglrx(0): 720x400@70Hz
    [ 2633.034] (II) fglrx(0): 640x480@60Hz
    [ 2633.034] (II) fglrx(0): 640x480@67Hz
    [ 2633.034] (II) fglrx(0): 640x480@72Hz
    [ 2633.034] (II) fglrx(0): 640x480@75Hz
    [ 2633.034] (II) fglrx(0): 800x600@56Hz
    [ 2633.034] (II) fglrx(0): 800x600@60Hz
    [ 2633.034] (II) fglrx(0): 800x600@72Hz
    [ 2633.034] (II) fglrx(0): 800x600@75Hz
    [ 2633.034] (II) fglrx(0): 832x624@75Hz
    [ 2633.034] (II) fglrx(0): 1024x768@60Hz
    [ 2633.034] (II) fglrx(0): 1024x768@70Hz
    [ 2633.034] (II) fglrx(0): 1024x768@75Hz
    [ 2633.035] (II) fglrx(0): 1280x1024@75Hz
    [ 2633.035] (II) fglrx(0): 1152x864@75Hz
    [ 2633.035] (II) fglrx(0): Manufacturer's mask: 0
    [ 2633.035] (II) fglrx(0): Supported standard timings:
    [ 2633.035] (II) fglrx(0): #0: hsize: 640 vsize 480 refresh: 75 vid: 20273
    [ 2633.035] (II) fglrx(0): #1: hsize: 800 vsize 600 refresh: 75 vid: 20293
    [ 2633.035] (II) fglrx(0): #2: hsize: 1024 vsize 768 refresh: 75 vid: 20321
    [ 2633.035] (II) fglrx(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 2633.035] (II) fglrx(0): Supported detailed timing:
    [ 2633.035] (II) fglrx(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    [ 2633.035] (II) fglrx(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 2633.035] (II) fglrx(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 2633.035] (II) fglrx(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
    [ 2633.035] (II) fglrx(0): Monitor name: L1918S
    [ 2633.035] (II) fglrx(0): Monitor name:
    [ 2633.035] (II) fglrx(0): EDID (in hex):
    [ 2633.035] (II) fglrx(0): 00ffffffffffff001e6d314bfd300100
    [ 2633.035] (II) fglrx(0): 071101036e261e78eaa2a5a3574c9d25
    [ 2633.035] (II) fglrx(0): 115054bfef80314f454f614f81800101
    [ 2633.035] (II) fglrx(0): 010101010101302a009851002a403070
    [ 2633.035] (II) fglrx(0): 1300782d1100001e000000fd00384b1e
    [ 2633.035] (II) fglrx(0): 530e000a202020202020000000fc004c
    [ 2633.035] (II) fglrx(0): 31393138530a202020202020000000fc
    [ 2633.035] (II) fglrx(0): 00200a202020202020202020202000e7
    [ 2633.035] (II) fglrx(0): End of Display0 EDID data --------------------
    [ 2633.035] (II) fglrx(0): Dynamic Surface Resizing Enabled
    [ 2633.036] (II) fglrx(0): EDID for output DFP1
    [ 2633.036] (II) fglrx(0): EDID for output DFP2
    [ 2633.036] (II) fglrx(0): EDID for output DFP3
    [ 2633.036] (II) fglrx(0): EDID for output DFP4
    [ 2633.036] (II) fglrx(0): EDID for output DFP5
    [ 2633.036] (II) fglrx(0): EDID for output DFP6
    [ 2633.036] (II) fglrx(0): EDID for output DFP7
    [ 2633.036] (II) fglrx(0): EDID for output CRT1
    [ 2633.036] (II) fglrx(0): Manufacturer: GSM Model: 4b31 Serial#: 78077
    [ 2633.036] (II) fglrx(0): Year: 2007 Week: 7
    [ 2633.036] (II) fglrx(0): EDID Version: 1.3
    [ 2633.036] (II) fglrx(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 2633.036] (II) fglrx(0): Sync: Separate Composite SyncOnGreen
    [ 2633.036] (II) fglrx(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    [ 2633.036] (II) fglrx(0): Gamma: 2.20
    [ 2633.036] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 2633.036] (II) fglrx(0): First detailed timing is preferred mode
    [ 2633.036] (II) fglrx(0): redX: 0.639 redY: 0.342 greenX: 0.297 greenY: 0.615
    [ 2633.036] (II) fglrx(0): blueX: 0.146 blueY: 0.068 whiteX: 0.313 whiteY: 0.329
    [ 2633.036] (II) fglrx(0): Supported established timings:
    [ 2633.036] (II) fglrx(0): 720x400@70Hz
    [ 2633.036] (II) fglrx(0): 640x480@60Hz
    [ 2633.036] (II) fglrx(0): 640x480@67Hz
    [ 2633.036] (II) fglrx(0): 640x480@72Hz
    [ 2633.036] (II) fglrx(0): 640x480@75Hz
    [ 2633.036] (II) fglrx(0): 800x600@56Hz
    [ 2633.036] (II) fglrx(0): 800x600@60Hz
    [ 2633.036] (II) fglrx(0): 800x600@72Hz
    [ 2633.036] (II) fglrx(0): 800x600@75Hz
    [ 2633.036] (II) fglrx(0): 832x624@75Hz
    [ 2633.037] (II) fglrx(0): 1024x768@60Hz
    [ 2633.037] (II) fglrx(0): 1024x768@70Hz
    [ 2633.037] (II) fglrx(0): 1024x768@75Hz
    [ 2633.037] (II) fglrx(0): 1280x1024@75Hz
    [ 2633.037] (II) fglrx(0): 1152x864@75Hz
    [ 2633.037] (II) fglrx(0): Manufacturer's mask: 0
    [ 2633.037] (II) fglrx(0): Supported standard timings:
    [ 2633.037] (II) fglrx(0): #0: hsize: 640 vsize 480 refresh: 75 vid: 20273
    [ 2633.037] (II) fglrx(0): #1: hsize: 800 vsize 600 refresh: 75 vid: 20293
    [ 2633.037] (II) fglrx(0): #2: hsize: 1024 vsize 768 refresh: 75 vid: 20321
    [ 2633.037] (II) fglrx(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 2633.037] (II) fglrx(0): Supported detailed timing:
    [ 2633.037] (II) fglrx(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    [ 2633.037] (II) fglrx(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 2633.037] (II) fglrx(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 2633.037] (II) fglrx(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
    [ 2633.037] (II) fglrx(0): Monitor name: L1918S
    [ 2633.037] (II) fglrx(0): Monitor name:
    [ 2633.037] (II) fglrx(0): EDID (in hex):
    [ 2633.037] (II) fglrx(0): 00ffffffffffff001e6d314bfd300100
    [ 2633.037] (II) fglrx(0): 071101036e261e78eaa2a5a3574c9d25
    [ 2633.037] (II) fglrx(0): 115054bfef80314f454f614f81800101
    [ 2633.037] (II) fglrx(0): 010101010101302a009851002a403070
    [ 2633.037] (II) fglrx(0): 1300782d1100001e000000fd00384b1e
    [ 2633.037] (II) fglrx(0): 530e000a202020202020000000fc004c
    [ 2633.037] (II) fglrx(0): 31393138530a202020202020000000fc
    [ 2633.037] (II) fglrx(0): 00200a202020202020202020202000e7
    [ 2633.037] (II) fglrx(0): Printing probed modes for output CRT1
    [ 2633.037] (II) fglrx(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 2633.037] (II) fglrx(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x960"x75.0 135.00 1280 1296 1440 1688 960 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x960"x60.0 108.00 1280 1328 1440 1688 960 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x768"x75.0 135.00 1280 1296 1440 1688 768 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x768"x60.0 108.00 1280 1328 1440 1688 768 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x720"x75.0 135.00 1280 1296 1440 1688 720 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x720"x60.0 108.00 1280 1328 1440 1688 720 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1024x768"x70.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "800x600"x72.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "800x600"x60.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "800x600"x56.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "640x480"x72.0 31.50 640 656 696 832 480 481 484 520 -hsync -vsync (37.9 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "640x480"x67.0 27.28 640 664 728 816 480 481 484 499 -hsync +vsync (33.4 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "640x480"x60.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 2633.037] (II) fglrx(0): Output DFP1 disconnected
    [ 2633.037] (II) fglrx(0): Output DFP2 disconnected
    [ 2633.037] (II) fglrx(0): Output DFP3 disconnected
    [ 2633.037] (II) fglrx(0): Output DFP4 disconnected
    [ 2633.037] (II) fglrx(0): Output DFP5 disconnected
    [ 2633.038] (II) fglrx(0): Output DFP6 disconnected
    [ 2633.038] (II) fglrx(0): Output DFP7 disconnected
    [ 2633.038] (II) fglrx(0): Output CRT1 connected
    [ 2633.038] (II) fglrx(0): Using exact sizes for initial modes
    [ 2633.038] (II) fglrx(0): Output CRT1 using initial mode 1280x1024
    [ 2633.038] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 2633.038] (II) fglrx(0): DPI set to (96, 96)
    [ 2633.038] (II) fglrx(0): Eyefinity capable adapter detected.
    [ 2633.038] (II) fglrx(0): Adapter AMD Radeon HD 7700 Series has 6 configurable heads and 1 displays connected.
    [ 2633.038] (==) fglrx(0): PseudoColor visuals disabled
    [ 2633.038] (II) Loading sub module "ramdac"
    [ 2633.038] (II) LoadModule: "ramdac"
    [ 2633.038] (II) Module "ramdac" already built-in
    [ 2633.038] (==) fglrx(0): NoDRI = NO
    [ 2633.038] (==) fglrx(0): Capabilities: 0x00000000
    [ 2633.038] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 2633.038] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 2633.038] (==) fglrx(0): UseFastTLS=0
    [ 2633.038] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
    [ 2633.038] (--) Depth 24 pixmap format is 32 bpp
    [ 2633.038] Loading extension ATIFGLRXDRI
    [ 2633.038] (II) fglrx(0): doing swlDriScreenInit
    [ 2633.038] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 2633.039] ukiDynamicMajor: found major device number 250
    [ 2633.039] ukiDynamicMajor: found major device number 250
    [ 2633.039] ukiDynamicMajor: found major device number 250
    [ 2633.039] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2633.039] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.039] ukiOpenDevice: open result is 14, (OK)
    [ 2633.039] ukiOpenByBusid: ukiOpenMinor returns 14
    [ 2633.039] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2633.039] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 2633.039] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:2:0:0"
    [ 2633.039] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x3c000
    [ 2633.039] (II) fglrx(0): [uki] mapped SAREA 0x3c000 to 0x7f000fd0d000
    [ 2633.039] (II) fglrx(0): [uki] framebuffer handle = 0x3d000
    [ 2633.039] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 2633.039] (II) fglrx(0): swlDriScreenInit done
    [ 2633.039] (II) fglrx(0): Kernel Module Version Information:
    [ 2633.039] (II) fglrx(0): Name: fglrx
    [ 2633.039] (II) fglrx(0): Version: 14.10.2
    [ 2633.039] (II) fglrx(0): Date: Apr 17 2014
    [ 2633.039] (II) fglrx(0): Desc: AMD FireGL DRM kernel module
    [ 2633.039] (II) fglrx(0): Kernel Module version matches driver.
    [ 2633.039] (II) fglrx(0): Kernel Module Build Time Information:
    [ 2633.039] (II) fglrx(0): Build-Kernel UTS_RELEASE: 3.10.40-1-lts
    [ 2633.039] (II) fglrx(0): Build-Kernel MODVERSIONS: yes
    [ 2633.039] (II) fglrx(0): Build-Kernel __SMP__: yes
    [ 2633.039] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 2633.039] (II) fglrx(0): [uki] register handle = 0x0003e000
    [ 2633.040] (II) fglrx(0): DRI initialization successfull
    [ 2633.040] (II) fglrx(0): FBADPhys: 0xf400000000 FBMappedSize: 0x01040000
    [ 2633.041] (==) fglrx(0): Backing store disabled
    [ 2633.041] Loading extension FGLRXEXTENSION
    [ 2633.041] (**) fglrx(0): DPMS enabled
    [ 2633.041] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 2633.041] (**) fglrx(0): Textured Video is enabled.
    [ 2633.041] (II) LoadModule: "glesx"
    [ 2633.042] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 2633.043] (II) Module glesx: vendor="X.Org Foundation"
    [ 2633.043] compiled for 1.4.99.906, module version = 1.0.0
    [ 2633.043] Loading extension GLESX
    [ 2633.043] (II) fglrx(0): GLESX enableFlags = 8784
    [ 2633.043] (II) fglrx(0): GLESX is enabled
    [ 2633.043] (II) LoadModule: "amdxmm"
    [ 2633.043] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 2633.043] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 2633.043] compiled for 1.4.99.906, module version = 2.0.0
    [ 2633.055] Loading extension AMDXVOPL
    [ 2633.055] Loading extension AMDXVBA
    [ 2633.055] (II) fglrx(0): Enable composite support successfully
    [ 2633.055] (WW) fglrx(0): Option "VendorName" is not used
    [ 2633.055] (WW) fglrx(0): Option "ModelName" is not used
    [ 2633.055] (II) fglrx(0): X context handle = 0x1
    [ 2633.055] (II) fglrx(0): [DRI] installation complete
    [ 2633.055] (==) fglrx(0): Silken mouse enabled
    [ 2633.056] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 2633.056] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 2633.414] (--) RandR disabled
    [ 2633.432] ukiDynamicMajor: found major device number 250
    [ 2633.432] ukiDynamicMajor: found major device number 250
    [ 2633.432] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2633.432] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.432] ukiOpenDevice: open result is 15, (OK)
    [ 2633.432] ukiOpenByBusid: ukiOpenMinor returns 15
    [ 2633.432] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2633.432] (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
    [ 2633.443] ukiDynamicMajor: found major device number 250
    [ 2633.443] ukiDynamicMajor: found major device number 250
    [ 2633.443] ukiDynamicMajor: found major device number 250
    [ 2633.443] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.443] ukiOpenDevice: open result is 16, (OK)
    [ 2633.443] ukiGetBusid returned 'PCI:2:0:0'
    [ 2633.443] ukiOpenDevice: node name is /dev/ati/card1
    [ 2633.443] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.443] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.443] ukiOpenDevice: Open failed
    [ 2633.443] ukiOpenDevice: node name is /dev/ati/card2
    [ 2633.443] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.443] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.443] ukiOpenDevice: Open failed
    [ 2633.443] ukiOpenDevice: node name is /dev/ati/card3
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card4
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card5
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card6
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card7
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card8
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card9
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card10
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card11
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card12
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card13
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: Open failed
    [ 2633.446] ukiOpenDevice: node name is /dev/ati/card14
    [ 2633.446] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: Open failed
    [ 2633.446] ukiOpenDevice: node name is /dev/ati/card15
    [ 2633.446] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: Open failed
    [ 2633.446] ukiDynamicMajor: found major device number 250
    [ 2633.446] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2633.446] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.446] ukiOpenDevice: open result is 16, (OK)
    [ 2633.446] ukiOpenByBusid: ukiOpenMinor returns 16
    [ 2633.446] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2633.525] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
    [ 2633.526] ukiDynamicMajor: found major device number 250
    [ 2633.526] ukiDynamicMajor: found major device number 250
    [ 2633.526] ukiDynamicMajor: found major device number 250
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.526] ukiOpenDevice: open result is 17, (OK)
    [ 2633.526] ukiGetBusid returned 'PCI:2:0:0'
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card1
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card2
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card3
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card4
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card5
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card6
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card7
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card8
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card9
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card10
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card11
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card12
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card13
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card14
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card15
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiDynamicMajor: found major device number 250
    [ 2633.527] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.527] ukiOpenDevice: open result is 17, (OK)
    [ 2633.527] ukiOpenByBusid: ukiOpenMinor returns 17
    [ 2633.527] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2633.546] (II) fglrx(0): OverDrive6 Detected!
    [ 2633.551] (II) fglrx(0): Setting screen physical size to 338 x 270
    [ 2633.594] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 2633.594] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2633.594] (II) LoadModule: "evdev"
    [ 2633.595] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2633.595] (II) Module evdev: vendor="X.Org Foundation"
    [ 2633.595] compiled for 1.14.3, module version = 2.8.2
    [ 2633.595] Module class: X.Org XInput Driver
    [ 2633.595] ABI class: X.Org XInput driver, version 19.1
    [ 2633.595] (II) Using input driver 'evdev' for 'Power Button'
    [ 2633.595] (**) Power Button: always reports core events
    [ 2633.595] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 2633.595] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2633.595] (--) evdev: Power Button: Found keys
    [ 2633.595] (II) evdev: Power Button: Configuring as keyboard
    [ 2633.595] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 2633.595] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 2633.595] (**) Option "xkb_rules" "evdev"
    [ 2633.595] (**) Option "xkb_model" "pc104"
    [ 2633.595] (**) Option "xkb_layout" "us"
    [ 2633.634] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 2633.634] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2633.634] (II) Using input driver 'evdev' for 'Power Button'
    [ 2633.634] (**) Power Button: always reports core events
    [ 2633.634] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 2633.634] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2633.634] (--) evdev: Power Button: Found keys
    [ 2633.634] (II) evdev: Power Button: Configuring as keyboard
    [ 2633.634] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 2633.634] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 2633.634] (**) Option "xkb_rules" "evdev"
    [ 2633.634] (**) Option "xkb_model" "pc104"
    [ 2633.634] (**) Option "xkb_layout" "us"
    [ 2633.635] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event1)
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 2633.635] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
    [ 2633.635] (**) evdev: Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event1"
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Vendor 0x46d Product 0xc051
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found relative axes
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
    [ 2633.635] (II) evdev: Logitech USB-PS/2 Optical Mouse: Configuring as mouse
    [ 2633.635] (II) evdev: Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
    [ 2633.635] (**) evdev: Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 2633.635] (**) evdev: Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2633.635] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/usb2/2-3/2-3:1.0/input/input1/event1"
    [ 2633.635] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE, id 8)
    [ 2633.635] (II) evdev: Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
    [ 2633.635] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
    [ 2633.635] (II) No input driver specified, ignoring this device.
    [ 2633.636] (II) This device may have been added with another device file.
    [ 2633.636] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 2633.636] (II) No input driver specified, ignoring this device.
    [ 2633.636] (II) This device may have been added with another device file.
    [ 2633.636] (II) config/udev: Adding input device HDA NVidia Line Out (/dev/input/event6)
    [ 2633.636] (II) No input driver specified, ignoring this device.
    [ 2633.636] (II) This device may have been added with another device file.
    [ 2633.636] (II) config/udev: Adding input device HDA NVidia Line (/dev/input/event7)
    [ 2633.636] (II) No input driver specified, ignoring this device.
    [ 2633.636] (II) This device may have been added with another device file.
    [ 2633.637] (II) config/udev: Adding input device HDA NVidia Rear Mic (/dev/input/event8)
    [ 2633.637] (II) No input driver specified, ignoring this device.
    [ 2633.637] (II) This device may have been added with another device file.
    [ 2633.637] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=10 (/dev/input/event10)
    [ 2633.637] (II) No input driver specified, ignoring this device.
    [ 2633.637] (II) This device may have been added with another device file.
    [ 2633.637] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=9 (/dev/input/event11)
    [ 2633.637] (II) No input driver specified, ignoring this device.
    [ 2633.637] (II) This device may have been added with another device file.
    [ 2633.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=8 (/dev/input/event12)
    [ 2633.638] (II) No input driver specified, ignoring this device.
    [ 2633.638] (II) This device may have been added with another device file.
    [ 2633.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=7 (/dev/input/event13)
    [ 2633.638] (II) No input driver specified, ignoring this device.
    [ 2633.638] (II) This device may have been added with another device file.
    [ 2633.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event14)
    [ 2633.638] (II) No input driver specified, ignoring this device.
    [ 2633.638] (II) This device may have been added with another device file.
    [ 2633.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=11 (/dev/input/event9)
    [ 2633.639] (II) No input driver specified, ignoring this device.
    [ 2633.639] (II) This device may have been added with another device file.
    [ 2633.639] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2633.639] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2633.639] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 2633.639] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2633.639] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2633.639] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 2633.639] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 2633.639] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2633.639] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 2633.639] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 2633.639] (**) Option "xkb_rules" "evdev"
    [ 2633.639] (**) Option "xkb_model" "pc104"
    [ 2633.639] (**) Option "xkb_layout" "us"
    [ 2633.640] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 2633.640] (II) No input driver specified, ignoring this device.
    [ 2633.640] (II) This device may have been added with another device file.
    [ 2635.885] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
    [ 2639.300] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 2639.300] (II) fglrx(0): Backup framebuffer data.
    [ 2639.333] (II) fglrx(0): Backup complete.
    [ 2653.729] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 2653.730] (II) UnloadModule: "evdev"
    [ 2653.730] (II) evdev: Logitech USB-PS/2 Optical Mouse: Close
    [ 2653.730] (II) UnloadModule: "evdev"
    [ 2653.730] (II) evdev: Power Button: Close
    [ 2653.730] (II) UnloadModule: "evdev"
    [ 2653.730] (II) evdev: Power Button: Close
    [ 2653.730] (II) UnloadModule: "evdev"
    [ 2653.732] (II) fglrx(0): Shutdown CMMQS
    [ 2653.735] (II) fglrx(0): [uki] removed 1 reserved context for kernel
    [ 2653.735] (II) fglrx(0): [uki] unmapping 8192 bytes of SAREA 0x3c000 at 0x7f000fd0d000
    [ 2653.735] (EE)
    [ 2653.740] (EE) Backtrace:
    [ 2653.745] (EE) 0: Xorg (xorg_backtrace+0x3d) [0x57e04d]
    [ 2653.750] (EE) 1: Xorg (0x400000+0x181da9) [0x581da9]
    [ 2653.754] (EE) 2: /usr/lib/libpthread.so.0 (0x7f000f1e8000+0xf4b0) [0x7f000f1f74b0]
    [ 2653.759] (EE) 3: /usr/lib/libpciaccess.so.0 (0x7f000f406000+0x503e) [0x7f000f40b03e]
    [ 2653.765] (EE) 4: /usr/lib/xorg/modules/drivers/fglrx_drv.so (amd_xs113_int10_x_inb+0x46) [0x7f000bb46126]
    [ 2653.771] (EE) 5: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f000b15c000+0x9e2e05) [0x7f000bb3ee05]
    [ 2653.776] (EE) 6: /usr/lib/xorg/modules/drivers/fglrx_drv.so (X86EMU_exec+0xa5) [0x7f000bb32555]
    [ 2653.782] (EE) 7: /usr/lib/xorg/modules/drivers/fglrx_drv.so (amd_xs113_int10_xf86ExecX86int10+0x46) [0x7f000bb47286]
    [ 2653.788] (EE) 8: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xf86ExecX86int10+0xd) [0x7f000b56897d]
    [ 2653.793] (EE) 9: /usr/lib/xorg/modules/libvbe.so (VBESetVBEMode+0x9d) [0x7f000ab0163d]
    [ 2653.799] (EE) 10: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f000b15c000+0x441623) [0x7f000b59d623]
    [ 2653.805] (EE) 11: /usr/lib/xorg/modules/drivers/fglrx_drv.so (atiddxVBESetConsoleMode+0x44) [0x7f000b59d474]
    [ 2653.811] (EE) 12: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xdl_xs114_atiddxFreeScreen+0x73e) [0x7f000b6ffc1e]
    [ 2653.817] (EE) 13: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xdl_xs114_atiddxCloseScreen+0x321) [0x7f000b6ff241]
    [ 2653.823] (EE) 14: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f000b15c000+0xa4a846) [0x7f000bba6846]
    [ 2653.828] (EE) 15: Xorg (0x400000+0xc3136) [0x4c3136]
    [ 2653.833] (EE) 16: Xorg (0x400000+0x106964) [0x506964]
    [ 2653.838] (EE) 17: Xorg (0x400000+0x24cd7) [0x424cd7]
    [ 2653.843] (EE) 18: /usr/lib/libc.so.6 (__libc_start_main+0xf0) [0x7f000e058000]
    [ 2653.848] (EE) 19: Xorg (0x400000+0x24f0f) [0x424f0f]
    [ 2653.857] (EE)
    [ 2653.861] (EE) Segmentation fault at address 0x0
    [ 2653.866] (EE)
    Fatal server error:
    [ 2653.874] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 2653.878] (EE)
    [ 2653.883] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 2653.899] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 2653.904] (EE)
    [ 2653.908] (EE) Server terminated with error (1). Closing log file.
    xorg.conf
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:2:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    I'm sure that the main problem is between keyboard and chair, but I'd like to know, what's wrong with pc
    Thanks for your efforts.
    Last edited by Mytrin (2014-05-25 19:09:02)

    I've managed to solve this error:
    (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory
    There was missing library and few directories, which I found according to this http://www.reddit.com/r/archlinux/comme … _correctly at /usr/lib/dri, so I had to just symlink it. However, "unable to open display" error is still annoying me and Xorg is not working.
    EDIT: Found EE about missing commands in new Xorg.0.log and installed xterm to solve this. Now I don't have entirely black screen after startx. There is white rectangular terminal and fglrxinfo seems to be all right as it detected my Radeon and OpenGL. Now I have to install some DE, but that's another story. Marking as [SOLVED] and once again thanks to clfarron4 for reply.
    Last edited by Mytrin (2014-05-25 19:06:09)

  • LIBOVD ERROR  - "validateContextToken: workflow session was not found for given context. Create a new workflow session with token"

    Hello everyone,
    I have the following scenario:
    We're using "Oracle SOA Suite 11g 11.1.1.7.0" (Patched w/ 17893896) mainly for a BPM/Human workflow composite. Former, we were having the error bellow:
    <Mar 16, 2015 1:13:03 PM BRT> <Error> <oracle.soa.services.workflow.query> <BEA-000000> <<.> Verification Service cannot resolve user identity. User weblogic cannot be found in the identity repository. Workflow Context token cannot be null in request.
    ORABPEL-30511
    When that error ocurred, no one was able to use the system (BPM/Human Workflow).
    I opened an SR, and after some analysis from the support, it recommended me to set up "virtualize=true" in EM, and restarting the domain. Then it started logging the following:
    connection to ldap://[10.200.10.57]:7001 as cn=Admin.
    javax.naming.NamingException: No LDAP connection available to process request for DN: cn=Admin.
    Looking up on support KB, I found this note Doc ID 1545680.1 and increased from Max size of Connection Pool 10 to 200. That did work successfully! Problem now is that the <SERVER>_diagnostic.log is being filled up with the following error:
    [2015-03-31T16:03:46.421-03:00] [soa_server2] [ERROR] [] [oracle.soa.services.workflow.verification] [tid: [ACTIVE].ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: e0194e38aa6c9a2f:39fc1ff9:14c5def5247:-8000-00000000000a5653,0] [APP: soa-infra] <.>    validateContextToken: workflow session was not found for given context. Create a new workflow session with token=51490173-e3d0-41dd-ae99-983915aa8454;;G;;Z+P7Oe9ABnoTUQD9ECryEW2l0/8yRcqPDyZsOWBCuzMmRgA3Qsj601TxmWQ87z2MjuwW5AH+KzgjIwkPmhJFdpc1FrE6Y/MrN1bxIDHJWu2/zP3iSNwKD07hRrh/U37Ea0TvaQyuaHJIog9y3Ptmzw==
    One important point is that we're using only the embedded WLS ldap. So I am not 100% sure if we should be using the virtualize flag=true, once all docs I read point out that this should be done when using multi-ldap providers.
    Also, I only got this error in the "diagnostic.log".
    Although, no user has complained about using the system, I really want to work it out. Anyone has any suggestions?
    Thanks in advance!

    I have moved your thread from Certification to SOA Suite to get proper assistance.
    Thanks,
    Lisa

  • RFC call - RfcClientException: functiontemplate from repository was null

    Hi all,
    We are attempting to retrieve data from the ABAP stack of XI via the RFC adapter.  However the call to the RFC is returning the following error:
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null></SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    I have already come across SAP note 730870 but it didn't help.
    Any suggestion?
    Many thanks,
    Aldo

    Hi all,
    I have found the problem.
    The mapping to the RFC request was not creating the correct namespace prefix in the root xml element.
    I have downloaded the file rfcnormalizer.jar from SAP note 730870 and used it in my interface mapping.  It solved the problem.
    Regards,
    Aldo

  • Functiontemplate from repository was null

    I have a sceanrio file rfc file,All my design config seems to be good i have double checked the rfc adapter configuation.I have an error in moni
    Error
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null></SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>******
    Can any please tell me what would be the problem..
    Thanks
    sriram

    Hi Sriram,
    Is RFC adapter is active/up and running?  RFC xml structure is incorrect?
    Refer SAP Note - 730870 Question no 16.
    Regards,
    Moorthy

  • SOAP-XI-CRM via RFC:Exception: functiontemplate from repository was null

    Hi
    I am doing a simple SOAP-XI-CRM scenario where a webservice from the customer is fed into CRM using RFC in XI in a sysnc mode.
    I am using a receiver RFC adapter which i've used in other scenarios as well and it always worked fine...but now for this scenario it gives the following error:
    <?xml version="1.0"?>
    <!-- see the documentation -->
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
         <SOAP:Body>
              <SOAP:Fault>
                   <faultcode>SOAP:Server</faultcode>
                   <faultstring>Server Error</faultstring>
                   <detail>
                        <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                             <context>XIAdapter</context>
                             <code>ADAPTER.JAVA_EXCEPTION</code>
                             <text><![CDATA[
    com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>
         at com.sap.aii.adapter.xi.ms.XIEventHandler.onTransmit(XIEventHandler.java:455)
         at com.sap.aii.af.ra.ms.impl.core.queue.consumer.CallConsumer.onMessage(CallConsumer.java:134)
         at com.sap.aii.af.ra.ms.impl.core.queue.Queue.run(Queue.java:917)
         at com.sap.aii.af.ra.ms.runtime.MSWorkWrapper.run(MSWorkWrapper.java:56)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
              ]]></text>
                        </s:SystemError>
                   </detail>
              </SOAP:Fault>
         </SOAP:Body>
    </SOAP:Envelope>
    I even tried to replace my RFC with other one and it again worked fine...could this be a RFC structure issue...i m not sure where to look for the problem as the CC is working fine with other RFCs.
    Regards
    Naina

    you will find many pointers in these threads;
    functiontemplate from repository was <null>
    functiontemplate from repository was <null>+SAP XI
    also try to do a search;
    http://forums.sdn.sap.com/search.jspa?forumID=44&threadID=&q=functiontemplatefromrepositorywas&objID=f44&dateRange=all&numResults=15&rankBy=10001

  • RfcClientException: functiontemplate from repository was null

    HI All,
    I am doing the File to RFC, the file was picked from FTP but data is not loaded into target sytem. When i have checked the Communication chennal for receiver (RFC) its showing this msg
    "Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>"
    Please help me how to reslove this problem.
    Thanks in advance,
    Venkat.

    HI Venkat.
    Please Refer SAP Note: 730870. Q16.
    Fyr from SAP Note:
    >Q 16: While sending a message to the RfcAdapter the error "... functiontemplate from repository was ><null>" is shown. Which reasons are possible?
    >
    >A: After receiving a message from the Adapter Engine, the RfcAdapter extracts the payload from the message. Normally this should be an XML document in the RFC-XML format. In this format the root element of the XML document represents the name of the function module and is enclosed in the fixed RFC namespace 'urn:sap-com:document:sap:rfc:functions'. But this only will be checked at a later >point, when the conversion from XML to native RFC is done. As prerequisite of this conversion the structures and types of the function module parameters has to be known. This is also called metadata or function template. To get this function template the name of the function module is extracted from the root element of the XML document and is queried against the metadata repository of the communication channel. If the metadata repository doesn't have a function module with this name, the exception named above is thrown. Possible reasons are
    >
    >The XML document, which was send to the RfcAdapter, is not a RFC-XML document. So the root element name of this document is not the name of a function module and thus can't be found in the metadata repository.
    >
    >The metadata repository doesn't contain an entry for this function module name. Normally the metadata repository will be an R/3 system and it's function module repository can be searched with transaction code SE37.
    Regards
    Goli Sridhar

  • Functiontemplate from repository was null   BAPI_ROUTING_CREATE

    Hi all,
    i'm trying to set up communication between a third party sistem and R3 via XI. I'm using BAPI_ROUTING_CREATE but , when i send the XML message (you can read it below),   the rfc adapter starts this exception:
    Delivery of the message to the application using connection RFC_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>.
    I'm sure that the bapi is defined into the R3 system, i checked via se37, and the Communication channel for the BAPI is set properly since it works with other bapis.
    May be someone can help me?
    Best Regards
    Luca
    <rfc:BAPI_ROUTING_CREATE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
         <APPLICATION/>
         <BOMUSAGE/>
         <PROFILE/>
         <TESTRUN>
              <BAPIFLAG>' '</BAPIFLAG>
         </TESTRUN>
         <COMPONENTALLOCATION>
              <item>
                   <TASK_LIST_GROUP/>
                   <GROUP_COUNTER/>
                   <SEQUENCE_NO/>
                   <CHANGE_NO/>
                   <VALID_FROM>2009-02-01</VALID_FROM>
                   <CHANGE_NO_TO/>
                   <VALID_TO_DATE>2009-12-31</VALID_TO_DATE>
                   <DEL_IND/>
                   <ACTIVITY/>
                   <OPERATION_ID/>
                   <BOM_TYPE/>
                   <BOM_NO/>
                   <ALTERNATIVE_BOM/>
                   <ITEM_ID/>
                   <ITEM_NO/>
                   <CUTTING_MEASURE_UNIT/>
                   <CUTTING_MEASURE_UNIT_ISO/>
                   <COMP_UNIT/>
                   <COMP_UNIT_ISO/>
                   <BACKFLUSH/>
                   <PLANT/>
                   <MATERIAL/>
                   <BOM_TYPE_ROOT/>
                   <BOM_NO_ROOT/>
                   <ALTERNATIVE_BOM_ROOT/>
              </item>
         </COMPONENTALLOCATION>
         <MATERIALTASKALLOCATION>
              <item>
                   <MATERIAL>A10060</MATERIAL>
                   <PLANT>2000</PLANT>
                   <TASK_LIST_GROUP>50000007</TASK_LIST_GROUP>
                   <GROUP_COUNTER>2</GROUP_COUNTER>
                   <CHANGE_NO/>
                   <VALID_FROM>2009-02-01</VALID_FROM>
                   <CHANGE_NO_TO/>
                   <VALID_TO_DATE>2009-12-31</VALID_TO_DATE>
                   <DEL_IND/>
                   <DOC_NUMBER/>
              </item>
         </MATERIALTASKALLOCATION>
         <OPERATION>
              <item>
                   <TASK_LIST_GROUP>50000007</TASK_LIST_GROUP>
                   <GROUP_COUNTER>2</GROUP_COUNTER>
                   <SEQUENCE_NO>0</SEQUENCE_NO>
                   <CHANGE_NO/>
                   <VALID_FROM>2009-02-01</VALID_FROM>
                   <CHANGE_NO_TO/>
                   <VALID_TO_DATE>2009-12-31</VALID_TO_DATE>
                   <DEL_IND/>
                   <ACTIVITY>0010</ACTIVITY>
                   <OPERATION_ID/>
                   <CONTROL_KEY>PP01</CONTROL_KEY>
                   <OBJ_ID>10000017</OBJ_ID>
                   <OBJECT_TYPE_CIM_RESOURCE>A</OBJECT_TYPE_CIM_RESOURCE>
                   <WORK_CNTR>A4010</WORK_CNTR>
                   <PLANT>2000</PLANT>
                   <STANDARD_TEXT_KEY/>
                   <DESCRIPTION>ASSEMBLY</DESCRIPTION>
                   <OPERATION_MEASURE_UNIT>PC</OPERATION_MEASURE_UNIT>
                   <OPERATION_MEASURE_UNIT_ISO/>
    </rfc:BAPI_ROUTING_CREATE>

    Hi Luca,
    Please see the thread if you havn't yet.. u may get some help
    RFC error
    RfcClientException: functiontemplate from repository was <null>

Maybe you are looking for

  • No Video, Possibly Problem With Cable?

    Sorry i this is kinda long, I don't know how I can explain it shorter! I'm getting a strange problem. Here are the steps that my computer goes through when I boot it up: 1. Gets to the 38 (from LED debug panel) and beeps. I think that this is a sign

  • IMac 24" GT 130 vs HD 4850 and 3.06 vs 2.93 - 24inch iMac

    Hi I'm thinking of buying an iMac - either the 24" 3.06 or 2.93 and either the GT130 or Radeon HD4850. I plan to dual boot with Windows XP. Couple of questions: 1. Which is the best option? Bang for Buck etc. 2. How big a partition should I create fo

  • Cannot connect to ColdFusion Data/Service in Flash Builder 4

    Hello, I am attempting to connect to a ColdFusion data service using the Connect to Data/Service for Flash4 window, however, when I go to select service type I only see HTTP or XML as options. I have set-up my Flash project with CF Flash Remoting and

  • WKSYS and WKPROXY

    Installing MDR using REPCA in an Existing Database The prerequisite check generates and error "WKSYS and WKPROXY already present" What should I do. - Thanks Neelesh

  • Create xml file using java

    how can i create an xml file with some data in java ?