MDX Parser doesn't work

Hello, everybody.
Standart TCP/IP connection named "MDX Parser" doesn't work. It says "timeout during allocate / CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456 Timeout dur".
When I try to run mdxsvr in command line it says that librfc32.dll could not be found.
And there is no such dll in the directory with mdxsvr, but there is a librfc32u.dll.
How can I solve this problem?
P.S.
My server parameters:
- IA64
- Windows 2003
- SAP NetWeaver 2004s
best regards,
Dmitry

Thanks for all of the input everyone. We too was experiencing the RFC failure on 2 new BI application servers. The good thing is we had other servers that worked fine. So we were able to copy the c:\windows\system32\librfc32.dll from one server that was working to the servers that were failing.
All of the posted helped me figure out that even though we are using 64Bit and unicode it actually need the librfc32.dll which appears to be non-unicode and of coarse 32bit. 
The real trick was implementing the MS "Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package ATL Security Update"
http://www.microsoft.com/downloads/en/details.aspx?familyid=766a6af7-ec73-40ff-b072-9112bab119c2&displaylang=en
Once I installed that MS patch I could successfully register the dll  "regsvr32 c:\windows\system32\librfc32.dll"
And then the RFC now tests from all application servers.
Just to recap, our issue was the MDX Parser worked from the 2 nodes of the cluster and 2 application servers, but the 2 new servers the loads would fail if it happen to run on that server. running the RFC from that specific server would fail.
Now all is good
Thanks again

Similar Messages

  • Parsing in Weblogic/jsp doesn't work; application-mode (command-line) works

    Hello-
    Parsing my XML file in Weblogic/jsp doesn't work, whereas it works
    in application-mode... (albeit on two different machines)
    Here are the parameters:
    server1:
    weblogic 6.0
    win2k server
    jre1.3
    my personal machine:
    ***no weblogic***
    win2k server
    jre1.3
    When I run my code as an application (command-line style) on my machine,
    parsing in my xml file works fine, and I can do a root.toString() and it
    dumps out the entire xml file, as desired.
    However, running my code inside weblogic (on server1) in JSP, parsing in
    my file and doing a root.toString() results in the following: [dmui: null]
    (where dmui is my root)
    (even though i'm running it on two different machines, i'm positive its the
    same code (the servers share a mapped drive)...
    So, I think its probably because I'm using a different parser, as
    specified by weblogic? There are no exceptions being thrown. Here's my
    (abbreviated) code, which is called either command line style or in a JSP:
    // Imports
    import org.w3c.dom.*;
    import org.w3c.dom.Document;
    import javax.xml.parsers.*;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    DocumentBuilderFactory docBuilderFactory =
    DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    mDocument = docBuilder.parse (inFile);
    myRoot.toString()
    -END
    Doing a System.getProperty("javax.xml.parsers.DocumentBuilderFactory")
    results in:
    server1 (weblogic/jsp):
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl"
    my machine (application-mode):
    null
    Does anyone have any ideas about how to get this work? Do I try to set it
    up so that they both use the same parser? Do I change the Weblogic parser?
    If so, to what? And how?
    Am I even close?
    Any help would be appreciated..
    Thanks, Clint
    "[email protected]" <[email protected]> wrote in message
    news:[email protected]...
    No problem, glad you got it worked out :)
    ~Ryan U.
    Jennifer wrote in message <[email protected]>...
    I completely missed setting the property(:-o), foolish mistake. That wasit. Thanks.
    "j.upton" <[email protected]> wrote:
    Jennifer,
    Personally I would get rid of import com.sun.xml.parser.* and use xerces
    which comes with WLS 6.0 now, unless like I said earlier you have a need
    to
    use the sun parser :) Try something like this with your code --I've put
    things to watch for as comments in the code.
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.w3c.dom.*;
    import java.io.FileInputStream;
    public class BasicDOM {
    public BasicDOM (String xmlFile) {
    try{
    FileInputStream inStream;
    Document document;
    /*You must specify a parser for jaxp. You can in a simple view
    think
    of this as being analogous to a driver used by JDBC or JNDI. If you are
    using this in the context of a servlet or JSP and have set an XML
    registry
    with the console this happens automatically. You can also invoke it in
    the
    context of an application on the command line using the -D switch. */
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    >>>
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
    // create a document factory
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    // specify validating or non-validating parser
    dbf.setValidating(true);
    // obtain a factory
    DocumentBuilder db = dbf.newDocumentBuilder();
    // create a document from the factory
    inStream = new FileInputStream(xmlFile);
    document = db.parse(inStream);
    }//try
    catch (Exception e)
    System.out.println("Unexpected exception reading document!"
    +e);
    System.exit (0);
    }//catch
    }//BasicDom
    // Main Method
    public static void main (String[] args) {
    if (args.length < 1)
    System.exit(1); file://or you can be more verbose
    new BasicDOM(args[0]);
    }//class
    =============================================
    That will give you a basic DOM you can manipulate and parse it fromthere.
    BTW this code
    compiled and ran on WLS 6.0 under Windows 2000.
    Let me know if this helped or you still are having trouble.
    ~Ryan U.
    "Jennifer" <[email protected]> wrote in message
    news:[email protected]...
    Actually I included com.sun.xml.parser.* as one last febble attempt toget
    it working.
    And as for source code, I included the code. If I just put that oneline
    of code
    in, including the imports, it fails giving me an error listed above inthe
    subject
    line. Here is the code again:
    package examples.xml.http;
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.*;
    import java.util.*;
    import java.net.*;
    import org.xml.sax.*;
    import java.io.*;
    public class BasicDOM {
    static Document document;
    public BasicDOM (String xmlFile) {
    try {
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    } catch (FactoryConfigurationError e){
    System.err.println(e.getException());
    e.printStackTrace();
    // Main Method
    public static void main (String[] args) {
    BasicDOM basicDOM = new BasicDOM (args[0]);

    Hi, Rob
    Does it work in WL9.2?
    It seems I do it exactly as the explained at http://edocs.bea.com/wls/docs81/programming/classloading.html - and it fails :o(.
    I try to run my app.ear with WL9.2 There are 2 components in it: webapp and mdb. The webapp/WEB-INF contains weblogic.xml:
    <weblogic-web-app>
    <container-descriptor>     
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    </weblogic-web-app>
    Mdb is expected to run in the same mode, i.e. to prefer the webapp/WEB-INF/*.jar over the parent Weblogic classloader. To do so I add the weblogic-application.xml to the app.ear!/META-INF:
    <weblogic-application>
    <classloader-structure>
    <module-ref>
    <!-- reminder: this webapp contains
    prefer-web-inf-classes -->
    <module-uri>webapp</module-uri>
    </module-ref>
    <classloader-structure>
    <module-ref>
    <module-uri>mdb.jar</module-uri>
    </module-ref>
    </classloader-structure>
    </classloader-structure>
    </weblogic-application>
    Now, when classloader-structure specified, both webabb and mdb prefer the weblogic root loader as if prefer-web-inf-classes not defined at all.

  • PLEASE : JAVA PARSER SCHEMA XML doesn't work

    Hi,
    I search how can I parse a xml document with schema, which works with Sun'SAX in JAVA.
    I have no real idea to it, but I think that JAXP can work (is it a good idea?)
    I have found this exemple :
    http://dataml.net/articles/ValidateXMLSchema/part1.htm
    This example is often posted in the forum, but for me it doesn't work, and you? have you had a probleme with it?
    Have you others examples which work or tutorials for parse xml with schema with SAX in java?
    Furthermore what are the specifics recommandations to install JAXP ?
    Thanks a lots.

    Nobody can help me?
    please

  • MDX Parser RFC is not working

    Hi,
    I am getting the following error when I test connect the MDX Parser RFC destination.
    Logon -> Cancel
    Error Details -> connecton closed (no data)
    I have upgraded the latest mdxsvr.exe and mdxpars.dll in the kernel directory and also got the librfc32.dll in the kernel.  I got updated librfc32.dll in the registry also.  I checked various SAP notes, but none helped.
    The main problem was when starting MDX parser:
    ===============================
    Error occurred when starting the parser: connection closed (no data)
    Message no. BRAINOLAPAPI011
    Diagnosis
    Failed to start the MDX parser.
    System Response
    connection closed (no data)
    =================================
    Pls give any inputs on this.
    Thanks,
    Abdul

    this could be because the RFC destination host is not maintained in the hosts file on the application servers... check that you can reach the host and see if that fix your issue.
    Regards
    Juan

  • File.delete() and File.deleteOnExit() doesn't work consistently..

    I am seeing some odd behavior with trying to delete files that were opened. Usually just doing new File("file.txt").delete() would work. However, in this case, I have created an input stream to the file, read it in, saved it to another location (copied it), and now I am trying to delete it.
    The odd thing is, in my simple application, the user can work with one file at a time, but I move "processed" files to a lower pane in a swing app. When they exit it, it then archives all the files in that lower pane. Usually every file but the last one opened deletes. However, I have seen odd behavior where by some files don't delete, sometimes all of them wont delete. I tried the deleteOnExit() call which to me should be done by the JVM after it has released all objects such that they don't matter and the JVM ignores any object refs and directly makes a call (through JNI perhaps) to the underlying OS to delete the file. This doesn't work either.
    I am at a loss as to why sometimes some files delete, and other times they don't. In my processing code, I always close the input stream and set its variable to null. So I am not sure how it is possible a reference could still be held to the object representing the file on disk.

    and then, in the other class
      public int cdplayerINIToMMCD(File aDatabase, String thePassword) throws IllegalArgumentException {
         /*---------DATA---------*/
         String dbLogin, dbPassword;
         JFileChooser fc;
         INIFileFilter ff;
         int dialogReturnVal;
         String nameChosen;
         File INIFile;
         ProgressMonitor progressMonitor;
         BufferedReader inFileStream;
         String oneLine;
         int totalLines = 0;
         int linesParsed = 0;
         boolean openDBResult;
         int hasPassword;
         if ((aDatabase == null) || (!aDatabase.exists()) ||
            (FileManagement.verifyMMCD(aDatabase) == FileManagement.VERIFY_FAILED)) {
            throw new IllegalArgumentException();       
         else { 
            currentDB = aDatabase;
            if(thePassword == null) {
              dbPassword = "";
            else { dbPassword = thePassword; }
            dbLogin = dbPassword; //For MSAccess dbLogin == dbPassword
         //Ask the user for the cdplayer.ini file.
         //Create a file chooser
         if (System.getProperty("os.name").indexOf("Windows") > -1) {
            fc = new JFileChooser("C:\\Windows");
         else {
            fc = new JFileChooser();     
         fc.setMultiSelectionEnabled(false);
         fc.setDragEnabled(false);
         //Create a new FileFilter
         ff = new INIFileFilter();
         //Add this filter to our File chooser.
         fc.addChoosableFileFilter(ff);
         fc.setFileFilter(ff);
         //Ask the user to locate it.
         do {
            dialogReturnVal = fc.showOpenDialog(mainFrame);
            if (dialogReturnVal == JFileChooser.APPROVE_OPTION) {
               nameChosen = fc.getSelectedFile().getAbsolutePath();
               if(nameChosen.toLowerCase().endsWith(INIFileFilter.FILE_TYPE)) { INIFile=new File(nameChosen); }
               else { INIFile = new File(nameChosen+INIFileFilter.FILE_TYPE); }
               if (!INIFile.exists()) {
                  continue; //If the name specified does not exist, ask again.
               else { break; }
            else { //User clicked cancel in the open dialog.
               //Ignore what we've done so far.
               return(IMPORT_ABORTED);
         } while(true); //Keep asking until cancelled or a valid file is specified.
         //Determine how many lines will be parsed.
         try {
           //Open the INI for counting
           inFileStream = new BufferedReader(new InputStreamReader(new FileInputStream(INIFile)));
           while ((inFileStream.readLine()) != null) {
               totalLines++;
           //Close the INI file.
           inFileStream.close();
         } catch (IOException ex) { return(IMPORT_FAILED); }
         //Make a progress monitor that will show progress while importing.
         progressMonitor = new ProgressMonitor(mainFrame, "Importing file","", 0, totalLines);
         progressMonitor.setProgress(0);
         progressMonitor.setMillisToPopup(100);
         progressMonitor.setMillisToDecideToPopup(1);
         //Make our DatabaseHandler to insert results to the database.
         dbh = new DatabaseHandler();
         //Open the database connection.
         do {
           try {
              openDBResult = dbh.openDBConnection(currentDB, dbLogin, dbPassword);
           } catch(JDBCException ex) { return(IMPORT_JDBC_ERROR); } //OUCH! can't write anything.
             catch(SQLException ex) {
                 openDBResult = DatabaseHandler.OPNCN_FAILED;
                 //Can not open the database. Is it password protected?
                 hasPassword = JOptionPane.showConfirmDialog(mainFrame, "Could not open the database. "+
                                                "The password is wrong or you have not specified it.\n"+
                           "Do you want to enter one now?", "New password?", JOptionPane.YES_NO_OPTION);
                if (hasPassword == MMCDCatalog.DLG_OPTN_YES) {
                   dbPassword = JOptionPane.showInputDialog(mainFrame, "Please enter your "+
                                                              "password for the DataBase:");
                    dbLogin = dbPassword; //For MSAccess, login == password                                                    
                //If the password wasn't the problem, then we can't help it.
                else { return(IMPORT_FAILED); }
         } while(openDBResult != DatabaseHandler.OPNCN_OK); //If it is OK, no exception thrown.
         //Import the ini file
         try {
            //Open the INI file for parsing.
            inFileStream = new BufferedReader(new InputStreamReader(new FileInputStream(INIFile)));
            //Read and parse the INI file. Save entries once parsed.
            while ((oneLine = inFileStream.readLine()) != null) {
               parseLine(oneLine);
               linesParsed++;
               progressMonitor.setNote("Entries imported so far: "+entriesImported);
               progressMonitor.setProgress(linesParsed);
               if ((progressMonitor.isCanceled()) || (linesParsed == progressMonitor.getMaximum())) {
                  progressMonitor.close();
                  break;
            //Close the INI file.
            inFileStream.close();
         } catch (IOException ex) {
              //Make absolutely sure the progressMonitor has disappeared
                progressMonitor.close();
                if (dbh.closeDBConnection() != DatabaseHandler.CLSCN_OK) {
                 JOptionPane.showMessageDialog(mainFrame, "Error while reading the INI file.\n"+
                    "Error while attempting to close the database", "Error", JOptionPane.INFORMATION_MESSAGE);
              else {
                 JOptionPane.showMessageDialog(mainFrame, "Error while reading the INI file.",
                                                    "Error", JOptionPane.INFORMATION_MESSAGE);     
                return(IMPORT_FAILED);
         //Make absolutely sure the progressMonitor has disappeared
         progressMonitor.close();
         //Close the database connection
         if (dbh.closeDBConnection() != DatabaseHandler.CLSCN_OK) {
            JOptionPane.showMessageDialog(mainFrame, "Error while closing the database after import.",
                                          "Error", JOptionPane.INFORMATION_MESSAGE);
         //Did the user cancel?
         if (totalLines != linesParsed) {
            return(IMPORT_ABORTED);     
         //Success!
         //Everything ok. Return the number of entries imported.
         return(entriesImported);
      }

  • Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through j

    Certainly I realized that Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through jquery or javascript.
    e.g.
    In Felix Console , in Apache Sling JCR Resource Resolver configuration I have added following mapping.
    /content/myproject/-/
    So If any anchor tag is there like <a href="/content/myproject/en.html"> click me </a> then it will be mapped to "/en.html" automatically.
    But the problem is there in following scenario.
    I have an anchor tag as follows.
    <a href="#" id="test"> click here </a>
    And I am assigning the href to anchor through JQUERY.
    <script>
    $("#test").attr("href","/content/myproject/en.html");
    </script>
    Ideally this should have been mapped to "/en.html".
    But it is not mapping to "/en.html". It still shows "/content/myproject/en.html".
    How to resolve this.
    Thanks,
    Sai

    In a servlet you have access to the resourceResolver so if you know which attributes contain links then it's relatively easy to apply resourceResolver.map to those links.
    Your challenge is clearly how do you know which attributes are links and which aren't. Its is the same challenge that makes parsing the response and rewriting it on the way out difficult - the JSON doesn't have any semantic meaning so how do identify which attributes require rewriting. There really is no good answer ot that question in my experience - all the options have down sides.
    Create some convention - all attributes matching this pattern X get mapped before being converted to JSON (could be attributes whose name ends in link, or it could a convention applied to the value of the attribute - if the attribute is a string that starts with /content apply the resource resolver mapping. In this case you have train your developers to follow this convention which is the down side.
    Create some configurable list of attribute names that require mapping. This is brittle, requires training and is easy to break.
    Implement a client side version of the resource resolver mapping. It wouldn't be as full proof as server side mapping (because that takes into account but you could make it work for simple logic like stripping of /content/site/en. If ou are just trying to solve the simple version of this issue - stripping off the top of the repository path this might be your best option.
    Not worry about it and set up Apache 301 redirects that catch any long URLs and redirect them to short URLs (so configure apache to look for any URL matching /content/site/en and strip off /content/site/en and do a 301 redirect to the shortened URL. You end up with a lot of extra HTTP request because of all the 301s but it would work (I wouldn't recommend this option - but it is possible).

  • [SOLVED] - xset at startup doesn't work

    I use the following command to set my screensaver options
    xset dpms 30 60 300
    After reading the Arch wiki, I found out that this can be made permanent by adding this to the xorg.conf or putting it in ~/.xprofile
    Contents of xorg.conf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder75) Tue Dec 8 21:04:28 PST 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "StandbyTime" "2"
    Option "SuspendTime" "3"
    Option "OffTime" "5"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Dell Inspiron 1520 WXGA+ LCD"
    VendorName "Dell"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoLogo" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/input/mouse0"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "100"
    Option "MinSpeed" "0.06"
    Option "MaxSpeed" "0.12"
    Option "AccelFactor" "0.0010"
    Option "SHMConfig" "on"
    Option "CircularScrolling" "1"
    Option "CircScrollTrigger" "0"
    EndSection
    Section "ServerFlags"
    Option "DontZap" "false"
    Option "BlankTime" "0.1"
    Option "StandbyTime" "0.5"
    Option "SuspendTime" "1"
    Option "OffTime" "5"
    EndSection
    Contents of ~/.xprofile
    xset dpms 30 60 300
    I even added this to crontab
    0 * * * * ~/Wallpapers/change-background-folder.py
    0 * * * * /usr/bin/xset s 30
    0 * * * * /usr/bin/xset dpms 60 120 300
    @reboot ID=screensaver AFTER=2m /usr/bin/xset s 30
    @reboot ID=monitor AFTER=2m /usr/bin/xset dpms 60 120 300
    @reboot ID=vu AFTER=1m vuze
    Still after doing all this, when I give xset q after a reboot, I get
    [theta@boolean-pc ~]$ xset q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000000
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: off 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 30
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 3/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 600 cycle: 600
    Colors:
    default colormap: 0x20 BlackPixel: 0 WhitePixel: 16777215
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi/,/usr/share/fonts/75dpi/,built-ins
    DPMS (Energy Star):
    Standby: 0 Suspend: 0 Off: 0
    DPMS is Enabled
    Monitor is On
    Font cache:
    Server does not have the FontCache Extension
    The parameters are still all 0.
    Please suggest a solution.
    Apoorv
    Last edited by theta (2011-08-02 15:56:06)

    jasonwryan wrote:
    If you have set up your .xinitrc the way karol suggests and it still doesn't work, you could delay it kicking in until X has finished loading
    (sleep 15s && xset dpms 30 60 300) &
    exec yourwm
    That may get around the problem bernarcher describes...
    Thank you! This works very well for me.
    It's the only way I can get it to work.
    For the records, so the smart people can find the problem, here is my xorg.conf:
    Section "ServerLayout"
    Identifier "ServerLayout0"
    Screen 0 "BenQ" 0 0
    #Option "BlankTime" "0"
    Option "StandbyTime" "10"
    Option "SuspendTime" "20"
    Option "OffTime" "30"
    EndSection
    Section "Screen"
    Identifier "BenQ"
    Device "Intel4000"
    Monitor "HDMI2"
    DefaultDepth 24
    SubSection "Display"
    #Depth "24"
    EndSubSection
    EndSection
    Section "Monitor"
    Identifier "HDMI2"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Intel4000"
    Driver "intel"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "sna"
    Option "TearFree" "true"
    EndSection
    # Read and parsed by systemd-localed. It's probably wise not to edit this manually too freely.
    Section "InputClass"
    Identifier "system-keyboard"
    MatchIsKeyboard "on"
    Option "XkbLayout" "se"
    EndSection
    # Catch-all evdev loader for udev-based systems
    # We don't simply match on any device since that also adds accelerometers
    # and other devices that we don't really want to use. The list below
    # matches everything but joysticks.
    Section "InputClass"
    Identifier "evdev pointer catchall"
    MatchIsPointer "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev tablet catchall"
    MatchIsTablet "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchscreen catchall"
    MatchIsTouchscreen "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Xorg seems to not care about my settings in xorg.conf and sets DPMS values to "0":
    $ xset -q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000002
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: on 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 33
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 2/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 0 cycle: 0
    Colors:
    default colormap: 0x22 BlackPixel: 0x0 WhitePixel: 0xffffff
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,built-ins
    DPMS (Energy Star):
    Standby: 0 Suspend: 0 Off: 0
    DPMS is Enabled
    Monitor is On
    And the xorg log:
    [ 17738.153]
    X.Org X Server 1.15.1
    Release Date: 2014-04-13
    [ 17738.194] X Protocol Version 11, Revision 0
    [ 17738.208] Build Operating System: Linux 3.14.0-4-ARCH x86_64
    [ 17738.223] Current Operating System: Linux arch6 3.14.1-1-ARCH #1 SMP PREEMPT Mon Apr 14 20:40:47 CEST 2014 x86_64
    [ 17738.223] Kernel command line: console=tty0 xen-pciback.hide=(01:00.0)(01:00.1)(03:00.0)(02:00.0)(00:14.0)(00:1d.0) root=/dev/VG/Aroot rw
    [ 17738.254] Build Date: 14 April 2014 08:39:09AM
    [ 17738.269]
    [ 17738.285] Current version of pixman: 0.32.4
    [ 17738.314] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 17738.314] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 17738.375] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 29 22:10:19 2014
    [ 17738.390] (==) Using config file: "/etc/X11/xorg.conf"
    [ 17738.406] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 17738.406] (==) ServerLayout "ServerLayout0"
    [ 17738.406] (**) |-->Screen "BenQ" (0)
    [ 17738.406] (**) | |-->Monitor "HDMI2"
    [ 17738.406] (**) | |-->Device "Intel4000"
    [ 17738.406] (**) Option "StandbyTime" "10"
    [ 17738.406] (**) Option "SuspendTime" "20"
    [ 17738.406] (**) Option "OffTime" "30"
    [ 17738.406] (==) Automatically adding devices
    [ 17738.406] (==) Automatically enabling devices
    [ 17738.406] (==) Automatically adding GPU devices
    [ 17738.406] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 17738.406] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 17738.406] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 17738.406] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 17738.406] (II) Loader magic: 0x804c80
    [ 17738.406] (II) Module ABI versions:
    [ 17738.406] X.Org ANSI C Emulation: 0.4
    [ 17738.406] X.Org Video Driver: 15.0
    [ 17738.406] X.Org XInput driver : 20.0
    [ 17738.406] X.Org Server Extension : 8.0
    [ 17738.406] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 17738.408] (--) PCI:*(0:0:2:0) 8086:0162:1458:d000 rev 9, Mem @ 0xf4400000/4194304, 0xc0000000/268435456, I/O @ 0x0000f000/64
    [ 17738.408] (--) PCI: (0:1:0:0) 1002:67b1:1002:0b00 rev 0, Mem @ 0xd0000000/268435456, 0xe0000000/8388608, 0xf4b00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 17738.408] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 17738.424] Initializing built-in extension Generic Event Extension
    [ 17738.439] Initializing built-in extension SHAPE
    [ 17738.454] Initializing built-in extension MIT-SHM
    [ 17738.468] Initializing built-in extension XInputExtension
    [ 17738.482] Initializing built-in extension XTEST
    [ 17738.495] Initializing built-in extension BIG-REQUESTS
    [ 17738.509] Initializing built-in extension SYNC
    [ 17738.523] Initializing built-in extension XKEYBOARD
    [ 17738.536] Initializing built-in extension XC-MISC
    [ 17738.548] Initializing built-in extension SECURITY
    [ 17738.561] Initializing built-in extension XINERAMA
    [ 17738.573] Initializing built-in extension XFIXES
    [ 17738.585] Initializing built-in extension RENDER
    [ 17738.597] Initializing built-in extension RANDR
    [ 17738.608] Initializing built-in extension COMPOSITE
    [ 17738.620] Initializing built-in extension DAMAGE
    [ 17738.631] Initializing built-in extension MIT-SCREEN-SAVER
    [ 17738.643] Initializing built-in extension DOUBLE-BUFFER
    [ 17738.654] Initializing built-in extension RECORD
    [ 17738.665] Initializing built-in extension DPMS
    [ 17738.677] Initializing built-in extension Present
    [ 17738.688] Initializing built-in extension DRI3
    [ 17738.700] Initializing built-in extension X-Resource
    [ 17738.711] Initializing built-in extension XVideo
    [ 17738.722] Initializing built-in extension XVideo-MotionCompensation
    [ 17738.734] Initializing built-in extension XFree86-VidModeExtension
    [ 17738.746] Initializing built-in extension XFree86-DGA
    [ 17738.757] Initializing built-in extension XFree86-DRI
    [ 17738.769] Initializing built-in extension DRI2
    [ 17738.769] (II) "glx" will be loaded by default.
    [ 17738.769] (II) LoadModule: "dri2"
    [ 17738.769] (II) Module "dri2" already built-in
    [ 17738.769] (II) LoadModule: "glamoregl"
    [ 17738.769] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 17738.770] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 17738.770] compiled for 1.15.0, module version = 0.6.0
    [ 17738.770] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 17738.770] (II) LoadModule: "glx"
    [ 17738.770] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 17738.770] (II) Module glx: vendor="X.Org Foundation"
    [ 17738.770] compiled for 1.15.1, module version = 1.0.0
    [ 17738.771] ABI class: X.Org Server Extension, version 8.0
    [ 17738.771] (==) AIGLX enabled
    [ 17738.782] Loading extension GLX
    [ 17738.782] (II) LoadModule: "intel"
    [ 17738.782] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 17738.782] (II) Module intel: vendor="X.Org Foundation"
    [ 17738.783] compiled for 1.15.0, module version = 2.99.911
    [ 17738.783] Module class: X.Org Video Driver
    [ 17738.783] ABI class: X.Org Video Driver, version 15.0
    [ 17738.783] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 17738.783] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 17738.783] (++) using VT number 1
    [ 17738.783] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 17738.783] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    [ 17738.783] (**) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 17738.783] (==) intel(0): RGB weight 888
    [ 17738.783] (==) intel(0): Default visual is TrueColor
    [ 17738.783] (**) intel(0): Option "AccelMethod" "sna"
    [ 17738.783] (**) intel(0): Option "TearFree" "true"
    [ 17738.783] (**) intel(0): Framebuffer tiled
    [ 17738.784] (**) intel(0): Pixmaps tiled
    [ 17738.784] (**) intel(0): "Tear free" enabled
    [ 17738.784] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 17738.784] (II) intel(0): Output VGA1 using monitor section HDMI2
    [ 17738.784] (II) intel(0): Output HDMI1 has no monitor section
    [ 17738.784] (II) intel(0): Output DP1 has no monitor section
    [ 17738.784] (II) intel(0): Output HDMI2 using monitor section HDMI2
    [ 17738.784] (II) intel(0): Output DP2 has no monitor section
    [ 17738.784] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 17738.784] (--) intel(0): Output HDMI2 using initial mode 1920x1080 on pipe 0
    [ 17738.784] (==) intel(0): DPI set to (96, 96)
    [ 17738.784] (II) Loading sub module "dri2"
    [ 17738.784] (II) LoadModule: "dri2"
    [ 17738.784] (II) Module "dri2" already built-in
    [ 17738.784] (==) Depth 24 pixmap format is 32 bpp
    [ 17738.784] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
    [ 17738.784] (==) intel(0): Backing store enabled
    [ 17738.784] (==) intel(0): Silken mouse enabled
    [ 17738.784] (II) intel(0): HW Cursor enabled
    [ 17738.784] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 17738.784] (**) intel(0): DPMS enabled
    [ 17738.784] (II) intel(0): [DRI2] Setup complete
    [ 17738.784] (II) intel(0): [DRI2] DRI driver: i965
    [ 17738.784] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 17738.784] (II) intel(0): direct rendering: DRI2 Enabled
    [ 17738.784] (==) intel(0): hotplug detection: "enabled"
    [ 17738.784] (--) RandR disabled
    [ 17738.789] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 17738.789] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 17738.789] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 17738.789] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 17738.789] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 17738.789] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 17738.789] (II) AIGLX: Loaded and initialized i965
    [ 17738.789] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 17738.791] (II) intel(0): switch to mode [email protected] on HDMI2 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 17738.801] (II) intel(0): Setting screen physical size to 508 x 285
    [ 17738.839] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 17738.839] (**) Power Button: Applying InputClass "system-keyboard"
    [ 17738.839] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 17738.839] (II) LoadModule: "evdev"
    [ 17738.839] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 17738.840] (II) Module evdev: vendor="X.Org Foundation"
    [ 17738.840] compiled for 1.15.0, module version = 2.8.2
    [ 17738.840] Module class: X.Org XInput Driver
    [ 17738.840] ABI class: X.Org XInput driver, version 20.0
    [ 17738.840] (II) Using input driver 'evdev' for 'Power Button'
    [ 17738.840] (**) Power Button: always reports core events
    [ 17738.840] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 17738.840] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 17738.840] (--) evdev: Power Button: Found keys
    [ 17738.840] (II) evdev: Power Button: Configuring as keyboard
    [ 17738.840] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 17738.840] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 17738.840] (**) Option "xkb_rules" "evdev"
    [ 17738.840] (**) Option "xkb_model" "pc104"
    [ 17738.840] (**) Option "xkb_layout" "se"
    [ 17738.870] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 17738.870] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 17738.870] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 17738.870] (II) Using input driver 'evdev' for 'Video Bus'
    [ 17738.870] (**) Video Bus: always reports core events
    [ 17738.870] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 17738.871] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 17738.871] (--) evdev: Video Bus: Found keys
    [ 17738.871] (II) evdev: Video Bus: Configuring as keyboard
    [ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input2/event2"
    [ 17738.871] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 17738.871] (**) Option "xkb_rules" "evdev"
    [ 17738.871] (**) Option "xkb_model" "pc104"
    [ 17738.871] (**) Option "xkb_layout" "se"
    [ 17738.871] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 17738.871] (**) Power Button: Applying InputClass "system-keyboard"
    [ 17738.871] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 17738.871] (II) Using input driver 'evdev' for 'Power Button'
    [ 17738.871] (**) Power Button: always reports core events
    [ 17738.871] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 17738.871] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 17738.871] (--) evdev: Power Button: Found keys
    [ 17738.871] (II) evdev: Power Button: Configuring as keyboard
    [ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 17738.871] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 17738.871] (**) Option "xkb_rules" "evdev"
    [ 17738.871] (**) Option "xkb_model" "pc104"
    [ 17738.871] (**) Option "xkb_layout" "se"
    [ 17738.871] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event3)
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
    [ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
    [ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event3"
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
    [ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/0003:045E:0750.0001/input/input5/event3"
    [ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 9)
    [ 17738.872] (**) Option "xkb_rules" "evdev"
    [ 17738.872] (**) Option "xkb_model" "pc104"
    [ 17738.872] (**) Option "xkb_layout" "se"
    [ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event4)
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
    [ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
    [ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event4"
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Using mtdev for this device
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found 1 mouse buttons
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found scroll wheel(s)
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found relative axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute multitouch axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found x and y absolute axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Forcing relative x/y axes to exist.
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as mouse
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Adding scrollwheel support
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: YAxisMapping: buttons 4 and 5
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.1/0003:045E:0750.0002/input/input6/event4"
    [ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 10)
    [ 17738.872] (**) Option "xkb_rules" "evdev"
    [ 17738.872] (**) Option "xkb_model" "pc104"
    [ 17738.872] (**) Option "xkb_layout" "se"
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: initialized for relative axes.
    [ 17738.873] (WW) evdev: Microsoft Wired Keyboard 600: ignoring absolute axes.
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) keeping acceleration scheme 1
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration profile 0
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration factor: 2.000
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration threshold: 4
    [ 17738.873] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/js0)
    [ 17738.873] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.873] (II) No input driver specified, ignoring this device.
    [ 17738.873] (II) This device may have been added with another device file.
    [ 17738.873] (II) config/udev: Adding input device A..... G3 (/dev/input/event5)
    [ 17738.873] (**) A..... G3: Applying InputClass "evdev pointer catchall"
    [ 17738.873] (II) Using input driver 'evdev' for 'A..... G3'
    [ 17738.873] (**) A..... G3: always reports core events
    [ 17738.873] (**) evdev: A..... G3: Device: "/dev/input/event5"
    [ 17738.873] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
    [ 17738.873] (--) evdev: A..... G3: Found 12 mouse buttons
    [ 17738.873] (--) evdev: A..... G3: Found scroll wheel(s)
    [ 17738.873] (--) evdev: A..... G3: Found relative axes
    [ 17738.873] (--) evdev: A..... G3: Found x and y relative axes
    [ 17738.873] (II) evdev: A..... G3: Configuring as mouse
    [ 17738.873] (II) evdev: A..... G3: Adding scrollwheel support
    [ 17738.873] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
    [ 17738.873] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.873] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/0003:E0FF:0002.0003/input/input7/event5"
    [ 17738.873] (II) XINPUT: Adding extended input device "A..... G3" (type: MOUSE, id 11)
    [ 17738.873] (II) evdev: A..... G3: initialized for relative axes.
    [ 17738.873] (**) A..... G3: (accel) keeping acceleration scheme 1
    [ 17738.873] (**) A..... G3: (accel) acceleration profile 0
    [ 17738.873] (**) A..... G3: (accel) acceleration factor: 2.000
    [ 17738.873] (**) A..... G3: (accel) acceleration threshold: 4
    [ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/mouse0)
    [ 17738.874] (II) No input driver specified, ignoring this device.
    [ 17738.874] (II) This device may have been added with another device file.
    [ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/event6)
    [ 17738.874] (**) A..... G3: Applying InputClass "system-keyboard"
    [ 17738.874] (**) A..... G3: Applying InputClass "evdev keyboard catchall"
    [ 17738.874] (II) Using input driver 'evdev' for 'A..... G3'
    [ 17738.874] (**) A..... G3: always reports core events
    [ 17738.874] (**) evdev: A..... G3: Device: "/dev/input/event6"
    [ 17738.874] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
    [ 17738.874] (--) evdev: A..... G3: Found 1 mouse buttons
    [ 17738.874] (--) evdev: A..... G3: Found scroll wheel(s)
    [ 17738.874] (--) evdev: A..... G3: Found relative axes
    [ 17738.874] (II) evdev: A..... G3: Forcing relative x/y axes to exist.
    [ 17738.874] (--) evdev: A..... G3: Found absolute axes
    [ 17738.874] (II) evdev: A..... G3: Forcing absolute x/y axes to exist.
    [ 17738.874] (--) evdev: A..... G3: Found keys
    [ 17738.874] (II) evdev: A..... G3: Configuring as mouse
    [ 17738.874] (II) evdev: A..... G3: Configuring as keyboard
    [ 17738.874] (II) evdev: A..... G3: Adding scrollwheel support
    [ 17738.874] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
    [ 17738.874] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.874] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1/0003:E0FF:0002.0004/input/input8/event6"
    [ 17738.874] (II) XINPUT: Adding extended input device "A..... G3" (type: KEYBOARD, id 12)
    [ 17738.874] (**) Option "xkb_rules" "evdev"
    [ 17738.874] (**) Option "xkb_model" "pc104"
    [ 17738.874] (**) Option "xkb_layout" "se"
    [ 17738.874] (II) evdev: A..... G3: initialized for relative axes.
    [ 17738.874] (WW) evdev: A..... G3: ignoring absolute axes.
    [ 17738.874] (**) A..... G3: (accel) keeping acceleration scheme 1
    [ 17738.874] (**) A..... G3: (accel) acceleration profile 0
    [ 17738.874] (**) A..... G3: (accel) acceleration factor: 2.000
    [ 17738.874] (**) A..... G3: (accel) acceleration threshold: 4
    [ 17738.874] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event13)
    [ 17738.874] (II) No input driver specified, ignoring this device.
    [ 17738.874] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event12)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event11)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event10)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event9)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event8)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event7)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17738.876] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event14)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17738.876] (II) config/udev: Adding input device PC Speaker (/dev/input/event15)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17739.315] (II) intel(0): EDID vendor "BNQ", prod id 32517
    [ 17739.315] (II) intel(0): Using EDID range info for horizontal sync
    [ 17739.315] (II) intel(0): Using EDID range info for vertical refresh
    [ 17739.315] (II) intel(0): Printing DDC gathered Modelines:
    [ 17739.315] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 17739.315] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 17739.315] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 17739.315] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 17739.316] (II) intel(0): Modeline "640x480"x100.0 43.16 640 680 744 848 480 481 484 509 -hsync +vsync (50.9 kHz e)
    [ 17739.316] (II) intel(0): Modeline "640x480"x120.0 52.41 640 680 744 848 480 481 484 515 -hsync +vsync (61.8 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x100.0 68.18 800 848 936 1072 600 601 604 636 -hsync +vsync (63.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x0.0 73.25 800 848 880 960 600 603 607 636 +hsync -vsync (76.3 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1024x768"x100.0 113.31 1024 1096 1208 1392 768 769 772 814 -hsync +vsync (81.4 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1024x768"x0.0 115.50 1024 1072 1104 1184 768 771 775 813 +hsync -vsync (97.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x900"x0.0 182.75 1440 1488 1520 1600 900 903 909 953 +hsync -vsync (114.2 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x60.0 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync (67.1 kHz e)
    [ 17739.316] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x240"x0.0 27.00 1440 1478 1602 1716 240 244 247 262 -hsync -vsync (15.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x288"x0.0 27.00 1440 1464 1590 1728 288 290 293 312 -hsync -vsync (15.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
    It would be nice to find out why the settings was being set to "0".
    Last edited by Sne (2014-04-29 20:40:50)

  • [Solved] Network doesn't work after hibernate?

    Hello!  This is my first legit Linux install so excuse me if I'm a bit slow.  I installed Arch last night and everything went smoothly.  However, after I tested out hibernate on my machine, the network doesn't seem to work.  Just prior to the hibernate, I installed Pidgin and Skype but they worked alright, so I think that the hibernate caused a problem on eth0.
    I have an Asus P8Z68-V Pro motherboard with an Intel 82579V Gigabit Ethernet Controller that's using the e1000e driver.  Running "dmesg | grep e1000e" says that it is up.
    I'm not entirely clear here, but from reading, I think that I have several ways of connecting to the network, including network, dhcpcd, networkmanager, and wicd.  I am using wicd so I did the following (or at least I think I am only using wicd):
    #rc.d stop network
    #rc.d stop dhcpcd
    #rc.d stop networkmanager
    Similarly, I put a ! in front of network in rc.conf:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="UTC"
    TIMEZONE="America/New_York"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MODULES=()
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="Vicious"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    # interface=eth0
    # address=192.168.0.2
    # netmask=255.255.255.0
    # broadcast=192.168.0.255
    # gateway=192.168.0.1
    # DHCP example
    # interface=eth0
    # address=
    # netmask=
    # gateway=
    interface=eth0
    address=
    netmask=
    broadcast=
    gateway=
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If something other takes care of your hardware clock (ntpd, dual-boot...)
    # you should disable 'hwclock' here.
    DAEMONS=(hwclock syslog-ng dbus !network netfs crond wicd)
    Restarting eth0 through wicd-cli still did not work.  I also tried resuscitating the network via instructions on the configure network page before trying to focus solely on wicd.
    I found a few similar problems on the forums by searching "wicd hibernate" and tried several solutions but they did not work.  Several problems seem to be that the network doesn't work after a suspend because I guess the stuff in RAM did not get saved?  But people were able to restart the network by running "/usr/lib/wicd/autoconnect.py" and I wasn't able to get this to work.  As a final effort, I added "resume" into mkinitcpio.conf and placed the machine into sleep again to see if it may magically reset something but of course this did not happen .
    mkinitcpio.conf:
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES=""
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image. This is run first, so it may be used to
    # override the actual binaries used in a given hook.
    # (Existing files are NOT overwritten if already added)
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way. This is useful for config files.
    # Some users may wish to include modprobe.conf for custom module options
    # like so:
    # FILES="/etc/modprobe.d/modprobe.conf"
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ## This setup specifies all modules in the MODULES setting above.
    ## No raid, lvm2, or encrypted root is needed.
    # HOOKS="base"
    ## This setup will autodetect all modules for your system and should
    ## work as a sane default
    # HOOKS="base udev autodetect pata scsi sata filesystems"
    ## This is identical to the above, except the old ide subsystem is
    ## used for IDE devices instead of the new pata subsystem.
    # HOOKS="base udev autodetect ide scsi sata filesystems"
    ## This setup will generate a 'full' image which supports most systems.
    ## No autodetection is done.
    # HOOKS="base udev pata scsi sata usb filesystems"
    ## This setup assembles a pata mdadm array with an encrypted root FS.
    ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
    # HOOKS="base udev pata mdadm encrypt filesystems"
    ## This setup loads an lvm2 volume group on a usb device.
    # HOOKS="base udev usb lvm2 filesystems"
    HOOKS="base udev autodetect pata scsi sata resume filesystems usbinput"
    # COMPRESSION
    # Use this to compress the initramfs image. With kernels earlier than
    # 2.6.30, only gzip is supported, which is also the default. Newer kernels
    # support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
    # compression.
    #COMPRESSION="gzip"
    #COMPRESSION="bzip2"
    #COMPRESSION="lzma"
    #COMPRESSION="xz"
    #COMPRESSION="lzop"
    # COMPRESSION_OPTIONS
    # Additional options for the compressor
    #COMPRESSION_OPTIONS=""
    Not sure if my fstab.conf is useful but if this has something to do with settings getting "lost" in swap, here it is.  Linux is on an SSD and HDD (sda and sdc) and Windows 7 is on a HDD (sdb).
    fstab.conf:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /tmp tmpfs nodev,nosuid,noatime,size=2000M,mode=1777 0 0
    /dev/sda1 / ext4 defaults,noatime,discard 0 1
    /dev/sda2 /home ext4 defaults,noatime,discard 0 2
    /dev/sdc1 /boot ext4 defaults 0 1
    /dev/sdc2 /var ext4 defaults 0 0
    /dev/sdc3 swap swap defaults 0 0
    /dev/sdc4 /media/data ext4 defaults 0 0
    shm /dev/shm tmpfs nodev,nosuid,size=10G 0 0
    Is wicd causing these problems or did I configure something else improperly?  Would appreciate any help to get eth0 up again!
    Last edited by TheBigCow7 (2011-09-13 17:57:20)

    Ok, I think I've made some progress!  Hibernate definitely affects my network connection.  Could this be a kernel 3.0 problem?
    I noticed that ifconfig showed eth0 without an inet addr, just an inet6 addr for the longest time.  e1000e seemed to be loading up ok.  I'm not certain here, but I think that meant the dhcp settings didn't stick, or something along those lines.
    Trying to use dhcpcd like the instructions here did not work.  By some chance, one attempt did work and while it did, I downloaded and installed dhclient.  After that one successful attempt, renewing the DHCP lease via dhcpcd did not work again.
    Luckily though, I found that running "dhclient eth0" worked.  My DHCP settings seemed to have somehow gotten messed up after my initial, problematic hibernate to the point where none would stick, even after a reboot.  Manually typing in "dhclient eth0" would get eth0 working, so I decided to add it to the bottom of /etc/rc.local, like in the example on the networking page.
    Now, eth0 works after a boot.  However, after the daemons load up during the boot process, my computer takes a long time to get to the login prompt (this is relatively speaking, since I am on a SSD and the boot process used to be blazing fast before).  I'm pretty sure it's because I added "dhclient eth0" to /etc/rc.local.
    I should say that even with these changes, after a hibernate, my eth0 still does not work and if it weren't for the edit to /etc/rc.local, eth0's inet settings would still not stick after a reboot (that is to say, the hibernate does do something to my network settings). 
    Is this the correct/most efficient way to fix my DHCP problem?  Can I fix my "eth0 after hibernate" issue?  Also, can I make my DHCP settings boot up without changes to /etc/rc.local so that I can get a fast boot again (still not sure how it was able to work before without my edit)?

  • Plymouth doesn't work [SOLVED]

    Hello!
    Plymouth doesn't work.
    I installed plymouth, added plymouth to HOOKS array in /etc/mkinitcpio.conf file, added "quiet splash" to /etc/default/grub file and ran "sudo grub-mkconfig -o /boot/grub/grub.cfg" followed by "sudo plymouth-set-default-theme -R solar".
    File /etc/mkinitcpio.conf
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES=""
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image. This is run last, so it may be used to
    # override the actual binaries included by a given hook
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way. This is useful for config files.
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ## This setup specifies all modules in the MODULES setting above.
    ## No raid, lvm2, or encrypted root is needed.
    # HOOKS="base"
    ## This setup will autodetect all modules for your system and should
    ## work as a sane default
    # HOOKS="base udev autodetect block filesystems"
    ## This setup will generate a 'full' image which supports most systems.
    ## No autodetection is done.
    # HOOKS="base udev block filesystems"
    ## This setup assembles a pata mdadm array with an encrypted root FS.
    ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
    # HOOKS="base udev block mdadm encrypt filesystems"
    ## This setup loads an lvm2 volume group on a usb device.
    # HOOKS="base udev block lvm2 filesystems"
    ## NOTE: If you have /usr on a separate partition, you MUST include the
    # usr, fsck and shutdown hooks.
    HOOKS="base udev plymouth autodetect modconf block filesystems keyboard fsck nvidia"
    # COMPRESSION
    # Use this to compress the initramfs image. By default, gzip compression
    # is used. Use 'cat' to create an uncompressed image.
    #COMPRESSION="gzip"
    #COMPRESSION="bzip2"
    #COMPRESSION="lzma"
    #COMPRESSION="xz"
    #COMPRESSION="lzop"
    #COMPRESSION="lz4"
    # COMPRESSION_OPTIONS
    # Additional options for the compressor
    #COMPRESSION_OPTIONS=""
    File /etc/default/grub
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch"
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=auto
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    #GRUB_COLOR_NORMAL="light-blue/black"
    #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    #GRUB_SAVEDEFAULT="true"
    No sucess. Any help?
    Last edited by joseribeiro (2014-06-11 12:15:30)

    I disagree.
    I don't need to run mkinitcpio -p linux if I ran plymouth-set-default-theme -R solar.
    See the following terminal output:
    # mkinitcpio -p linux
    ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    ==> Starting build: 3.14.6-1-ARCH
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [plymouth]
    -> Running build hook: [autodetect]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    -> Running build hook: [filesystems]
    -> Running build hook: [keyboard]
    -> Running build hook: [fsck]
    -> Running build hook: [nvidia]
    Building nvidia modules for 3.14.6-1-ARCH kernel...
    Module nvidia/337.25 already installed on kernel 3.14.6-1-ARCH/x86_64
    Ok.
    ==> Generating module dependencies
    ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    ==> Image generation successful
    ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    ==> Starting build: 3.14.6-1-ARCH
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [plymouth]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    ==> WARNING: Possibly missing firmware for module: aic94xx
    ==> WARNING: Possibly missing firmware for module: smsmdtv
    -> Running build hook: [filesystems]
    -> Running build hook: [keyboard]
    -> Running build hook: [fsck]
    -> Running build hook: [nvidia]
    Building nvidia modules for 3.14.6-1-ARCH kernel...
    Module nvidia/337.25 already installed on kernel 3.14.6-1-ARCH/x86_64
    Ok.
    ==> Generating module dependencies
    ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    ==> Image generation successful
    # plymouth-set-default-theme -R solar
    ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    ==> Starting build: 3.14.6-1-ARCH
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [plymouth]
    -> Running build hook: [autodetect]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    -> Running build hook: [filesystems]
    -> Running build hook: [keyboard]
    -> Running build hook: [fsck]
    -> Running build hook: [nvidia]
    Building nvidia modules for 3.14.6-1-ARCH kernel...
    Module nvidia/337.25 already installed on kernel 3.14.6-1-ARCH/x86_64
    Ok.
    ==> Generating module dependencies
    ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    ==> Image generation successful
    ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    ==> Starting build: 3.14.6-1-ARCH
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [plymouth]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    ==> WARNING: Possibly missing firmware for module: aic94xx
    ==> WARNING: Possibly missing firmware for module: smsmdtv
    -> Running build hook: [filesystems]
    -> Running build hook: [keyboard]
    -> Running build hook: [fsck]
    -> Running build hook: [nvidia]
    Building nvidia modules for 3.14.6-1-ARCH kernel...
    Module nvidia/337.25 already installed on kernel 3.14.6-1-ARCH/x86_64
    Ok.
    ==> Generating module dependencies
    ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    ==> Image generation successful
    They are equivalents.
    Last edited by joseribeiro (2014-06-10 18:37:29)

  • Slim doesn't work

    HI
    i was upgrade ,and install the  fontconfig   ,then reboot
    reboot
    show this
    systemd [1]:Default target masked.
    kvm: dissabled by bios
    welcome to rescue mode! type "systemctl default" or ^D to enter defauld mode.
    i followed message
    [root@archlinux Desktop]# systemctl default
    Failed to start default.target: Operation refused, unit may not be isolated
    then
    # systemctl list-unit-files
    i found this
    default.target masked
    graphical.target masked
    slim.service enabled
    display-manager.service enabled
    but
    # startx
       is working .my xfce4 working well
    just  slim not work
    then , i fould  "  graphical.target "  is null
    i edited  it, now
    cat /usr/lib/systemd/system/graphical.target
    # This file is part of systemd.
    # systemd is free software; you can redistribute it and/or modify it
    # under the terms of the GNU Lesser General Public License as published by
    # the Free Software Foundation; either version 2.1 of the License, or
    # (at your option) any later version.
    [Unit]
    Description=Graphical Interface
    Documentation=man:systemd.special(7)
    Requires=multi-user.target
    After=multi-user.target
    Conflicts=rescue.target
    Wants=display-manager.service
    AllowIsolate=yes
    [Install]
    Alias=default.target
    then  reboot,  seems like solved  "default.target    masked"  problem.
    "default target masked. kvm: dissabled by bios .welcome to rescue mode! ......."no longer show
    but ,slim still doesn't  working
    now
    [root@archlinux Desktop]# cat /var/log/slim.log
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slimslimslim: unexpected signal 1
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: unexpected signal 15
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: unexpected signal 15
    slim: connection to X server lost.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    # systemctl
    UNIT LOAD ACTIVE SUB DESCRIPTION
    proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point
    sys-devices-pci0000:00-0000:00:02.0-0000:01:00.1-sound-card1.device loaded active plugged Cape Verde/Pitcairn HDMI Audio [Radeon HD 7700/7800 Series]
    sys-devices-pci0000:00-0000:00:09.0-0000:03:00.0-net-enp3s0.device loaded active plugged Motherboard
    sys-devices-pci0000:00-0000...ata3-host2-target2:0:0-2:0:0:0-block-sda-sda1.device loaded active plugged Samsung_SSD_840_PRO_Series
    sys-devices-pci0000:00-0000...11.0-ata3-host2-target2:0:0-2:0:0:0-block-sda.device loaded active plugged Samsung_SSD_840_PRO_Series
    sys-devices-pci0000:00-0000...ata5-host4-target4:0:0-4:0:0:0-block-sdb-sdb1.device loaded active plugged WDC_WD10EZEX-00RKKA0
    sys-devices-pci0000:00-0000...ata5-host4-target4:0:0-4:0:0:0-block-sdb-sdb2.device loaded active plugged WDC_WD10EZEX-00RKKA0
    sys-devices-pci0000:00-0000...ata5-host4-target4:0:0-4:0:0:0-block-sdb-sdb3.device loaded active plugged WDC_WD10EZEX-00RKKA0
    sys-devices-pci0000:00-0000...ata5-host4-target4:0:0-4:0:0:0-block-sdb-sdb4.device loaded active plugged WDC_WD10EZEX-00RKKA0
    sys-devices-pci0000:00-0000...ata5-host4-target4:0:0-4:0:0:0-block-sdb-sdb5.device loaded active plugged WDC_WD10EZEX-00RKKA0
    sys-devices-pci0000:00-0000...11.0-ata5-host4-target4:0:0-4:0:0:0-block-sdb.device loaded active plugged WDC_WD10EZEX-00RKKA0
    sys-devices-pci0000:00-0000:00:13.2-usb4-4\x2d5-4\x2d5:1.2-sound-card2.device loaded active plugged LifeCam HD-3000
    sys-devices-pci0000:00-0000:00:14.2-sound-card0.device loaded active plugged SBx00 Azalia (Intel HDA)
    sys-devices-pci0000:00-0000:00:14.4-0000:04:07.0-ieee80211-phy0-rfkill0.device loaded active plugged /sys/devices/pci0000:00/0000:00:14.4/0000:04:07.0/ieee80211/phy0/rfkill0
    sys-devices-pci0000:00-0000:00:14.4-0000:04:07.0-net-wlp4s7.device loaded active plugged AR9227 Wireless Network Adapter
    sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1
    sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
    sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
    sys-devices-pnp0-00:07-tty-ttyS0.device loaded active plugged /sys/devices/pnp0/00:07/tty/ttyS0
    sys-module-configfs.device loaded active plugged /sys/module/configfs
    sys-subsystem-net-devices-enp3s0.device loaded active plugged Motherboard
    sys-subsystem-net-devices-wlp4s7.device loaded active plugged AR9227 Wireless Network Adapter
    -.mount loaded active mounted /
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File System
    home.mount loaded active mounted /home
    sys-kernel-config.mount loaded active mounted Configuration File System
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted Temporary Directory
    systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Directory Watch
    systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch
    session-1.scope loaded active running Session 1 of user root
    dbus.service loaded active running D-Bus System Message Bus
    [email protected] loaded active running Getty on tty1
    kmod-static-nodes.service loaded active exited Create list of required static device nodes for the current kernel
    [email protected] loaded active running Automatic wireless network connection using netctl profiles
    polkit.service loaded active running Authorization Manager
    slim.service loaded failed failed SLiM Simple Login Manager
    systemd-fsck@dev-disk-by\x2...1453\x2d3192\x2d4cc8\x2d835b\x2d88b9c09ca231.service loaded active exited File System Check on /dev/disk/by-uuid/40311453-3192-4cc8-835b-88b9c09ca231
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-random-seed.service loaded active exited Load/Save Random Seed
    systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems
    [email protected] loaded active exited Load/Save RF Kill Switch Status of rfkill0
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-tmpfiles-setup-dev.service loaded active exited Create static device nodes in /dev
    systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories
    systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-update-utmp.service loaded active exited Update UTMP about System Reboot/Shutdown
    systemd-user-sessions.service loaded active exited Permit User Sessions
    systemd-vconsole-setup.service loaded active exited Setup Virtual Console
    upower.service loaded active running Daemon for power management
    [email protected] loaded active running User Manager for UID 0
    -.slice loaded active active Root Slice
    system-getty.slice loaded active active system-getty.slice
    system-netctl.slice loaded active active system-netctl.slice
    system-netctl\x2dauto.slice loaded active active system-netctl\x2dauto.slice
    system-systemd\x2dfsck.slice loaded active active system-systemd\x2dfsck.slice
    system-systemd\x2drfkill.slice loaded active active system-systemd\x2drfkill.slice
    system.slice loaded active active System Slice
    user-0.slice loaded active active user-0.slice
    user.slice loaded active active User and Session Slice
    dbus.socket loaded active running D-Bus System Message Bus Socket
    dmeventd.socket loaded active listening Device-mapper event daemon FIFOs
    lvmetad.socket loaded active listening LVM2 metadata daemon socket
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
    systemd-journald.socket loaded active running Journal Socket
    systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
    systemd-udevd-control.socket loaded active running udev Control Socket
    systemd-udevd-kernel.socket loaded active running udev Kernel Socket
    dev-sdb4.swap loaded active active /dev/sdb4
    basic.target loaded active active Basic System
    cryptsetup.target loaded active active Encrypted Volumes
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User System
    network.target loaded active active Network
    paths.target loaded active active Paths
    remote-fs.target loaded active active Remote File Systems
    slices.target loaded active active Slices
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    timers.target loaded active active Timers
    systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
    LOAD = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB = The low-level unit activation state, values depend on unit type.
    89 loaded units listed. Pass --all to see loaded but inactive units, too.
    # systemctl list-unit-files
    UNIT FILE STATE
    proc-sys-fs-binfmt_misc.automount static
    org.freedesktop.hostname1.busname static
    org.freedesktop.locale1.busname static
    org.freedesktop.login1.busname static
    org.freedesktop.machine1.busname static
    org.freedesktop.timedate1.busname static
    dev-hugepages.mount static
    dev-mqueue.mount static
    proc-sys-fs-binfmt_misc.mount static
    sys-fs-fuse-connections.mount static
    sys-kernel-config.mount static
    sys-kernel-debug.mount static
    tmp.mount static
    systemd-ask-password-console.path static
    systemd-ask-password-wall.path static
    session-1.scope static
    alsa-restore.service static
    alsa-state.service static
    alsa-store.service static
    [email protected] disabled
    avahi-daemon.service disabled
    avahi-dnsconfd.service disabled
    proc-sys-fs-binfmt_misc.automount static
    org.freedesktop.hostname1.busname static
    org.freedesktop.locale1.busname static
    org.freedesktop.login1.busname static
    org.freedesktop.machine1.busname static
    org.freedesktop.timedate1.busname static
    dev-hugepages.mount static
    dev-mqueue.mount static
    proc-sys-fs-binfmt_misc.mount static
    sys-fs-fuse-connections.mount static
    sys-kernel-config.mount static
    sys-kernel-debug.mount static
    tmp.mount static
    systemd-ask-password-console.path static
    systemd-ask-password-wall.path static
    session-1.scope static
    alsa-restore.service static
    alsa-state.service static
    alsa-store.service static
    [email protected] disabled
    avahi-daemon.service disabled
    avahi-dnsconfd.service disabled
    canberra-system-bootup.service disabled
    canberra-system-shutdown-reboot.service disabled
    canberra-system-shutdown.service disabled
    colord.service static
    console-getty.service disabled
    console-shell.service disabled
    [email protected] static
    cronie.service disabled
    dbus-org.freedesktop.hostname1.service static
    dbus-org.freedesktop.locale1.service static
    dbus-org.freedesktop.login1.service static
    dbus-org.freedesktop.machine1.service static
    dbus-org.freedesktop.timedate1.service static
    dbus.service static
    debug-shell.service disabled
    dhcpcd.service disabled
    [email protected] disabled
    display-manager.service enabled
    dmeventd.service static
    emergency.service static
    fancontrol.service disabled
    ftpd.service disabled
    [email protected] enabled
    gpm.service disabled
    healthd.service disabled
    initrd-cleanup.service static
    initrd-parse-etc.service static
    initrd-switch-root.service static
    initrd-udevadm-cleanup-db.service static
    ip6tables.service disabled
    iptables.service disabled
    kdm.service disabled
    kmod-static-nodes.service static
    krb5-kadmind.service disabled
    krb5-kdc.service disabled
    krb5-kpropd.service disabled
    [email protected] static
    lm_sensors.service disabled
    lvm-monitoring.service disabled
    lvmetad.service static
    mdadm.service disabled
    [email protected] static
    mkinitcpio-generate-shutdown-ramfs.service static
    mysqld.service disabled
    [email protected] enabled
    [email protected] disabled
    netctl-sleep.service disabled
    netctl.service disabled
    [email protected] static
    netctl@my\x2dnetwork.service enabled
    nscd.service disabled
    polkit.service static
    quotaon.service static
    rescue.service static
    [email protected] static
    [email protected] static
    sensord.service disabled
    [email protected] disabled
    slim.service enabled
    speech-dispatcherd.service disabled
    systemd-ask-password-console.service static
    systemd-ask-password-wall.service static
    [email protected] static
    systemd-binfmt.service static
    systemd-fsck-root.service static
    [email protected] static
    systemd-halt.service static
    systemd-hibernate.service static
    systemd-hostnamed.service static
    systemd-hybrid-sleep.service static
    systemd-initctl.service static
    systemd-journal-flush.service static
    systemd-journal-gatewayd.service static
    systemd-journald.service static
    systemd-kexec.service static
    systemd-localed.service static
    systemd-logind.service static
    systemd-machined.service static
    systemd-modules-load.service static
    systemd-networkd.service disabled
    [email protected] disabled
    systemd-poweroff.service static
    systemd-quotacheck.service static
    systemd-random-seed.service static
    systemd-readahead-collect.service disabled
    systemd-readahead-done.service static
    systemd-readahead-drop.service disabled
    systemd-readahead-replay.service disabled
    systemd-reboot.service static
    systemd-remount-fs.service static
    [email protected] static
    systemd-shutdownd.service static
    systemd-suspend.service static
    systemd-sysctl.service static
    systemd-timedated.service static
    systemd-tmpfiles-clean.service static
    systemd-tmpfiles-setup-dev.service static
    systemd-tmpfiles-setup.service static
    systemd-udev-settle.service static
    systemd-udev-trigger.service static
    systemd-udevd.service static
    systemd-update-utmp-runlevel.service static
    systemd-update-utmp.service static
    systemd-user-sessions.service static
    systemd-vconsole-setup.service static
    talk.service static
    [email protected] static
    udisks.service disabled
    udisks2.service static
    upower.service disabled
    usbmuxd.service static
    [email protected] static
    uuidd.service static
    [email protected] disabled
    [email protected] disabled
    wpa_supplicant.service disabled
    [email protected] disabled
    -.slice static
    machine.slice static
    system.slice static
    user.slice static
    avahi-daemon.socket disabled
    dbus.socket static
    dmeventd.socket static
    krb5-kpropd.socket disabled
    lvmetad.socket static
    rlogin.socket disabled
    rsh.socket disabled
    syslog.socket static
    systemd-initctl.socket static
    systemd-journal-gatewayd.socket disabled
    systemd-journald.socket static
    systemd-shutdownd.socket static
    systemd-udevd-control.socket static
    systemd-udevd-kernel.socket static
    talk.socket disabled
    telnet.socket disabled
    uuidd.socket disabled
    basic.target static
    bluetooth.target static
    busnames.target static
    systemd-sysctl.service static
    systemd-timedated.service static
    systemd-tmpfiles-clean.service static
    systemd-tmpfiles-setup-dev.service static
    systemd-tmpfiles-setup.service static
    systemd-udev-settle.service static
    systemd-udev-trigger.service static
    systemd-udevd.service static
    systemd-update-utmp-runlevel.service static
    systemd-update-utmp.service static
    systemd-user-sessions.service static
    systemd-vconsole-setup.service static
    talk.service static
    [email protected] static
    udisks.service disabled
    udisks2.service static
    upower.service disabled
    usbmuxd.service static
    [email protected] static
    uuidd.service static
    [email protected] disabled
    [email protected] disabled
    wpa_supplicant.service disabled
    [email protected] disabled
    -.slice static
    machine.slice static
    system.slice static
    user.slice static
    avahi-daemon.socket disabled
    dbus.socket static
    dmeventd.socket static
    krb5-kpropd.socket disabled
    lvmetad.socket static
    rlogin.socket disabled
    rsh.socket disabled
    syslog.socket static
    systemd-initctl.socket static
    systemd-journal-gatewayd.socket disabled
    systemd-journald.socket static
    systemd-shutdownd.socket static
    systemd-udevd-control.socket static
    systemd-udevd-kernel.socket static
    talk.socket disabled
    telnet.socket disabled
    uuidd.socket disabled
    basic.target static
    bluetooth.target static
    busnames.target static
    cryptsetup.target static
    ctrl-alt-del.target disabled
    default.target enabled
    emergency.target static
    final.target static
    getty.target static
    graphical.target enabled
    halt.target disabled
    hibernate.target static
    hybrid-sleep.target static
    initrd-fs.target static
    initrd-root-fs.target static
    initrd-switch-root.target static
    initrd.target static
    kexec.target disabled
    local-fs-pre.target static
    local-fs.target static
    multi-user.target static
    network-online.target static
    network.target static
    nss-lookup.target static
    nss-user-lookup.target static
    paths.target static
    poweroff.target disabled
    printer.target static
    reboot.target disabled
    remote-fs-pre.target static
    remote-fs.target enabled
    rescue.target disabled
    rpcbind.target static
    shutdown.target static
    sigpwr.target static
    sleep.target static
    slices.target static
    smartcard.target static
    sockets.target static
    sound.target static
    suspend.target static
    swap.target static
    sysinit.target static
    system-update.target static
    time-sync.target static
    timers.target static
    umount.target static
    systemd-readahead-done.timer static
    systemd-tmpfiles-clean.timer static
    209 unit files listed.
    slim.conf
    # cat /etc/slim.conf
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path /bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    # numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    login_cmd exec /bin/bash -login ~/.xinitrc %session
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    # sessionstart_cmd some command
    # sessionstop_cmd some command
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Set directory that contains the xsessions.
    # slim reads xsesion from this directory, and be able to select.
    sessiondir /usr/share/xsessions/
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    #default_user simone
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    #focus_password no
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    #auto_login no
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    current_theme default
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    Last edited by hyang (2014-03-10 06:22:59)

    Rexilion wrote:
    Apparently, whenever default.target is unavailable systemD enters rescue mode. That's okay.
    Maybe post the contents of /var/log/Xorg.0.log and /var/log/slim.log?
    slim.log
    # cat /var/log/slim.log
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slimslimslim: unexpected signal 1
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: unexpected signal 15
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: unexpected signal 15
    slim: connection to X server lost.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    slim: waiting for X server to begin accepting connections.
    /var/log/Xorg.0.log
    # cat /var/log/Xorg.0.log
    [ 18.167]
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    [ 18.167] X Protocol Version 11, Revision 0
    [ 18.167] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 18.167] Current Operating System: Linux archlinux 3.13.6-1-ARCH #1 SMP PREEMPT Fri Mar 7 22:47:48 CET 2014 x86_64
    [ 18.168] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=40311453-3192-4cc8-835b-88b9c09ca231 rw quiet
    [ 18.168] Build Date: 09 January 2014 08:47:24AM
    [ 18.168]
    [ 18.168] Current version of pixman: 0.32.4
    [ 18.168] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 18.168] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 18.168] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 10 11:07:28 2014
    [ 18.223] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 18.223] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 18.256] (==) No Layout section. Using the first Screen section.
    [ 18.256] (==) No screen section available. Using defaults.
    [ 18.256] (**) |-->Screen "Default Screen Section" (0)
    [ 18.256] (**) | |-->Monitor "<default monitor>"
    [ 18.257] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 18.257] (==) Automatically adding devices
    [ 18.257] (==) Automatically enabling devices
    [ 18.257] (==) Automatically adding GPU devices
    [ 18.303] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 18.303] Entry deleted from font path.
    [ 18.312] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 18.312] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 18.312] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 18.312] (II) Loader magic: 0x804c80
    [ 18.312] (II) Module ABI versions:
    [ 18.312] X.Org ANSI C Emulation: 0.4
    [ 18.312] X.Org Video Driver: 15.0
    [ 18.312] X.Org XInput driver : 20.0
    [ 18.312] X.Org Server Extension : 8.0
    [ 18.313] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 18.316] (--) PCI:*(0:1:0:0) 1002:6819:174b:e221 rev 0, Mem @ 0xd0000000/268435456, 0xfdd80000/262144, I/O @ 0x0000de00/256, BIOS @ 0x????????/131072
    [ 18.316] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 18.316] Initializing built-in extension Generic Event Extension
    [ 18.316] Initializing built-in extension SHAPE
    [ 18.316] Initializing built-in extension MIT-SHM
    [ 18.316] Initializing built-in extension XInputExtension
    [ 18.316] Initializing built-in extension XTEST
    [ 18.317] Initializing built-in extension BIG-REQUESTS
    [ 18.317] Initializing built-in extension SYNC
    [ 18.317] Initializing built-in extension XKEYBOARD
    [ 18.317] Initializing built-in extension XC-MISC
    [ 18.317] Initializing built-in extension SECURITY
    [ 18.317] Initializing built-in extension XINERAMA
    [ 18.317] Initializing built-in extension XFIXES
    [ 18.317] Initializing built-in extension RENDER
    [ 18.317] Initializing built-in extension RANDR
    [ 18.317] Initializing built-in extension COMPOSITE
    [ 18.317] Initializing built-in extension DAMAGE
    [ 18.317] Initializing built-in extension MIT-SCREEN-SAVER
    [ 18.317] Initializing built-in extension DOUBLE-BUFFER
    [ 18.317] Initializing built-in extension RECORD
    [ 18.317] Initializing built-in extension DPMS
    [ 18.317] Initializing built-in extension Present
    [ 18.318] Initializing built-in extension DRI3
    [ 18.318] Initializing built-in extension X-Resource
    [ 18.318] Initializing built-in extension XVideo
    [ 18.318] Initializing built-in extension XVideo-MotionCompensation
    [ 18.318] Initializing built-in extension XFree86-VidModeExtension
    [ 18.318] Initializing built-in extension XFree86-DGA
    [ 18.318] Initializing built-in extension XFree86-DRI
    [ 18.318] Initializing built-in extension DRI2
    [ 18.318] (II) "glx" will be loaded by default.
    [ 18.318] (II) LoadModule: "dri2"
    [ 18.318] (II) Module "dri2" already built-in
    [ 18.318] (II) LoadModule: "glamoregl"
    [ 18.353] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 18.438] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 18.438] compiled for 1.15.0, module version = 0.6.0
    [ 18.438] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 18.438] (II) LoadModule: "glx"
    [ 18.439] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 18.451] (II) Module glx: vendor="X.Org Foundation"
    [ 18.451] compiled for 1.15.0, module version = 1.0.0
    [ 18.451] ABI class: X.Org Server Extension, version 8.0
    [ 18.451] (==) AIGLX enabled
    [ 18.451] Loading extension GLX
    [ 18.451] (==) Matched ati as autoconfigured driver 0
    [ 18.451] (==) Matched ati as autoconfigured driver 1
    [ 18.451] (==) Matched modesetting as autoconfigured driver 2
    [ 18.451] (==) Matched fbdev as autoconfigured driver 3
    [ 18.451] (==) Matched vesa as autoconfigured driver 4
    [ 18.451] (==) Assigned the driver to the xf86ConfigLayout
    [ 18.451] (II) LoadModule: "ati"
    [ 18.452] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 18.462] (II) Module ati: vendor="X.Org Foundation"
    [ 18.462] compiled for 1.15.0, module version = 7.3.0
    [ 18.462] Module class: X.Org Video Driver
    [ 18.462] ABI class: X.Org Video Driver, version 15.0
    [ 18.462] (II) LoadModule: "radeon"
    [ 18.462] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 18.468] (II) Module radeon: vendor="X.Org Foundation"
    [ 18.468] compiled for 1.15.0, module version = 7.3.0
    [ 18.468] Module class: X.Org Video Driver
    [ 18.468] ABI class: X.Org Video Driver, version 15.0
    [ 18.468] (II) LoadModule: "modesetting"
    [ 18.469] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 18.478] (II) Module modesetting: vendor="X.Org Foundation"
    [ 18.478] compiled for 1.15.0, module version = 0.8.1
    [ 18.479] Module class: X.Org Video Driver
    [ 18.479] ABI class: X.Org Video Driver, version 15.0
    [ 18.479] (II) LoadModule: "fbdev"
    [ 18.479] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 18.483] (II) Module fbdev: vendor="X.Org Foundation"
    [ 18.483] compiled for 1.15.0, module version = 0.4.4
    [ 18.483] Module class: X.Org Video Driver
    [ 18.483] ABI class: X.Org Video Driver, version 15.0
    [ 18.483] (II) LoadModule: "vesa"
    [ 18.484] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 18.488] (II) Module vesa: vendor="X.Org Foundation"
    [ 18.488] compiled for 1.15.0, module version = 2.3.2
    [ 18.488] Module class: X.Org Video Driver
    [ 18.488] ABI class: X.Org Video Driver, version 15.0
    [ 18.488] (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, SUMO2, 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, 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,
    VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, HAINAN, HAINAN, HAINAN,
    HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII
    [ 18.497] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 18.497] (II) FBDEV: driver for framebuffer: fbdev
    [ 18.497] (II) VESA: driver for VESA chipsets: vesa
    [ 18.497] (++) using VT number 1
    [ 18.497] (II) [KMS] Kernel modesetting enabled.
    [ 18.498] (WW) Falling back to old probe method for modesetting
    [ 18.498] (WW) Falling back to old probe method for fbdev
    [ 18.498] (II) Loading sub module "fbdevhw"
    [ 18.498] (II) LoadModule: "fbdevhw"
    [ 18.498] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 18.507] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 18.507] compiled for 1.15.0, module version = 0.0.2
    [ 18.507] ABI class: X.Org Video Driver, version 15.0
    [ 18.507] (WW) Falling back to old probe method for vesa
    [ 18.507] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 18.507] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 18.507] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 18.507] (==) RADEON(0): Default visual is TrueColor
    [ 18.507] (==) RADEON(0): RGB weight 888
    [ 18.507] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 18.507] (--) RADEON(0): Chipset: "PITCAIRN" (ChipID = 0x6819)
    [ 18.507] (II) Loading sub module "dri2"
    [ 18.507] (II) LoadModule: "dri2"
    [ 18.507] (II) Module "dri2" already built-in
    [ 18.507] (II) Loading sub module "glamoregl"
    [ 18.507] (II) LoadModule: "glamoregl"
    [ 18.508] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 18.508] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 18.508] compiled for 1.15.0, module version = 0.6.0
    [ 18.508] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 18.508] (II) glamor: OpenGL accelerated X.org driver based.
    [ 18.984] (II) glamor: EGL version 1.4 (DRI2):
    [ 19.023] (II) RADEON(0): glamor detected, initialising EGL layer.
    [ 19.023] (II) RADEON(0): KMS Color Tiling: enabled
    [ 19.023] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 19.023] (II) RADEON(0): KMS Pageflipping: enabled
    [ 19.023] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 19.033] (II) RADEON(0): Output DisplayPort-0 has no monitor section
    [ 19.094] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 19.096] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 19.117] (II) RADEON(0): Output DVI-1 has no monitor section
    [ 19.130] (II) RADEON(0): EDID for output DisplayPort-0
    [ 19.190] (II) RADEON(0): EDID for output HDMI-0
    [ 19.190] (II) RADEON(0): Manufacturer: GSM Model: 58da Serial#: 16843009
    [ 19.190] (II) RADEON(0): Year: 2011 Week: 1
    [ 19.190] (II) RADEON(0): EDID Version: 1.3
    [ 19.190] (II) RADEON(0): Digital Display Input
    [ 19.190] (II) RADEON(0): Max Image Size [cm]: horiz.: 51 vert.: 29
    [ 19.190] (II) RADEON(0): Gamma: 2.20
    [ 19.190] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
    [ 19.190] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 19.190] (II) RADEON(0): First detailed timing is preferred mode
    [ 19.190] (II) RADEON(0): redX: 0.628 redY: 0.348 greenX: 0.345 greenY: 0.615
    [ 19.190] (II) RADEON(0): blueX: 0.153 blueY: 0.057 whiteX: 0.313 whiteY: 0.329
    [ 19.190] (II) RADEON(0): Supported established timings:
    [ 19.190] (II) RADEON(0): 640x480@60Hz
    [ 19.190] (II) RADEON(0): 800x600@60Hz
    [ 19.190] (II) RADEON(0): 1024x768@60Hz
    [ 19.190] (II) RADEON(0): Manufacturer's mask: 0
    [ 19.190] (II) RADEON(0): Supported standard timings:
    [ 19.190] (II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 19.190] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 19.190] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 19.190] (II) RADEON(0): #3: hsize: 1152 vsize 864 refresh: 60 vid: 16497
    [ 19.190] (II) RADEON(0): Supported detailed timing:
    [ 19.191] (II) RADEON(0): clock: 148.5 MHz Image Size: 510 x 290 mm
    [ 19.191] (II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 19.191] (II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 19.191] (II) RADEON(0): Ranges: V min: 56 V max: 61 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
    [ 19.191] (II) RADEON(0): Monitor name: IPS234
    [ 19.191] (II) RADEON(0): Serial No:
    [ 19.191] (II) RADEON(0): Supported detailed timing:
    [ 19.191] (II) RADEON(0): clock: 148.5 MHz Image Size: 510 x 290 mm
    [ 19.191] (II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 19.191] (II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 19.191] (II) RADEON(0): Supported detailed timing:
    [ 19.191] (II) RADEON(0): clock: 74.2 MHz Image Size: 510 x 290 mm
    [ 19.191] (II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 19.191] (II) RADEON(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 19.191] (II) RADEON(0): Supported detailed timing:
    [ 19.191] (II) RADEON(0): clock: 74.2 MHz Image Size: 510 x 290 mm
    [ 19.191] (II) RADEON(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 19.191] (II) RADEON(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 19.191] (II) RADEON(0): Supported detailed timing:
    [ 19.191] (II) RADEON(0): clock: 27.0 MHz Image Size: 510 x 290 mm
    [ 19.191] (II) RADEON(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 19.191] (II) RADEON(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 19.191] (II) RADEON(0): Number of EDID sections to follow: 1
    [ 19.191] (II) RADEON(0): EDID (in hex):
    [ 19.191] (II) RADEON(0): 00ffffffffffff001e6dda5801010101
    [ 19.191] (II) RADEON(0): 0115010380331d78eac665a059589d27
    [ 19.191] (II) RADEON(0): 0e5054210800b3008180814071400101
    [ 19.191] (II) RADEON(0): 010101010101023a801871382d40582c
    [ 19.191] (II) RADEON(0): 4500fe221100001e000000fd00383d1e
    [ 19.191] (II) RADEON(0): 530f000a202020202020000000fc0049
    [ 19.191] (II) RADEON(0): 50533233340a202020202020000000ff
    [ 19.191] (II) RADEON(0): 000a202020202020202020202020011d
    [ 19.191] (II) RADEON(0): 02031df14a900403011412051f101323
    [ 19.191] (II) RADEON(0): 0907078301000065030c001000023a80
    [ 19.191] (II) RADEON(0): 1871382d40582c4500fe221100001e01
    [ 19.191] (II) RADEON(0): 1d8018711c1620582c2500fe22110000
    [ 19.191] (II) RADEON(0): 9e011d007251d01e206e285500fe2211
    [ 19.191] (II) RADEON(0): 00001e8c0ad08a20e02d10103e9600fe
    [ 19.191] (II) RADEON(0): 22110000180000000000000000000000
    [ 19.191] (II) RADEON(0): 000000000000000000000000000000e6
    [ 19.191] (II) RADEON(0): Printing probed modes for output HDMI-0
    [ 19.191] (II) RADEON(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 19.191] (II) RADEON(0): Modeline "1920x1080"x50.0 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1920x1080"x59.9 148.35 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1920x1080i"x60.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1920x1080i"x50.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1920x1080i"x59.9 74.18 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1152x864"x60.0 81.58 1152 1216 1336 1520 864 865 868 895 -hsync +vsync (53.7 kHz)
    [ 19.191] (II) RADEON(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1280x720"x50.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1280x720"x59.9 74.18 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "720x576"x50.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "720x480"x60.0 27.03 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "720x480"x59.9 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 19.191] (II) RADEON(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 19.193] (II) RADEON(0): EDID for output DVI-0
    [ 19.213] (II) RADEON(0): EDID for output DVI-1
    [ 19.213] (II) RADEON(0): Output DisplayPort-0 disconnected
    [ 19.213] (II) RADEON(0): Output HDMI-0 connected
    [ 19.213] (II) RADEON(0): Output DVI-0 disconnected
    [ 19.213] (II) RADEON(0): Output DVI-1 disconnected
    [ 19.213] (II) RADEON(0): Using exact sizes for initial modes
    [ 19.213] (II) RADEON(0): Output HDMI-0 using initial mode 1920x1080
    [ 19.213] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 19.214] (II) RADEON(0): mem size init: gart size :3fbde000 vram size: s:80000000 visible:7f7d7000
    [ 19.214] (==) RADEON(0): DPI set to (96, 96)
    [ 19.214] (II) Loading sub module "fb"
    [ 19.214] (II) LoadModule: "fb"
    [ 19.214] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 19.229] (II) Module fb: vendor="X.Org Foundation"
    [ 19.229] compiled for 1.15.0, module version = 1.0.0
    [ 19.229] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 19.229] (II) Loading sub module "ramdac"
    [ 19.229] (II) LoadModule: "ramdac"
    [ 19.229] (II) Module "ramdac" already built-in
    [ 19.229] (II) UnloadModule: "modesetting"
    [ 19.229] (II) Unloading modesetting
    [ 19.229] (II) UnloadModule: "fbdev"
    [ 19.229] (II) Unloading fbdev
    [ 19.229] (II) UnloadSubModule: "fbdevhw"
    [ 19.229] (II) Unloading fbdevhw
    [ 19.229] (II) UnloadModule: "vesa"
    [ 19.229] (II) Unloading vesa
    [ 19.229] (--) Depth 24 pixmap format is 32 bpp
    [ 19.230] (II) RADEON(0): [DRI2] Setup complete
    [ 19.230] (II) RADEON(0): [DRI2] DRI driver: radeonsi
    [ 19.230] (II) RADEON(0): [DRI2] VDPAU driver: radeonsi
    [ 19.230] (II) RADEON(0): Front buffer size: 8640K
    [ 19.230] (II) RADEON(0): VRAM usage limit set to 1872054K
    [ 19.231] (==) RADEON(0): Backing store enabled
    [ 19.231] (II) RADEON(0): Direct rendering enabled
    [ 19.341] (II) RADEON(0): Use GLAMOR acceleration.
    [ 19.341] (II) RADEON(0): Acceleration enabled
    [ 19.341] (==) RADEON(0): DPMS enabled
    [ 19.341] (==) RADEON(0): Silken mouse enabled
    [ 19.342] (II) RADEON(0): Set up textured video (glamor)
    [ 19.342] (II) RADEON(0): [XvMC] Associated with GLAMOR Textured Video.
    [ 19.342] (II) RADEON(0): [XvMC] Extension initialized.
    [ 19.342] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 19.368] (--) RandR disabled
    [ 19.377] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 19.377] (II) AIGLX: enabled GLX_ARB_create_context
    [ 19.377] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 19.377] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 19.377] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 19.377] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 19.377] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 19.377] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 19.377] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 19.377] (II) AIGLX: Loaded and initialized radeonsi
    [ 19.377] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 19.390] (II) RADEON(0): Setting screen physical size to 508 x 285
    [ 19.687] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 19.687] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 19.687] (II) LoadModule: "evdev"
    [ 19.687] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 19.743] (II) Module evdev: vendor="X.Org Foundation"
    [ 19.743] compiled for 1.15.0, module version = 2.8.2
    [ 19.743] Module class: X.Org XInput Driver
    [ 19.743] ABI class: X.Org XInput driver, version 20.0
    [ 19.743] (II) Using input driver 'evdev' for 'Power Button'
    [ 19.743] (**) Power Button: always reports core events
    [ 19.743] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 19.743] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 19.743] (--) evdev: Power Button: Found keys
    [ 19.743] (II) evdev: Power Button: Configuring as keyboard
    [ 19.743] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 19.743] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 19.743] (**) Option "xkb_rules" "evdev"
    [ 19.743] (**) Option "xkb_model" "pc104"
    [ 19.743] (**) Option "xkb_layout" "us"
    [ 19.782] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 19.782] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 19.782] (II) Using input driver 'evdev' for 'Power Button'
    [ 19.782] (**) Power Button: always reports core events
    [ 19.782] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 19.782] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 19.782] (--) evdev: Power Button: Found keys
    [ 19.782] (II) evdev: Power Button: Configuring as keyboard
    [ 19.782] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3/event3"
    [ 19.782] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 19.782] (**) Option "xkb_rules" "evdev"
    [ 19.782] (**) Option "xkb_model" "pc104"
    [ 19.782] (**) Option "xkb_layout" "us"
    [ 19.782] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 19.782] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event20)
    [ 19.782] (II) No input driver specified, ignoring this device.
    [ 19.782] (II) This device may have been added with another device file.
    [ 19.782] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event19)
    [ 19.782] (II) No input driver specified, ignoring this device.
    [ 19.782] (II) This device may have been added with another device file.
    [ 19.782] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event18)
    [ 19.782] (II) No input driver specified, ignoring this device.
    [ 19.782] (II) This device may have been added with another device file.
    [ 19.783] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event17)
    [ 19.783] (II) No input driver specified, ignoring this device.
    [ 19.783] (II) This device may have been added with another device file.
    [ 19.783] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event16)
    [ 19.783] (II) No input driver specified, ignoring this device.
    [ 19.783] (II) This device may have been added with another device file.
    [ 19.783] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event15)
    [ 19.783] (II) No input driver specified, ignoring this device.
    [ 19.783] (II) This device may have been added with another device file.
    [ 19.783] (II) config/udev: Adding input device Microsoft® LifeCam HD-3000 (/dev/input/event21)
    [ 19.783] (**) Microsoft® LifeCam HD-3000: Applying InputClass "evdev keyboard catchall"
    [ 19.783] (II) Using input driver 'evdev' for 'Microsoft® LifeCam HD-3000'
    [ 19.783] (**) Microsoft® LifeCam HD-3000: always reports core events
    [ 19.783] (**) evdev: Microsoft® LifeCam HD-3000: Device: "/dev/input/event21"
    [ 19.783] (--) evdev: Microsoft® LifeCam HD-3000: Vendor 0x45e Product 0x779
    [ 19.783] (--) evdev: Microsoft® LifeCam HD-3000: Found keys
    [ 19.783] (II) evdev: Microsoft® LifeCam HD-3000: Configuring as keyboard
    [ 19.783] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.2/usb4/4-5/4-5:1.0/input/input21/event21"
    [ 19.783] (II) XINPUT: Adding extended input device "Microsoft® LifeCam HD-3000" (type: KEYBOARD, id 8)
    [ 19.783] (**) Option "xkb_rules" "evdev"
    [ 19.783] (**) Option "xkb_model" "pc104"
    [ 19.783] (**) Option "xkb_layout" "us"
    [ 19.784] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 19.784] (II) No input driver specified, ignoring this device.
    [ 19.784] (II) This device may have been added with another device file.
    [ 19.784] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event11)
    [ 19.784] (II) No input driver specified, ignoring this device.
    [ 19.784] (II) This device may have been added with another device file.
    [ 19.784] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event10)
    [ 19.784] (II) No input driver specified, ignoring this device.
    [ 19.784] (II) This device may have been added with another device file.
    [ 19.784] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event9)
    [ 19.784] (II) No input driver specified, ignoring this device.
    [ 19.784] (II) This device may have been added with another device file.
    [ 19.784] (II) config/udev: Adding input device HDA ATI SB Line Out Side (/dev/input/event8)
    [ 19.784] (II) No input driver specified, ignoring this device.
    [ 19.784] (II) This device may have been added with another device file.
    [ 19.784] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event7)
    [ 19.784] (II) No input driver specified, ignoring this device.
    [ 19.784] (II) This device may have been added with another device file.
    [ 19.785] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event14)
    [ 19.785] (II) No input driver specified, ignoring this device.
    [ 19.785] (II) This device may have been added with another device file.
    [ 19.785] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event13)
    [ 19.785] (II) No input driver specified, ignoring this device.
    [ 19.785] (II) This device may have been added with another device file.
    [ 19.785] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event12)
    [ 19.785] (II) No input driver specified, ignoring this device.
    [ 19.785] (II) This device may have been added with another device file.
    [ 19.785] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event0)
    [ 19.785] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 19.785] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
    [ 19.785] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
    [ 19.785] (**) evdev: Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event0"
    [ 19.785] (--) evdev: Logitech USB-PS/2 Optical Mouse: Vendor 0x46d Product 0xc051
    [ 19.785] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
    [ 19.785] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
    [ 19.785] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found relative axes
    [ 19.785] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
    [ 19.785] (II) evdev: Logitech USB-PS/2 Optical Mouse: Configuring as mouse
    [ 19.785] (II) evdev: Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
    [ 19.785] (**) evdev: Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 19.785] (**) evdev: Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 19.785] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:16.0/usb9/9-1/9-1:1.0/input/input0/event0"
    [ 19.785] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE, id 9)
    [ 19.785] (II) evdev: Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
    [ 19.785] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
    [ 19.785] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
    [ 19.785] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
    [ 19.785] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
    [ 19.785] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
    [ 19.785] (II) No input driver specified, ignoring this device.
    [ 19.785] (II) This device may have been added with another device file.
    [ 19.786] (II) config/udev: Adding input device Logitech USB Keyboard (/dev/input/event1)
    [ 19.786] (**) Logitech USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 19.786] (II) Using input driver 'evdev' for 'Logitech USB Keyboard'
    [ 19.786] (**) Logitech USB Keyboard: always reports core events
    [ 19.786] (**) evdev: Logitech USB Keyboard: Device: "/dev/input/event1"
    [ 19.786] (--) evdev: Logitech USB Keyboard: Vendor 0x46d Product 0xc326
    [ 19.786] (--) evdev: Logitech USB Keyboard: Found keys
    [ 19.786] (II) evdev: Logitech USB Keyboard: Configuring as keyboard
    [ 19.786] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:16.0/usb9/9-3/9-3:1.0/input/input1/event1"
    [ 19.786] (II) XINPUT: Adding extended input device "Logitech USB Keyboard" (type: KEYBOARD, id 10)
    [ 19.786] (**) Option "xkb_rules" "evdev"
    [ 19.786] (**) Option "xkb_model" "pc104"
    [ 19.786] (**) Option "xkb_layout" "us"
    [ 19.786] (II) config/udev: Adding input device Logitech USB Keyboard (/dev/input/event2)
    [ 19.786] (**) Logitech USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 19.786] (II) Using input driver 'evdev' for 'Logitech USB Keyboard'
    [ 19.786] (**) Logitech USB Keyboard: always reports core events
    [ 19.786] (**) evdev: Logitech USB Keyboard: Device: "/dev/input/event2"
    [ 19.786] (--) evdev: Logitech USB Keyboard: Vendor 0x46d Product 0xc326
    [ 19.786] (--) evdev: Logitech USB Keyboard: Found 1 mouse buttons
    [ 19.786] (--) evdev: Logitech USB Keyboard: Found scroll wheel(s)
    [ 19.786] (--) evdev: Logitech USB Keyboard: Found relative axes
    [ 19.786] (II) evdev: Logitech USB Keyboard: Forcing relative x/y axes to exist.
    [ 19.786] (--) evdev: Logitech USB Keyboard: Found absolute axes
    [ 19.786] (II) evdev: Logitech USB Keyboard: Forcing absolute x/y axes to exist.
    [ 19.786] (--) evdev: Logitech USB Keyboard: Found keys
    [ 19.786] (II) evdev: Logitech USB Keyboard: Configuring as mouse
    [ 19.786] (II) evdev: Logitech USB Keyboard: Configuring as keyboard
    [ 19.786] (II) evdev: Logitech USB Keyboard: Adding scrollwheel support
    [ 19.786] (**) evdev: Logitech USB Keyboard: YAxisMapping: buttons 4 and 5
    [ 19.786] (**) evdev: Logitech USB Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 19.786] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:16.0/usb9/9-3/9-3:1.1/input/input2/event2"
    [ 19.786] (II) XINPUT: Adding extended input device "Logitech USB Keyboard" (type: KEYBOARD, id 11)
    [ 19.786] (**) Option "xkb_rules" "evdev"
    [ 19.786] (**) Option "xkb_model" "pc104"
    [ 19.786] (**) Option "xkb_layout" "us"
    [ 19.786] (II) evdev: Logitech USB Keyboard: initialized for relative axes.
    [ 19.786] (WW) evdev: Logitech USB Keyboard: ignoring absolute axes.
    [ 19.786] (**) Logitech USB Keyboard: (accel) keeping acceleration scheme 1
    [ 19.787] (**) Logitech USB Keyboard: (accel) acceleration profile 0
    [ 19.787] (**) Logitech USB Keyboard: (accel) acceleration factor: 2.000
    [ 19.787] (**) Logitech USB Keyboard: (accel) acceleration threshold: 4
    [ 19.787] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
    [ 19.787] (II) No input driver specified, ignoring this device.
    [ 19.787] (II) This device may have been added with another device file.
    [ 23.504] (II) RADEON(0): EDID vendor "GSM", prod id 22746
    [ 23.504] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 23.504] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 23.504] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 23.504] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 23.504] (II) RADEON(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1152x864"x60.0 81.62 1152 1216 1336 1520 864 865 868 895 -hsync +vsync (53.7 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 23.504] (II) RADEON(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)

  • Command Link doesn't work - may be a bug

    Hi all,
    I'm using JDev 11g. I added two pages to the adfc-config.xml file and a controlFlowCase from one to another. Page1--> Page2 The action name is "aaa".
    And then i added a command link to the Page1 and selected the action name "aaa". Now i'm click the command link, but it doesn't work. I'm shocked. What is the problem? It's so basic thing.
    Erdo

    I'm running just like you said. Here is the error log :
    oracle.jbo.JboException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-29000. Error message parameters are {0=java.lang.NullPointerException, 1=null}
         at oracle.adf.model.binding.DCIteratorBinding.reportException(DCIteratorBinding.java:376)
         at oracle.adf.model.binding.DCIteratorBinding.callInitSourceRSI(DCIteratorBinding.java:1693)
         at oracle.adf.model.binding.DCIteratorBinding.internalGetRowSetIterator(DCIteratorBinding.java:1645)
         at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4395)
         at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:341)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.isAttributeUpdateable(JUCtrlValueBinding.java:1647)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.isAttributeUpdateable(JUCtrlValueBinding.java:1754)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.isUpdateable(JUCtrlValueBinding.java:2610)
         at oracle.adfinternal.view.faces.model.AdfELResolver._isReadOnly(AdfELResolver.java:96)
         at oracle.adfinternal.view.faces.model.AdfELResolver.isReadOnly(AdfELResolver.java:112)
         at javax.el.CompositeELResolver.isReadOnly(CompositeELResolver.java:353)
         at com.sun.faces.el.DemuxCompositeELResolver._isReadOnly(DemuxCompositeELResolver.java:290)
         at com.sun.faces.el.DemuxCompositeELResolver.isReadOnly(DemuxCompositeELResolver.java:319)
         at com.sun.el.parser.AstValue.isReadOnly(Unknown Source)
         at com.sun.el.ValueExpressionImpl.isReadOnly(Unknown Source)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:486)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.cacheReadOnly(EditableValueRenderer.java:416)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.beforeEncode(LabeledInputRenderer.java:128)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:340)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2633)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeFormItem(PanelFormLayoutRenderer.java:1015)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer.access$100(PanelFormLayoutRenderer.java:46)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer$FormColumnEncoder.processComponent(PanelFormLayoutRenderer.java:1491)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer$FormColumnEncoder.processComponent(PanelFormLayoutRenderer.java:1410)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:170)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:255)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeChildren(PanelFormLayoutRenderer.java:352)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer.encodeAll(PanelFormLayoutRenderer.java:187)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
    ...

  • Repository event handler doesn't work when inserting an xml-doc via ftp

    Hi,
    I want to add a 'schemaLocation'-attribute to an XML-document when I load it in the repository. Therefore, I use the precreate-repository event and created a Repository Event Handler (see code extract below).
    Everything works fine if I type the following code in SQL Plus:
    Declare
    v_return BOOLEAN;
    Begin
    v_return:=DBMS_XDB.createresource('/public/xml/test.xml', XMLType(bfilename('XMLDIR', 'test.xml'),nls_charset_id('AL32UTF8')));
    end;Unfortunately, when I try to insert an XML-document via ftp into the /public/xml folder it doesn´t work as expected and no 'schemaLocation'-attribute is added to the new resource.
    What's the reason for this strange behavior and how can I solve it?
    For your information: I use the Oracle Database 11g Enterprise Edition Release 11.2.0.1.0
    Thank you very much for your help!!!
    Repository Event Handler code extract:_
    create or replace
    PACKAGE BODY schemalocation AS
    PROCEDURE handlePreCreate (eventObject DBMS_XEVENT.XDBRepositoryEvent) AS
    XDBResourceObj DBMS_XDBRESOURCE.XDBResource;
    var XMLType;
    l_return BOOLEAN;
    l_xmldoc dbms_xmldom.DOMDocument;
    l_docelem dbms_xmldom.DOMElement;
    l_attr dbms_xmldom.DOMAttr;
    c1 clob;
    node     dbms_xmldom.DOMNode;
    txid varchar2(100);
    dDoc DBMS_XMLDOM.DOMDocument;
    nlNodeList DBMS_XMLDOM.DOMNodeList;
    BEGIN
    XDBResourceObj := DBMS_XEVENT.getResource(eventObject);
    dbms_lob.createTemporary(c1,TRUE);
    var:=DBMS_XDBRESOURCE.getcontentxml(XDBResourceObj);
    l_xmldoc := dbms_xmldom.newDOMDocument(var);
    l_docelem := DBMS_XMLDOM.getDocumentElement(l_xmldoc);
    ------ add schemaLocation attribute
    l_attr := DBMS_XMLDOM.createAttribute(l_xmldoc, 'xsi:schemaLocation');
    DBMS_XMLDOM.setValue(l_attr, 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd');
    l_attr := DBMS_XMLDOM.setAttributeNode(l_docelem, l_attr);
    DBMS_XMLDOM.WRITETOCLOB(l_xmldoc, c1);
    ------- get the value of the TxId-tag
    dDoc := DBMS_XMLDOM.NEWDOMDOCUMENT(c1);
    nlNodeList := DBMS_XMLDOM.GETELEMENTSBYTAGNAME(dDoc, 'TxId');
    node := DBMS_XMLDOM.ITEM(nlNodeList, 0);
    txid:= dbms_xmldom.getnodevalue(dbms_xmldom.getfirstchild(node));
    l_return:=DBMS_XDB.createresource('/public/ok/'||txid||'.xml', XMLType(c1));
    END;

    Marco,
    Here's an example of the problem :
    create or replace package handle_events
    as
      procedure handlePreCreate(p_event dbms_xevent.XDBRepositoryEvent);
    end;
    create or replace package body handle_events
    is
    procedure handlePreCreate (p_event dbms_xevent.XDBRepositoryEvent)
    is
      XDBResourceObj dbms_xdbresource.XDBResource;
      doc XMLType;
      res boolean;
    begin
      XDBResourceObj := dbms_xevent.getResource(p_event);
      doc := dbms_xdbresource.getContentXML(XDBResourceObj);
      select insertchildxml(
        doc
      , '/root'
      , '@xsi:schemaLocation'
      , 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd'
      , 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
      into doc
      from dual;
      res := dbms_xdb.CreateResource('/public/xml/result.xml', doc);
    end;
    end;
    declare
    res boolean;
    begin
    res := dbms_xdb.CreateFolder('/public');
    res := dbms_xdb.CreateFolder('/public/tmp');
    res := dbms_xdb.CreateFolder('/public/xml');
    end;
    declare
    res            boolean;
    resconfig      xmltype;
    my_schema      varchar2(30) := 'DEV';
    resconfig_path varchar2(300) := '/public/ResConfig.xml';
    resource_path  varchar2(300) := '/public/tmp';
    begin
      resconfig  := xmltype(
    '<ResConfig xmlns="http://xmlns.oracle.com/xdb/XDBResConfig.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/xdb/XDBResConfig.xsd http://xmlns.oracle.com/xdb/XDBResConfig.xsd">
      <event-listeners set-invoker="true">
        <listener>
          <description>My event handler</description>
          <schema>'||my_schema||'</schema>
          <source>HANDLE_EVENTS</source>
          <language>PL/SQL</language>
          <events>
            <Pre-Create/>
          </events>
          <pre-condition>
            <existsNode>
              <XPath>/r:Resource[r:ContentType="text/xml"]</XPath>
              <namespace>xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd"</namespace>
            </existsNode>
          </pre-condition>
        </listener>
      </event-listeners>
      <defaultChildConfig>
        <configuration>
          <path>'||resconfig_path||'</path>
        </configuration>
      </defaultChildConfig>
    </ResConfig>'
      res := dbms_xdb.CreateResource(resconfig_path, resconfig);
      dbms_resconfig.addResConfig(resource_path, resconfig_path, null);
    end;
    /Giving the following input XML file :
    <?xml version="1.0" encoding="utf-8"?>
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>This works :
    SQL> declare
      2    res boolean;
      3  begin
      4    res := dbms_xdb.CreateResource('/public/tmp/test.xml',
      5               xmltype(bfilename('TEST_DIR','test.xml'), nls_charset_id('AL32UTF8')));
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    RESULT
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
    urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd
    "/>With the same document loaded via FTP, we get :
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    ERROR:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00283: document encoding is UTF-16-based but default input encoding is not
    Error at line 1
    no rows selectedand the content looks like :
    < ? x m l   v e r s i o n = " 1 . 0 "   e n c o d i n g = " u t f - 8 " ? >
    < r o o t   x m l n s : x s i = " h t t p : / / w w w . w 3 . o r g / 2 0 0 1 / X M L S c h e m a - i n s t a n c e " / >As a workaround, I've found that serializing and re-parsing the document solves the problem :
      select insertchildxml(
        xmltype(doc.getclobval())
      , '/root'
      , '@xsi:schemaLocation'
      , 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd'
      , 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
      into doc
      from dual;
    ...We then get the expected result after FTP transfer :
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    RESULT
    <?xml version="1.0" encoding="UTF-8"?>
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
    urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd
    "/>The workaround also works for the DOM version presented above.
    Any ideas?

  • Substring doesn't work in KM

    Can anyone explain why following code doesn't work in my KM:
    <%
    String viewName = new String (snpRef.getInfo("COLL_NAME"));
    nameLength = viewName.length();
    if (nameLength >30) {
         viewName = viewName.substring(0,30);
    %>
    It falls with exception:
    com.sunopsis.tools.core.exception.SnpsSimpleMessageException: Error during task interpretation
    Task:5
    java.lang.Exception: BeanShell script error: Sourced file: inline evaluation of: ``out.print("\ncreate view \t") ; out.print(snpRef.getInfo("SRC_WORK_SCHEMA") ) ; . . . '' Token Parsing Error: Lexical error at line 4, column 38. Encountered: "\n" (10), after : "\"": <at unknown location>
    BSF info: #Create view on source at line: 0 column: columnNo
         at com.sunopsis.dwg.codeinterpretor.a.a(a.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.k(e.java)
         at com.sunopsis.dwg.cmd.h.A(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Thread.java:619)
    I have tried without substring and everything works fine.
    <%
    String viewName = new String (snpRef.getInfo("COLL_NAME"));
    nameLength = viewName.length();
    if (nameLength >30) {
         viewName = viewName + "xx";
    %>
    THNX in advance!
    Edited by: user13278245 on Jun 30, 2010 6:58 AM

    This worked for me :-
    <@
    String viewName = new String ("<%=odiRef.getInfo("COLL_NAME")%>");
    nameLength = viewName.length();
    if (nameLength >30) {
    viewName = viewName.substring(0,30);
    System.out.print(viewName);
    @>
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • (unbelievable) gmail tasks (web app) doesn't work on 10.2.429 browser

    Google provides Tasks as web app
    http://mail.google.com/mail/help/tasks/
    here https://support.google.com/calendar/answer/128061?p=tasks&rd=1 they say to test if your device is xhtml compatible
    to test if it is, they suggets to visit this link from the mobile device
    Minimum requirements
    These are the minimum requirements to access Tasks for mobile web browsers:
    Your browser needs to be XHTML compliant. To determine whether your browser is compatible, visit http://www.google.com/xhtml and perform a search. If it doesn't work, your browser may not be XHTML compliant.
    OS 10.2 allows to browse http://www.google.com/xhtml and also to perform searches, but next it fails to parse/load the tasks page
    try it yourself http://gmail.com/tasks
    is it google not-compliant or is it the BlackBerry OS 10.2 browser?
    Thank you
    Cor

    Try to open the right-click context menu of the Back button and see if you can go back further.
    The current active entry in that list has a bullet in front of it.
    If you hover an entry in that session history list then it shows the direction by adding an arrow at the left.
    You can left click an item to open it in the current tab or middle-click or Ctrl left-click an entry in that list to open that link in new tab, just like you can with other links.

  • Link report doesn't doesn't  work

    I create Interactive Report page 45 ,this page region Dynamic sql like:
    select a.name ,a.ctype,b.content from it_log_content a,it_log_content_detail b
    where a.id=b.log_content__id and b.business_log_id=:IR_ID and a.log_id=:IR_LOG_ID
    the report content will change by 2 parameters :IR_ID and :IR_LOG_ID
    when click the link “http://192.168.1.14:8080/apex/f?p=105:45:824357618687194::NO:RP,45:IR_ID,IR_LOG_ID:2,1”
    then show page 45,but no data found,i can sure that to run the sql ”select a.name ,a.ctype,b.content from it_log_content a,it_log_content_detail b
    where a.id=b.log_content__id and b.business_log_id=2 and a.log_id=1“ is not null;
    why it doesn't work?
    The following is debug message :
    S H O W: application="105" page="45" workspace="" request="" session="824357618687194"
    Application 105, Authentication: CUSTOM2, Page Template: 2795516720739753
    alter session set nls_language="SIMPLIFIED CHINESE"
    alter session set nls_territory="CHINA"
    NLS: CSV charset=ZHS16GBK
    ...NLS: Set Decimal separator="."
    ...NLS: Set NLS Group separator=","
    ...NLS: Set g_nls_date_format="DD-MON-RR"
    ...NLS: Set g_nls_timestamp_format="DD-MON-RR HH.MI.SSXFF AM"
    ...NLS: Set g_nls_timestamp_tz_format="DD-MON-RR HH.MI.SSXFF AM TZR"
    ...Setting session time_zone to +08:00
    Setting NLS_DATE_FORMAT to application date format: YYYY-MM-DD
    ...NLS: Set g_nls_date_format="YYYY-MM-DD"
    ...NLS: Set g_nls_timestamp_format="DD-MON-RR HH.MI.SSXFF AM"
    ...NLS: Set g_nls_timestamp_tz_format="DD-MON-RR HH.MI.SSXFF AM TZR"
    NLS: Language=zh
    Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: zh
    ...Session ID 824357618687194 can be used
    ...Application session: 824357618687194, user=ADMIN
    ...Determine if user "ADMIN" workspace "100000" can develop application "105" in workspace "100000"
    ...Check for session expiration:
    Session: Fetch session header information
    Saving g_arg_names=IR_ID and g_arg_values=2
    ...Set Interactive Report Column filter for report column "ID"
    Saving g_arg_names=IR_LOG_ID and g_arg_values=1
    ...Set Interactive Report Column filter for report column "LOG_ID"
    ...fetch session state from database
    fetch items
    ...fetched 2 session state items
    Branch point: Before Header
    Fetch application meta data
    Clear cache: request=RP
    ...Resetting pagination for page
    Clear cache: request=45
    ...Clearing Cache for Page 45
    Nulling cache for application "105" page: 45
    Saving g_arg_names=IR_ID and g_arg_values=2
    ...Set Interactive Report Column filter for report column "ID"
    Saving g_arg_names=IR_LOG_ID and g_arg_values=1
    ...Set Interactive Report Column filter for report column "LOG_ID"
    ...metadata, fetch computations
    ...metadata, fetch buttons
    Setting NLS_DATE_FORMAT to application date format: YYYY-MM-DD
    ...NLS: Set g_nls_date_format="YYYY-MM-DD"
    ...NLS: Set g_nls_timestamp_format="DD-MON-RR HH.MI.SSXFF AM"
    ...NLS: Set g_nls_timestamp_tz_format="DD-MON-RR HH.MI.SSXFF AM TZR"
    Computation point: Before Header
    Processing point: Before Header
    ...metadata, fetch item type settings
    ...metadata, fetch items
    Show page template header
    Computation point: After Header
    Processing point: After Header
    Computation point: Before Box Body
    Processing point: Before Box Body
    Show page tempate footer
    Processing point: Before Footer
    Computation point: Before Footer
    Processing point: After Box Body
    Region: LogContent
    show report
    determine column headings
    activate sort
    parse query as: TESTIT
    binding: ":IR_ID"="IR_ID" value=""
    binding: ":IR_LOG_ID"="IR_LOG_ID" value=""
    print column headings
    rows loop: 15 row(s)
    pagination
    Computation point: After Box Body
    Computation point: After Footer
    v$sesstat.statistic# = 436: execute count=0
    Log Activity:
    Processing point: After Footer
    End Show Page
    the item :IR_ID and :IR_LOG_ID are set to null?????
    why?
    Edited by: myfuture1 on Jun 8, 2011 11:48 PM

    Hi,
    It seems that you are trying to use the syntax for linking to an interactive report and establishing a filter. If that is the case, then you should remove "and b.business_log_id=:IR_ID and a.log_id=:IR_LOG_ID" from the where condition of your SQL and use IR_<column name> in the URL to specify the values of the columns you want to filter. In your case, the URL that you should use then is: “http://192.168.1.14:8080/apex/f?p=105:45:824357618687194::NO:RP,45:IR_BUSINESS_LOG_ID,IR_LOG_ID:2,1”.
    If what you are trying is to set the value of some page items through the URL, then you will have to make sure that you have two items in your page to hold the values, and that they are named something different from IR_xxx, because those are reserved to interact with the interactive report. For example, if your page items were named P45_ID and P45_LOG_ID, then using this URL: "http://192.168.1.14:8080/apex/f?p=105:45:824357618687194::NO:RP,45:P45_ID,P45_LOG_ID:2,1” and using this where condition in the SQL: "where a.id=b.log_content__id and b.business_log_id=:P45_ID and a.log_id=:P45_LOG_ID" should also work.
    You can get more information on <a href="http://www.evernote.com/pub/sstryker58/Stews_Apex_tips#n=b5abf5b7-3ff8-48c2-8e60-a5038c14e0d5">linking to interactive reports syntax</a> and <a href="http://www.oracleapplicationexpress.com/tutorials/55">URL parameter syntax</a> through those links.
    Regards,
    Sergio

Maybe you are looking for