Rearrange Layout doesn't work

I want to rearrange the order of photos in an album on iPhoto for iOS on my iPad. When I click on the (?) Help button the pop up guides says that I can "Drag to rearrange layout" but when I try to do that nothing happens. What am I missing?

You don't call the setLayout() after the pack(), do you?
pack() will invoke the 'building' of the GUI (asking all the components what size they would like to have).
Try it the other way.

Similar Messages

  • After installing Mavericks on my MacBook Pro 2009 (japanese keyboard) the layout doesn't work. I mean if I press the @ button the è symbol comes out. I tried to change the layout in Preferences but doesn't work. Could anyone help me please?

    Hi there
    after installing Mavericks on my macbookpro 2009 (Japanese keyboards) the layout doesn't work anymore. I mean, if I press the "@" button the "è" symbol comes out. I did already change the layout in the Preferences but it didn't work.
    Could anyone help me please?

    Apple has changed the way Kotoeri keyboard layouts work.  You should be able to get normal behavior if you activate the US layout and switch to that just before using Kotoeri.  Here is also an Apple note on the topic with another suggestion:
    http://support.apple.com/kb/TS5284
    Be sure to tell Apple you want this changed back to the way if was in 10.8 and earlier via
    http://www.apple.com/feedback
    If you know Japanese well, you might ask on the Japanese discussions whether someone has found a better fix for this:
    https://discussionsjapan.apple.com

  • WebDynpro ABAP layout doesn't work through SAPRouter

    Hello Everyone
    I am new in the Web Dynpro ABAP environment.
    When I am at the office, I can use SE80 to develop a web dynpro abap program. I can see the layout of the views,
    But when I am outside of the office an want to work through SAPRouter I cannot see the layout of the views.
    I am obtaining the following eror:
    This Program cannot display the web page.
    Any idea why through SAPRouter it doesn't work? And what to do to make it work?
    Regards
    dstj

    Your problem has to do with FQDN (full qualified domain name).
    SAP uses system parameter icm/host_name_full to determine the full qualified domain name for your webdynpro applications.
    If this parameter is not set, SAP queries the operating system for the FQDN.
    To check if this parameter is defined right, use SAP transaction SICF:
    1) Execute transaction SICF;
    2) Click the execute button (F8 key);
    3) Choose menu path Goto --> ICM Monitor;
    4) Choose menu path Goto --> Parameters --> Display.
    In the list that will be shown, look for parameter icm/host_name_full (use the binoculars to find it). This parameter should be at the end of the parameter list. If this parameter does not exist or if its contents is not a FQDN, then you are in trouble accessing all websynpro funcionalities from outside of your network.
    In this case you should change this parameter to reflect a FQDN (full qualified domain name).
    To change this parameter:
    1) Execute transaction RZ10;
    2) Enter the profile name of the active instance (click F4 to get all possible values. There shouldn't have many. Choose the one which is an instance profile and that is named after your system name and/or system ID);
    3) Click on the Extended maintenance radio button on the Edit profile group below profile name and click on the Change button;
    4) If the icm/host_name_full parameter is already there, change its value to the FQDN of your network. If the parameter is not there, click on the create parameter button on the toolbar, type the paramter name (icm/host_name_full) and its value (which should be the FQDN of your network);
    5) Finally, keep clicking the back (F3) key untill the system tells you that the modifications are not saved and asks if you want to save them. Answer YES.
    Now, AFTER RESTARTING YOUR SAP APPLICATION SERVER, the access to all webdynpro functionalities in SE80 should work without requiring a modification of your windows HOSTS file.
    REMEMBER: YOU WILL HAVE TO RESTART YOUR SAP APPLICATION SERVER FOR THESE CHANGES TO WORK!!!
    Hope the above helps!
    Any doubts, feel free to get in touch.
    Cheers!
    Lino

  • Bug or feature? Panel layout doesn't work when Stage contained in class

    I have found a very strange behavior. But can't really understand what goes wrong. So I hope I can get some hints here.
    Just try the following demo:
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.layout.Panel;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.paint.Color;
    import javafx.scene.layout.Container;
    public function run(   ) {
      //Remove the next two lines for a miracle!
      Asdf {}}
    public class Asdf {
      def stage: Stage = Stage {
          scene: Scene {
            width: 800
            height: 600
            content: [
                def p: Panel = Panel {
                    width: bind stage.scene.width
                    height: bind stage.scene.height
                    onLayout: function (): Void {
                      p.resizeContent();
                      for ( node in Container.getManaged( p.content ) ) {
                        Container.positionNode( node, indexof node * 20 + 50, indexof node * 30 + 40, true );
                    content: [
                      Rectangle {
                        width: 140, height: 90
                        fill: Color.ORANGE
                        opacity: 0.5
                      Rectangle {
                        width: 100, height: 120
                        fill: Color.BLUE
                        opacity: 0.5
    }The layout function is called, but the values are not respected...
    Now just remove the two lines containing the object initialization and class definition. It should look like that:
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.layout.Panel;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.paint.Color;
    import javafx.scene.layout.Container;
    public function run(   ) {
      //Remove the next two lines for a miracle!
    //  Asdf {}}
    //public class Asdf {
      def stage: Stage = Stage {
          scene: Scene {
            width: 800
            height: 600
            content: [
                def p: Panel = Panel {
                    width: bind stage.scene.width
                    height: bind stage.scene.height
                    onLayout: function (): Void {
                      p.resizeContent();
                      for ( node in Container.getManaged( p.content ) ) {
                        Container.positionNode( node, indexof node * 20 + 50, indexof node * 30 + 40, true );
                    content: [
                      Rectangle {
                        width: 140, height: 90
                        fill: Color.ORANGE
                        opacity: 0.5
                      Rectangle {
                        width: 100, height: 120
                        fill: Color.BLUE
                        opacity: 0.5
    }Now everything works as expected... Any hints? What did I miss?

    I have found a very strange behavior. But can't really understand what goes wrong. So I hope I can get some hints here.
    Just try the following demo:
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.layout.Panel;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.paint.Color;
    import javafx.scene.layout.Container;
    public function run(   ) {
      //Remove the next two lines for a miracle!
      Asdf {}}
    public class Asdf {
      def stage: Stage = Stage {
          scene: Scene {
            width: 800
            height: 600
            content: [
                def p: Panel = Panel {
                    width: bind stage.scene.width
                    height: bind stage.scene.height
                    onLayout: function (): Void {
                      p.resizeContent();
                      for ( node in Container.getManaged( p.content ) ) {
                        Container.positionNode( node, indexof node * 20 + 50, indexof node * 30 + 40, true );
                    content: [
                      Rectangle {
                        width: 140, height: 90
                        fill: Color.ORANGE
                        opacity: 0.5
                      Rectangle {
                        width: 100, height: 120
                        fill: Color.BLUE
                        opacity: 0.5
    }The layout function is called, but the values are not respected...
    Now just remove the two lines containing the object initialization and class definition. It should look like that:
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.layout.Panel;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.paint.Color;
    import javafx.scene.layout.Container;
    public function run(   ) {
      //Remove the next two lines for a miracle!
    //  Asdf {}}
    //public class Asdf {
      def stage: Stage = Stage {
          scene: Scene {
            width: 800
            height: 600
            content: [
                def p: Panel = Panel {
                    width: bind stage.scene.width
                    height: bind stage.scene.height
                    onLayout: function (): Void {
                      p.resizeContent();
                      for ( node in Container.getManaged( p.content ) ) {
                        Container.positionNode( node, indexof node * 20 + 50, indexof node * 30 + 40, true );
                    content: [
                      Rectangle {
                        width: 140, height: 90
                        fill: Color.ORANGE
                        opacity: 0.5
                      Rectangle {
                        width: 100, height: 120
                        fill: Color.BLUE
                        opacity: 0.5
    }Now everything works as expected... Any hints? What did I miss?

  • Layout Manager doesn't  work

    Hello !
    After few days, I can't solve this problem, please help me before I will become completely insane !!!
    I have a JInternalFrame which contain a panel (the contentpane). I add a JTabbedPane to this contentpane. This tabbedpane consists of 2 panel in 2 tab. I would like to add some components for each panel with a GridBagLayout manager but it doesn't work. Components are displayed at center of panel on 1 row although each of them have a specific gridx and gridy...
    See below :
    public class WFParamsFrame extends JInternalFrame{
         private javax.swing.JPanel jContentPane = null;
         private javax.swing.JPanel jGeneralPanel = null;
         private ResourceBundle messages;
         private aMain app;
         private StaticParamsFrame staticDataFrame;
         private int indexWF;
         private javax.swing.JTabbedPane jTabbedPane = null;
         private javax.swing.JLabel jLabel = null;
         private javax.swing.JTextField jTextField = null;
         private javax.swing.JLabel jLabel1 = null;
         private javax.swing.JTextField jTextField1 = null;
    public WFParamsFrame(aMain a, StaticParamsFrame sdFrame, int _index, boolean bool) {
    super();
    app=a;
    staticDataFrame = sdFrame;
    indexWF = _index;
    messages=app.getMessages();
    initialize();
    private void initialize() {
    this.setSize(670, 385);
    this.setContentPane(getJContentPane());
    this.setTitle(messages.getString("AWFParF_TitleShowParams"));
    this.jTabbedPane.setTitleAt(0, messages.getString("AWFParF_TitleGeneralTab"));
    this.setClosable(true);
    this.setVisible(true);
    this.setIconifiable(true);
    this.addInternalFrameListener(new javax.swing.event.InternalFrameAdapter() {
         public void internalFrameClosing(javax.swing.event.InternalFrameEvent e) {   
              frameClose();
    private javax.swing.JPanel getJContentPane() {
    if (jContentPane == null) {
         jContentPane = new javax.swing.JPanel();
         jContentPane.setLayout(new java.awt.BorderLayout() );
         jContentPane.add(getJTabbedPane(),java.awt.BorderLayout.CENTER);
    return jContentPane;
    private javax.swing.JTabbedPane getJTabbedPane() {
    if(jTabbedPane == null) {
         jTabbedPane = new javax.swing.JTabbedPane();
         jTabbedPane.addTab(null, null, getGeneralPanel(), null);
         jTabbedPane.setMnemonicAt(0, KeyEvent.VK_G);          
    return jTabbedPane;
    private javax.swing.JPanel getGeneralPanel() {
    if(jGeneralPanel == null) {
         jGeneralPanel = new javax.swing.JPanel(new java.awt.GridBagLayout());
         addComponent(jGeneralPanel, getJLabel(),           0, 0, 1, 1, 1, 1);
         addComponent(jGeneralPanel, getJTextField(),      1, 0, 1, 1, 1, 1);
         addComponent(jGeneralPanel, getJLabel1(),      2, 0, 1, 1, 1, 1);
         addComponent(jGeneralPanel, getJTextField1(),      3, 0, 1, 1, 1, 1);
         addComponent(jGeneralPanel, getJLabel2(),      2, 1, 1, 1, 1, 1);
         addComponent(jGeneralPanel, getJComboBox2(),      1, 1, 1, 1, 1, 1);
         addComponent(jGeneralPanel, getJLabel3(),      2, 1, 1, 1, 1, 1);
         addComponent(jGeneralPanel, getJTextField3(),      3, 1, 1, 1, 1, 1);     
         jGeneralPanel.setSize(700, 350);
         jGeneralPanel.setPreferredSize(new java.awt.Dimension(700,350));
    return jGeneralPanel;
    private void addComponent(JPanel p, java.awt.Component component,
                             int row, int column, int width, int height,
                             int weighty, int weightx) {
    GridBagConstraints c = new GridBagConstraints();
    c.gridx= column;
    c.gridy=row;
    c.gridwidth=width;
    c.gridheight=height;
    c.anchor=GridBagConstraints.NORTHWEST;
    c.weighty = weighty;
    c.weightx= weightx;
    p.add(component, c);
    }

    GridBagLayout is something I avoid at all costs. Use BoxLayout and javax.swing.Box.I've asked this before and I'm still waiting for a counterexample: I claim
    their are plenty of reasonable GUIs where GBL is the obvious answer. Take the challenge...
    Perhaps you could help an old man out and recreate the following simple GUI, sans GridBagLayout.
    import java.awt.*;
    import javax.swing.*;
    public class GridBagExample {
        public static void main(String[] args) {
            UIManager.put("TextField.margin", new Insets(3,5,3,5));
            String[] labelText = {"field 1:", "field 2:", "a text area:", "last field:"};
            JPanel p = new JPanel(new GridBagLayout());
            p.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
            GridBagConstraints gbc = new GridBagConstraints();
            //labels:
            gbc.gridx = 0;
            gbc.anchor = GridBagConstraints.FIRST_LINE_END;
            gbc.insets = new Insets(2,2,2,2);
            for(int i=0; i<labelText.length; ++i)
                p.add(new JLabel(labelText), gbc);
    //text:
    gbc.gridx = 1;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    for(int i=0; i<labelText.length; ++i)
    p.add(i==2? new JScrollPane(new JTextArea(5, 20)): new JTextField(20), gbc);
    //display p:
    JFrame f = new JFrame("GridBagExample");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setContentPane(p);
    f.pack();
    f.setResizable(false);
    f.setLocationRelativeTo(null);
    f.setVisible(true);

  • I have recently found a pop up box telling me that 'Safari quit unexpectedly', and askes me to either report, re-open or ignore. However when I quit on re-open it doesn't work. I just get the same pop up box appearing. Has anyone any ideas please?

    Sorry - I meant to say: 'However when I click on re-open it doesn't work'.
    This problem has only occurred within the last week or so, since I have started to run my Mac on Safari OX 10 Yosemite. I wonder if anyone else has had similar problems and can suggest how I rectify it?
    I am now using Firefox to get on line but would like to know what has gone wrong with Safari.
    Many thanks,
    Clare.

    I cannot use mine at all! I am having to use Firefox as well, i continue to get this and have no idea what to do???
    Process:          
    Safari [786]
    Path:             
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:       
    com.apple.Safari
    Version:          
    8.0.2 (10600.2.5)
    Build Info:       
    WebBrowser-7600002005000000~1
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    Safari [786]
    User ID:          
    501
    Date/Time:        
    2014-12-27 12:02:59.114 -0600
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    AED39F4B-8E1B-0B58-D4A3-96C28B329DEE
    Time Awake Since Boot: 2300 seconds
    Crashed Thread:   
    15
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
    __TEXT            
    0000000101bb0000-0000000101bb1000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x00007fff8ec12a7e __getattrlist + 10
    1   com.apple.CoreServicesInternal    0x00007fff94ba674f prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227
    2   com.apple.CoreServicesInternal    0x00007fff94ba40ea _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 211
    3   com.apple.CoreFoundation
    0x00007fff8b13904b CFURLCopyResourcePropertyForKey + 123
    4   com.apple.CoreFoundation
    0x00007fff8b140f3e -[NSURL getResourceValue:forKey:error:] + 190
    5   com.apple.AppKit        
    0x00007fff8a21e34b +[NSImageRep _imageRepsWithContentsOfURL:expandImageContentNow:giveUpOnNetworkURLsWithoutGoo dExtensions:] + 142
    6   com.apple.AppKit        
    0x00007fff8a21e261 __51-[NSImageURLReferencingRepProvider representations]_block_invoke + 55
    7   com.apple.Foundation    
    0x00007fff95d9a006 _NSFaultInObject + 32
    8   com.apple.AppKit        
    0x00007fff8a21e223 -[NSImageURLReferencingRepProvider representations] + 89
    9   com.apple.AppKit        
    0x00007fff8a1c3af2 __45-[NSImage _usingRepresentationsPerformBlock:]_block_invoke + 47
    10  com.apple.AppKit        
    0x00007fff8a1c3a8c -[NSImage _usingRepresentationsPerformBlock:] + 91
    11  com.apple.AppKit        
    0x00007fff8a21e0fc __15-[NSImage size]_block_invoke + 380
    12  com.apple.AppKit        
    0x00007fff8a212dc7 -[NSImage size] + 137
    13  com.apple.AppKit        
    0x00007fff8a2ce62f -[NSImageCell _cellSizeAccountingForImageInControl:] + 92
    14  com.apple.AppKit        
    0x00007fff8a2ce582 -[NSImageView intrinsicContentSize] + 95
    15  com.apple.AppKit        
    0x00007fff8a26ff28 -[NSView(NSConstraintBasedLayout) _generateContentSizeConstraints] + 50
    16  com.apple.AppKit        
    0x00007fff8a26fb04 -[NSView(NSConstraintBasedLayout) _updateContentSizeConstraints] + 433
    17  com.apple.AppKit        
    0x00007fff8a26f060 -[NSView updateConstraints] + 80
    18  com.apple.AppKit        
    0x00007fff8a26ee38 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 664
    19  com.apple.AppKit        
    0x00007fff8a26ed70 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 464
    20  com.apple.AppKit        
    0x00007fff8a285f94 __82-[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:]_block _invoke + 277
    21  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    22  com.apple.AppKit        
    0x00007fff8a26ec86 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 230
    23  com.apple.AppKit        
    0x00007fff8a26ead6 __45-[NSView updateConstraintsForSubtreeIfNeeded]_block_invoke + 49
    24  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    25  com.apple.AppKit        
    0x00007fff8a1f27ea -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    26  com.apple.AppKit        
    0x00007fff8a26ea9e -[NSView updateConstraintsForSubtreeIfNeeded] + 88
    27  com.apple.AppKit        
    0x00007fff8a2ce4b8 __62-[NSWindow(NSConstraintBasedLayout) updateConstraintsIfNeeded]_block_invoke + 136
    28  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    29  com.apple.AppKit        
    0x00007fff8a1f27ea -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    30  com.apple.AppKit        
    0x00007fff8a2ce3dc -[NSWindow(NSConstraintBasedLayout) updateConstraintsIfNeeded] + 208
    31  com.apple.AppKit        
    0x00007fff8a26e696 -[NSView layoutSubtreeIfNeeded] + 155
    32  com.apple.AppKit        
    0x00007fff8a4d2f45 -[NSAlert buildAlertStyle:title:formattedMsg:first:second:third:oldStyle:] + 9397
    33  com.apple.AppKit        
    0x00007fff8a4d0a45 -[NSAlert layout] + 357
    34  com.apple.AppKit        
    0x00007fff8a4decf1 -[NSAlert runModal] + 46
    35  com.apple.AppKit        
    0x00007fff8a1e165d __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1037
    36  com.apple.AppKit        
    0x00007fff8a1e120e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    37  com.apple.AppKit        
    0x00007fff8a1e11ad -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    38  com.apple.AppKit        
    0x00007fff8a1e0e9a -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    39  com.apple.AppKit        
    0x00007fff8a1e0c69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    40  com.apple.AppKit        
    0x00007fff8a1e06b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    41  com.apple.Foundation    
    0x00007fff95da2458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    42  com.apple.Foundation    
    0x00007fff95da22c9 _NSAppleEventManagerGenericHandler + 102
    43  com.apple.AE            
    0x00007fff8c13b99c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    44  com.apple.AE            
    0x00007fff8c13b719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    45  com.apple.AE            
    0x00007fff8c13b623 aeProcessAppleEvent + 295
    46  com.apple.HIToolbox     
    0x00007fff8979f37e AEProcessAppleEvent + 56
    47  com.apple.AppKit        
    0x00007fff8a1dcd76 _DPSNextEvent + 2665
    48  com.apple.AppKit        
    0x00007fff8a1dbe80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    49  com.apple.Safari.framework  
    0x0000000101c2fad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    50  com.apple.AppKit        
    0x00007fff8a1cfe23 -[NSApplication run] + 594
    51  com.apple.AppKit        
    0x00007fff8a1bb2d4 NSApplicationMain + 1832
    52  libdyld.dylib           
    0x00007fff922305c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff8ec1422e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff955a9a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 7:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x00007fff8ec13132 __psynch_cvwait + 10
    1   com.apple.WebCore       
    0x00000001037dd88b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore       
    0x00000001037da9d9 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore
    0x000000010299ca9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x00007fff8ec0e52e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8ec0d69f mach_msg + 55
    2   com.apple.QuartzCore    
    0x00007fff9468fd63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore    
    0x00007fff9468fc96 thread_fun + 25
    4   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff8ec0e52e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8ec0d69f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff8b14eb14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff8b14dfdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff8b14d838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork     
    0x00007fff90ecad20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation    
    0x00007fff95de8b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    8   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    9   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib  
    0x00007fff8ec133f6 __select + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    2   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    3   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 14:
    Thread 15 Crashed:
    0   libsystem_pthread.dylib 
    0x00007fff8dd07695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib       
    0x00007fff98093b78 vfprintf_l + 28
    2   libsystem_c.dylib       
    0x00007fff9808c620 fprintf + 186
    3   ???                     
    0x000000010ac515dc 0 + 4475655644
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7b4f11d8  rcx: 0x00007fff7b4f11f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff7b4f11f0  rsi: 0x00007fff8dd07b14  rbp: 0x000000010ac4de30  rsp: 0x000000010ac4ddb0
       r8: 0x000000010abb4000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff7b4f06b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff8dd07695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:
    6
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x101bb0000 -   
    0x101bb0fff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
    0x101bb9000 -   
    0x1024f2ff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x102992000 -   
    0x102ea5ff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x10300b000 -   
    0x1032bffff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x10359b000 -   
    0x10359bfff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x1035a1000 -   
    0x1036ddffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
    0x1037d6000 -   
    0x10477bff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x10a7dc000 -   
    0x10a7dcff5 +cl_kernels (???) <2B02B8D9-91CE-461E-9862-EE769DF8E174> cl_kernels
    0x10a7de000 -   
    0x10a8c4fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x10a98b000 -   
    0x10a98bfef +cl_kernels (???) <7A55F558-91D3-494C-812B-D4C6768AC6AD> cl_kernels
    0x7fff69b06000 -
    0x7fff69b3c837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    0x7fff88fc1000 -
    0x7fff88fc2ff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <A3D84EBD-3007-3A49-BEE5-F05790DCF38E> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x7fff88fc3000 -
    0x7fff88feefff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x7fff88ff8000 -
    0x7fff89049ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8904a000 -
    0x7fff893b5fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff893d5000 -
    0x7fff893d8fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8947c000 -
    0x7fff89763ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff89764000 -
    0x7fff89a66fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff89a7f000 -
    0x7fff89aaffff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x7fff89ab0000 -
    0x7fff89ac3ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff89ac4000 -
    0x7fff89b3afe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
    0x7fff89b3b000 -
    0x7fff89f6bfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff89f6c000 -
    0x7fff89f8fff7  com.apple.framework.familycontrols (4.1 - 410) <41499068-0AB2-38CB-BE6A-F0DD0F06AB52> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff89f90000 -
    0x7fff89fb8fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
    0x7fff89fb9000 -
    0x7fff8a19e267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
    0x7fff8a19f000 -
    0x7fff8a1a3fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
    0x7fff8a1a4000 -
    0x7fff8a1aaff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff8a1b8000 -
    0x7fff8acf9fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8acfa000 -
    0x7fff8ad8bfff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff8b023000 -
    0x7fff8b06dfff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff8b06e000 -
    0x7fff8b0bafff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8b0dc000 -
    0x7fff8b472fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8b473000 -
    0x7fff8b48cff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8b48d000 -
    0x7fff8b4fcfff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8b4fd000 -
    0x7fff8b51bff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff8b51c000 -
    0x7fff8b5c4ff7  com.apple.PackageKit (3.0 - 434) <B6C2831E-914D-3E5F-B0E9-A7079489A6FD> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff8b5ea000 -
    0x7fff8b606ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8b607000 -
    0x7fff8b65bfff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff8b65f000 -
    0x7fff8b667ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff8b673000 -
    0x7fff8b673fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8b674000 -
    0x7fff8b68fff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x7fff8b6c3000 -
    0x7fff8b6ceff7  com.apple.CommerceCore (1.0 - 376.0.5) <57E5C067-52F6-3854-86C0-D878EDA24B55> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8b6cf000 -
    0x7fff8b6d0ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8b6d1000 -
    0x7fff8b794ff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8b795000 -
    0x7fff8b7c0ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
    0x7fff8b7c1000 -
    0x7fff8b855fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8b88f000 -
    0x7fff8b894ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x7fff8b895000 -
    0x7fff8b8a4fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8c12e000 -
    0x7fff8c18dff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8c18e000 -
    0x7fff8c18efff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8c18f000 -
    0x7fff8c192ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8c1ad000 -
    0x7fff8c2ddfff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x7fff8c2de000 -
    0x7fff8c319fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8c31a000 -
    0x7fff8c35bfff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8c3a7000 -
    0x7fff8c462ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff8c463000 -
    0x7fff8c471ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff8c5d7000 -
    0x7fff8c5dafff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8c5e8000 -
    0x7fff8c631ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8c635000 -
    0x7fff8c63cfff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
    0x7fff8c660000 -
    0x7fff8c69bfff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8c69c000 -
    0x7fff8c6b6ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8c6b7000 -
    0x7fff8c704ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff8c70d000 -
    0x7fff8c712ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff8c713000 -
    0x7fff8c724fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
    0x7fff8c793000 -
    0x7fff8c828ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8c932000 -
    0x7fff8c963fff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
    0x7fff8c971000 -
    0x7fff8c9e5fff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fff8c9e6000 -
    0x7fff8ca26fff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff8ca27000 -
    0x7fff8ca2ffe7  libcldcpuengine.dylib (2.4.5) <DF810F9A-1755-3283-82C3-D8192BCD8016> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x7fff8ca7b000 -
    0x7fff8ca82fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff8ca83000 -
    0x7fff8ca87fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8ca88000 -
    0x7fff8cab5fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8cab6000 -
    0x7fff8caeefff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff8caef000 -
    0x7fff8caf0fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    0x7fff8ccaf000 -
    0x7fff8ccd2fff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8ccd3000 -
    0x7fff8cdc7ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8cf05000 -
    0x7fff8cf0cfff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8cf5d000 -
    0x7fff8cf65fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff8cf80000 -
    0x7fff8cf96ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x7fff8cf97000 -
    0x7fff8d038ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff8d039000 -
    0x7fff8d03fff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff8d040000 -
    0x7fff8d0d1fff  com.apple.SoftwareUpdate.framework (6 - 744) <4EBCE244-C676-3228-BF4B-645B143C1B97> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
    0x7fff8d113000 -
    0x7fff8d11bfff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
    0x7fff8d11c000 -
    0x7fff8d136ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
    0x7fff8d137000 -
    0x7fff8d137ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
    0x7fff8d1bf000 -
    0x7fff8d3ffff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8d400000 -
    0x7fff8d517fe7  libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8d518000 -
    0x7fff8d520ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x7fff8d521000 -
    0x7fff8d535ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8d536000 -
    0x7fff8d543fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff8d544000 -
    0x7fff8d627fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8d693000 -
    0x7fff8d71cfff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8d71d000 -
    0x7fff8daf4fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8daf5000 -
    0x7fff8daf7fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
    0x7fff8daf8000 -
    0x7fff8dc3afff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
    0x7fff8dc3b000 -
    0x7fff8dc3bfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8dc3c000 -
    0x7fff8dc45fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8dc46000 -
    0x7fff8dc6bff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8dced000 -
    0x7fff8dcf1ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8dcf2000 -
    0x7fff8dcfeff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8dd06000 -
    0x7fff8dd0ffff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8dd10000 -
    0x7fff8e567ff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8e568000 -
    0x7fff8e5b4ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
    0x7fff8e5b5000 -
    0x7fff8e610fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8e611000 -
    0x7fff8e641ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff8e642000 -
    0x7fff8e688ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8e689000 -
    0x7fff8e6dcffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x7fff8e6dd000 -
    0x7fff8ebc9fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8ebca000 -
    0x7fff8ebfcff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff8ebfd000 -
    0x7fff8ec1afff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8ec1b000 -
    0x7fff8ec3cfff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8ec3d000 -
    0x7fff8eccbff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8eccc000 -
    0x7fff8ecfcffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8ecfd000 -
    0x7fff8ed6eff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8ed6f000 -
    0x7fff8edc9ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x7fff8edca000 -
    0x7fff8edccfff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff8edcd000 -
    0x7fff8ee0ffff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
    0x7fff8ee10000 -
    0x7fff8ee49fff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x7fff8ee4a000 -
    0x7fff8ee50fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8ee66000 -
    0x7fff8ee6efff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
    0x7fff8ef12000 -
    0x7fff8ef41fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8f169000 -
    0x7fff8f415fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8f416000 -
    0x7fff8f508ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff8f509000 -
    0x7fff8f916ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8f917000 -
    0x7fff8f98fff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8f990000 -
    0x7fff8f99aff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8f99b000 -
    0x7fff8f9b5ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff8f9b6000 -
    0x7fff8f9c0ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8f9c1000 -
    0x7fff8fc3bfff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8fc3c000 -
    0x7fff8fc43ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8fc44000 -
    0x7fff8fc4cff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x7fff8fc4d000 -
    0x7fff8fc58ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
    0x7fff8fc59000 -
    0x7fff8fceaff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
    0x7fff8fceb000 -
    0x7fff8fd19ff7  com.apple.CommerceKit (1.2.0 - 376.0.5) <651BD237-2055-3D9D-8B12-8A4474D26AC1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x7fff8fd1a000 -
    0x7fff8fd1eff7  libGIF.dylib (1231) <A349BA73-301E-3EDE-8A31-8ACE827C289E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8fd1f000 -
    0x7fff8fe12ff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8fe20000 -
    0x7fff8fe21fff  libquit.dylib (182) <62510786-F686-3AC4-B315-D05A4B7A896F> /usr/lib/libquit.dylib
    0x7fff8fe22000 -
    0x7fff8fe33ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
    0x7fff8fe34000 -
    0x7fff8fe3fff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
    0x7fff8fee8000 -
    0x7fff8fefdfff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff8fefe000 -
    0x7fff90016ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff90017000 -
    0x7fff90019ff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff9001a000 -
    0x7fff90294ff3  com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff902f0000 -
    0x7fff90302ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
    0x7fff90303000 -
    0x7fff90309fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
    0x7fff9030a000 -
    0x7fff90336fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x7fff9036b000 -
    0x7fff90378ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
    0x7fff90656000 -
    0x7fff90658fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff90664000 -
    0x7fff906aaff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
    0x7fff906ab000 -
    0x7fff906b3ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff90771000 -
    0x7fff907a8ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff907a9000 -
    0x7fff908e6fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff908e7000 -
    0x7fff908f5ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff908f6000 -
    0x7fff90912fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff90913000 -
    0x7fff909b1fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff909b2000 -
    0x7fff90a01ff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff90a02000 -
    0x7fff90d35ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
    0x7fff90d36000 -
    0x7fff90db7ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff90db8000 -
    0x7fff90dc1ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff90dc2000 -
    0x7fff90e29ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff90e2a000 -
    0x7fff9102dff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff9102e000 -
    0x7fff91040fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
    0x7fff91089000 -
    0x7fff9126eff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
    0x7fff9126f000 -
    0x7fff91295ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff91426000 -
    0x7fff9142bfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff91453000 -
    0x7fff91469ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff9146a000 -
    0x7fff914eeff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge

  • [SOLVED]Xorg 1.8 doesn't work

    Hello, I've just upgraded to linux-firmware and the newest X.org, which doesn't work.
    Xorg.0.log tells me:
    [ 934.318]
    X.Org X Server 1.8.1
    Release Date: 2010-05-11
    [ 934.322] X Protocol Version 11, Revision 0
    [ 934.323] Build Operating System: Linux 2.6.33-ARCH x86_64
    [ 934.325] Current Operating System: Linux staerseus 2.6.34-ARCH #1 SMP PREEMPT Sat Jun 19 00:07:49 CEST 2010 x86_64
    [ 934.326] Kernel command line: root=/dev/disk/by-uuid/727c4683-ee4c-4b32-8a59-370264cb7d9f ro i915.modeset=1 init=/sbin/bootchartd
    [ 934.327] Build Date: 26 May 2010 07:50:07PM
    [ 934.329]
    [ 934.330] Current version of pixman: 0.18.2
    [ 934.331] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 934.334] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 934.338] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jun 21 10:15:38 2010
    [ 934.340] (==) Using config file: "/etc/X11/xorg.conf"
    [ 934.341] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 934.343] (==) No Layout section. Using the first Screen section.
    [ 934.343] (==) No screen section available. Using defaults.
    [ 934.343] (**) |-->Screen "Default Screen Section" (0)
    [ 934.343] (**) | |-->Monitor "<default monitor>"
    [ 934.343] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 934.343] (==) Automatically adding devices
    [ 934.343] (==) Automatically enabling devices
    [ 934.343] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 934.343] Entry deleted from font path.
    [ 934.343] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 934.343] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 934.343] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 934.343] (II) Loader magic: 0x7ce880
    [ 934.343] (II) Module ABI versions:
    [ 934.343] X.Org ANSI C Emulation: 0.4
    [ 934.343] X.Org Video Driver: 7.0
    [ 934.343] X.Org XInput driver : 9.0
    [ 934.343] X.Org Server Extension : 3.0
    [ 934.352] (--) PCI:*(0:0:2:0) 8086:2a42:1734:113f Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xf2400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
    [ 934.352] (--) PCI: (0:0:2:1) 8086:2a43:1734:113f Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xf2100000/1048576
    [ 934.352] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 934.352] (II) LoadModule: "extmod"
    [ 934.352] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 934.352] (II) Module extmod: vendor="X.Org Foundation"
    [ 934.352] compiled for 1.8.1, module version = 1.0.0
    [ 934.352] Module class: X.Org Server Extension
    [ 934.352] ABI class: X.Org Server Extension, version 3.0
    [ 934.352] (II) Loading extension MIT-SCREEN-SAVER
    [ 934.352] (II) Loading extension XFree86-VidModeExtension
    [ 934.352] (II) Loading extension XFree86-DGA
    [ 934.352] (II) Loading extension DPMS
    [ 934.352] (II) Loading extension XVideo
    [ 934.352] (II) Loading extension XVideo-MotionCompensation
    [ 934.352] (II) Loading extension X-Resource
    [ 934.352] (II) LoadModule: "dbe"
    [ 934.352] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 934.352] (II) Module dbe: vendor="X.Org Foundation"
    [ 934.353] compiled for 1.8.1, module version = 1.0.0
    [ 934.353] Module class: X.Org Server Extension
    [ 934.353] ABI class: X.Org Server Extension, version 3.0
    [ 934.353] (II) Loading extension DOUBLE-BUFFER
    [ 934.353] (II) LoadModule: "glx"
    [ 934.353] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 934.353] (II) Module glx: vendor="X.Org Foundation"
    [ 934.353] compiled for 1.8.1, module version = 1.0.0
    [ 934.353] ABI class: X.Org Server Extension, version 3.0
    [ 934.353] (==) AIGLX enabled
    [ 934.353] (II) Loading extension GLX
    [ 934.353] (II) LoadModule: "record"
    [ 934.353] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 934.353] (II) Module record: vendor="X.Org Foundation"
    [ 934.353] compiled for 1.8.1, module version = 1.13.0
    [ 934.353] Module class: X.Org Server Extension
    [ 934.353] ABI class: X.Org Server Extension, version 3.0
    [ 934.353] (II) Loading extension RECORD
    [ 934.353] (II) LoadModule: "dri"
    [ 934.353] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 934.353] (II) Module dri: vendor="X.Org Foundation"
    [ 934.353] compiled for 1.8.1, module version = 1.0.0
    [ 934.353] ABI class: X.Org Server Extension, version 3.0
    [ 934.353] (II) Loading extension XFree86-DRI
    [ 934.354] (II) LoadModule: "dri2"
    [ 934.354] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 934.354] (II) Module dri2: vendor="X.Org Foundation"
    [ 934.354] compiled for 1.8.1, module version = 1.2.0
    [ 934.354] ABI class: X.Org Server Extension, version 3.0
    [ 934.354] (II) Loading extension DRI2
    [ 934.354] (==) Matched intel as autoconfigured driver 0
    [ 934.354] (==) Matched vesa as autoconfigured driver 1
    [ 934.354] (==) Matched fbdev as autoconfigured driver 2
    [ 934.354] (==) Assigned the driver to the xf86ConfigLayout
    [ 934.354] (II) LoadModule: "intel"
    [ 934.354] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 934.354] (II) Module intel: vendor="X.Org Foundation"
    [ 934.354] compiled for 1.7.6, module version = 2.11.0
    [ 934.354] Module class: X.Org Video Driver
    [ 934.354] ABI class: X.Org Video Driver, version 6.0
    [ 934.354] (EE) module ABI major version (6) doesn't match the server's version (7)
    [ 934.356] (II) UnloadModule: "intel"
    [ 934.356] (II) Unloading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 934.356] (EE) Failed to load module "intel" (module requirement mismatch, 0)
    [ 934.357] (II) LoadModule: "vesa"
    [ 934.357] (WW) Warning, couldn't open module vesa
    [ 934.357] (II) UnloadModule: "vesa"
    [ 934.357] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 934.359] (II) LoadModule: "fbdev"
    [ 934.359] (WW) Warning, couldn't open module fbdev
    [ 934.359] (II) UnloadModule: "fbdev"
    [ 934.359] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 934.360] (EE) No drivers available.
    [ 934.362]
    Fatal server error:
    [ 934.364] no screens found
    [ 934.365]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 934.370] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 934.372]
    What does the problem with modules mean? Archlinux was warning me, that "in future releases /etc/modprobe.d/framebuffer_blacklist.conf.save will be ignored, but it is the same file as /etc/modprobe.d/framebuffer_blacklist.conf.
    I don't understand, why it cannot find any screens (I use a laptop screen)
    I tried to start with and without xorg.conf, which is:
    Section "Device"
    Identifier "Intel X4500MHD"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 4 Series Chipset Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    Option "DRI" "true"
    Option "AccelMethod" "uxa"
    Option "MigrationHeuristic" "greedy"
    EndSection
    The graphic driver I use is xf86-video-intel-newest from archstuff, but it is the same version as xf86-video-intel.
    I am not sure if I provided all needed info, but I hope so. Thank you for your help.SOLVED
    Last edited by Staerseus (2010-06-21 09:18:03)

    Use the arch version.   It is actually built against the xorg version that you are using...  here is the relevant section of your log:
    [ 934.354] (EE) module ABI major version (6) doesn't match the server's version (7)

  • Time Machine Just Doesn't Work Anymore

    I was a happy Time Machine (with Time Capsule) user for months. But it just doesn't work anymore. It takes longer than an hour to do every hourly backup so it is backing up 24 hours a day. It finds hundreds of thousands of files changed every hour and tries to back them up. Finders says only tens of files have been modified all of today. I have tried rebuilding my spotlight indexes, repairing my Time Capsule with Disk Utility and starting over with a brand new backup. But it just backs up hundreds of thousands of files every hour. So I am turning off Time capsule since it is clearly broken. If anyone has any suggestions at all I would welcome them.

    Marcia,
    Consider the following, it might give you some ideas:
    Time Machine performs backups at the file level. If a single bit in a large file is changed, the WHOLE file is backed up again. This is a problem for programs that save data to monolithic virtual disk files that are modified frequently. These include Parallels, VMware Fusion, Aperture vaults, or the databases that Entourage and Thunderbird create. These should be excluded from backup using the Time Machine Preference Exclusion list. You will, however, need to backup these files manually to another external disk.
    One poster observed regarding Photoshop: “If you find yourself working with large files, you may discover that TM is suddenly backing up your scratch disk's temp files. This is useless, find out how to exclude these (I'm not actually sure here). Alternatively, turn off TM whilst you work in Photoshop.” (http://discussions.apple.com/thread.jspa?threadID=1209412)
    If you do a lot of movie editing, unless these files are excluded, expect Time Machine to treat revised versions of a single movie as entirely new files.
    If you frequently download software or video files that you only expect to keep for a short time, consider excluding the folder these are stored in from Time Machine backups.
    If you have recently created a new disk image or burned a DVD, Time Machine will target these files for backup unless they are deleted or excluded from backup.
    Installing new software, upgrading existing software, or updating Mac OS X system software can created major changes in the structure of your directories. Time Machine will backup every file that has changed since the installation.
    Files or folders that are simply moved or renamed are counted as NEW files or folders. If you rename any file or folder, Time Machine will back up the ENTIRE file or folder again no matter how big or small it is.
    George Schreyer describes this behavior: “If you should want to do some massive rearrangement of your disk, Time Machine will interpret the rearranged files as new files and back them up again in their new locations. Just renaming a folder will cause this to happen. This is OK if you've got lots of room on your backup disk. Eventually, Time Machine will thin those backups and the space consumed will be recovered. However, if you really want recover the space in the backup volume immediately, you can. To do this, bring a Finder window to the front and then click the Time Machine icon on the dock. This will activate the Time Machine user interface. Navigate back in time to where the old stuff exists and select it. Then pull down the "action" menu (the gear thing) and select "delete all backups" and the older stuff vanishes.” (http://www.girr.org/mac_stuff/backups.html)
    *TechTool Pro Directory Protection*
    This disk utility feature creates backup copies of your system directories. Obviously these directories are changing all the time. So, depending on how it is configured, these backup files will be changing as well which is interpreted by Time Machine as new data to backup. Excluding the folder these backups are stored in will eliminate this effect.
    *Backups WAY Too Large*
    If an initial full backup or subsequent incremental backup is tens or hundreds of Gigs larger than expected, check to see that all unwanted external hard disks are still excluded from Time Machine backups.
    This includes the Time Machine backup drive ITSELF. Normally, Time Machine is set to exclude itself by default. But on rare occasions it can forget. When your backup begins, Time Machine mounts the backup on your desktop. (For Time Capsule users it appears as a white drive icon labeled something like “Backup of (your computer)”.) If, while it is mounted, it does not show up in the Time Machine Prefs “Do not back up” list, then Time Machine will attempt to back ITSELF up. If it is not listed while the drive is mounted, then you need to add it to the list.
    *FileVault / Boot Camp / iDisk Syncing*
    Note: Leopard has changed the way it deals with FileVault disk images, so it is not necessary to exclude your Home folder if you have FileVault activated. Additionally, Time Machine ignores Boot Camp partitions as the manner in which they are formatted is incompatible. Finally, if you have your iDisk Synced to your desktop, it is not necessary to exclude the disk image file it creates as that has been changed to a sparsebundle as well in Leopard.
    Let us know if any of this helps.
    Cheers!

  • Direct Rendering doesn't works with radeon

    Hi everybody,
    I have a Radeon 7000. Then, I want to use the open-source driver.
    But it doesn't works...
    [nicolas@SonyVaio ~]$ glxinfo
    name of display: :0.0
    display: :0 screen: 0
    direct rendering: No
    server glx vendor string: SGI
    server glx version string: 1.2
    server glx extensions:
    GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating,
    GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_OML_swap_method,
    GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_hyperpipe,
    GLX_SGIX_swap_barrier, GLX_SGIX_fbconfig, GLX_MESA_copy_sub_buffer
    client glx vendor string: SGI
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
    GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
    GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap
    GLX version: 1.2
    GLX extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
    GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGIS_multisample,
    GLX_SGIX_fbconfig, GLX_EXT_texture_from_pixmap
    OpenGL vendor string: Mesa project: www.mesa3d.org
    OpenGL renderer string: Mesa GLX Indirect
    OpenGL version string: 1.2 (1.5 Mesa 6.5.1)
    OpenGL extensions:
    GL_ARB_depth_texture, GL_ARB_imaging, GL_ARB_multitexture,
    GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_shadow,
    GL_ARB_shadow_ambient, GL_ARB_texture_border_clamp,
    GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_non_power_of_two, GL_ARB_texture_rectangle,
    GL_ARB_transpose_matrix, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra,
    GL_EXT_blend_color, GL_EXT_blend_func_separate, GL_EXT_blend_logic_op,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint,
    GL_EXT_copy_texture, GL_EXT_draw_range_elements, GL_EXT_fog_coord,
    GL_EXT_framebuffer_object, GL_EXT_multi_draw_arrays, GL_EXT_packed_pixels,
    GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal,
    GL_EXT_secondary_color, GL_EXT_separate_specular_color,
    GL_EXT_shadow_funcs, GL_EXT_stencil_wrap, GL_EXT_subtexture,
    GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp,
    GL_EXT_texture_env_add, GL_EXT_texture_env_combine,
    GL_EXT_texture_env_dot3, GL_EXT_texture_lod_bias, GL_EXT_texture_object,
    GL_EXT_texture_rectangle, GL_EXT_vertex_array, GL_APPLE_packed_pixels,
    GL_ATI_texture_env_combine3, GL_ATI_texture_mirror_once,
    GL_ATIX_texture_env_combine3, GL_IBM_texture_mirrored_repeat,
    GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture,
    GL_NV_blend_square, GL_NV_point_sprite, GL_NV_texgen_reflection,
    GL_NV_texture_rectangle, GL_SGIS_generate_mipmap,
    GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp,
    GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SGIX_shadow,
    GL_SGIX_shadow_ambient, GL_SUN_multi_draw_arrays
    glu version: 1.3
    glu extensions:
    GLU_EXT_nurbs_tessellator, GLU_EXT_object_space_tess
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x23 24 tc 0 24 0 r y . 8 8 8 0 0 16 0 0 0 0 0 0 0 None
    0x24 24 tc 0 24 0 r y . 8 8 8 0 0 16 8 16 16 16 0 0 0 None
    0x25 24 tc 0 32 0 r y . 8 8 8 8 0 16 8 16 16 16 16 0 0 None
    0x26 24 tc 0 32 0 r . . 8 8 8 8 0 16 8 16 16 16 16 0 0 None
    0x27 24 dc 0 24 0 r y . 8 8 8 0 0 16 0 0 0 0 0 0 0 None
    0x28 24 dc 0 24 0 r y . 8 8 8 0 0 16 8 16 16 16 0 0 0 None
    0x29 24 dc 0 32 0 r y . 8 8 8 8 0 16 8 16 16 16 16 0 0 None
    0x2a 24 dc 0 32 0 r . . 8 8 8 8 0 16 8 16 16 16 16 0 0 None
    See my /etc/X11/xorg.conf :
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5x) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
    Load "dbe" # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    # This loads the font modules
    # Load "type1"
    # Load "speedo"
    Load "freetype"
    # Load "xtt"
    # This loads the GLX module
    Load "glx"
    # This loads the DRI module
    Load "dri"
    EndSection
    # Files section. This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    # FontPath "/usr/lib/X11/fonts/local/"
    # FontPath "/usr/lib/X11/fonts/misc/"
    # FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    # FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    # FontPath "/usr/lib/X11/fonts/75dpi/"
    # FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received. This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    # Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12). This allows clients to receive these key
    # events.
    # Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    # Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_>/<KP_> mode switching
    # sequences. This allows clients to receive these key events.
    # Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    # Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    # Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    # Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    # Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    # Option "Protocol" "Xqueue"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "fr"
    # Option "XkbVariant" "fr"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "Auto"
    Option "Device" "/dev/input/mice"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    # Option "Protocol" "Xqueue"
    # Mouse-speed setting for PS/2 mouse.
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    Option "ZAxisMapping" "4 5"
    # Emulate3Buttons is an option for 2-button mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
    Identifier "My Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    HorizSync 31.0 - 50.0
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    VertRefresh 43-75
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
    Identifier "Standard VGA"
    VendorName "Unknown"
    BoardName "Unknown"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    Driver "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
    Identifier "** ATI Radeon (generic) [radeon]"
    Driver "radeon"
    #VideoRam 8192
    # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
    Identifier "Screen 1"
    Device "** ATI Radeon (generic) [radeon]"
    Monitor "My Monitor"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
    Identifier "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    Section "DRI"
    Group "video"
    Mode 0666
    EndSection
    I precise I loaded my modules : dri, radeon, ati_agp and intel_agp.
    Any ideas ?
    Thanks

    For Radeon 7000, you need to:
    pacman -S xf86-video-ati
    You need to load those modules in /etc/rc.conf:
    MODULES=(agpgart via-agp)
    And in xorg.conf:
    Driver      "radeon"

  • 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)

  • Evdev Doesn't Work for the USB Mouse

    Hey There,
    I'm using xorg.conf because Xorg 7.3 doesn't do several things I need.. (keyboard layouts, nvidia driver, synaptics, etc..)
    Any way, my xorg.conf used to work fine until I upgraded to 7.3 today.. I know that nvidia legacy (96xx) driver doesn't work because of the ABI change in this version, so I'm not mentioning about it..
    The biggest problem I have right now is that my USB mouse doesn't work now with evdev.. I had to change evdev to mouse and protocol to auto instead which confuses and distracts me..
    I think that evdev has some problems recognizing..
    This is my xorg.conf file:
    Section "ServerLayout"
        Identifier     "Xorg Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Synaptics Touchpad" "CorePointer"
            InputDevice    "USB Mouse" "SendCoreEvents"
    EndSection
    Section "ServerFlags"
        Option "AllowMouseOpenFail"  "true"   
    EndSection
    Section "Files"
        RgbPath      "/usr/share/X11/rgb"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc:unscaled"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
        FontPath     "/usr/share/fonts/cyrillic"
    #    FontPath     "/usr/share/lib/X11/fonts/latin2/75dpi"
    #    FontPath     "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
        FontPath     "/usr/share/fonts/Type1"
        FontPath     "/usr/share/fonts/ttf/western"
        FontPath     "/usr/share/fonts/ttf/decoratives"
        FontPath     "/usr/share/fonts/truetype"
        FontPath     "/usr/share/fonts/truetype/openoffice"
        FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
        FontPath     "/usr/share/fonts/latex-ttf-fonts"
        FontPath     "/usr/share/fonts/defoma/CID"
        FontPath     "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
            Load  "ddc"  # ddc probing of monitor
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
        Load  "glx"
            Load  "bitmap" # bitmap-fonts
        Load  "type1"
        Load  "freetype"
        Load  "record"
        Load  "synaptics"
    EndSection
    Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
        Option "XkbRules" "xorg"
        Option "XkbModel" "pc105"
        Option "XkbLayout" "tr,de"
        Option "XkbVariant" ""
        Option "XkbOptions" "grp:alt_shift_toggle"
    EndSection
    Section "InputDevice"
      Identifier   "Synaptics Touchpad"
      Driver       "synaptics"
      Option        "Device"                "/dev/psaux"
      Option        "Protocol"              "auto-dev"
      Option        "LeftEdge"              "120"
      Option        "RightEdge"             "830"
      Option        "TopEdge"               "120"
      Option        "BottomEdge"            "650"
      Option        "FingerLow"             "14"
      Option        "FingerHigh"            "15"
      Option        "MaxTapTime"            "180"
      Option        "MaxTapMove"            "110"
      Option        "EmulateMidButtonTime"  "75"
      Option        "VertScrollDelta"       "34"
      Option        "HorizScrollDelta"      "42"
      Option        "MinSpeed"              "0.9"
      Option        "MaxSpeed"              "1.2"
      Option        "AccelFactor"           "0.01"
      Option        "EdgeMotionMinSpeed"    "15"
      Option        "EdgeMotionMaxSpeed"    "15"
      Option        "UpDownScrolling"       "1"
      Option        "CircularScrolling"     "0"
      Option        "CircScrollDelta"       "0.1"
      Option        "CircScrollTrigger"     "0"
      Option        "SHMConfig"     "on"
    EndSection
    Section "InputDevice"
            Identifier      "USB Mouse"
            Driver          "mouse"
            Option          "Device"                "/dev/input/mice"
            Option          "Protocol"              "auto"
            Option          "ZAxisMapping"          "4 5 7 6"
            Option          "Buttons"               "9"
        Option        "Emulate3Buttons"    "false"
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Monitor"
        Identifier "Monitor0"
        Option "DPMS" "true"
        HorizSync    49.68
        VertRefresh  60
        #  Default modes distilled from
        #      "VESA and Industry Standards and Guide for Computer Display Monitor
        #       Timing", version 1.0, revision 0.8, adopted September 17, 1998.
        #  $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
        # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "640x350"    31.5  640  672  736  832    350  382  385  445 +hsync -vsync
        # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "640x400"    31.5  640  672  736  832    400  401  404  445 -hsync +vsync
        # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "720x400"    35.5  720  756  828  936    400  401  404  446 -hsync +vsync
        # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
        ModeLine "640x480"    25.2  640  656  752  800    480  490  492  525 -hsync -vsync
        # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
        ModeLine "640x480"    31.5  640  664  704  832    480  489  491  520 -hsync -vsync
        # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
        ModeLine "640x480"    31.5  640  656  720  840    480  481  484  500 -hsync -vsync
        # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
        ModeLine "640x480"    36.0  640  696  752  832    480  481  484  509 -hsync -vsync
        # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
        ModeLine "800x600"    36.0  800  824  896 1024    600  601  603  625 +hsync +vsync
        # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
        ModeLine "800x600"    40.0  800  840  968 1056    600  601  605  628 +hsync +vsync
        # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
        ModeLine "800x600"    50.0  800  856  976 1040    600  637  643  666 +hsync +vsync
        # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
        ModeLine "800x600"    49.5  800  816  896 1056    600  601  604  625 +hsync +vsync
        # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
        ModeLine "800x600"    56.3  800  832  896 1048    600  601  604  631 +hsync +vsync
        # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
        ModeLine "1024x768"   44.9 1024 1032 1208 1264    768  768  776  817 +hsync +vsync Interlace
        # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
        ModeLine "1024x768"   65.0 1024 1048 1184 1344    768  771  777  806 -hsync -vsync
        # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
        ModeLine "1024x768"   75.0 1024 1048 1184 1328    768  771  777  806 -hsync -vsync
        # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
        ModeLine "1024x768"   78.8 1024 1040 1136 1312    768  769  772  800 +hsync +vsync
        # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
        ModeLine "1024x768"   94.5 1024 1072 1168 1376    768  769  772  808 +hsync +vsync
        # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz
        ModeLine "1152x864"  108.0 1152 1216 1344 1600    864  865  868  900 +hsync +vsync
        # 1280x960 @ 60Hz (VESA) hsync: 60.0kHz
        ModeLine "1280x960"  108.0 1280 1376 1488 1800    960  961  964 1000 +hsync +vsync
        # 1280x960 @ 85Hz (VESA) hsync: 85.9kHz
        ModeLine "1280x960"  148.5 1280 1344 1504 1728    960  961  964 1011 +hsync +vsync
        # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz
        ModeLine "1280x1024" 108.0 1280 1328 1440 1688   1024 1025 1028 1066 +hsync +vsync
        # 1280x1024 @ 75Hz (VESA) hsync: 80.0kHz
        ModeLine "1280x1024" 135.0 1280 1296 1440 1688   1024 1025 1028 1066 +hsync +vsync
        # 1280x1024 @ 85Hz (VESA) hsync: 91.1kHz
        ModeLine "1280x1024" 157.5 1280 1344 1504 1728   1024 1025 1028 1072 +hsync +vsync
        # 1600x1200 @ 60Hz (VESA) hsync: 75.0kHz
        ModeLine "1600x1200" 162.0 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 65Hz (VESA) hsync: 81.3kHz
        ModeLine "1600x1200" 175.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 70Hz (VESA) hsync: 87.5kHz
        ModeLine "1600x1200" 189.0 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 75Hz (VESA) hsync: 93.8kHz
        ModeLine "1600x1200" 202.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 85Hz (VESA) hsync: 106.3kHz
        ModeLine "1600x1200" 229.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1792x1344 @ 60Hz (VESA) hsync: 83.6kHz
        ModeLine "1792x1344" 204.8 1792 1920 2120 2448   1344 1345 1348 1394 -hsync +vsync
        # 1792x1344 @ 75Hz (VESA) hsync: 106.3kHz
        ModeLine "1792x1344" 261.0 1792 1888 2104 2456   1344 1345 1348 1417 -hsync +vsync
        # 1856x1392 @ 60Hz (VESA) hsync: 86.3kHz
        ModeLine "1856x1392" 218.3 1856 1952 2176 2528   1392 1393 1396 1439 -hsync +vsync
        # 1856x1392 @ 75Hz (VESA) hsync: 112.5kHz
        ModeLine "1856x1392" 288.0 1856 1984 2208 2560   1392 1393 1396 1500 -hsync +vsync
        # 1920x1440 @ 60Hz (VESA) hsync: 90.0kHz
        ModeLine "1920x1440" 234.0 1920 2048 2256 2600   1440 1441 1444 1500 -hsync +vsync
        # 1920x1440 @ 75Hz (VESA) hsync: 112.5kHz
        ModeLine "1920x1440" 297.0 1920 2064 2288 2640   1440 1441 1444 1500 -hsync +vsync
        # Additional modelines
        ModeLine "1800x1440"  230    1800 1896 2088 2392  1440 1441 1444 1490 +HSync +VSync
        ModeLine "1800x1440"  250    1800 1896 2088 2392  1440 1441 1444 1490 +HSync +VSync
        # Extended modelines with GTF timings
        # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
        ModeLine "640x480"  43.16  640 680 744 848  480 481 484 509  -HSync +Vsync
        # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
        ModeLine "768x576"  34.96  768 792 872 976  576 577 580 597  -HSync +Vsync
        # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
        ModeLine "768x576"  42.93  768 800 880 992  576 577 580 601  -HSync +Vsync
        # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
        ModeLine "768x576"  45.51  768 808 888 1008  576 577 580 602  -HSync +Vsync
        # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
        ModeLine "768x576"  51.84  768 808 888 1008  576 577 580 605  -HSync +Vsync
        # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
        ModeLine "768x576"  62.57  768 816 896 1024  576 577 580 611  -HSync +Vsync
        # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
        ModeLine "800x600"  68.18  800 848 936 1072  600 601 604 636  -HSync +Vsync
        # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
        ModeLine "1024x768"  113.31  1024 1096 1208 1392  768 769 772 814  -HSync +Vsync
        # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
        ModeLine "1152x864"  81.62  1152 1216 1336 1520  864 865 868 895  -HSync +Vsync
        # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
        ModeLine "1152x864"  119.65  1152 1224 1352 1552  864 865 868 907  -HSync +Vsync
        # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
        ModeLine "1152x864"  143.47  1152 1232 1360 1568  864 865 868 915  -HSync +Vsync
        # 1280x800 @ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
        Modeline "1280x800"  83.46  1280 1344 1480 1680  800 801 804 828  -HSync +Vsync
        # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
        ModeLine "1280x960"  124.54  1280 1368 1504 1728  960 961 964 1001  -HSync +Vsync
        # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
        ModeLine "1280x960"  129.86  1280 1368 1504 1728  960 961 964 1002  -HSync +Vsync
        # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
        ModeLine "1280x960"  178.99  1280 1376 1520 1760  960 961 964 1017  -HSync +Vsync
        # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
        ModeLine "1280x1024"  190.96  1280 1376 1520 1760  1024 1025 1028 1085  -HSync +Vsync
        # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
        ModeLine "1400x1050"  122.61  1400 1488 1640 1880  1050 1051 1054 1087  -HSync +Vsync
        # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
        ModeLine "1400x1050"  149.34  1400 1496 1648 1896  1050 1051 1054 1094  -HSync +Vsync
        # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
        ModeLine "1400x1050"  155.85  1400 1496 1648 1896  1050 1051 1054 1096  -HSync +Vsync
        # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
        ModeLine "1400x1050"  179.26  1400 1504 1656 1912  1050 1051 1054 1103  -HSync +Vsync
        # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
        ModeLine "1400x1050"  214.39  1400 1512 1664 1928  1050 1051 1054 1112  -HSync +Vsync
        # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
        ModeLine "1600x1200"  280.64  1600 1728 1904 2208  1200 1201 1204 1271  -HSync +Vsync
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Device"
        Identifier  "Card0"
        Driver      "nv"
        VendorName  "All"
        BoardName   "All"
        Option       "NvAGP" "1"
        Option       "RenderAccel" "True"
        Option       "NoPowerConnectorCheck"
        #Option       "TripleBuffer" "True"
        #Option       "AddARGBGLXVisuals"
        #Option       "BackingStore" "True"
        #Option       "AllowGLXWithComposite" "true"
    EndSection
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultColorDepth 24
        SubSection "Display"
            Depth     1
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     4
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     8
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     15
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     16
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     24
            Modes "1280x800" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     32
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        #Option "TwinView" "true"
        #Option "TVOutFormat" "COMPOSITE" #S-VIDEO
        #Option "TVStandard" "NTSC-M" #PAL-B
        #Option "MetaModes" "DFP-0: 1280x800, CRT-0: 1280x800" #; NULL, CRT-0: 1280x800"
        ##Option "MetaModes" "1024x768,1024x768; 800x600,800x600; 640x480,640x480; 512x384,512x384" #TV
        ##Option "ConnectedMonitor" "DFP-0, CRT-0"
        #Option "TwinViewOrientation" "LeftOf" #LeftOf
        #Option "SecondMonitorHorizSync" "31-90" #30-50
        #Option "SecondMonitorVertRefresh" "60-60" #60
    EndSection
    Section "DRI"
        Mode 0666
    EndSection

    Try
    Section "InputDevice"
            Identifier  "Configured Mouse"
            Driver      "evdev"
            Option      "CorePointer"
            Option      "Name" "Logitech USB-PS/2 Optical Mouse"
            Option      "Phys" "usb-0000:00:02.0-1/input0" # optional
    EndSection
    where the Name and Phys-options are found by
    cat /proc/bus/input/devices|grep Name
    cat /proc/bus/input/devices|grep Phys

  • Program doesn't work correctly after a copypaste from a working program

    Hi everybody!
    i made a really easy program, that doesn't work for some mysterious reasons...
    This first one is the prototype of the program: http://pastebin.com/fpFy3uLn
    in this version all is working correctly!
    So, where is the problem?
    The problem is that, once i copy-pasted the functions in the main program, it stopped to work!
    I have no compilation error or similar...
    This is the final program, the one that doesn't work: http://pastebin.com/7EWn1VSF
    thx a lot for your attention

    I commented the whole
    #Section "InputDevice"
    #       Identifier  "Synaptics Touchpad"
    #EndSection
    part
    and the appropiate line
            #InputDevice "Synaptics Touchpad" "SendCoreEvents"
    on Sever Layout.
    It stopped the EE error, touchpad works here
    but it's reverted to old "typing=accidentally doing clicks" since it got way too sensitive
    I can't run gsynaptics , synclient or syndaemon to fix it (as I used to)
    since I get
    drini ~ $ synclient
    Couldn't find synaptics properties. No synaptics driver loaded?

  • Left shift key doesn't work on some characters

    In some applications, such as Excel and AOL, my left shift key doesn't work on some letters. Consequently, when I'm typing I get lower case letters when I've typed shift plus the letter to get a cap. Right shift works OK, but I'm not used to using it. It happens on i, t, and p, I've noticed so far. I don't know if it's the keyboard or the application. Word seems to work fine.
    Would welcome any ideas on what is causing this and how to fix it.
    Powermac G5   Mac OS X (10.4.7)  

    Is it possible that you have inadvertently switched to a different keyboard layout? Open System Preferences, then click on the Language & Text preferences. Within the Language & Text preferences click on the 'Input Sources'. You should see a long list of languages representing the various keyboard layouts that are available. Make sure that only the keyboard language you use is selected. If there are multiple languages selected then de-select the extras.
    If you continue to have problems then check the 'Show input menu in menu bar' checkbox in the lower section of the preference pane. This will place an icon in the upper right menu bar (it looks like a flag representing the language you have chosen for your input device) that provides additional options. I suggest selecing the 'Show Keyboard Viewer' option and then try pressing the keys that you are having problems with to see how they show up on the keyboard viewer graphic. If you've set the correct language for your keyboard and the key sequences still don't match, then you may need to take your keyboard in for service. Better yet, borrow another keyboard to confirm that the keyboard is the issue.

  • Facebook Like button doesn't work in website mobile version made in adobe muse

    the Facebook LIke button doesn't work on the mobile web version mde with adobe muse.....in the desktop version it works perfectly bbut in a tablet or smartphone it doesn't work
    you should fix that

    I'm unable to reproduce the problem! FB Like button seems to be working well on Mobile layouts as tested on iPhone's Safari and Chrome. If the issue persists at your end, please share the page URL.
    Thanks,
    Vinayak

  • USER Exit variable doesn't work in BSP

    Hi gurus
    I made a characteristic variable with user-exit replacement type.
    It get the user id from sy-uname. It works well in Gui version. But when I execute the layout in BSP (WI), it doesn't work.
    But If i do the hard-coding the line from (l_eto_charsel-low   = uid.) to (l_eto_charsel-low   = '4012121'.) it works well.
    The following is my coding.
    Please give me any comment.
      CLEAR eto_charsel.
      DATA l_eto_charsel TYPE upc_ys_charsel.
      DATA  uid type c. "(also I have tried 'data uid type sy-uname')
      uid = sy-uname.
      l_eto_charsel-chanm = i_chanm.
      l_eto_charsel-seqno = '0001'.
      l_eto_charsel-sign  = 'I'.
      l_eto_charsel-opt   = 'EQ'.
      l_eto_charsel-low   = uid.  ++++>
      INSERT l_eto_charsel INTO TABLE eto_charsel.
    ENDFUNCTION.
    Message was edited by: Bryan Lee

    Hi,
    Your patch level seems to be OK.
    pls. try the declaration as 'Data: uid like syst-uname' or you could try directly assigning the sy-uname.
    Try to debug and see the content of the sy-uname, when it hits this code.
    HTH,
    Regards,
    Nataraj.

Maybe you are looking for

  • Quicktime 7.5 - Black Video and no Audio - Using Windows Vista

    Hello, I tried asking this, but I don't think I was clear enough. Current Computer - Dell Inspiron, Quad Core, 4gig Ram, < 1yr old. Running OS - Vista Home Up until recently Quicktime worked fine, then all of the sudden the video is gone. The audio i

  • Can you put a hyperlink on REPORT.   Column in database has filename or url

    I have a report that returns a column. It is a filename. If I cut and past it into Windows explorer it becomes a URL address. I would like to hover over the row in the database that I want and then either double click (or use a select box, check it a

  • Problems with standby mode in Windows XP

    Every time I try to put my computer in standby mode while in Windows the entire computer shuts down. I can't even manually turn on the computer in Mac until I press the power button mulitple times. Anyone have any suggestions?

  • RE: Foreign currency revaluation

    Hi All,

  • Muse 2014.2.1 svg place isn't correct

    Hi, I've just updated to 2014.2.1 & opened my project to find all my sgv's have moved. I then tried to replace them but the svg's are now not placing correctly - they look like they need to be cropped & and if i try and round the edges they seem to m