JNI and Tomcat running on Linux

Hi all!
I have a small problem with calling a native library from my Tomcat running on a linux.
The code is simple enough
System.loadLibrary(myLibrary);I know that when libmyLibrary.so isn't in the java.library.path I get an error at this line. When it is in the path it goes past this line with out problems but on the next line
myFunction(); that is a function within myLibrary i get something like
java.lang.UnsatisfiedLinkError: myFunction()The thing is. This exact code when either executed in a standalone java application or from a Tomcat running on windows works with out problem. Tomcat on linux doesn't.
myLibrary uses other libraries on a different path and my guess is that tomcat for some reason won't allow access to those. The security manager however doesn't give me any errors, nor does tomcat itself other than the UnsatisfiedLinkError.
Anyone running Tomcat on linux and using native libraries or perhaps just knows alot about this?
Please help. Thanks!

Are you sure you are not running into a class loader issue? Does this occur the very first LoadLibrary call or after the first successfull call?
It could be that your JNI or bridge has already been loaded by another class loader in the tomcat class loader hierarchy and this would result in the UnsatisfiedLinkError.
Check out: http://www.onjava.com/pub/a/onjava/2004/06/30/classloader2.html

Similar Messages

  • Problem with JNI and Tomcat in windows

    Hello guys...
    I have the following problem.
    I used Tomcat 4 and I have following ApiEncriptacion class, in package com.servipag.sts;
    package com.servipag.sts;
    class ApiEncriptacion
         public native String encripta(String texto, String ubicacionLlavePublica, String semilla);
         static
              System.loadLibrary("apisdark");
         public native String desencripta(String texto, String ubicacionLlavePrivada);
         static
              System.loadLibrary("apisdark");
    the LD_LIBRARY_PATH is set in following dir c:\tomcat\bice
    the dll this in the following path = c:\tomcat\bice\apisdark.dll
    I run Tomcat at the following way..
    C:\jdk1.4\bin\java.exe -jar -Djava.library.path="c:\tomcat\bice" -Duser.dir="C:\Tomcat" "C:\Tomcat\bin\bootstrap.jar" start
    but, still appear the error:
    java.lang.UnsatisfiedLinkError: encripta
         at com.servipag.sts.ApiEncriptacion.encripta(Native Method)
         at com.servipag.sts.ServiciosServiPagImpl.rescatarFirma(ServiciosServiPagImpl.java:2143)
         at com.servipag.sts.ServiciosServiPagImpl.pagarCuenta(ServiciosServiPagImpl.java:310)
         at org.apache.jsp.SBCO_0005flogin_0005fbice_0005f4$jsp._jspService(SBCO_0005flogin_0005fbice_0005f4$jsp.java:265)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1012)
         at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107)
         at java.lang.Thread.run(Thread.java:536)
    please help me
    Luis Navarro.
    Chile

    ApiEncripatcion.h
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class ApiEncriptacion */
    #ifndef IncludedApiEncriptacion
    #define IncludedApiEncriptacion
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class: ApiEncriptacion
    * Method: encripta
    * Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    JNIEXPORT jstring JNICALL Java_ApiEncriptacion_encripta
    (JNIEnv *, jobject, jstring, jstring, jstring);
    * Class: ApiEncriptacion
    * Method: desencripta
    * Signature: (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    JNIEXPORT jstring JNICALL Java_ApiEncriptacion_desencripta
    (JNIEnv *, jobject, jstring, jstring);
    #ifdef __cplusplus
    #endif
    #endif
    ApiEncriptacion.c
    #include "jni.h"
    #include <stdio.h>
    #include "files.h"
    #include "hex.h"
    #include "rsa.h"
    #include "randpool.h"
    USING_NAMESPACE(CryptoPP)
    USING_NAMESPACE(std)
    void GenerateRSAKey(unsigned int keyLength, const char privFilename, const char pubFilename, const char *seed);
    char RSAEncryptString(const char pubFilename, const char seed, const char message);
    char RSADecryptString(const char privFilename, const char *ciphertext);
    JNIEXPORT jstring JNICALL
    Java_ApiEncriptacion_encripta(JNIEnv *env, jobject obj, jstring texto, jstring ubicacionLlavePublica, jstring semilla)
         try
              char *ciphertext = RSAEncryptString(ubicacionLlavePublica, semilla, texto);
              delete [] ciphertext;
              return(ciphertext);
         catch(CryptoPP::Exception &e)
              return ("");
         catch(std::exception &e)
              return ("");
         catch(...)
              return ("");
    JNIEXPORT jstring JNICALL
    Java_ApiEncriptacion_desencripta(JNIEnv *env, jobject obj, jstring texto, jstring ubicacionLlavePrivada)
         try
              char *decrypted = RSADecryptString(ubicacionLlavePrivada, texto);
              return(decrypted);
         catch(CryptoPP::Exception &e)
              return ("");
         catch(std::exception &e)
              return ("");
         catch(...)
              return ("");
    int main()
         return(0);     
    void GenerateRSAKey(unsigned int keyLength, const char privFilename, const char pubFilename, const char *seed)
         RandomPool randPool;
         randPool.Put((byte *)seed, strlen(seed));
         RSAES_OAEP_SHA_Decryptor priv(randPool, keyLength);
         HexEncoder privFile(new FileSink(privFilename));
         priv.DEREncode(privFile);
         privFile.MessageEnd();
         RSAES_OAEP_SHA_Encryptor pub(priv);
         HexEncoder pubFile(new FileSink(pubFilename));
         pub.DEREncode(pubFile);
         pubFile.MessageEnd();
    char RSAEncryptString(const char pubFilename, const char seed, const char message)
         FileSource pubFile(pubFilename, true, new HexDecoder);
         RSAES_OAEP_SHA_Encryptor pub(pubFile);
         if (strlen(message) > pub.MaxPlainTextLength())
              cerr << "message too long for this key\n";
              abort();
         RandomPool randPool;
         randPool.Put((byte *)seed, strlen(seed));
         char outstr = new char[2pub.CipherTextLength()+1];
         pub.Encrypt(randPool, (byte *)message, strlen(message), (byte *)outstr);
         HexEncoder hexEncoder;
         hexEncoder.Put((byte *)outstr, pub.CipherTextLength());
         hexEncoder.MessageEnd();
         hexEncoder.Get((byte *)outstr, 2*pub.CipherTextLength());
         outstr[2*pub.CipherTextLength()] = 0;
         return outstr;
    char RSADecryptString(const char privFilename, const char *ciphertext)
         FileSource privFile(privFilename, true, new HexDecoder);
         RSAES_OAEP_SHA_Decryptor priv(privFile);
         HexDecoder hexDecoder;
         hexDecoder.Put((byte *)ciphertext, strlen(ciphertext));
         hexDecoder.MessageEnd();
         SecByteBlock buf(priv.CipherTextLength());
         hexDecoder.Get(buf, priv.CipherTextLength());
         char *outstr = new char[priv.MaxPlainTextLength()+1];
         unsigned messageLength = priv.Decrypt(buf, (byte *)outstr);
         outstr[messageLength] = 0;
         return outstr;

  • Problem with JNI and Tomcat (and threads???)

    Howdy,
    Here is the issue - I would like some help on HOW to debug and fix this problem:
    2 test use cases -
    1)
    a)User goes to Login.jsp, enters user and password
    b) User submits to LoginServlet
    c) login calls JNI code that connects to a powerbuilder(Yes I know this is ugly) PBNI code module (this is a .dll) that authenticates the user with the database
    d) the servlet then redirects to another .jsp page
    e) user then submits to LogoutServlet - also a JNI call to a powerbuilder PBNI code module
    f) REPEAT STEPS a-e over a few times (inconsistent) and then the call to the JNI code hangs
    2)
    a) users does NOT goto Login.jsp, but rather calls LoginServlet and passes the userid and password as GET parms
    b) user does NOT get redirected to a page (redirect code commented out)
    c) user calls LogoutServlet
    d) repeat steps a-c at will and no failure, no hanging
    The only difference is that in case 1 (with JSP), there is a redirect and it afffected the JNI call by haniging inside JNI code.
    In case 2 (without JSP) there is still a JNI call, but it does not hang. In addition, when it hangs and I stop Tomcat, the logs show cleanup entries that say:
    Oct 19, 2004 9:17:09 AM org.apache.catalina.core.StandardWrapper unload
    INFO: Waiting for 1 instance(s) to be deallocated
    Oct 19, 2004 9:17:10 AM org.apache.catalina.core.StandardWrapper unload
    INFO: Waiting for 1 instance(s) to be deallocated
    Oct 19, 2004 9:17:11 AM org.apache.catalina.core.StandardWrapper unload
    INFO: Waiting for 1 instance(s) to be deallocated
    Is this a threading issue in Tomcat???
    On would assume that the JNI code is not cleaning up after itself, but I don't believe this is the case,
    and even if it was, why would I get the tomcat log cleanup entries above???
    What do those cleanup entries imply about the state of Tomcat????

    hi ,
    I met the same problem this morning, and searched the www.google.com in order to solve it, as a result, your article was shown on my screen. :)
    Till now I have read some technical information and solved my problems. Maybe the solution be useful to you:
    ==============================
    error message : (Environment : Tomcat 5, Windows 2003, Mysql5)
    2006-3-29 11:53:48 org.apache.catalina.core.StandardWrapper unload
    message: Waiting for 2 instance(s) to be deallocated
    ==============================
    cause: the number of connection to database exceeded.another word,too many connections.
    ==============================
    solution: close the connection when it becomes useless for your program. :)
    ==============================
    ps. Sorry for my weak English . hehe ....

  • JNI and Tomcat

    I am trying to use a JNI library on Tomcat. I have created a class with a JNI API. I have tested its use being calling it from a Java application. It works. When I try to invoke it from my app server (Tomcat), I get a java.lang.UnsatisfiedLinkError exception. I must find a way to specify where the library is located, but haven't found how to do this. I have tried to add a -Djava.library.path=... option in the JAVAOPT environment variable in the shell where I run the catalina.sh script, but this didn't help.
    Any advice?

    If you are using tomcat over UNIX, you shold put the LD_LIBRARY_PATH pointing the path of your native library.

  • Opening a Powerpoint in JSP and run under Linux

    Hi,
    I need to have a JSP page that provides a link to open a powerpoint file and this JSP is to be run under Linux. When I try to click on the link in Linux to open the powerpoint, it gives me a lot of junk characters. Can somebody please help mi, thanks a million!

    You have the mimetype for the HTTP response set to something other than what will make the browser start a powerpoint viewer and direct the content of the HTTP response to it.
    In your jsp use the setHeader(String key,String key) method to set the value of "Content-Type" to the mimetype for powerpoint.
    Of course the users must have browsers that are configured to launch a powerpoint viewer or plug-in. If you provide the correct mimetype and peoples browsers desn't have this, then they will get the "save to file" dialog box.

  • Problem launching a jsp page with eclipse and tomcat

    Hi,
    I have just started using eclipse and tomcat for creating dynamic web pages. I tried to launch a jsp page after starting the tomcat server with the URL: http://locahost:8080/HelloWorld/, an error page was displayed as below:
    HTTP Status 404 -/
    type Status report
    message /_
    description The requested resource (-) is not available
    Apache Tomcat/5.5.17
    I didn't get any error at the console and when i just typed http://localhost, a pop up menu saying that the connection was refused when attempting to contact localhost.
    I'm not sure what is the problem here. Could it be the permssion to the localhost is not granted by the system as the eclipse IDE is running using linux?
    Hope someone can help.
    Thanks.

    http://www-128.ibm.com/developerworks/library/os-ectom/

  • JVM Crash When Using JNI and COM

    I'm trying to call a DLL compiled from VB6 source code that I do not have access to. The VB6 code simply retrieves data from a DB2 database using ADO and my client code grabs that data and marshals it to my Java code. I'm attempting to achieve this using JNI and COM (without a third-party bridge). It works 75% of the time, but the other 25% of the time, the JVM crashes with the usual Hotspot crash log containing an access violation exception. However, I don't know what in my C++ code (VC++ 8) could be causing this except for passing a "wild" pointer to the code lying underneath the COM object interface. If that is the case, I don't know how I am doing that.
    The Java code that is calling my native method is running on Tomcat 5.5.25 and just to be safe, I am not allowing multiple threads to concurrently call the method in my JNI DLL (though I realize that this will kill performance). Once I can get past this problem, I'll do the COM interfacing on a worker thread in my native code so I don't screw up CoInitialize and CoUninitialize calls in the case the same thread is concurrently executing multiple calls to my native code.
    I've noticed that in most cases, the JVM crashes during my call to the pClsAccount->OpenConnection method. However, my DLL isn't what is listed on the top of the call stack, which is why I suspect the passing of a wild pointer, though I'm just taking a guess at that. Does anyone have an idea as to what's going on ?
    JNIEXPORT jobject JNICALL Java_CustomerInfo_nGetCustomerAccountInfo(JNIEnv *env, jobject customerInfo, jstring accountNumber, jstring iniFileName)
    jboolean isCopy;
    // Account info class and instance to be instantiated
    jclass accountInfoCls = NULL;
    jobject accountInfoObj = NULL;
    // The constructor ID of the accountInfoCls
    jmethodID ctorID = NULL;
    // Pointer to the interface for the ClsAccount COM object
    _clsAccount *pClsAccount = NULL;
    HRESULT hr;
    BSTR bstrIniFileName(L"");
    try
    const char *nativeAccountNumber = NULL;
    if (accountNumber != NULL)
    nativeAccountNumber = env->GetStringUTFChars(accountNumber, &isCopy);
    else
    jclass newExcCls;
    env->ExceptionDescribe();
    env->ExceptionClear();
    newExcCls = env->FindClass("java/lang/IllegalArgumentException");
    env->ThrowNew(newExcCls, "accountNumber passed in was null !");
    return NULL;
    // Initialization
    variantt varConnectionSucceeded = variantt(false);
    variantt varGetAccountInfoSucceeded = variantt(false);
    variantt varAccountNumber = variantt(nativeAccountNumber);
    bstrt bstrLastPaymentDate = bstrt();
    bstrt bstrLastErrorMessage = bstrt();
    bstrt bstrLastErrorNumber = bstrt();
    jlong jTotalDue = NULL;
    jlong jEstablishedDueDay = NULL;
    jlong jLastPaymentAmount = NULL;
    jstring jLastPaymentDate = NULL;
    jstring jLastErrorMessage = NULL;
    jstring jLastErrorNumber = NULL;
    jthrowable jException = NULL;
    const char *chLastPaymentDate = NULL;
    const char *chLastErrorMessage = NULL;
    const char *chLastErrorNumber = NULL;
    long long totalDue;
    long long lastPaymentAmount;
    long establishedDueDateDay;
    //Convert string from Java string to C string to VB string
    const char *nativeIniFileName = NULL;
    if (iniFileName != NULL)
    nativeIniFileName = env->GetStringUTFChars(iniFileName, &isCopy);
    else
    jclass newExcCls;
    env->ExceptionDescribe();
    env->ExceptionClear();
    newExcCls = env->FindClass("java/lang/IllegalArgumentException");
    env->ThrowNew(newExcCls, "iniFileName passed in was null");
    return NULL;
    bstrIniFileName = comutil::ConvertStringToBSTR(nativeIniFileName);
    CoInitialize(NULL);
    // Create an instance of the COClass with the interface over it
    hr = CoCreateInstance(__uuidof(clsAccount), NULL, CLSCTX_INPROC_SERVER, __uuidof(_clsAccount), (void **)&pClsAccount);
    if (hr == S_OK)
    varConnectionSucceeded.boolVal = pClsAccount->OpenConnection(&bstrIniFileName);
    &#12288;
    if (varConnectionSucceeded.boolVal == -1)
    varGetAccountInfoSucceeded.boolVal = pClsAccount->GetAccountPaymentInformation(&(varAccountNumber.GetVARIANT()));
    env->ReleaseStringUTFChars(accountNumber, nativeAccountNumber);
    // Extract all available account information from the ClsAccount object
    if (varGetAccountInfoSucceeded.boolVal == -1)
    totalDue = pClsAccount->TotalDue.int64;
    establishedDueDateDay = pClsAccount->EstablishedDueDateDay;
    lastPaymentAmount = pClsAccount->LastPaymentAmount.int64;
    bstrLastPaymentDate = pClsAccount->LastPaymentDate;
    chLastPaymentDate = comutil::ConvertBSTRToString(bstrLastPaymentDate.GetBSTR());
    jTotalDue = (jlong)totalDue;
    jEstablishedDueDay = (jlong)establishedDueDateDay;
    jLastPaymentAmount = (jlong)lastPaymentAmount;
    jLastPaymentDate = env->NewStringUTF(chLastPaymentDate);
    delete[] chLastPaymentDate;
    pClsAccount->CloseConnection();
    // Populate error fields if any errors occur
    bstrLastErrorMessage = pClsAccount->LastErrMessage;
    chLastErrorMessage = comutil::ConvertBSTRToString(bstrLastErrorMessage.GetBSTR());
    bstrLastErrorNumber = pClsAccount->LastErrNumber;
    chLastErrorNumber = comutil::ConvertBSTRToString(bstrLastErrorNumber.GetBSTR());
    jLastErrorMessage = env->NewStringUTF(chLastErrorMessage);
    jLastErrorNumber = env->NewStringUTF(chLastErrorNumber);
    delete[] chLastErrorMessage;
    delete[] chLastErrorNumber;
    const char* clsName = "com/nuance/merchantsmutual/businessentities/CustomerAccountInfo";
    // Find the Java class and the ID of its constructor
    accountInfoCls = env->FindClass(clsName);
    ctorID = env->GetMethodID(accountInfoCls, "<init>", "(JJJLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
    jException = env->ExceptionOccurred();
    if (jException != NULL)
    env->ExceptionDescribe();
    env->ExceptionClear();
    //Release all resources associated with the ClsAccount instance
    pClsAccount->Release();
    //Instantiate the class with the given parameters
    accountInfoObj = env->NewObject(accountInfoCls, ctorID, jTotalDue, jEstablishedDueDay, jLastPaymentAmount, jLastPaymentDate, jLastErrorMessage, jLastErrorNumber);
    jException = env->ExceptionOccurred();
    if (jException != NULL)
    env->ExceptionDescribe();
    env->ExceptionClear();
    else if (hr == REGDB_E_CLASSNOTREG)
    cout << "COM class not registered" << endl;
    else if ( hr == CLASS_E_NOAGGREGATION)
    cout << "COM class can't be aggregated" << endl;
    else if (hr == E_NOINTERFACE)
    cout << "No interface for COM class clsAccount" << endl;
    else if (hr == E_POINTER)
    cout << "*ppv pointer was NULL !" << endl;
    else
    cout << "Error occurred while creating COM object. HR is [" << hr << "]" << endl;
    // Free the BSTR because a new one was returned with a call to comutil::ConvertStringToBSTR
    SysFreeString(bstrIniFileName);
    // Release the string when it's no longer needed. MUST call if string won't be used
    // anymore or else a memory leak will occur
    env->ReleaseStringUTFChars(iniFileName, nativeIniFileName);
    CoUninitialize();
    &#12288;
    catch (_com_error &e)
    cout << "Encountered an exception in GetCustomerAccountInfo: Error was " << e.ErrorMessage();
    pClsAccount->Release();
    catch (...)
    pClsAccount->Release();
    return accountInfoObj;
    Edited by: Cthulhu76 on Jan 5, 2010 9:18 AM

    0x49202400 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=5340, stack(0x49bf0000,0x49c40000)]
    0x48a7e800 JavaThread "Thread-1" [_thread_in_native, id=5976, stack(0x48f00000,0x48f50000)]
    0x48a0dc00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3072, stack(0x48c60000,0x48cb0000)]
    0x48a09000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4988, stack(0x48c10000,0x48c60000)]
    0x48a07c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=3124, stack(0x48bc0000,0x48c10000)]
    0x48a07000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2572, stack(0x48b70000,0x48bc0000)]
    0x489f5c00 JavaThread "Finalizer" daemon [_thread_blocked, id=5752, stack(0x48b20000,0x48b70000)]
    0x489f4c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=2596, stack(0x48ad0000,0x48b20000)]
    0x003c6000 JavaThread "main" [_thread_in_native, id=4252, stack(0x00820000,0x00870000)]
    Other Threads:
    0x489f0400 VMThread [stack: 0x48a80000,0x48ad0000] [id=5624]
    0x48a18800 WatcherThread [stack: 0x48cb0000,0x48d00000] [id=1192]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 36288K, used 12762K [0x02940000, 0x050a0000, 0x07800000)
    eden space 32256K, 34% used [0x02940000, 0x0343af58, 0x048c0000)
    from space 4032K, 37% used [0x04cb0000, 0x04e2ba28, 0x050a0000)
    to space 4032K, 0% used [0x048c0000, 0x048c0000, 0x04cb0000)
    tenured generation total 483968K, used 7518K [0x07800000, 0x250a0000, 0x42940000)
    the space 483968K, 1% used [0x07800000, 0x07f57958, 0x07f57a00, 0x250a0000)
    compacting perm gen total 14080K, used 14016K [0x42940000, 0x43700000, 0x46940000)
    the space 14080K, 99% used [0x42940000, 0x436f0320, 0x436f0400, 0x43700000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040f000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\bin\tomcat5.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77380000 - 0x77411000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000      C:\WINDOWS\system32\GDI32.dll
    0x77f50000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\MSVCRT.dll
    0x7c8d0000 - 0x7d0cf000      C:\WINDOWS\system32\SHELL32.dll
    0x77da0000 - 0x77df2000      C:\WINDOWS\system32\SHLWAPI.dll
    0x76290000 - 0x762ad000      C:\WINDOWS\system32\IMM32.DLL
    0x77420000 - 0x77523000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
    0x6d7c0000 - 0x6da10000      C:\Program Files\Java\jre1.6.0_07\bin\client\jvm.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\system32\MSVCR71.dll
    0x6d270000 - 0x6d278000      C:\Program Files\Java\jre1.6.0_07\bin\hpi.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d770000 - 0x6d77c000      C:\Program Files\Java\jre1.6.0_07\bin\verify.dll
    0x6d310000 - 0x6d32f000      C:\Program Files\Java\jre1.6.0_07\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\Program Files\Java\jre1.6.0_07\bin\zip.dll
    0x6d570000 - 0x6d583000      C:\Program Files\Java\jre1.6.0_07\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\system32\mswsock.dll
    0x5f270000 - 0x5f2ca000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x4a6a0000 - 0x4a6ac000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\CustomerInfoProxy.dll
    0x77670000 - 0x777a9000      C:\WINDOWS\system32\ole32.dll
    0x77d00000 - 0x77d8b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_E6967989\MSVCP80.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_E6967989\MSVCR80.dll
    0x777b0000 - 0x77833000      C:\WINDOWS\system32\CLBCatQ.DLL
    0x77010000 - 0x770d6000      C:\WINDOWS\system32\COMRes.dll
    0x77b90000 - 0x77b98000      C:\WINDOWS\system32\VERSION.dll
    0x75da0000 - 0x75e5d000      C:\WINDOWS\system32\SXS.DLL
    0x75e60000 - 0x75e87000      C:\WINDOWS\system32\apphelp.dll
    0x4dc30000 - 0x4dc5e000      C:\WINDOWS\system32\msctfime.ime
    0x4b0d0000 - 0x4b395000      C:\WINDOWS\system32\xpsp2res.dll
    0x71bb0000 - 0x71bb9000      C:\WINDOWS\system32\WSOCK32.dll
    0x4bbe0000 - 0x4bbea000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\ClearTranProxy.dll
    0x745e0000 - 0x7489e000      C:\WINDOWS\system32\msi.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\system32\NETAPI32.dll
    0x4bc50000 - 0x4bc6c000      C:\WINDOWS\system32\DBNETLIB.DLL
    0x71f60000 - 0x71f64000      C:\WINDOWS\system32\security.dll
    0x76c90000 - 0x76cb7000      C:\WINDOWS\system32\msv1_0.dll
    0x76cf0000 - 0x76d0a000      C:\WINDOWS\system32\iphlpapi.dll
    0x761b0000 - 0x76243000      C:\WINDOWS\system32\crypt32.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\system32\MSASN1.dll
    0x4bcf0000 - 0x4bcff000      C:\Program Files\Common Files\System\Ole DB\SQLOLEDB.RLL
    0x4a8a0000 - 0x4a8aa000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\MIGI.DLL
    0x73570000 - 0x736c2000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\MSVBVM60.DLL
    0x4a950000 - 0x4a9e2000      C:\Program Files\Common Files\System\ado\msado15.dll
    0x74a50000 - 0x74a6a000      C:\WINDOWS\system32\MSDART.DLL
    0x4c850000 - 0x4c8c9000      C:\Program Files\Common Files\System\Ole DB\oledb32.dll
    0x4dbb0000 - 0x4dbc1000      C:\Program Files\Common Files\System\Ole DB\OLEDB32R.DLL
    VM Arguments:
    jvm_args: -Dcatalina.home=C:\Program Files\Apache Software Foundation\Tomcat 5.5 -Dcatalina.base=C:\Program Files\Apache Software Foundation\Tomcat 5.5 -Djava.endorsed.dirs=C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\endorsed -Djava.io.tmpdir=C:\Program Files\Apache Software Foundation\Tomcat 5.5\temp -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file=C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\logging.properties -Djava.library.path=C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib vfprintf -Xms512m -Xmx1024m
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_07
    [error occurred during error reporting (printing environment variables), id 0xc0000005]
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 7 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b23) for windows-x86 JRE (1.6.0_07-b06), built on Jun 10 2008 01:14:11 by "java_re" with MS VC++ 7.1
    time: Mon Dec 28 15:24:00 2009
    elapsed time: 600 seconds

  • Problem in installing app on Tomcat 6 at linux ?

    Hi
    I developed a web application, I deployed it on Tomcat 6 at windows, it worked fine. It also run successfully on eclipse also.
    But when I installed it on Tomcat 6 at linux server, I got following error
    org.apache.jasper.JasperException: An exception occurred processing JSP page /index.jsp at line 14
    11: <%@ page import="java.util.List"%>
    12: <%@ page import="domain.model.Connections"%>
    13: <%@ page contentType = "text/html; charset=UTF-8" pageEncoding="UTF-8"  %>
    14: <html:html>
    15:
    16:
    17: <head>
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:505)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:398)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         java.lang.reflect.Method.invoke(Method.java:616)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:537)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
    root cause
    javax.servlet.ServletException: java.lang.NoClassDefFoundError: Could not initialize class org.apache.struts.taglib.html.HtmlTag
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:852)
         org.apache.jasper.runtime.PageContextImpl.access$1100(PageContextImpl.java:71)
         org.apache.jasper.runtime.PageContextImpl$12.run(PageContextImpl.java:768)
         java.security.AccessController.doPrivileged(Native Method)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:766)
         org.apache.jsp.index_jsp._jspService(index_jsp.java:96)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         java.lang.reflect.Method.invoke(Method.java:616)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:537)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
    Edited by: sspbond007 on Jan 2, 2009 5:31 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    And this is my jsp page
    <%@ page language="java" %>
    <%@ taglib uri="/tags/struts-html"     prefix="html" %>
    <%@ taglib uri="/tags/struts-logic" prefix="logic" %>
    <%@ taglib uri="/tags/struts-bean" prefix="bean"%>
    <%@ taglib uri="/tags/struts-html-el" prefix="htmlel" %>
    <%@ taglib uri="/tags/jstl-core" prefix="c" %>
    <%@ taglib uri="/tags/corelib-html"     prefix="corelibhtml" %>
    <%@ taglib uri="/tags/display" prefix="display"%>
    <%@ taglib uri="/tags/displayel" prefix="display-el"%>
    <%@ page import="java.util.List"%>
    <%@ page import="domain.model.Connections"%>
    <%@ page contentType = "text/html; charset=UTF-8" pageEncoding="UTF-8"  %>
    <html:html>
    <head>
    <script language="javascript">
         function doUpload(){
              document.connectionsActionForm.action="connectionsAction.do?eventName=imageUpload&entityName=connections&image=testingPurpose&imageName=test.png";     
              document.connectionsActionForm.submit();
         function doInsert(){
              document.connectionsActionForm.action="connectionsAction.do?eventName=create&entityName=connections&xmlData=";     
              document.connectionsActionForm.submit();
         function doGenerateMap(){
              document.connectionsActionForm.action="connectionsAction.do?eventName=map&entityName=connections&lat=28.6&longt=72.6&zoom=8";     
              document.connectionsActionForm.submit();
    </script>                    
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="expires" content="0">
    <title>Test</title>
    <link rel="StyleSheet" href="img/newswadmin.css" type="text/css">
    </head>
    <body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
              <html:form action="/connectionsAction.do">
              <!-- <input type="button" value="imageUpload" onclick="doUpload();"/>
              <input type="button" value="adds" onclick="doInsert();"/> -->
              <input type="button" value="map" onclick="doGenerateMap();"/>
    </html:form>
    </body>
    </html:html>Please help me

  • ATi free driver not working since ati-dri and mesa update in linux-lts

    Hi,this is my first post in the forums since its my first issue, I have read the wiki, but the thing is that the problem came suddenly.  I installed Arch linux without problems in a fairly old machine that has an old radeon Chipset: VGA compatible controller:
    Advanced Micro Devices [AMD] nee ATI RS690 [Radeon X1200 Series]
    Everything was working fine since yesterday.
    The thing that i did different yesterday were two:
    1) i installed Sabayon linux into  a new partition, so i resized the ext 4 partition in which i have Arch. Sabayon messed up my grub.cfg so i entered to my Arch system using chroot and a live Cd and repaired it using grub-mkconfig.
    2) Before that i fully upgraded my Arch system, when this problem came out i looked into the log and discovered that pacman updated the packages mesa, mesa-dri and ati-dri.
    After that i rebooted into Arch linux and couldnt run the xserver. Tried to solved the 2 above issues by taking this measures
    1) using fsck for repairing possible errors due to the resize of the partition.
    2)Reinstalling the whole system with pacman, using my full system package list.
    3) regenerating the initram with mkinitcpio.
    4)regenerating the grub.cfg
    5)downgraded the packages ati-dri, mesa, mesa dri.
    After all that i just couldnt start the xorg. The only way that i found to start xorg is to install the xf86-video-vesa which im currently using, is there a way to get back the ati free drivers??
    Im currently using arch-lts as kernel, and i have kernel 3.7.9 also, none of them working.
    Here's my Xorg log
    [ 62.661]
    X.Org X Server 1.14.1
    Release Date: 2013-04-17
    [ 62.661] X Protocol Version 11, Revision 0
    [ 62.661] Build Operating System: Linux 3.8.7-1-ARCH x86_64
    [ 62.661] Current Operating System: Linux marcorecamara 3.0.76-1-lts #1 SMP Wed May 1 20:14:38 CEST 2013 x86_64
    [ 62.661] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=54250347-8e44-4962-8656-387ed670cccc ro nomodeset
    [ 62.661] Build Date: 17 April 2013 02:37:06PM
    [ 62.661]
    [ 62.661] Current version of pixman: 0.28.2
    [ 62.661] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 62.661] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 62.661] (==) Log file: "/var/log/Xorg.0.log", Time: Tue May 7 01:44:10 2013
    [ 62.661] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 62.661] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 62.661] (==) No Layout section. Using the first Screen section.
    [ 62.661] (==) No screen section available. Using defaults.
    [ 62.661] (**) |-->Screen "Default Screen Section" (0)
    [ 62.661] (**) | |-->Monitor "<default monitor>"
    [ 62.661] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 62.661] (==) Automatically adding devices
    [ 62.661] (==) Automatically enabling devices
    [ 62.661] (==) Automatically adding GPU devices
    [ 62.661] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 62.661] Entry deleted from font path.
    [ 62.661] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 62.661] Entry deleted from font path.
    [ 62.661] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 62.661] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 62.661] Entry deleted from font path.
    [ 62.661] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 62.661] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 62.661] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 62.661] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 62.661] (II) Loader magic: 0x7fcc20
    [ 62.661] (II) Module ABI versions:
    [ 62.661] X.Org ANSI C Emulation: 0.4
    [ 62.661] X.Org Video Driver: 14.1
    [ 62.661] X.Org XInput driver : 19.1
    [ 62.661] X.Org Server Extension : 7.0
    [ 62.661] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 62.666] (--) PCI:*(0:1:5:0) 1002:791e:105b:0e0c rev 0, Mem @ 0xf0000000/134217728, 0xfeaf0000/65536, 0xfe900000/1048576, I/O @ 0x0000d000/256
    [ 62.666] Initializing built-in extension Generic Event Extension
    [ 62.666] Initializing built-in extension SHAPE
    [ 62.666] Initializing built-in extension MIT-SHM
    [ 62.666] Initializing built-in extension XInputExtension
    [ 62.666] Initializing built-in extension XTEST
    [ 62.666] Initializing built-in extension BIG-REQUESTS
    [ 62.666] Initializing built-in extension SYNC
    [ 62.666] Initializing built-in extension XKEYBOARD
    [ 62.666] Initializing built-in extension XC-MISC
    [ 62.666] Initializing built-in extension SECURITY
    [ 62.666] Initializing built-in extension XINERAMA
    [ 62.666] Initializing built-in extension XFIXES
    [ 62.666] Initializing built-in extension RENDER
    [ 62.666] Initializing built-in extension RANDR
    [ 62.666] Initializing built-in extension COMPOSITE
    [ 62.666] Initializing built-in extension DAMAGE
    [ 62.666] Initializing built-in extension MIT-SCREEN-SAVER
    [ 62.666] Initializing built-in extension DOUBLE-BUFFER
    [ 62.666] Initializing built-in extension RECORD
    [ 62.666] Initializing built-in extension DPMS
    [ 62.666] Initializing built-in extension X-Resource
    [ 62.666] Initializing built-in extension XVideo
    [ 62.666] Initializing built-in extension XVideo-MotionCompensation
    [ 62.666] Initializing built-in extension XFree86-VidModeExtension
    [ 62.666] Initializing built-in extension XFree86-DGA
    [ 62.666] Initializing built-in extension XFree86-DRI
    [ 62.666] Initializing built-in extension DRI2
    [ 62.666] (II) "glx" will be loaded by default.
    [ 62.666] (II) LoadModule: "dri2"
    [ 62.667] (II) Module "dri2" already built-in
    [ 62.667] (II) LoadModule: "glamoregl"
    [ 62.667] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 62.668] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 62.668] compiled for 1.14.0, module version = 0.5.0
    [ 62.668] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 62.668] (II) LoadModule: "glx"
    [ 62.668] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 62.668] (II) Module glx: vendor="X.Org Foundation"
    [ 62.668] compiled for 1.14.1, module version = 1.0.0
    [ 62.668] ABI class: X.Org Server Extension, version 7.0
    [ 62.668] (==) AIGLX enabled
    [ 62.668] Loading extension GLX
    [ 62.668] (==) Matched ati as autoconfigured driver 0
    [ 62.668] (==) Matched ati as autoconfigured driver 1
    [ 62.668] (==) Matched vesa as autoconfigured driver 2
    [ 62.668] (==) Matched modesetting as autoconfigured driver 3
    [ 62.668] (==) Matched fbdev as autoconfigured driver 4
    [ 62.668] (==) Assigned the driver to the xf86ConfigLayout
    [ 62.668] (II) LoadModule: "ati"
    [ 62.668] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 62.668] (II) Module ati: vendor="X.Org Foundation"
    [ 62.668] compiled for 1.14.0, module version = 7.1.0
    [ 62.668] Module class: X.Org Video Driver
    [ 62.668] ABI class: X.Org Video Driver, version 14.1
    [ 62.668] (II) LoadModule: "radeon"
    [ 62.668] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 62.669] (II) Module radeon: vendor="X.Org Foundation"
    [ 62.669] compiled for 1.14.0, module version = 7.1.0
    [ 62.669] Module class: X.Org Video Driver
    [ 62.669] ABI class: X.Org Video Driver, version 14.1
    [ 62.669] (II) LoadModule: "vesa"
    [ 62.669] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 62.669] (II) Module vesa: vendor="X.Org Foundation"
    [ 62.669] compiled for 1.14.0, module version = 2.3.2
    [ 62.669] Module class: X.Org Video Driver
    [ 62.669] ABI class: X.Org Video Driver, version 14.1
    [ 62.669] (II) LoadModule: "modesetting"
    [ 62.669] (WW) Warning, couldn't open module modesetting
    [ 62.669] (II) UnloadModule: "modesetting"
    [ 62.669] (II) Unloading modesetting
    [ 62.669] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 62.669] (II) LoadModule: "fbdev"
    [ 62.669] (WW) Warning, couldn't open module fbdev
    [ 62.669] (II) UnloadModule: "fbdev"
    [ 62.669] (II) Unloading fbdev
    [ 62.669] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 62.669] (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 FireMV 2400 3155 (PCI),
    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 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 FireMV 2400 PCI,
    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 Mobility RADEON HD 4870, 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 Mobility Radeon HD 4670, 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 RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, 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 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, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    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 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    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, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE
    [ 62.671] (II) VESA: driver for VESA chipsets: vesa
    [ 62.671] (++) using VT number 7
    [ 62.760] (II) [KMS] drm report modesetting isn't supported.
    [ 62.760] (II) [KMS] drm report modesetting isn't supported.
    [ 62.760] (II) [KMS] drm report modesetting isn't supported.
    [ 62.760] (II) [KMS] drm report modesetting isn't supported.
    [ 62.760] (II) [KMS] drm report modesetting isn't supported.
    [ 62.760] (EE) Screen 0 deleted because of no matching config section.
    [ 62.760] (II) UnloadModule: "radeon"
    [ 62.760] (EE) Screen 0 deleted because of no matching config section.
    [ 62.760] (II) UnloadModule: "radeon"
    [ 62.760] (EE) Screen 0 deleted because of no matching config section.
    [ 62.760] (II) UnloadModule: "radeon"
    [ 62.760] (EE) Screen 0 deleted because of no matching config section.
    [ 62.760] (II) UnloadModule: "radeon"
    [ 62.760] (II) Loading sub module "vbe"
    [ 62.760] (II) LoadModule: "vbe"
    [ 62.760] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 62.769] (II) Module vbe: vendor="X.Org Foundation"
    [ 62.769] compiled for 1.14.1, module version = 1.1.0
    [ 62.769] ABI class: X.Org Video Driver, version 14.1
    [ 62.769] (II) Loading sub module "int10"
    [ 62.769] (II) LoadModule: "int10"
    [ 62.769] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 62.786] (II) Module int10: vendor="X.Org Foundation"
    [ 62.786] compiled for 1.14.1, module version = 1.0.0
    [ 62.786] ABI class: X.Org Video Driver, version 14.1
    [ 62.786] (II) VESA(0): initializing int10
    [ 63.020] (II) VESA(0): VESA BIOS detected
    [ 63.020] (II) VESA(0): VESA VBE Version 3.0
    [ 63.020] (II) VESA(0): VESA VBE Total Mem: 16384 kB
    [ 63.020] (II) VESA(0): VESA VBE OEM: ATI ATOMBIOS
    [ 63.020] (II) VESA(0): VESA VBE OEM Software Rev: 10.54
    [ 63.020] (II) VESA(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI Technologies Inc.
    [ 63.020] (II) VESA(0): VESA VBE OEM Product: RS690
    [ 63.020] (II) VESA(0): VESA VBE OEM Product Rev: 01.00
    [ 63.046] (II) VESA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 63.046] (==) VESA(0): Depth 24, (--) framebuffer bpp 32
    [ 63.046] (==) VESA(0): RGB weight 888
    [ 63.046] (==) VESA(0): Default visual is TrueColor
    [ 63.046] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 63.046] (II) Loading sub module "ddc"
    [ 63.046] (II) LoadModule: "ddc"
    [ 63.046] (II) Module "ddc" already built-in
    [ 63.046] (II) VESA(0): VESA VBE DDC supported
    [ 63.046] (II) VESA(0): VESA VBE DDC Level 2
    [ 63.046] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
    [ 63.171] (II) VESA(0): VESA VBE DDC read successfully
    [ 63.171] (II) VESA(0): Manufacturer: SAM Model: 7a0 Serial#: 1413559093
    [ 63.171] (II) VESA(0): Year: 2010 Week: 47
    [ 63.171] (II) VESA(0): EDID Version: 1.3
    [ 63.171] (II) VESA(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 63.171] (II) VESA(0): Sync: Separate
    [ 63.171] (II) VESA(0): Max Image Size [cm]: horiz.: 41 vert.: 23
    [ 63.171] (II) VESA(0): Gamma: 2.20
    [ 63.171] (II) VESA(0): DPMS capabilities: Off; RGB/Color Display
    [ 63.171] (II) VESA(0): First detailed timing is preferred mode
    [ 63.171] (II) VESA(0): redX: 0.639 redY: 0.340 greenX: 0.324 greenY: 0.622
    [ 63.171] (II) VESA(0): blueX: 0.155 blueY: 0.042 whiteX: 0.312 whiteY: 0.329
    [ 63.171] (II) VESA(0): Supported established timings:
    [ 63.171] (II) VESA(0): 720x400@70Hz
    [ 63.171] (II) VESA(0): 640x480@60Hz
    [ 63.171] (II) VESA(0): 640x480@67Hz
    [ 63.171] (II) VESA(0): 640x480@72Hz
    [ 63.171] (II) VESA(0): 640x480@75Hz
    [ 63.171] (II) VESA(0): 800x600@56Hz
    [ 63.171] (II) VESA(0): 800x600@60Hz
    [ 63.171] (II) VESA(0): 800x600@72Hz
    [ 63.171] (II) VESA(0): 800x600@75Hz
    [ 63.171] (II) VESA(0): 832x624@75Hz
    [ 63.171] (II) VESA(0): 1024x768@60Hz
    [ 63.171] (II) VESA(0): 1024x768@70Hz
    [ 63.171] (II) VESA(0): 1024x768@75Hz
    [ 63.171] (II) VESA(0): Manufacturer's mask: 0
    [ 63.171] (II) VESA(0): Supported detailed timing:
    [ 63.171] (II) VESA(0): clock: 85.5 MHz Image Size: 410 x 230 mm
    [ 63.171] (II) VESA(0): h_active: 1360 h_sync: 1424 h_sync_end 1536 h_blank_end 1792 h_border: 0
    [ 63.171] (II) VESA(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 795 v_border: 0
    [ 63.171] (II) VESA(0): Supported detailed timing:
    [ 63.171] (II) VESA(0): clock: 65.0 MHz Image Size: 410 x 230 mm
    [ 63.171] (II) VESA(0): h_active: 1024 h_sync: 1048 h_sync_end 1184 h_blank_end 1344 h_border: 0
    [ 63.171] (II) VESA(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 806 v_border: 0
    [ 63.171] (II) VESA(0): Ranges: V min: 60 V max: 75 Hz, H min: 30 H max: 61 kHz, PixClock max 105 MHz
    [ 63.171] (II) VESA(0): Monitor name: SMT19A350
    [ 63.171] (II) VESA(0): EDID (in hex):
    [ 63.171] (II) VESA(0): 00ffffffffffff004c2da00735334154
    [ 63.171] (II) VESA(0): 2f140103682917782a81f1a357539f27
    [ 63.171] (II) VESA(0): 0a5054bfee0001010101010101010101
    [ 63.171] (II) VESA(0): 010101010101662150b051001b304070
    [ 63.171] (II) VESA(0): 36009ae61000001e6419004041002630
    [ 63.171] (II) VESA(0): 188836009ae610000018000000fd003c
    [ 63.172] (II) VESA(0): 4b1e3d0a000a202020202020000000fc
    [ 63.172] (II) VESA(0): 00534d543139413335300a202020008f
    [ 63.172] (II) VESA(0): EDID vendor "SAM", prod id 1952
    [ 63.172] (II) VESA(0): Using EDID range info for horizontal sync
    [ 63.172] (II) VESA(0): Using EDID range info for vertical refresh
    [ 63.172] (II) VESA(0): Printing DDC gathered Modelines:
    [ 63.172] (II) VESA(0): Modeline "1360x768"x0.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz eP)
    [ 63.172] (II) VESA(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 63.172] (II) VESA(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 63.172] (II) VESA(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 63.172] (II) VESA(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 63.172] (II) VESA(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 63.172] (II) VESA(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 63.172] (II) VESA(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 63.172] (II) VESA(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 63.172] (II) VESA(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 63.172] (II) VESA(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 63.172] (II) VESA(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 63.172] (II) VESA(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 63.172] (II) VESA(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 63.172] (II) VESA(0): Searching for matching VESA mode(s):
    [ 63.172] Mode: 100 (640x400)
    [ 63.172] ModeAttributes: 0xbb
    [ 63.172] WinAAttributes: 0x7
    [ 63.172] WinBAttributes: 0x0
    [ 63.172] WinGranularity: 64
    [ 63.172] WinSize: 64
    [ 63.172] WinASegment: 0xa000
    [ 63.172] WinBSegment: 0x0
    [ 63.172] WinFuncPtr: 0xc00050b5
    [ 63.172] BytesPerScanline: 640
    [ 63.172] XResolution: 640
    [ 63.172] YResolution: 400
    [ 63.172] XCharSize: 8
    [ 63.172] YCharSize: 16
    [ 63.172] NumberOfPlanes: 1
    [ 63.172] BitsPerPixel: 8
    [ 63.172] NumberOfBanks: 1
    [ 63.172] MemoryModel: 4
    [ 63.172] BankSize: 0
    [ 63.172] NumberOfImages: 63
    [ 63.172] RedMaskSize: 0
    [ 63.172] RedFieldPosition: 0
    [ 63.172] GreenMaskSize: 0
    [ 63.172] GreenFieldPosition: 0
    [ 63.172] BlueMaskSize: 0
    [ 63.172] BlueFieldPosition: 0
    [ 63.172] RsvdMaskSize: 0
    [ 63.172] RsvdFieldPosition: 0
    [ 63.172] DirectColorModeInfo: 0
    [ 63.172] PhysBasePtr: 0xf0000000
    [ 63.172] LinBytesPerScanLine: 640
    [ 63.172] BnkNumberOfImagePages: 63
    [ 63.172] LinNumberOfImagePages: 63
    [ 63.172] LinRedMaskSize: 0
    [ 63.172] LinRedFieldPosition: 0
    [ 63.172] LinGreenMaskSize: 0
    [ 63.172] LinGreenFieldPosition: 0
    [ 63.172] LinBlueMaskSize: 0
    [ 63.172] LinBlueFieldPosition: 0
    [ 63.172] LinRsvdMaskSize: 0
    [ 63.172] LinRsvdFieldPosition: 0
    [ 63.172] MaxPixelClock: 400000000
    [ 63.173] Mode: 101 (640x480)
    [ 63.173] ModeAttributes: 0xbb
    [ 63.173] WinAAttributes: 0x7
    [ 63.173] WinBAttributes: 0x0
    [ 63.173] WinGranularity: 64
    [ 63.173] WinSize: 64
    [ 63.173] WinASegment: 0xa000
    [ 63.173] WinBSegment: 0x0
    [ 63.173] WinFuncPtr: 0xc00050b5
    [ 63.173] BytesPerScanline: 640
    [ 63.173] XResolution: 640
    [ 63.173] YResolution: 480
    [ 63.173] XCharSize: 8
    [ 63.173] YCharSize: 16
    [ 63.173] NumberOfPlanes: 1
    [ 63.173] BitsPerPixel: 8
    [ 63.173] NumberOfBanks: 1
    [ 63.173] MemoryModel: 4
    [ 63.173] BankSize: 0
    [ 63.173] NumberOfImages: 50
    [ 63.173] RedMaskSize: 0
    [ 63.173] RedFieldPosition: 0
    [ 63.173] GreenMaskSize: 0
    [ 63.173] GreenFieldPosition: 0
    [ 63.173] BlueMaskSize: 0
    [ 63.173] BlueFieldPosition: 0
    [ 63.173] RsvdMaskSize: 0
    [ 63.173] RsvdFieldPosition: 0
    [ 63.173] DirectColorModeInfo: 0
    [ 63.173] PhysBasePtr: 0xf0000000
    [ 63.173] LinBytesPerScanLine: 640
    [ 63.173] BnkNumberOfImagePages: 50
    [ 63.173] LinNumberOfImagePages: 50
    [ 63.173] LinRedMaskSize: 0
    [ 63.173] LinRedFieldPosition: 0
    [ 63.173] LinGreenMaskSize: 0
    [ 63.173] LinGreenFieldPosition: 0
    [ 63.173] LinBlueMaskSize: 0
    [ 63.173] LinBlueFieldPosition: 0
    [ 63.173] LinRsvdMaskSize: 0
    [ 63.173] LinRsvdFieldPosition: 0
    [ 63.173] MaxPixelClock: 400000000
    [ 63.173] Mode: 103 (800x600)
    [ 63.173] ModeAttributes: 0xbb
    [ 63.173] WinAAttributes: 0x7
    [ 63.173] WinBAttributes: 0x0
    [ 63.173] WinGranularity: 64
    [ 63.173] WinSize: 64
    [ 63.173] WinASegment: 0xa000
    [ 63.173] WinBSegment: 0x0
    [ 63.173] WinFuncPtr: 0xc00050b5
    [ 63.173] BytesPerScanline: 832
    [ 63.173] XResolution: 800
    [ 63.173] YResolution: 600
    [ 63.173] XCharSize: 8
    [ 63.173] YCharSize: 14
    [ 63.173] NumberOfPlanes: 1
    [ 63.173] BitsPerPixel: 8
    [ 63.173] NumberOfBanks: 1
    [ 63.173] MemoryModel: 4
    [ 63.173] BankSize: 0
    [ 63.173] NumberOfImages: 31
    [ 63.173] RedMaskSize: 0
    [ 63.173] RedFieldPosition: 0
    [ 63.173] GreenMaskSize: 0
    [ 63.173] GreenFieldPosition: 0
    [ 63.173] BlueMaskSize: 0
    [ 63.173] BlueFieldPosition: 0
    [ 63.173] RsvdMaskSize: 0
    [ 63.173] RsvdFieldPosition: 0
    [ 63.173] DirectColorModeInfo: 0
    [ 63.173] PhysBasePtr: 0xf0000000
    [ 63.173] LinBytesPerScanLine: 832
    [ 63.173] BnkNumberOfImagePages: 31
    [ 63.173] LinNumberOfImagePages: 31
    [ 63.173] LinRedMaskSize: 0
    [ 63.173] LinRedFieldPosition: 0
    [ 63.173] LinGreenMaskSize: 0
    [ 63.173] LinGreenFieldPosition: 0
    [ 63.173] LinBlueMaskSize: 0
    [ 63.173] LinBlueFieldPosition: 0
    [ 63.173] LinRsvdMaskSize: 0
    [ 63.173] LinRsvdFieldPosition: 0
    [ 63.173] MaxPixelClock: 400000000
    [ 63.174] Mode: 105 (1024x768)
    [ 63.174] ModeAttributes: 0xbb
    [ 63.174] WinAAttributes: 0x7
    [ 63.174] WinBAttributes: 0x0
    [ 63.174] WinGranularity: 64
    [ 63.174] WinSize: 64
    [ 63.174] WinASegment: 0xa000
    [ 63.174] WinBSegment: 0x0
    [ 63.174] WinFuncPtr: 0xc00050b5
    [ 63.174] BytesPerScanline: 1024
    [ 63.174] XResolution: 1024
    [ 63.174] YResolution: 768
    [ 63.174] XCharSize: 8
    [ 63.174] YCharSize: 16
    [ 63.174] NumberOfPlanes: 1
    [ 63.174] BitsPerPixel: 8
    [ 63.174] NumberOfBanks: 1
    [ 63.174] MemoryModel: 4
    [ 63.174] BankSize: 0
    [ 63.174] NumberOfImages: 18
    [ 63.174] RedMaskSize: 0
    [ 63.174] RedFieldPosition: 0
    [ 63.174] GreenMaskSize: 0
    [ 63.174] GreenFieldPosition: 0
    [ 63.174] BlueMaskSize: 0
    [ 63.174] BlueFieldPosition: 0
    [ 63.174] RsvdMaskSize: 0
    [ 63.174] RsvdFieldPosition: 0
    [ 63.174] DirectColorModeInfo: 0
    [ 63.174] PhysBasePtr: 0xf0000000
    [ 63.174] LinBytesPerScanLine: 1024
    [ 63.174] BnkNumberOfImagePages: 18
    [ 63.174] LinNumberOfImagePages: 18
    [ 63.174] LinRedMaskSize: 0
    [ 63.174] LinRedFieldPosition: 0
    [ 63.174] LinGreenMaskSize: 0
    [ 63.174] LinGreenFieldPosition: 0
    [ 63.174] LinBlueMaskSize: 0
    [ 63.174] LinBlueFieldPosition: 0
    [ 63.174] LinRsvdMaskSize: 0
    [ 63.174] LinRsvdFieldPosition: 0
    [ 63.174] MaxPixelClock: 400000000
    [ 63.174] Mode: 107 (1280x1024)
    [ 63.174] ModeAttributes: 0xbb
    [ 63.174] WinAAttributes: 0x7
    [ 63.174] WinBAttributes: 0x0
    [ 63.174] WinGranularity: 64
    [ 63.174] WinSize: 64
    [ 63.174] WinASegment: 0xa000
    [ 63.174] WinBSegment: 0x0
    [ 63.174] WinFuncPtr: 0xc00050b5
    [ 63.174] BytesPerScanline: 1280
    [ 63.174] XResolution: 1280
    [ 63.174] YResolution: 1024
    [ 63.174] XCharSize: 8
    [ 63.174] YCharSize: 16
    [ 63.174] NumberOfPlanes: 1
    [ 63.174] BitsPerPixel: 8
    [ 63.174] NumberOfBanks: 1
    [ 63.174] MemoryModel: 4
    [ 63.174] BankSize: 0
    [ 63.174] NumberOfImages: 11
    [ 63.174] RedMaskSize: 0
    [ 63.174] RedFieldPosition: 0
    [ 63.174] GreenMaskSize: 0
    [ 63.174] GreenFieldPosition: 0
    [ 63.174] BlueMaskSize: 0
    [ 63.174] BlueFieldPosition: 0
    [ 63.174] RsvdMaskSize: 0
    [ 63.174] RsvdFieldPosition: 0
    [ 63.174] DirectColorModeInfo: 0
    [ 63.174] PhysBasePtr: 0xf0000000
    [ 63.174] LinBytesPerScanLine: 1280
    [ 63.174] BnkNumberOfImagePages: 11
    [ 63.174] LinNumberOfImagePages: 11
    [ 63.174] LinRedMaskSize: 0
    [ 63.174] LinRedFieldPosition: 0
    [ 63.174] LinGreenMaskSize: 0
    [ 63.174] LinGreenFieldPosition: 0
    [ 63.174] LinBlueMaskSize: 0
    [ 63.174] LinBlueFieldPosition: 0
    [ 63.174] LinRsvdMaskSize: 0
    [ 63.174] LinRsvdFieldPosition: 0
    [ 63.174] MaxPixelClock: 400000000
    [ 63.175] Mode: 111 (640x480)
    [ 63.175] ModeAttributes: 0xbb
    [ 63.175] WinAAttributes: 0x7
    [ 63.175] WinBAttributes: 0x0
    [ 63.175] WinGranularity: 64
    [ 63.175] WinSize: 64
    [ 63.175] WinASegment: 0xa000
    [ 63.175] WinBSegment: 0x0
    [ 63.175] WinFuncPtr: 0xc00050b5
    [ 63.175] BytesPerScanline: 1280
    [ 63.175] XResolution: 640
    [ 63.175] YResolution: 480
    [ 63.175] XCharSize: 8
    [ 63.175] YCharSize: 16
    [ 63.175] NumberOfPlanes: 1
    [ 63.175] BitsPerPixel: 16
    [ 63.175] NumberOfBanks: 1
    [ 63.175] MemoryModel: 6
    [ 63.175] BankSize: 0
    [ 63.175] NumberOfImages: 24
    [ 63.175] RedMaskSize: 5
    [ 63.175] RedFieldPosition: 11
    [ 63.175] GreenMaskSize: 6
    [ 63.175] GreenFieldPosition: 5
    [ 63.175] BlueMaskSize: 5
    [ 63.175] BlueFieldPosition: 0
    [ 63.175] RsvdMaskSize: 0
    [ 63.175] RsvdFieldPosition: 0
    [ 63.175] DirectColorModeInfo: 0
    [ 63.175] PhysBasePtr: 0xf0000000
    [ 63.175] LinBytesPerScanLine: 1280
    [ 63.175] BnkNumberOfImagePages: 24
    [ 63.175] LinNumberOfImagePages: 24
    [ 63.175] LinRedMaskSize: 5
    [ 63.175] LinRedFieldPosition: 11
    [ 63.175] LinGreenMaskSize: 6
    [ 63.175] LinGreenFieldPosition: 5
    [ 63.175] LinBlueMaskSize: 5
    [ 63.175] LinBlueFieldPosition: 0
    [ 63.175] LinRsvdMaskSize: 0
    [ 63.175] LinRsvdFieldPosition: 0
    [ 63.175] MaxPixelClock: 400000000
    [ 63.175] Mode: 114 (800x600)
    [ 63.175] ModeAttributes: 0xbb
    [ 63.175] WinAAttributes: 0x7
    [ 63.175] WinBAttributes: 0x0
    [ 63.175] WinGranularity: 64
    [ 63.175] WinSize: 64
    [ 63.175] WinASegment: 0xa000
    [ 63.175] WinBSegment: 0x0
    [ 63.175] WinFuncPtr: 0xc00050b5
    [ 63.175] BytesPerScanline: 1600
    [ 63.175] XResolution: 800
    [ 63.175] YResolution: 600
    [ 63.175] XCharSize: 8
    [ 63.175] YCharSize: 14
    [ 63.175] NumberOfPlanes: 1
    [ 63.175] BitsPerPixel: 16
    [ 63.175] NumberOfBanks: 1
    [ 63.175] MemoryModel: 6
    [ 63.175] BankSize: 0
    [ 63.175] NumberOfImages: 16
    [ 63.175] RedMaskSize: 5
    [ 63.175] RedFieldPosition: 11
    [ 63.175] GreenMaskSize: 6
    [ 63.175] GreenFieldPosition: 5
    [ 63.176] BlueMaskSize: 5
    [ 63.176] BlueFieldPosition: 0
    [ 63.176] RsvdMaskSize: 0
    [ 63.176] RsvdFieldPosition: 0
    [ 63.176] DirectColorModeInfo: 0
    [ 63.176] PhysBasePtr: 0xf0000000
    [ 63.176] LinBytesPerScanLine: 1600
    [ 63.176] BnkNumberOfImagePages: 16
    [ 63.176] LinNumberOfImagePages: 16
    [ 63.176] LinRedMaskSize: 5
    [ 63.176] LinRedFieldPosition: 11
    [ 63.176] LinGreenMaskSize: 6
    [ 63.176] LinGreenFieldPosition: 5
    [ 63.176] LinBlueMaskSize: 5
    [ 63.176] LinBlueFieldPosition: 0
    [ 63.176] LinRsvdMaskSize: 0
    [ 63.176] LinRsvdFieldPosition: 0
    [ 63.176] MaxPixelClock: 400000000
    [ 63.176] Mode: 117 (1024x768)
    [ 63.176] ModeAttributes: 0xbb
    [ 63.176] WinAAttributes: 0x7
    [ 63.176] WinBAttributes: 0x0
    [ 63.176] WinGranularity: 64
    [ 63.176] WinSize: 64
    [ 63.176] WinASegment: 0xa000
    [ 63.176] WinBSegment: 0x0
    [ 63.176] WinFuncPtr: 0xc00050b5
    [ 63.176] BytesPerScanline: 2048
    [ 63.176] XResolution: 1024
    [ 63.176] YResolution: 768
    [ 63.176] XCharSize: 8
    [ 63.176] YCharSize: 16
    [ 63.176] NumberOfPlanes: 1
    [ 63.176] BitsPerPixel: 16
    [ 63.176] NumberOfBanks: 1
    [ 63.176] MemoryModel: 6
    [ 63.176] BankSize: 0
    [ 63.176] NumberOfImages: 9
    [ 63.176] RedMaskSize: 5
    [ 63.176] RedFieldPosition: 11
    [ 63.176] GreenMaskSize: 6
    [ 63.176] GreenFieldPosition: 5
    [ 63.176] BlueMaskSize: 5
    [ 63.176] BlueFieldPosition: 0
    [ 63.176] RsvdMaskSize: 0
    [ 63.176] RsvdFieldPosition: 0
    [ 63.176] DirectColorModeInfo: 0
    [ 63.176] PhysBasePtr: 0xf0000000
    [ 63.176] LinBytesPerScanLine: 2048
    [ 63.176] BnkNumberOfImagePages: 9
    [ 63.176] LinNumberOfImagePages: 9
    [ 63.176] LinRedMaskSize: 5
    [ 63.176] LinRedFieldPosition: 11
    [ 63.176] LinGreenMaskSize: 6
    [ 63.176] LinGreenFieldPosition: 5
    [ 63.176] LinBlueMaskSize: 5
    [ 63.176] LinBlueFieldPosition: 0
    [ 63.176] LinRsvdMaskSize: 0
    [ 63.176] LinRsvdFieldPosition: 0
    [ 63.176] MaxPixelClock: 400000000
    [ 63.177] Mode: 11a (1280x1024)
    [ 63.177] ModeAttributes: 0xbb
    [ 63.177] WinAAttributes: 0x7
    [ 63.177] WinBAttributes: 0x0
    [ 63.177] WinGranularity: 64
    [ 63.177] WinSize: 64
    [ 63.177] WinASegment: 0xa000
    [ 63.177] WinBSegment: 0x0
    [ 63.177] WinFuncPtr: 0xc00050b5
    [ 63.177] BytesPerScanline: 2560
    [ 63.177] XResolution: 1280
    [ 63.177] YResolution: 1024
    [ 63.177] XCharSize: 8
    [ 63.177] YCharSize: 16
    [ 63.177] NumberOfPlanes: 1
    [ 63.177] BitsPerPixel: 16
    [ 63.177] NumberOfBanks: 1
    [ 63.177] MemoryModel: 6
    [ 63.177] BankSize: 0
    [ 63.177] NumberOfImages: 5
    [ 63.177] RedMaskSize: 5
    [ 63.177] RedFieldPosition: 11
    [ 63.177] GreenMaskSize: 6
    [ 63.177] GreenFieldPosition: 5
    [ 63.177] BlueMaskSize: 5
    [ 63.177] BlueFieldPosition: 0
    [ 63.177] RsvdMaskSize: 0
    [ 63.177] RsvdFieldPosition: 0
    [ 63.177] DirectColorModeInfo: 0
    [ 63.177] PhysBasePtr: 0xf0000000
    [ 63.177] LinBytesPerScanLine: 2560
    [ 63.177] BnkNumberOfImagePages: 5
    [ 63.177] LinNumberOfImagePages: 5
    [ 63.177] LinRedMaskSize: 5
    [ 63.177] LinRedFieldPosition: 11
    [ 63.177] LinGreenMaskSize: 6
    [ 63.177] LinGreenFieldPosition: 5
    [ 63.177] LinBlueMaskSize: 5
    [ 63.177] LinBlueFieldPosition: 0
    [ 63.177] LinRsvdMaskSize: 0
    [ 63.177] LinRsvdFieldPosition: 0
    [ 63.177] MaxPixelClock: 400000000
    [ 63.177] Mode: 10e (320x200)
    [ 63.177] ModeAttributes: 0xbb
    [ 63.177] WinAAttributes: 0x7
    [ 63.177] WinBAttributes: 0x0
    [ 63.177] WinGranularity: 64
    [ 63.177] WinSize: 64
    [ 63.177] WinASegment: 0xa000
    [ 63.177] WinBSegment: 0x0
    [ 63.177] WinFuncPtr: 0xc00050b5
    [ 63.177] BytesPerScanline: 640
    [ 63.177] XResolution: 320
    [ 63.177] YResolution: 200
    [ 63.177] XCharSize: 8
    [ 63.177] YCharSize: 8
    [ 63.177] NumberOfPlanes: 1
    [ 63.177] BitsPerPixel: 16
    [ 63.177] NumberOfBanks: 1
    [ 63.177] MemoryModel: 6
    [ 63.177] BankSize: 0
    [ 63.177] NumberOfImages: 127
    [ 63.177] RedMaskSize: 5
    [ 63.177] RedFieldPosition: 11
    [ 63.177] GreenMaskSize: 6
    [ 63.177] GreenFieldPosition: 5
    [ 63.177] BlueMaskSize: 5
    [ 63.177] BlueFieldPosition: 0
    [ 63.177] RsvdMaskSize: 0
    [ 63.177] RsvdFieldPosition: 0
    [ 63.177] DirectColorModeInfo: 0
    [ 63.177] PhysBasePtr: 0xf0000000
    [ 63.177] LinBytesPerScanLine: 640
    [ 63.177] BnkNumberOfImagePages: 127
    [ 63.177] LinNumberOfImagePages: 127
    [ 63.177] LinRedMaskSize: 5
    [ 63.177] LinRedFieldPosition: 11
    [ 63.177] LinGreenMaskSize: 6
    [ 63.177] LinGreenFieldPosition: 5
    [ 63.177] LinBlueMaskSize: 5
    [ 63.177] LinBlueFieldPosition: 0
    [ 63.177] LinRsvdMaskSize: 0
    [ 63.177] LinRsvdFieldPosition: 0
    [ 63.177] MaxPixelClock: 400000000
    [ 63.178] *Mode: 120 (320x200)
    [ 63.178] ModeAttributes: 0xbb
    [ 63.178] WinAAttributes: 0x7
    [ 63.178] WinBAttributes: 0x0
    [ 63.178] WinGranularity: 64
    [ 63.178] WinSize: 64
    [ 63.178] WinASegment: 0xa000
    [ 63.178] WinBSegment: 0x0
    [ 63.178] WinFuncPtr: 0xc00050b5
    [ 63.178] BytesPerScanline: 1280
    [ 63.178] XResolution: 320
    [ 63.178] YResolution: 200
    [ 63.178] XCharSize: 8
    [ 63.178] YCharSize: 8
    [ 63.178] NumberOfPlanes: 1
    [ 63.178] BitsPerPixel: 32
    [ 63.178] NumberOfBanks: 1
    [ 63.178] MemoryModel: 6
    [ 63.178] BankSize: 0
    [ 63.178] NumberOfImages: 63
    [ 63.178] RedMaskSize: 8
    [ 63.178] RedFieldPosition: 16
    [ 63.178] GreenMaskSize: 8
    [ 63.178] GreenFieldPosition: 8
    [ 63.178] BlueMaskSize: 8
    [ 63.178] BlueFieldPosition: 0
    [ 63.178] RsvdMaskSize: 0
    [ 63.178] RsvdFieldPosition: 0
    [ 63.178] DirectColorModeInfo: 0
    [ 63.178] PhysBasePtr: 0xf0000000
    [ 63.178] LinBytesPerScanLine: 1280
    [ 63.178] BnkNumberOfImagePages: 63
    [ 63.178] LinNumberOfImagePages: 63
    [ 63.178] LinRedMaskSize: 8
    [ 63.178] LinRedFieldPosition: 16
    [ 63.178] LinGreenMaskSize: 8
    [ 63.178] LinGreenFieldPosition: 8
    [ 63.178] LinBlueMaskSize: 8
    [ 63.178] LinBlueFieldPosition: 0
    [ 63.178] LinRsvdMaskSize: 0
    [ 63.178] LinRsvdFieldPosition: 0
    [ 63.178] MaxPixelClock: 400000000
    [ 63.178] Mode: 193 (320x240)
    [ 63.178] ModeAttributes: 0xbb
    [ 63.178] WinAAttributes: 0x7
    [ 63.178] WinBAttributes: 0x0
    [ 63.178] WinGranularity: 64
    [ 63.178] WinSize: 64
    [ 63.178] WinASegment: 0xa000
    [ 63.178] WinBSegment: 0x0
    [ 63.178] WinFuncPtr: 0xc00050b5
    [ 63.178] BytesPerScanline: 320
    [ 63.178] XResolution: 320
    [ 63.178] YResolution: 240
    [ 63.178] XCharSize: 8
    [ 63.178] YCharSize: 8
    [ 63.178] NumberOfPlanes: 1
    [ 63.178] BitsPerPixel: 8
    [ 63.178] NumberOfBanks: 1
    [ 63.178] MemoryModel: 4
    [ 63.178] BankSize: 0
    [ 63.178] NumberOfImages: 127
    [ 63.178] RedMaskSize: 0
    [ 63.178] RedFieldPosition: 0
    [ 63.178] GreenMaskSize: 0
    [ 63.178] GreenFieldPosition: 0
    [ 63.178] BlueMaskSize: 0
    [ 63.178] BlueFieldPosition: 0
    [ 63.178] RsvdMaskSize: 0
    [ 63.178] RsvdFieldPosition: 0
    [ 63.178] DirectColorModeInfo: 0
    [ 63.178] PhysBasePtr: 0xf0000000
    [ 63.178] LinBytesPerScanLine: 320
    [ 63.178] BnkNumberOfImagePages: 127
    [ 63.178] LinNumberOfImagePages: 127
    [ 63.178] LinRedMaskSize: 0
    [ 63.178] LinRedFieldPosition: 0
    [ 63.178] LinGreenMaskSize: 0
    [ 63.178] LinGreenFieldPosition: 0
    [ 63.178] LinBlueMaskSize: 0
    [ 63.178] LinBlueFieldPosition: 0
    [ 63.178] LinRsvdMaskSize: 0
    [ 63.178] LinRsvdFieldPosition: 0
    [ 63.178] MaxPixelClock: 400000000
    [ 63.179] Mode: 195 (320x240)
    [ 63.179] ModeAttributes: 0xbb
    [ 63.179] WinAAttributes: 0x7
    [ 63.179] WinBAttributes: 0x0
    [ 63.179] WinGranularity: 64
    [ 63.179] WinSize: 64
    [ 63.179] WinASegment: 0xa000
    [ 63.179] WinBSegment: 0x0
    [ 63.179] WinFuncPtr: 0xc00050b5
    [ 63.179] BytesPerScanline: 640
    [ 63.179] XResolution: 320
    [ 63.179] YResolution: 240
    [ 63.179] XCharSize: 8
    [ 63.179] YCharSize: 8
    [ 63.179] NumberOfPlanes: 1
    [ 63.179] BitsPerPixel: 16
    [ 63.179] NumberOfBanks: 1
    [ 63.179] MemoryModel: 6
    [ 63.179] BankSize: 0
    [ 63.179] NumberOfImages: 84
    [ 63.179] RedMaskSize: 5
    [ 63.179] RedFieldPosition: 11
    [ 63.179] GreenMaskSize: 6
    [ 63.179] GreenFieldPosition: 5
    [ 63.179] BlueMaskSize: 5
    [ 63.179] BlueFieldPosition: 0
    [ 63.179] RsvdMaskSize: 0
    [ 63.179] RsvdFieldPosition: 0
    [ 63.179] DirectColorModeInfo: 0
    [ 63.179] PhysBasePtr: 0xf0000000
    [ 63.179] LinBytesPerScanLine: 640
    [ 63.179] BnkNumberOfImagePages: 84
    [ 63.179] LinNumberOfImagePages: 84
    [ 63.179] LinRedMaskSize: 5
    [ 63.179] LinRedFieldPosition: 11
    [ 63.179] LinGreenMaskSize: 6
    [ 63.179] LinGreenFieldPosition: 5
    [ 63.179] LinBlueMaskSize: 5
    [ 63.179] LinBlueFieldPosition: 0
    [ 63.179] LinRsvdMaskSize: 0
    [ 63.179] LinRsvdFieldPosition: 0
    [ 63.179] MaxPixelClock: 400000000
    [ 63.179] *Mode: 196 (320x240)
    [ 63.179] ModeAttributes: 0xbb
    [ 63.179] WinAAttributes: 0x7
    [ 63.179] WinBAttributes: 0x0
    [ 63.179] WinGranularity: 64
    [ 63.179] WinSize: 64
    [ 63.179] WinASegment: 0xa000
    [ 63.179] WinBSegment: 0x0
    [ 63.179] WinFuncPtr: 0xc00050b5
    [ 63.179] BytesPerScanline: 1280
    [ 63.179] XResolution: 320
    [ 63.179] YResolution: 240
    [ 63.179] XCharSize: 8
    [ 63.179] YCharSize: 8
    [ 63.179] NumberOfPlanes: 1
    [ 63.179] BitsPerPixel: 32
    [ 63.179] NumberOfBanks: 1
    [ 63.179] MemoryModel: 6
    [ 63.179] BankSize: 0
    [ 63.179] NumberOfImages: 50
    [ 63.179] RedMaskSize: 8
    [ 63.179] RedFieldPosition: 16
    [ 63.179] GreenMaskSize: 8
    [ 63.179] GreenFieldPosition: 8
    [ 63.179] BlueMaskSize: 8
    [ 63.179] BlueFieldPosition: 0
    [ 63.179] RsvdMaskSize: 0
    [ 63.179] RsvdFieldPosition: 0
    [ 63.179] DirectColorModeInfo: 0
    [ 63.179] PhysBasePtr: 0xf0000000
    [ 63.179] LinBytesPerScanLine: 1280
    [ 63.179] BnkNumberOfImagePages: 50
    [ 63.179] LinNumberOfImagePages: 50
    [ 63.179] LinRedMaskSize: 8
    [ 63.179] LinRedFieldPosition: 16
    [ 63.179] LinGreenMaskSize: 8
    [ 63.179] LinGreenFieldPosition: 8
    [ 63.179] LinBlueMaskSize: 8
    [ 63.179] LinBlueFieldPosition: 0
    [ 63.179] LinRsvdMaskSize: 0
    [ 63.179] LinRsvdFieldPosition: 0
    [ 63.179] MaxPixelClock: 400000000
    [ 63.180] Mode: 1b3 (512x384)
    [ 63.180] ModeAttributes: 0xbb
    [ 63.180] WinAAttributes: 0x7
    [ 63.180] WinBAttributes: 0x0
    [ 63.180] WinGranularity: 64
    [ 63.180] WinSize: 64
    [ 63.180] WinASegment: 0xa000
    [ 63.180] WinBSegment: 0x0
    [ 63.180] WinFuncPtr: 0xc00050b5
    [ 63.180] BytesPerScanline: 512
    [ 63.180] XResolution: 512
    [ 63.180] YResolution: 384
    [ 63.180] XCharSize: 8
    [ 63.180] YCharSize: 16
    [ 63.180] NumberOfPlanes: 1
    [ 63.180] BitsPerPixel: 8
    [ 63.180] NumberOfBanks: 1
    [ 63.180] MemoryModel: 4
    [ 63.180] BankSize: 0
    [ 63.180] NumberOfImages: 63
    [ 63.180] RedMaskSize: 0
    [ 63.180] RedFieldPosition: 0
    [ 63.180] GreenMaskSize: 0
    [ 63.180] GreenFieldPosition: 0
    [ 63.180] BlueMaskSize: 0
    [ 63.180] BlueFieldPosition: 0
    [ 63.180] RsvdMaskSize: 0
    [ 63.180] RsvdFieldPosition: 0
    [ 63.180] DirectColorModeInfo: 0
    [ 63.180] PhysBasePtr: 0xf0000000
    [ 63.180] LinBytesPerScanLine: 512
    [ 63.180] BnkNumberOfImagePages: 63
    [ 63.180] LinNumberOfImagePages: 63
    [ 63.180] LinRedMaskSize: 0
    [ 63.180] LinRedFieldPosition: 0
    [ 63.180] LinGreenMaskSize: 0
    [ 63.180] LinGreenFieldPosition: 0
    [ 63.180] LinBlueMaskSize: 0
    [ 63.180] LinBlueFieldPosition: 0
    [ 63.180] LinRsvdMaskSize: 0
    [ 63.180] LinRsvdFieldPosition: 0
    [ 63.180] MaxPixelClock: 400000000
    [ 63.180] Mode: 1b5 (512x384)
    [ 63.180] ModeAttributes: 0xbb
    [ 63.180] WinAAttributes: 0x7
    [ 63.180] WinBAttributes: 0x0
    [ 63.180] WinGranularity: 64
    [ 63.180] WinSize: 64
    [ 63.180] WinASegment: 0xa000
    [ 63.180] WinBSegment: 0x0
    [ 63.180] WinFuncPtr: 0xc00050b5
    [ 63.180] BytesPerScanline: 1024
    [ 63.180] XResolution: 512
    [ 63.180] YResolution: 384
    [ 63.180] XCharSize: 8
    [ 63.180] YCharSize: 16
    [ 63.180] NumberOfPlanes: 1
    [ 63.180] BitsPerPixel: 16
    [ 63.180] NumberOfBanks: 1
    [ 63.181] MemoryModel: 6
    [ 63.181] BankSize: 0
    [ 63.181] NumberOfImages: 35
    [ 63.181] RedMaskSize: 5
    [ 63.181] RedFieldPosition: 11
    [ 63.181] GreenMaskSize: 6
    [ 63.181] GreenFieldPosition: 5
    [ 63.181] BlueMaskSize: 5
    [ 63.181] BlueFieldPosition: 0
    [ 63.181] RsvdMaskSize: 0
    [ 63.181] RsvdFieldPosition: 0
    [ 63.181] DirectColorModeInfo: 0
    [ 63.181] PhysBasePtr: 0xf0000000
    [ 63.181] LinBytesPerScanLine: 1024
    [ 63.181] BnkNumberOfImagePages: 35
    [ 63.181] LinNumberOfImagePages: 35
    [ 63.181] LinRedMaskSize: 5
    [ 63.181] LinRedFieldPosition: 11
    [ 63.181] LinGreenMaskSize: 6
    [ 63.181] LinGreenFieldPosition: 5
    [ 63.181] LinBlueMaskSize: 5
    [ 63.181] LinBlueFieldPosition: 0
    [ 63.181] LinRsvdMaskSize: 0
    [ 63.181] LinRsvdFieldPosition: 0
    [ 63.181] MaxPixelClock: 400000000
    [ 63.181] *Mode: 1b6 (512x384)
    [ 63.181] ModeAttributes: 0xbb
    [ 63.181] WinAAttributes: 0x7
    [ 63.181] WinBAttributes: 0x0
    [ 63.181] WinGranularity: 64
    [ 63.181] WinSize: 64
    [ 63.181] WinASegment: 0xa000
    [ 63.181] WinBSegment: 0x0
    [ 63.181] WinFuncPtr: 0xc00050b5
    [ 63.181] BytesPerScanline: 2048
    [ 63.181] XResolution: 512
    [ 63.181] YResolution: 384
    [ 63.181] XCharSize: 8
    [ 63.181] YCharSize: 16
    [ 63.181] NumberOfPlanes: 1
    [ 63.181] BitsPerPixel: 32
    [ 63.181] NumberOfBanks: 1
    [ 63.181] MemoryModel: 6
    [ 63.181] BankSize: 0
    [ 63.181] NumberOfImages: 18
    [ 63.181] RedMaskSize: 8
    [ 63.181] RedFieldPosition: 16
    [ 63.181] GreenMaskSize: 8
    [ 63.181] GreenFieldPosition: 8
    [ 63.181] BlueMaskSize: 8
    [ 63.181] BlueFieldPosition: 0
    [ 63.181] RsvdMaskSize: 0
    [ 63.181] RsvdFieldPosition: 0
    [ 63.181] DirectColorModeInfo: 0
    [ 63.181] PhysBasePtr: 0xf0000000
    [ 63.181] LinBytesPerScanLine: 2048
    [ 63.181] BnkNumberOfImagePages: 18
    [ 63.181] LinNumberOfImagePages: 18
    [ 63.181] LinRedMaskSize: 8
    [ 63.181] LinRedFieldPosition: 16
    [ 63.181] LinGreenMaskSize: 8
    [ 63.181] LinGreenFieldPosition: 8
    [ 63.181] LinBlueMaskSize: 8
    [ 63.181] LinBlueFieldPosition: 0
    [ 63.181] LinRsvdMaskSize: 0
    [ 63.181] LinRsvdFieldPosition: 0
    [ 63.181] MaxPixelClock: 400000000
    [ 63.182] Mode: 1c3 (640x350)
    [ 63.182] ModeAttributes: 0xbb
    [ 63.182] WinAAttributes: 0x7
    [ 63.182] WinBAttributes: 0x0
    [ 63.182] WinGranularity: 64
    [ 63.182] WinSize: 64
    [ 63.182] WinASegment: 0xa000
    [ 63.182] WinBSegment: 0x0
    [ 63.182] WinFuncPtr: 0xc00050b5
    [ 63.182] BytesPerScanline: 640
    [ 63.182] XResolution: 640
    [ 63.182] YResolution: 350
    [ 63.182] XCharSize: 8
    [ 63.182] YCharSize: 14
    [ 63.182] NumberOfPlanes: 1
    [ 63.182] BitsPerPixel: 8
    [ 63.182] NumberOfBanks: 1
    [ 63.182] MemoryModel: 4
    [ 63.182] BankSize: 0
    [ 63.182] NumberOfImages: 63
    [ 63.182] RedMaskSize: 0
    [ 63.182] RedFieldPosition: 0
    [ 63.182] GreenMaskSize: 0
    [ 63.182] GreenFieldPosition: 0
    [ 63.182] BlueMaskSize: 0
    [ 63.182] BlueFieldPosition: 0
    [ 63.182] RsvdMaskSize: 0
    [ 63.182] RsvdFieldPosition: 0
    [ 63.182] DirectColorModeInfo: 0
    [ 63.182] PhysBasePtr: 0xf0000000
    [ 63.182] LinBytesPerScanLine: 640
    [ 63.182] BnkNumberOfImagePages: 63
    [ 63.182] LinNumberOfImagePages: 63
    [ 63.182] LinRedMaskSize: 0
    [ 63.182] LinRedFieldPosition: 0
    [ 63.182] LinGreenMaskSize: 0
    [ 63.182] LinGreenFieldPosition: 0
    [ 63.182] LinBlueMaskSize: 0
    [ 63.182] LinBlueFieldPosition: 0
    [ 63.182] LinRsvdMaskSize: 0
    [ 63.182] LinRsvdFieldPosition: 0
    [ 63.182] MaxPixelClock: 400000000
    [ 63.182] Mode: 1c5 (640x350)
    [ 63.182] ModeAttributes: 0xbb
    [ 63.182] WinAAttributes: 0x7
    [ 63.182] WinBAttributes: 0x0
    [ 63.182] WinGranularity: 64
    [ 63.182] WinSize: 64
    [ 63.182] WinASegment: 0xa000
    [ 63.182] WinBSegment: 0x0
    [ 63.182] WinFuncPtr: 0xc00050b5
    [ 63.182] BytesPerScanline: 1280
    [ 63.182] XResolution: 640
    [ 63.182] YResolution: 350
    [ 63.182] XCharSize: 8
    [ 63.182] YCharSize: 14
    [ 63.182] NumberOfPlanes: 1
    [ 63.182] BitsPerPixel: 16
    [ 63.182] NumberOfBanks: 1
    [ 63.182] MemoryModel: 6
    [ 63.182] BankSize: 0
    [ 63.182] NumberOfImages: 35
    [ 63.182] RedMaskSize: 5
    [ 63.182] RedFieldPosition: 11
    [ 63.182] GreenMaskSize: 6
    [ 63.182] GreenFieldPosition: 5
    [ 63.182] BlueMaskSize: 5
    [ 63.182] BlueFieldPosition: 0
    [ 63.182] RsvdMaskSize: 0
    [ 63.182] RsvdFieldPosition: 0
    [ 63.182] DirectColorModeInfo: 0
    [ 63.182] PhysBasePtr: 0xf0000000
    [ 63.182] LinBytesPerScanLine: 1280
    [ 63.182] BnkNumberOfImagePages: 35
    [ 63.182] LinNumberOfImagePages: 35
    [ 63.182] LinRedMaskSize: 5
    [ 63.182] LinRedFieldPosition: 11
    [ 63.182] LinGreenMaskSize: 6
    [ 63.182] LinGreenFieldPosition: 5
    [ 63.182] LinBlueMaskSize: 5
    [ 63.182] LinBlueFieldPosition: 0
    [ 63.182] LinRsvdMaskSize: 0
    [ 63.182] LinRsvdFieldPosition: 0
    [ 63.182] MaxPixelClock: 400000000
    [ 63.183] *Mode: 1c6 (640x350)
    [ 63.183] ModeAttributes: 0xbb
    [ 63.183] WinAAttributes: 0x7
    [ 63.183] WinBAttributes: 0x0
    [ 63.183] WinGranularity: 64
    [ 63.183] WinSize: 64
    [ 63.183] WinASegment: 0xa000
    [ 63.183] WinBSegment: 0x0
    [ 63.183] WinFuncPtr: 0xc00050b5
    [ 63.183] BytesPerScanline: 2560
    [ 63.183] XResolution: 640
    [ 63.183] YResolution: 350
    [ 63.183] XCharSize: 8
    [ 63.183] YCharSize: 14
    [ 63.183] NumberOfPlanes: 1
    [ 63.183] BitsPerPixel: 32
    [ 63.183] NumberOfBanks: 1
    [ 63.183] MemoryModel: 6
    [ 63.183] BankSize: 0
    [ 63.183] NumberOfImages: 17
    [ 63.183] RedMaskSize: 8
    [ 63.183] RedFieldPosition: 16
    [ 63.183] GreenMaskSize: 8
    [ 63.183] GreenFieldPosition: 8
    [ 63.183] BlueMaskSize: 8
    [ 63.183] BlueFieldPosition: 0
    [ 63.183] RsvdMaskSize: 0
    [ 63.183] RsvdFieldPosition: 0
    [ 63.183] DirectColorModeInfo: 0
    [ 63.183] PhysBasePtr: 0xf0000000
    [ 63.183] LinBytesPerScanLine: 2560
    [ 63.183] BnkNumberOfImagePages: 17
    [ 63.183] LinNumberOfImagePages: 17
    [ 63.183] LinRedMaskSize: 8
    [ 63.183] LinRedFieldPosition: 16
    [ 63.183] LinGreenMaskSize: 8
    [ 63.183] LinGreenFieldPosition: 8
    [ 63.183] LinBlueMaskSize: 8
    [ 63.183] LinBlueFieldPosition: 0
    [ 63.183] LinRsvdMaskSize: 0
    [ 63.183] LinRsvdFieldPosition: 0
    [ 63.183] MaxPixelClock: 400000000
    [ 63.183] Mode: 183 (640x400)
    [ 63.183] ModeAttributes: 0xbb
    [ 63.183] WinAAttributes: 0x7
    [ 63.183] WinBAttributes: 0x0
    [ 63.183] WinGranularity: 64
    [ 63.183] WinSize: 64
    [ 63.183] WinASegment: 0xa000
    [ 63.183] WinBSegment: 0x0
    [ 63.183] WinFuncPtr: 0xc00050b5
    [ 63.183] BytesPerScanline: 640
    [ 63.183] XResolution: 640
    [ 63.183] YResolution: 400
    [ 63.183] XCharSize: 8
    [ 63.183] YCharSize: 16
    [ 63.183] NumberOfPlanes: 1
    [ 63.183] BitsPerPixel: 8
    [ 63.183] NumberOfBanks: 1
    [ 63.183] MemoryModel: 4
    [ 63.183] BankSize: 0
    [ 63.183] NumberOfImages: 63
    [ 63.183] RedMaskSize: 0
    [ 63.183] RedFieldPosition: 0
    [ 63.183] GreenMaskSize: 0
    [ 63.183] GreenFieldPosition: 0
    [ 63.183] BlueMaskSize: 0
    [ 63.183] BlueFieldPosition: 0
    [ 63.183] RsvdMaskSize: 0
    [ 63.183] RsvdFieldPosition: 0
    [ 63.183] DirectColorModeInfo: 0
    [ 63.183] PhysBasePtr: 0xf0000000
    [ 63.183] LinBytesPerScanLine: 640
    [ 63.183] BnkNumberOfImagePages: 63
    [ 63.183] LinNumberOfImagePages: 63
    [ 63.183] LinRedMaskSize: 0
    [ 63.183] LinRedFieldPosition: 0
    [ 63.183] LinGreenMaskSize: 0
    [ 63.183] LinGreenFieldPosition: 0
    [ 63.183] LinBlueMaskSize: 0
    [ 63.183] LinBlueFieldPosition: 0
    [ 63.183] LinRsvdMaskSize: 0
    [ 63.183] LinRsvdFieldPosition: 0
    [ 63.183] MaxPixelClock: 400000000
    [ 63.184] Mode: 185 (640x400)
    [ 63.184] ModeAttributes: 0xbb
    [ 63.184] WinAAttributes: 0x7
    [ 63.184] WinBAttributes: 0x0
    [ 63.184] WinGranularity: 64
    [ 63.184] WinSize: 64
    [ 63.184] WinASegment: 0xa000
    [ 63.184] WinBSegment: 0x0
    [ 63.184] WinFuncPtr: 0xc00050b5
    [ 63.184] BytesPerScanline: 1280
    [ 63.184] XResolution: 640
    [ 63.184] YResolution: 400
    [ 63.184] XCharSize: 8
    [ 63.184] YCharSize: 16
    [ 63.184] NumberOfPlanes: 1
    [ 63.184] BitsPerPixel: 16
    [ 63.184] NumberOfBanks: 1
    [ 63.184] MemoryModel: 6
    [ 63.184] BankSize: 0
    [ 63.184] NumberOfImages: 31
    [ 63.184] RedMaskSize: 5
    [ 63.184] RedFieldPosition: 11
    [ 63.184] GreenMaskSize: 6
    [ 63.184] GreenFieldPosition: 5
    [ 63.184] BlueMaskSize: 5
    [ 63.184] BlueFieldPosition: 0
    [ 63.184] RsvdMaskSize: 0
    [ 63.184] RsvdFieldPosition: 0
    [ 63.184] DirectColorModeInfo: 0
    [ 63.184] PhysBasePtr: 0xf0000000
    [ 63.184] LinBytesPerScanLine: 1280
    [ 63.184] BnkNumberOfImagePages: 31
    [ 63.184] LinNumberOfImagePages: 31
    [ 63.184] LinRedMaskSize: 5
    [ 63.184] LinRedFieldPosition: 11
    [ 63.184] LinGreenMaskSize: 6
    [ 63.184] LinGreenFieldPosition: 5
    [ 63.184] LinBlueMaskSize: 5
    [ 63.184] LinBlueFieldPosition: 0
    [ 63.184] LinRsvdMaskSize: 0
    [ 63.184] LinRsvdFieldPosition: 0
    [ 63.184] MaxPixelClock: 400000000
    [ 63.185] *Mode: 186 (640x400)
    [ 63.185] ModeAttributes: 0xbb
    [ 63.185] WinAAttributes: 0x7
    [ 63.185] WinBAttributes: 0x0
    [ 63.185] WinGranularity: 64
    [ 63.185] WinSize: 64
    [ 63.185] WinASegment: 0xa000
    [ 63.185] WinBSegment: 0x0
    [ 63.185] WinFuncPtr: 0xc00050b5
    [ 63.185] BytesPerScanline: 2560
    [ 63.185] XResolution: 640
    [ 63.185] YResolution: 400
    [ 63.185] XCharSize: 8
    [ 63.185] YCharSize: 16
    [ 63.185] NumberOfPlanes: 1
    [ 63.185] BitsPerPixel: 32
    [ 63.185] NumberOfBanks: 1
    [ 63.185] MemoryModel: 6
    [ 63.185] BankSize: 0
    [ 63.185] NumberOfImages: 15
    [ 63.185] RedMaskSize: 8
    [ 63.185] RedFieldPosition: 16
    [ 63.185] GreenMaskSize: 8
    [ 63.185] GreenFieldPosition: 8
    [ 63.185] BlueMaskSize: 8
    [ 63.185] BlueFieldPosition: 0
    [ 63.185] RsvdMaskSize: 0
    [ 63.185] RsvdFieldPosition: 0
    [ 63.185] DirectColorModeInfo: 0
    [ 63.185] PhysBasePtr: 0xf0000000
    [ 63.185] LinBytesPerScanLine: 2560
    [ 63.185] BnkNumberOfImagePages: 15
    [ 63.185] LinNumberOfImagePages: 15
    [ 63.185] LinRedMaskSize: 8
    [ 63.185] LinRedFieldPosition: 16
    [ 63.185] LinGreenMaskSize: 8
    [ 63.185] LinGreenFieldPosition: 8
    [ 63.185] LinBlueMaskSize: 8
    [ 63.185] LinBlueFieldPosition: 0
    [ 63.185] LinRsvdMaskSize: 0
    [ 63.185] LinRsvdFieldPosition: 0
    [ 63.185] MaxPixelClock: 400000000
    [ 63.185] Mode: 133 (720x400)
    [ 63.185] ModeAttributes: 0xbb
    [ 63.185] WinAAttributes: 0x7
    [ 63.185] WinBAttributes: 0x0
    [ 63.185] WinGranularity: 64
    [ 63.185] WinSize: 64
    [ 63.185] WinASegment: 0xa000
    [ 63.185] WinBSegment: 0x0
    [ 63.185] WinFuncPtr: 0xc00050b5
    [ 63.185] BytesPerScanline: 768
    [ 63.185] XResolution: 720
    [ 63.185] YResolution: 400
    [ 63.185] XCharSize: 8
    [ 63.185] YCharSize: 16
    [ 63.185] NumberOfPlanes: 1
    [ 63.185] BitsPerPixel: 8
    [ 63.185] NumberOfBanks: 1
    [ 63.185] MemoryModel: 4
    [ 63.185] BankSize: 0
    [ 63.185] NumberOfImages: 50
    [ 63.185] RedMaskSize: 0
    [ 63.185] RedFieldPosition: 0
    [ 63.185] GreenMaskSize: 0
    [ 63.185] GreenFieldPosition: 0
    [ 63.185] BlueMaskSize: 0
    [ 63.185] BlueFieldPosition: 0
    [ 63.185] RsvdMaskSize: 0
    [ 63.185] RsvdFieldPosition: 0
    [ 63.185] DirectColorModeInfo: 0
    [ 63.185] PhysBasePtr: 0xf0000000
    [ 63.185] LinBytesPerScanLine: 768
    [ 63.185] BnkNumberOfImagePages: 50
    [ 63.185] LinNumberOfImagePages: 50
    [ 63.185] LinRedMaskSize: 0
    [ 63.185] LinRedFieldPosition: 0
    [ 63.185] LinGreenMaskSize: 0
    [ 63.185] LinGreenFieldPosition: 0
    [ 63.185] LinBlueMaskSize: 0
    [ 63.185] LinBlueFieldPosition: 0
    [ 63.185] LinRsvdMaskSize: 0
    [ 63.185] LinRsvdFieldPosition: 0
    [ 63.185] MaxPixelClock: 400000000
    [ 63.186] Mode: 135 (720x400)
    [ 63.186] ModeAttributes: 0xbb
    [ 63.186] WinAAttributes: 0x7
    [ 63.186] WinBAttributes: 0x0
    [ 63.186] WinGranularity: 64
    [ 63.186] WinSize: 64
    [ 63.186] WinASegment: 0xa000
    [ 63.186] WinBSegment: 0x0
    [ 63.186] WinFuncPtr: 0xc00050b5
    [ 63.186] BytesPerScanline: 1472
    [ 63.186] XResolution: 720
    [ 63.186] YResolution: 400
    [ 63.186] XCharSize: 8
    [ 63.186] YCharSize: 16
    [ 63.186] NumberOfPlanes: 1
    [ 63.186] BitsPerPixel: 16
    [ 63.186] NumberOfBanks: 1
    [ 63.186] MemoryModel: 6
    [ 63.186] BankSize: 0
    [ 63.186] NumberOfImages: 27
    [ 63.186] RedMaskSize: 5
    [ 63.186] RedFieldPosition: 11
    [ 63.186] GreenMaskSize: 6
    [ 63.186] GreenFieldPosition: 5
    [ 63.186] BlueMaskSize: 5
    [ 63.186] BlueFieldPosition: 0
    [ 63.186] RsvdMaskSize: 0
    [ 63.186] RsvdFieldPosition: 0
    [ 63.186] DirectColorModeInfo: 0
    [ 63.186] PhysBasePtr: 0xf0000000
    [ 63.186] LinBytesPerScanLine: 1472
    [ 63.186] BnkNumberOfImagePages: 27
    [ 63.186] LinNumberOfImagePages: 27
    [ 63.186] LinRedMaskSize: 5
    [ 63.186] LinRedFieldPosition: 11
    [ 63.186] LinGreenMaskSize: 6
    [ 63.186] LinGreenFieldPosition: 5
    [ 63.186] LinBlueMaskSize: 5
    [ 63.186] LinBlueFieldPosition: 0
    [ 63.186] LinRsvdMaskSize: 0
    [ 63.186] LinRsvdFieldPosition: 0
    [ 63.186] MaxPixelClock: 400000000
    [ 63.186] *Mode: 136 (720x400)
    [ 63.186] ModeAttributes: 0xbb
    [ 63.186] WinAAttributes: 0x7
    [ 63.186] WinBAttributes: 0x0
    [ 63.186] WinGranularity: 64
    [ 63.186] WinSize: 64
    [ 63.186] WinASegment: 0xa000
    [ 63.186] WinBSegment: 0x0
    [ 63.186] WinFuncPtr: 0xc00050b5
    [ 63.186] BytesPerScanline: 2944
    [ 63.186] XResolution: 720
    [ 63.186] YResolution: 400
    [ 63.186] XCharSize: 8
    [ 63.186] YCharSize: 16
    [ 63.186] NumberOfPlanes: 1
    [ 63.186] BitsPerPixel: 32
    [ 63.186] NumberOfBanks: 1
    [ 63.186] MemoryModel: 6
    [ 63.186] BankSize: 0
    [ 63.186] NumberOfImages: 13
    [ 63.186] RedMaskSize: 8
    [ 63.186] RedFieldPosition: 16
    [ 63.186] GreenMaskSize: 8
    [ 63.186] GreenFieldPosition: 8
    [ 63.186] BlueMaskSize: 8
    [ 63.186] BlueFieldPosition: 0
    [ 63.186] RsvdMaskSize: 0
    [ 63.186] RsvdFieldPosition: 0
    [ 63.186] DirectColorModeInfo: 0
    [ 63.186] PhysBasePtr: 0xf0000000
    [ 63.186] LinBytesPerScanLine: 2944
    [ 63.186] BnkNumberOfImagePages: 13
    [ 63.186] LinNumberOfImagePages: 13
    [ 63.186] LinRedMaskSize: 8
    [ 63.186] LinRedFieldPosition: 16
    [ 63.187] LinGreenMaskSize: 8
    [ 63.187] LinGreenFieldPosition: 8
    [ 63.187] LinBlue

    OK, first of all i checked if i had the module loades
    using lspci | grep radeon
    That returned:
    radeon 993341 0
    i2c_algo_bit 5295 1 radeon
    ttm 54346 1 radeon
    drm_kms_helper 26027 1 radeon
    drm 182706 3 drm_kms_helper,ttm,radeon
    i2c_core 22628 5 i2c_piix4,drm,drm_kms_helper,i2c_algo_bit,radeon
    so i think the module was loaded, neverthless i did modified mkinitcpio and added the module radeon,  uninstalled the vesa drivers, rebuilt the initram and reboot my system just to see te same results: no Xorg.So i installed the vesa drivers again to run xorg. I post the Xorg log using only the Radeon Driver.
    [ 44.636]
    X.Org X Server 1.14.1
    Release Date: 2013-04-17
    [ 44.637] X Protocol Version 11, Revision 0
    [ 44.637] Build Operating System: Linux 3.8.7-1-ARCH x86_64
    [ 44.639] Current Operating System: Linux marcorecamara 3.0.76-1-lts #1 SMP Wed May 1 20:14:38 CEST 2013 x86_64
    [ 44.639] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=54250347-8e44-4962-8656-387ed670cccc ro nomodeset
    [ 44.641] Build Date: 17 April 2013 02:37:06PM
    [ 44.641]
    [ 44.642] Current version of pixman: 0.28.2
    [ 44.644] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 44.644] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 44.648] (==) Log file: "/var/log/Xorg.0.log", Time: Tue May 7 20:18:52 2013
    [ 44.649] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 44.650] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 44.650] (==) No Layout section. Using the first Screen section.
    [ 44.650] (==) No screen section available. Using defaults.
    [ 44.650] (**) |-->Screen "Default Screen Section" (0)
    [ 44.650] (**) | |-->Monitor "<default monitor>"
    [ 44.650] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 44.650] (==) Automatically adding devices
    [ 44.650] (==) Automatically enabling devices
    [ 44.650] (==) Automatically adding GPU devices
    [ 44.650] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 44.650] Entry deleted from font path.
    [ 44.650] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 44.650] Entry deleted from font path.
    [ 44.650] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 44.650] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 44.650] Entry deleted from font path.
    [ 44.650] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 44.650] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 44.650] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 44.650] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 44.650] (II) Loader magic: 0x7fcc20
    [ 44.650] (II) Module ABI versions:
    [ 44.650] X.Org ANSI C Emulation: 0.4
    [ 44.650] X.Org Video Driver: 14.1
    [ 44.650] X.Org XInput driver : 19.1
    [ 44.650] X.Org Server Extension : 7.0
    [ 44.650] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 44.655] (--) PCI:*(0:1:5:0) 1002:791e:105b:0e0c rev 0, Mem @ 0xf0000000/134217728, 0xfeaf0000/65536, 0xfe900000/1048576, I/O @ 0x0000d000/256
    [ 44.656] Initializing built-in extension Generic Event Extension
    [ 44.657] Initializing built-in extension SHAPE
    [ 44.657] Initializing built-in extension MIT-SHM
    [ 44.658] Initializing built-in extension XInputExtension
    [ 44.659] Initializing built-in extension XTEST
    [ 44.660] Initializing built-in extension BIG-REQUESTS
    [ 44.660] Initializing built-in extension SYNC
    [ 44.661] Initializing built-in extension XKEYBOARD
    [ 44.661] Initializing built-in extension XC-MISC
    [ 44.662] Initializing built-in extension SECURITY
    [ 44.663] Initializing built-in extension XINERAMA
    [ 44.663] Initializing built-in extension XFIXES
    [ 44.664] Initializing built-in extension RENDER
    [ 44.665] Initializing built-in extension RANDR
    [ 44.665] Initializing built-in extension COMPOSITE
    [ 44.666] Initializing built-in extension DAMAGE
    [ 44.667] Initializing built-in extension MIT-SCREEN-SAVER
    [ 44.667] Initializing built-in extension DOUBLE-BUFFER
    [ 44.668] Initializing built-in extension RECORD
    [ 44.691] Initializing built-in extension DPMS
    [ 44.714] Initializing built-in extension X-Resource
    [ 44.736] Initializing built-in extension XVideo
    [ 44.759] Initializing built-in extension XVideo-MotionCompensation
    [ 44.782] Initializing built-in extension XFree86-VidModeExtension
    [ 44.804] Initializing built-in extension XFree86-DGA
    [ 44.826] Initializing built-in extension XFree86-DRI
    [ 44.846] Initializing built-in extension DRI2
    [ 44.846] (II) "glx" will be loaded by default.
    [ 44.846] (II) LoadModule: "dri2"
    [ 44.846] (II) Module "dri2" already built-in
    [ 44.847] (II) LoadModule: "glamoregl"
    [ 44.847] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 44.848] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 44.848] compiled for 1.14.0, module version = 0.5.0
    [ 44.848] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 44.848] (II) LoadModule: "glx"
    [ 44.848] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 44.848] (II) Module glx: vendor="X.Org Foundation"
    [ 44.848] compiled for 1.14.1, module version = 1.0.0
    [ 44.848] ABI class: X.Org Server Extension, version 7.0
    [ 44.848] (==) AIGLX enabled
    [ 44.869] Loading extension GLX
    [ 44.869] (==) Matched ati as autoconfigured driver 0
    [ 44.869] (==) Matched ati as autoconfigured driver 1
    [ 44.869] (==) Matched vesa as autoconfigured driver 2
    [ 44.869] (==) Matched modesetting as autoconfigured driver 3
    [ 44.869] (==) Matched fbdev as autoconfigured driver 4
    [ 44.869] (==) Assigned the driver to the xf86ConfigLayout
    [ 44.869] (II) LoadModule: "ati"
    [ 44.869] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 44.869] (II) Module ati: vendor="X.Org Foundation"
    [ 44.869] compiled for 1.14.0, module version = 7.1.0
    [ 44.869] Module class: X.Org Video Driver
    [ 44.869] ABI class: X.Org Video Driver, version 14.1
    [ 44.869] (II) LoadModule: "radeon"
    [ 44.869] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 44.869] (II) Module radeon: vendor="X.Org Foundation"
    [ 44.869] compiled for 1.14.0, module version = 7.1.0
    [ 44.869] Module class: X.Org Video Driver
    [ 44.869] ABI class: X.Org Video Driver, version 14.1
    [ 44.869] (II) LoadModule: "vesa"
    [ 44.870] (WW) Warning, couldn't open module vesa
    [ 44.870] (II) UnloadModule: "vesa"
    [ 44.870] (II) Unloading vesa
    [ 44.870] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 44.870] (II) LoadModule: "modesetting"
    [ 44.870] (WW) Warning, couldn't open module modesetting
    [ 44.870] (II) UnloadModule: "modesetting"
    [ 44.870] (II) Unloading modesetting
    [ 44.870] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 44.870] (II) LoadModule: "fbdev"
    [ 44.870] (WW) Warning, couldn't open module fbdev
    [ 44.870] (II) UnloadModule: "fbdev"
    [ 44.870] (II) Unloading fbdev
    [ 44.870] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 44.870] (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 FireMV 2400 3155 (PCI),
    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 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 FireMV 2400 PCI,
    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 Mobility RADEON HD 4870, 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 Mobility Radeon HD 4670, 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 RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, 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 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, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    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 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    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, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE
    [ 44.872] (++) using VT number 1
    [ 44.872] (II) [KMS] drm report modesetting isn't supported.
    [ 44.872] (II) [KMS] drm report modesetting isn't supported.
    [ 44.872] (II) [KMS] drm report modesetting isn't supported.
    [ 44.872] (II) [KMS] drm report modesetting isn't supported.
    [ 44.872] (II) [KMS] drm report modesetting isn't supported.
    [ 44.872] (EE) Screen 0 deleted because of no matching config section.
    [ 44.872] (II) UnloadModule: "radeon"
    [ 44.872] (EE) Screen 0 deleted because of no matching config section.
    [ 44.872] (II) UnloadModule: "radeon"
    [ 44.872] (EE) Screen 0 deleted because of no matching config section.
    [ 44.872] (II) UnloadModule: "radeon"
    [ 44.872] (EE) Screen 0 deleted because of no matching config section.
    [ 44.872] (II) UnloadModule: "radeon"
    [ 44.872] (EE) Device(s) detected, but none match those in the config file.
    [ 44.872]
    Fatal server error:
    [ 44.872] no screens found
    [ 44.872] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 44.872] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 44.872] (EE)
    [ 45.006] Server terminated with error (1). Closing log file.
    So maybe is something about KMS. And i dont think this has to do with data corruption, the strange thing is that i downgraded the packages, maybe antoher package is interfering. Ill try to solve the issue of KMS and mode set, the weird thing is that i have nomodeset in my grub.cfg

  • Communication problem between NetBeans and Tomcat

    hi!
    i got a quite mysterious problem. here is what happens:
    - i start NetBeans 5.5.1 (the first time)
    - i want to debug my JSF-Project, the Debugger starts
    - After a few seconds the debugger waits for tomcat (it sais: "Waiting for Tomcat...") and tomcat starts
    - Again after a few seconds the tomcat-debugger-output sais "Tomcat startet in 3333 ms".
    okay.
    when i enter http://localhost:8084/ in my browser i get the tomcat homepage, so the server has definitely started! But nothing happens in NetBeans and nothing happens with my project....
    In the lower-right corner i see this blue working-bar that sais "deploying project" but nothing happens. The Project-Debugger-Output still sais "Waiting for Tomcat..." but nothing happens...
    And after something around 3 minutes (i guess it's a timeout) i get the error "Starting of Tomcat failed." But is HAS started, i can login to the Administration-Area in my browser!
    so i guess there is a communication problem between netbeans an tomcat. Netbeans waits for a message from tomcat but tomcat doesn't send it..or netbeans doesn't understand it.
    But the story goes on:
    When i press the debug-button a second time it takes only a few seconds till i get the message: "Tomcat server port 8084 already in use". OF COURSE! Because Tomcat has already startet and can't be stoped by NetBeans.
    i'm trying to solve this problem for 4 days now, so i would be very happy if anyone has an idea where to start/continue the search...
    thanks,
    flo.
    some system-info:
    - windows vista business 32-bit
    - no firewall is running
    - AntiVir Personal Edition IS running
    - Yahoo Widgets Engine IS running
    - no other software is running
    and finally the tomcat-log:
    Using CATALINA_BASE: C:\Users\Administrator\.netbeans\5.5.1\apache-tomcat-5.5.17_base
    Using CATALINA_HOME: C:\Program Files\NetBeans\enterprise3\apache-tomcat-5.5.17
    Using CATALINA_TMPDIR: C:\Users\Administrator\.netbeans\5.5.1\apache-tomcat-5.5.17_base\temp
    Using JRE_HOME: C:\Program Files\Java\jdk1.5.0_12
    Listening for transport dt_shmem at address: tomcat_shared_memory_id
    21.09.2007 18:27:50 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
    INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.5.0_12\bin;.;C:\Windows\system32;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\ThinkPad\ConnectUtilities;C:\Program Files\Common Files\Teleca Shared;C:\Program Files\Common Files\Adobe\AGL;C:\Program Files\MySQL\MySQL Server 5.0\bin;C:\Program Files\cvsnt;
    21.09.2007 18:27:50 org.apache.coyote.http11.Http11BaseProtocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8084
    21.09.2007 18:27:50 org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 1862 ms
    21.09.2007 18:27:50 org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    21.09.2007 18:27:50 org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.17
    21.09.2007 18:27:50 org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    21.09.2007 18:27:53 org.apache.coyote.http11.Http11BaseProtocol start
    INFO: Starting Coyote HTTP/1.1 on http-8084
    21.09.2007 18:27:54 org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    21.09.2007 18:27:54 org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/31 config=null
    21.09.2007 18:27:54 org.apache.catalina.storeconfig.StoreLoader load
    INFO: Find registry server-registry.xml at classpath resource
    21.09.2007 18:27:54 org.apache.catalina.startup.Catalina start
    INFO: Server startup in 3626 ms

    As i wrote before, the same problem occured for me. I have found a solution which is : Go to tools menu and then select options . In the proxy info, select No Proxy.
    I hope this help you

  • Right problem with apache and tomcat

    Bonjour;
    I use a user login "apache" to stop/start Apache and tomcat. Because never launching apache et tomcat as root.
    But I have the following problem with apache (file error.log) :
    [Tue May  6 17:26:22 2003] [error] Connection "warpConnection" cannot connect
    [Tue May  6 17:26:22 2003] [error] Cannot open connection "warpConnection"
    [Tue May  6 17:27:01 2003] [error] Re-Trying to deploy connections
    As root the error msg does'nt exists (lost)
    Best regards;
    A+;

    Run it from the shell to see whats wrong:
    # httpd

  • Authentication problem with JWS and TOMCAT

    Hi everyone !
    I have a problem with Java Web Start (1.0.1) and Tomcat (4.0.4).
    I'm trying to call my application via Web server Tomcat with restricting access.
    My configuration is the following :
    The deployment descriptor web.xml is:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <mime-mapping>
    <extension>jar</extension>
    <mime-type>application/java-archive</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>java</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>jnlp</extension>
    <mime-type>application/x-java-jnlp-file</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>JNLP</extension>
    <mime-type>application/x-java-jnlp-file</mime-type>
    </mime-mapping>
    <!-- Define a Security Constraint on this Application -->
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Entire Application</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <!-- NOTE: This role is not present in the default users file -->
    <role-name>standard</role-name>
    </auth-constraint>
    </security-constraint>
    <!-- Define the Login Configuration for this Application -->
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>MY APPL</realm-name>
    </login-config>
    </web-app>
    And jnlp File is:
    <jnlp
    spec="1.0+"
    codebase="http://host:8080/Official/"
    href="Application.jnlp">
    <information>
    <title>Application release 0.10</title>
    <vendor> XXXX </vendor>
    <homepage href="/"/>
    <description>Application</description>
    <description kind="short">My Application</description>
    <icon href="Icon.gif"/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.3"/>
    <jar href="Jar1.jar"/>
    <jar href="Jar2.jar"/>
    <jar href="Jar3.jar"/>
    <jar href="Jar4.jar"/>
    <jar href="Jar5.jar"/>
    <jar href="Jar6.jar"/>
    <jar href="Jar7.jar"/>
    <jar href="Jar8.jar"/>
    <jar href="Jar9.jar"/>
    <jar href="Jar10.jar"/>
    <jar href="MyApplication.jar"/>
    </resources>
    <application-desc main-class="com.xxxx.tool.cm.MyApplication"/>
    </jnlp>
    With the above configuration the Java Web Start not work.
    I'm expecting the message box for insert username and password instead it returns the messagge error :
    An error occurred while launching/running the application.
    Vendor: XXXX
    Category: Download Error
    Unable to load resource: http://host:8080/Official/Application.jnlp
    The Exception error is:
    JNLPException[category: Download Error : Exception: java.lang.NullPointerException : LaunchDesc: null ]
         at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
         at com.sun.javaws.cache.DownloadProtocol.isLaunchFileUpdateAvailable(Unknown Source)
         at com.sun.javaws.LaunchDownload.getUpdatedLaunchDesc(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    I have tried to remove the restrict access in the deployment descriptor (web.xml) and java Web Start WORKS !!!!!!
    I'll appreciate any idea or hint!
    Thanks in advance

    Check this out
    http://forum.java.sun.com/thread.jsp?forum=38&thread=456250
    Mad Einstein

  • Loss of keyboard focus in Java appl running under linux

    I have a small sample program that replicates my problem. When this program is run a window is created. If you select File->New another instance of the program window is created. Now if you try to go back and bring to front the first window, keyboard focus is not
    transferred when run under linux. You can only type in the second window. The expected behavior does happen in Windows.
    > uname -a
    Linux watson 2.6.20-1.2933.fc6 #1 SMP Mon Mar 19 11:38:26 EDT 2007 i686 i686 i386 GNU/Linux
    java -versionjava version "1.5.0_11"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode, sharing)
    javac -versionjavac 1.5.0_11
    import java.awt.event.*;
    import javax.swing.*;
    class SwingWindow extends JFrame {
        SwingWindow() {
         super("SwingWindow");
         JMenuBar menuBar = new JMenuBar();     
            JMenu fileMenu = new JMenu("File");
            JMenuItem newItem = new JMenuItem("New");
            newItem.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent event) {
              SwingWindow.createAndShowGUI();
         fileMenu.add(newItem);
            menuBar.add(fileMenu);
            setJMenuBar(menuBar);
            setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);       
         JTextField text = new JTextField(200);
         getContentPane().add(text);
         pack();
         setSize(700, 275);
        public static void createAndShowGUI() {
            JFrame frame = new SwingWindow();
            frame.setVisible(true);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    You can implement the FocusListener interface. When
    the first JFrame gains focus, call
    text.requestFocusInWindow(). I hope this helps.The call requestFocusInWindow is not helping, perhaps even making it worse.
    The problem seems to be that I am in the situation where the call
    KeyboardFocusManager.getCurrentKeyboardFocusManager().getPermanentFocusOwner()
    is returning the expected Component. The problem is that the KeyListener class that is registered with the Component is not being called when a key is being pressed.
    The issue is that I have a component that has the keyboard focus, but the KeyListener class
    is not responding.
    This seems to be a linux only problem which makes it only mysterious.

  • Need to run RemoteDesktop from JSP file, WebServer Running in Linux.

    Hi All,
    i want to run a RemoteDesktop(.RDP) from a JSP page, webserver is running on Linux.
    Like i am having abc.rdp file, when i am invoking this file from the jsp, it is displaying the content of the abc.rdp file.
    instead of that i am using MIME, following is the snippet i am using.....
    String filepath=path+objId+".rdp";
    FileInputStream fis = new FileInputStream(filepath);
    System.out.println("     filepath               "+filepath);
    byte[] bytes = new byte[fis.available()];
    response.setContentLength(bytes.length);
    fis.read(bytes,0,bytes.length);
    javax.servlet.ServletOutputStream Pout = response.getOutputStream();
    //String string = new String(bytes);
    //Pout.println(string);
    Pout.println(bytes);
    Pout.flush();
    Pout.close();
    fis.close();
    the above code is asking me to save the .rdp file. But i want to run the .rdp file directly without asking me saving option.
    Your Views and Suggestions are valuble to me....
    Thanks
    Chiranjeevi.

    you need to configure the web browser to associate that particular file type with the appropriate action

  • Why do I need to restart Apache and Tomcat every time a java file is change

    If a java file is changed and complied the changes are not reflected if Tomcat is not restarted.
    The settings in server.xml are as:
    <!-- Tomcat Manager Context -->
    <Context path="/manager" docBase="manager" debug="0" privileged="true"/>
         <Context path="/cf" docBase="cf" debug="0" reloadable="false"/>
    Here "cf" is my Application folder under webapps. The reloadable property when set to "true" for standalone Tomcat on Windows98 reflects the changes for compiled java files without restarting Tomcat. But on Linux 7.1 with Apache 1.3.19 and Tomcat 4.0.3 this is not working.
    Also tried out with Manager Application of tomcat-users.xml with reloadable="false" as well as reloadable="true",
    But when I reload the application using the command
    http://servername:8080/manager/reload?path=/appli.name
    It tells me that the application is reloaded but changes in the java file are still not reflected.
    Also when reloaded through Manager Servlet, Only my load-on-startup servlet is reloaded, but other java classes are not.
    Is it neccessary to execute this reload command from the server itself. I m executing it from a remote m/c. and have mapped the application with a domain name virtually.
    Is it the case with Tomcat on Linux with Apache. Or is something going wrong on my part.
    Can someone Help out plz.
    Regards,
    Rupali

    or you can "touch" your web.xml file.
    touch web.xmlor that command is for *nix systems, not sure what the Windows command is.  But basically, when you edit the web.xml, even if it means updating the last modified time, it will restart only your application and you should see the changes.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • I just updated the software on my 3GS and now, my apps just open quickly then close....what should i do?

    I just updated my software, and now my apps won't work.  They just open the close quickly....I've done a force quit, but it stills doesn't work!  What can I do?

  • Adding a second household iMac under my owner name and iTunes account?

    We have 2 iMac's in the house. To simplify things, I added all the household iphones and ipads and ipods of the family only to my imac machine, and only under my itunes account. So when ever the family wants to add apps, movies, anything in itunes, I

  • Profit Center design by plant wise

    Hi Experts, My client is having central procurement unit and having 8 branches(warehouses) and they transfer the goods from head office to branch later on for their sale.And the legal requirement here is that cost is same across all warehouses and we

  • Purchase order - Freight vendor

    Hello guys, In PO, when we go in price condition details (Freight conditions), we have a field called 'Vendor' in case Freight Vendor is not the Vendor of the PO. Is this field can only be filled manually or is this a way to fill this field automatic

  • What's your Map ID philosophy?

    All, I've got my Map IDs working in my POC (yea!). Question is: What philosophy do YOU use to manage Map IDs for large projects? Do you simply append a prefix depending on the project? Do you use ranges of Map IDs for different topic areas? (E.g. 10x