RIGHT_MOUSE_UP event not detected

Hi,
I have an adobe creative cloud account.
My flashgame does not detect the RIGHT_MOUSE_UP  event when test-published in FLASH Professional CC or FLASH CS6.
The same code however does work with the flash player in my browser and when I publish the SWF and start it outside of the Development Enviroment.
All versions should be 11.7 as far as I can tell.
Does anybody know whats going on?
Thanks in advance

Thank you very much for you're awnser.
I'm not absolutely sure I understand you though.
I have no difficulty publishing directly to the browser.
When I publish directly to the Browser everything works fine, it is just in the test Enviroment in which the RIGHT_MOUSE_UP event is not detected.
It detects the RIGHT_MOUSE_DOWN event without problems.
Publishing and then executing from windows also works fine, it is just when the IDE test-publishes that the problem occurs-.
My main reason for not publishing to the browser is because I can no longer see the Output of the "trace" commands, which I require for debugging.
I have tried changing the flash version for which my IDE publishes, but regardless of which version I choose the problem persists.
Im not absolutely certain what you mean by "the flash ide /"captures/" that right-click when testing".
Is there anyway to prevent this?
Or is there at least a way with which I could see the Output of my "trace" commands when publishing to the browser?
Thank you very much for you're helpfull advice, I tried contacting adobe but all they told me was "sorry we don't offer support for that kind of problem".

Similar Messages

  • How can I import photo to computer if my photo were save in event instead of saved photo for ipad1?  Why Photo in event are not detected ?

    How can I import photo to computer if my photo were save in event instead of saved photo for ipad? Photo in event are not detected.

    Importing Personal Photos and videos from your iOS device to your computer.
    http://support.apple.com/kb/HT4083
     Cheers, Tom

  • Not detecting mouse exit events

    I'm developing a Java application that implements an 'auto-hide' functionality - similar to that of the Office Shortcut bar - such that when the mouse moves outside of the application frame the window auto-hides. I'm using the Mouse Exit event to detect when the mouse moves outside of the the application frame and then I 'hide' the window (or rather resize it to 2 pixels high) so I can then detect the Mouse Entered event to restore the window.
    This works OK but occasionally if I move the mouse quick enough the exited event isn't detected and the window doesn't always hide.
    Are there any other ways of detecting if the mouse moves outside of the application frame (so I can also trigger my 'hide' function) without relying on other events such as windowLostFocus.
    Thanks,
    Richard.

    I have one suggestion:
    Check that the component that you use to monitor mouse exit and enter events has at least one pixel visible from all sides (most layout managers allow a border (not a Border class or subclass) that is not occupied by child subcomponent).
    For example if you will place some other component in container directly so some side then mouse enter and exit events will be fired on that component and not on the container.

  • Web-cam is not detected yet installed

    Hi!
    I m doing a program tat can capture movie from available video capturing devices, i hav installed web-cam, but while searching for the devices available(Detecting the device) , it is not identifing the device. And still if i m giving direct the device info to the program("vfj//0")then movie is captured from web-cam.
    Program is listed below which is not detecting the web-cam:
    public void setMainSource(){
    setProcessing(false);
    VideoFormat vidformat = new VideoFormat(VideoFormat.YUV);
    Vector devices = CaptureDeviceManager.getDeviceList(vidformat);
    CaptureDeviceInfo di = null;
    if (devices.size() > 0) di = (CaptureDeviceInfo) devices.elementAt(0);
    else {
    /* I got exception here */
    JOptionPane.showMessageDialog(parent,
    "Your camera is not connected", "No webcam found", JOptionPane.WARNING_MESSAGE);
    return;
    try {
    ml = di.getLocator();
    setMainCamSource(Manager.createDataSource(ml));
    } catch (Exception e) {
    JOptionPane.showMessageDialog(parent,
    "Exception locating media: " + e.getMessage(), "Error", JOptionPane.WARNING_MESSAGE);
    return;
    Output:
    Web cam not found....
    So wht shd be the problem , nyone please explain the problem how to overcome from it.
    Thank you

    First of all sorry for spelling mistake i write ("vfj//0") rather then "vfw://0"
    Yeh! i read your code n your code is also giving the same error
    like
    Web cam not detected/installed(like something this).
    But still i hav attached cam n capturing movie from the code shown below:
    //This will not detect the webcam n directly captures the movie, try it out so now wht to do so tat will detect the webcam properly....
    CODE:
    import javax.media.*;
    import javax.media.util.*;
    import javax.media.format.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.media.control.*;
    class testing extends JFrame implements ControllerListener,ActionListener
         //Variables for gui
         public JButton play=new JButton("Play");
         public JButton stop=new JButton("Stop");
         public JPanel p1=new JPanel();
         public JPanel p2=new JPanel();
         Container c;
         //Variables for videocapturing
         boolean stateTransitionOK = true;
         Object waitSync = new Object();
         Processor p;
         ///Variables required to store the movie
         DataSink sink;
         MediaLocator dest = new MediaLocator("save_video.wav");
         ///methods
         public testing()
              super("Video Capture Demo");
              setupvideocapture();
              setupgui();
         public void setupgui()
              c.add(play);
              c.add(stop);
              addWindowListener(new WindowHandler());
              stop.addActionListener(this);
              play.addActionListener(this);
              setSize(350,350);
              setVisible(true);
              show();
         public void actionPerformed(ActionEvent ae)
              String str;
              str=ae.getActionCommand();
              if(str=="Play")
                   try
                        //Before starting capturing store the movie to the HDD
                        p.start();
                        sink = Manager.createDataSink(p.getDataOutput(), dest);
                        sink.open();
                        sink.start();
                   catch(Exception e)
              else if(str=="Stop")
                   try
                   //     sink.stop();
                        p.stop();
                   catch(Exception e)
         public void setupvideocapture()
              c=getContentPane();
              c.setLayout(new FlowLayout());
              try
                   p = Manager.createProcessor(new MediaLocator("vfw://0"));
                   p.addControllerListener(this);
                   p.configure();
                   waitForState(p.Configured);
                   p.setContentDescriptor(null);
                   p.prefetch();
                   waitForState(p.Prefetched);
                   c.add(p.getVisualComponent());
                   ///Intializing the saving procedure
              catch(Exception e)
                   System.out.println(e);
              public void controllerUpdate(ControllerEvent evt)
                   if (evt instanceof ConfigureCompleteEvent || evt instanceof RealizeCompleteEvent || evt instanceof PrefetchCompleteEvent)
                        synchronized (waitSync)
                             stateTransitionOK = true;
                             waitSync.notifyAll();
                   else if (evt instanceof ResourceUnavailableEvent)
                        synchronized (waitSync)
                        System.out.println("ResourceUnavailable");
                        stateTransitionOK = false;
                        waitSync.notifyAll();
                   else if (evt instanceof EndOfMediaEvent)
                        p.close();
                        System.exit(0);
              boolean waitForState(int state)
                   synchronized (waitSync)
                        try
                             while (p.getState() != state && stateTransitionOK)
                                  waitSync.wait();
                        catch (Exception e) {}
                   return stateTransitionOK;
         //Entry point
         public static void main(String args[])
              testing t=new testing();
    class WindowHandler extends WindowAdapter
         public void windowClosing(WindowEvent e)
              System.exit(0);
    This is working properly........ so plz if other option plz notify me.
    Thank you for helping me.......

  • Mouse clicks not detected on JTabbedPane

    Hi all,
    I have a JPanel placed inside a JTabbedPane. I want to double-click on the JPanel and bring up a JDialog. This works fine if the JPanel is not in a JTabbedPane, but if it is on a JTabbedPane, then the mouse clicks are not detected. I'd greatly appreciate any help you can give me.

    Here is a sample program that seems to work:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class TestInternalFrame extends JFrame
         public TestInternalFrame()
              JDesktopPane desktop = new JDesktopPane();
              setContentPane( desktop );
              JInternalFrame internal = new JInternalFrame( "Internal Frame" );
              desktop.add( internal );
              internal.setLocation( 50, 50 );
              internal.setSize( 300, 300 );
              internal.setVisible( true );
              JTabbedPane tabbedPane = new JTabbedPane();
              internal.getContentPane().add(tabbedPane);
              tabbedPane.setPreferredSize( new Dimension(300, 200) );
              JPanel panel = new JPanel();
              tabbedPane.add( "Empty Panel", panel );
              panel.addMouseListener( new MouseAdapter()
                   public void mouseClicked(MouseEvent e)
                        System.out.println(e.getClickCount());
         public static void main(String args[])
    TestInternalFrame frame = new TestInternalFrame();
    frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
    frame.setSize(400, 400);
    frame.setVisible(true);

  • Windows 2008 R2 Server not showing update history and not detecting new updates

    Hi Sirs,
    We have a Windows 2008 R2 server which is showing an empty windows update history, and is not detecting new updates from the WSUS server. It says that the windows is up to date, no error when trying to detect new updates, but I doubt it because when I checked
    the installed updates menu, it shows that that the most recent update date installed was last 2013, it just stop detecting and installing updates. I've already tried the ff workarounds but to no avail:
    1. restart wuauserv and bits service
    2. rename/delete the software distribution folder
    3. reinstalled the update agent/restarted the server
    4. deleted the susclientid on the registry
    Thanks in advanced for your help.
    here's the windowsupdate.log:
    2014-07-22    00:57:06:728     928    a34    AU    #############
    2014-07-22    00:57:06:728     928    a34    AU    Successfully wrote event for AU health state:0
    2014-07-22    00:57:06:728     928    a34    AU    Featured notifications is disabled.
    2014-07-22    00:57:06:728     928    a34    AU    AU setting next detection timeout to 2014-07-21 20:50:56
    2014-07-22    00:57:06:728     928    a34    AU    Successfully wrote event for AU health state:0
    2014-07-22    00:57:06:728     928    a34    AU    Successfully wrote event for AU health state:0
    2014-07-22    00:57:11:727     928    abc    Report    REPORT EVENT: {AF0753F1-F6F9-4583-87B0-A0B0AEA0C6A7}    2014-07-22 00:57:06:728+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    00:57:11:727     928    abc    Report    REPORT EVENT: {188957AA-577F-4DC5-9CDB-2D8CFEE96670}    2014-07-22 00:57:06:728+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    00:57:11:727     928    abc    Report    CWERReporter finishing event handling. (00000000)
    2014-07-22    01:11:10:931     928    abc    Report    Uploading 2 events using cached cookie, reporting URL = http://mtp-wsus2/ReportingWebService/ReportingWebService.asmx
    2014-07-22    01:11:10:947     928    abc    Report    Reporter successfully uploaded 2 events.
    2014-07-22    04:50:56:736     928    1130    AU    #############
    2014-07-22    04:50:56:736     928    1130    AU    ## START ##  AU: Search for updates
    2014-07-22    04:50:56:736     928    1130    AU    #########
    2014-07-22    04:50:56:736     928    1130    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {F40B494F-91F1-4FFB-B7A5-46CEA397AA52}]
    2014-07-22    04:50:56:736     928    d08    Agent    *************
    2014-07-22    04:50:56:736     928    d08    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    04:50:56:736     928    d08    Agent    *********
    2014-07-22    04:50:56:736     928    d08    Agent      * Online = Yes; Ignore download priority = No
    2014-07-22    04:50:56:736     928    d08    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-07-22    04:50:56:736     928    d08    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-07-22    04:50:56:736     928    d08    Agent      * Search Scope = {Machine}
    2014-07-22    04:50:57:017     928    d08    Setup    Checking for agent SelfUpdate
    2014-07-22    04:50:57:017     928    d08    Setup    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-07-22    04:50:57:017     928    d08    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    04:50:57:017     928    d08    Misc     Microsoft signed: Yes
    2014-07-22    04:50:59:611     928    d08    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    04:50:59:611     928    d08    Misc     Microsoft signed: Yes
    2014-07-22    04:50:59:611     928    d08    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    04:50:59:611     928    d08    Misc     Microsoft signed: Yes
    2014-07-22    04:50:59:626     928    d08    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    04:50:59:626     928    d08    Misc     Microsoft signed: Yes
    2014-07-22    04:50:59:626     928    d08    Setup    Determining whether a new setup handler needs to be downloaded
    2014-07-22    04:50:59:626     928    d08    Setup    SelfUpdate handler is not found.  It will be downloaded
    2014-07-22    04:50:59:626     928    d08    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    04:51:01:095     928    d08    Setup    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    04:51:01:095     928    d08    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    04:51:01:110     928    d08    Setup    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    04:51:01:110     928    d08    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    04:51:01:142     928    d08    Setup    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    04:51:01:142     928    d08    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2014-07-22    04:51:01:860     928    d08    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-07-22    04:51:01:860     928    d08    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    04:51:01:891     928    d08    PT    WARNING: Cached cookie has expired or new PID is available
    2014-07-22    04:51:01:891     928    d08    PT    Initializing simple targeting cookie, clientId = 487b95fe-31a4-44f7-9989-bd77766ce5fa, target group = , DNS name = itg-soatrainsvr.mbtc.mgc.local
    2014-07-22    04:51:01:891     928    d08    PT      Server URL = http://mtp-wsus2/SimpleAuthWebService/SimpleAuth.asmx
    2014-07-22    04:51:04:485     928    d08    PT    +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-07-22    04:51:04:485     928    d08    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    04:51:04:875     928    d08    Agent      * Found 0 updates and 68 categories in search; evaluated appl. rules of 503 out of 777 deployed entities
    2014-07-22    04:51:04:875     928    d08    Agent    *********
    2014-07-22    04:51:04:875     928    d08    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    04:51:04:875     928    d08    Agent    *************
    2014-07-22    04:51:04:875     928    1278    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {F40B494F-91F1-4FFB-B7A5-46CEA397AA52}]
    2014-07-22    04:51:04:875     928    1278    AU      # 0 updates detected
    2014-07-22    04:51:04:875     928    1278    AU    #########
    2014-07-22    04:51:04:875     928    1278    AU    ##  END  ##  AU: Search for updates [CallId = {F40B494F-91F1-4FFB-B7A5-46CEA397AA52}]
    2014-07-22    04:51:04:875     928    1278    AU    #############
    2014-07-22    04:51:04:875     928    1278    AU    Successfully wrote event for AU health state:0
    2014-07-22    04:51:04:875     928    1278    AU    Featured notifications is disabled.
    2014-07-22    04:51:04:875     928    1278    AU    AU setting next detection timeout to 2014-07-22 00:38:28
    2014-07-22    04:51:04:875     928    1278    AU    Successfully wrote event for AU health state:0
    2014-07-22    04:51:04:875     928    1278    AU    Successfully wrote event for AU health state:0
    2014-07-22    04:51:09:874     928    d08    Report    REPORT EVENT: {FE398C01-75A1-4AD8-8C43-0894FCFCE13F}    2014-07-22 04:51:04:875+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    04:51:09:874     928    d08    Report    REPORT EVENT: {CDA386AD-6392-4C34-859E-35307BCB5EA0}    2014-07-22 04:51:04:875+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    04:51:09:874     928    d08    Report    CWERReporter finishing event handling. (00000000)
    2014-07-22    05:05:09:109     928    d08    Report    Uploading 2 events using cached cookie, reporting URL = http://mtp-wsus2/ReportingWebService/ReportingWebService.asmx
    2014-07-22    05:05:09:109     928    d08    Report    Reporter successfully uploaded 2 events.
    2014-07-22    08:38:28:883     928    1130    AU    #############
    2014-07-22    08:38:28:883     928    1130    AU    ## START ##  AU: Search for updates
    2014-07-22    08:38:28:883     928    1130    AU    #########
    2014-07-22    08:38:28:883     928    1130    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {9A097F9F-88DD-4037-A4DD-48B9CC891327}]
    2014-07-22    08:38:28:883     928    53c    Agent    *************
    2014-07-22    08:38:28:883     928    53c    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    08:38:28:883     928    53c    Agent    *********
    2014-07-22    08:38:28:883     928    53c    Agent      * Online = Yes; Ignore download priority = No
    2014-07-22    08:38:28:883     928    53c    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-07-22    08:38:28:883     928    53c    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-07-22    08:38:28:883     928    53c    Agent      * Search Scope = {Machine}
    2014-07-22    08:38:29:195     928    53c    Setup    Checking for agent SelfUpdate
    2014-07-22    08:38:29:195     928    53c    Setup    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-07-22    08:38:29:195     928    53c    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    08:38:29:195     928    53c    Misc     Microsoft signed: Yes
    2014-07-22    08:38:31:804     928    53c    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    08:38:31:804     928    53c    Misc     Microsoft signed: Yes
    2014-07-22    08:38:31:804     928    53c    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    08:38:31:820     928    53c    Misc     Microsoft signed: Yes
    2014-07-22    08:38:31:820     928    53c    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    08:38:31:820     928    53c    Misc     Microsoft signed: Yes
    2014-07-22    08:38:31:835     928    53c    Setup    Determining whether a new setup handler needs to be downloaded
    2014-07-22    08:38:31:835     928    53c    Setup    SelfUpdate handler is not found.  It will be downloaded
    2014-07-22    08:38:31:835     928    53c    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    08:38:33:241     928    53c    Setup    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    08:38:33:241     928    53c    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    08:38:33:272     928    53c    Setup    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    08:38:33:272     928    53c    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    08:38:33:288     928    53c    Setup    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    08:38:33:288     928    53c    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2014-07-22    08:38:33:991     928    53c    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-07-22    08:38:33:991     928    53c    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    08:38:34:038     928    53c    PT    WARNING: Cached cookie has expired or new PID is available
    2014-07-22    08:38:34:038     928    53c    PT    Initializing simple targeting cookie, clientId = 487b95fe-31a4-44f7-9989-bd77766ce5fa, target group = , DNS name = itg-soatrainsvr.mbtc.mgc.local
    2014-07-22    08:38:34:038     928    53c    PT      Server URL = http://mtp-wsus2/SimpleAuthWebService/SimpleAuth.asmx
    2014-07-22    08:38:36:616     928    53c    PT    +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-07-22    08:38:36:616     928    53c    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    08:38:37:022     928    53c    Agent      * Found 0 updates and 68 categories in search; evaluated appl. rules of 503 out of 777 deployed entities
    2014-07-22    08:38:37:022     928    53c    Agent    *********
    2014-07-22    08:38:37:022     928    53c    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    08:38:37:022     928    53c    Agent    *************
    2014-07-22    08:38:37:022     928    aa8    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {9A097F9F-88DD-4037-A4DD-48B9CC891327}]
    2014-07-22    08:38:37:022     928    aa8    AU      # 0 updates detected
    2014-07-22    08:38:37:022     928    aa8    AU    #########
    2014-07-22    08:38:37:022     928    aa8    AU    ##  END  ##  AU: Search for updates [CallId = {9A097F9F-88DD-4037-A4DD-48B9CC891327}]
    2014-07-22    08:38:37:022     928    aa8    AU    #############
    2014-07-22    08:38:37:022     928    aa8    AU    Successfully wrote event for AU health state:0
    2014-07-22    08:38:37:022     928    aa8    AU    Featured notifications is disabled.
    2014-07-22    08:38:37:022     928    aa8    AU    AU setting next detection timeout to 2014-07-22 04:15:53
    2014-07-22    08:38:37:022     928    aa8    AU    Successfully wrote event for AU health state:0
    2014-07-22    08:38:37:022     928    aa8    AU    Successfully wrote event for AU health state:0
    2014-07-22    08:38:42:021     928    53c    Report    REPORT EVENT: {45B5AD35-C612-4C43-8FE0-DFC63B114FC9}    2014-07-22 08:38:37:022+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    08:38:42:021     928    53c    Report    REPORT EVENT: {BA606714-0153-41BA-ADC8-78520F678D97}    2014-07-22 08:38:37:022+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    08:38:42:021     928    53c    Report    CWERReporter finishing event handling. (00000000)
    2014-07-22    08:52:41:224     928    53c    Report    Uploading 2 events using cached cookie, reporting URL = http://mtp-wsus2/ReportingWebService/ReportingWebService.asmx
    2014-07-22    08:52:41:240     928    53c    Report    Reporter successfully uploaded 2 events.
    2014-07-22    12:15:53:027     928    1130    AU    #############
    2014-07-22    12:15:53:027     928    1130    AU    ## START ##  AU: Search for updates
    2014-07-22    12:15:53:027     928    1130    AU    #########
    2014-07-22    12:15:53:027     928    1130    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {9BDC1D71-5139-49D4-88F0-E2B639CE8846}]
    2014-07-22    12:15:53:043     928    a58    Agent    *************
    2014-07-22    12:15:53:043     928    a58    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    12:15:53:043     928    a58    Agent    *********
    2014-07-22    12:15:53:043     928    a58    Agent      * Online = Yes; Ignore download priority = No
    2014-07-22    12:15:53:043     928    a58    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-07-22    12:15:53:043     928    a58    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-07-22    12:15:53:043     928    a58    Agent      * Search Scope = {Machine}
    2014-07-22    12:15:53:308     928    a58    Setup    Checking for agent SelfUpdate
    2014-07-22    12:15:53:308     928    a58    Setup    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-07-22    12:15:53:308     928    a58    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    12:15:53:324     928    a58    Misc     Microsoft signed: Yes
    2014-07-22    12:15:55:901     928    a58    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    12:15:55:901     928    a58    Misc     Microsoft signed: Yes
    2014-07-22    12:15:55:901     928    a58    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    12:15:55:917     928    a58    Misc     Microsoft signed: Yes
    2014-07-22    12:15:55:917     928    a58    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    12:15:55:917     928    a58    Misc     Microsoft signed: Yes
    2014-07-22    12:15:55:933     928    a58    Setup    Determining whether a new setup handler needs to be downloaded
    2014-07-22    12:15:55:933     928    a58    Setup    SelfUpdate handler is not found.  It will be downloaded
    2014-07-22    12:15:55:933     928    a58    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    12:15:57:167     928    a58    Setup    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    12:15:57:167     928    a58    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    12:15:57:167     928    a58    Setup    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    12:15:57:167     928    a58    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    12:15:57:198     928    a58    Setup    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    12:15:57:198     928    a58    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2014-07-22    12:15:57:917     928    a58    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-07-22    12:15:57:917     928    a58    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    12:15:57:963     928    a58    PT    WARNING: Cached cookie has expired or new PID is available
    2014-07-22    12:15:57:963     928    a58    PT    Initializing simple targeting cookie, clientId = 487b95fe-31a4-44f7-9989-bd77766ce5fa, target group = , DNS name = itg-soatrainsvr.mbtc.mgc.local
    2014-07-22    12:15:57:963     928    a58    PT      Server URL = http://mtp-wsus2/SimpleAuthWebService/SimpleAuth.asmx
    2014-07-22    12:16:00:572     928    a58    PT    +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-07-22    12:16:00:572     928    a58    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    12:16:00:932     928    a58    Agent      * Found 0 updates and 68 categories in search; evaluated appl. rules of 503 out of 777 deployed entities
    2014-07-22    12:16:00:932     928    a58    Agent    *********
    2014-07-22    12:16:00:932     928    a58    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    12:16:00:932     928    a58    Agent    *************
    2014-07-22    12:16:00:932     928    1120    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {9BDC1D71-5139-49D4-88F0-E2B639CE8846}]
    2014-07-22    12:16:00:932     928    1120    AU      # 0 updates detected
    2014-07-22    12:16:00:932     928    1120    AU    #########
    2014-07-22    12:16:00:932     928    1120    AU    ##  END  ##  AU: Search for updates [CallId = {9BDC1D71-5139-49D4-88F0-E2B639CE8846}]
    2014-07-22    12:16:00:932     928    1120    AU    #############
    2014-07-22    12:16:00:932     928    1120    AU    Successfully wrote event for AU health state:0
    2014-07-22    12:16:00:932     928    1120    AU    Featured notifications is disabled.
    2014-07-22    12:16:00:932     928    1120    AU    AU setting next detection timeout to 2014-07-22 08:15:22
    2014-07-22    12:16:00:932     928    1120    AU    Successfully wrote event for AU health state:0
    2014-07-22    12:16:00:932     928    1120    AU    Successfully wrote event for AU health state:0
    2014-07-22    12:16:05:931     928    a58    Report    REPORT EVENT: {25E75367-1205-4F59-A812-02DA28BB3234}    2014-07-22 12:16:00:932+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    12:16:05:931     928    a58    Report    REPORT EVENT: {FE1434F8-C6AF-4F87-B3DF-6E4D6C4B05FB}    2014-07-22 12:16:00:932+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    12:16:05:931     928    a58    Report    CWERReporter finishing event handling. (00000000)
    2014-07-22    12:30:05:116     928    a58    Report    Uploading 2 events using cached cookie, reporting URL = http://mtp-wsus2/ReportingWebService/ReportingWebService.asmx
    2014-07-22    12:30:05:131     928    a58    Report    Reporter successfully uploaded 2 events.
    2014-07-22    14:05:29:584     928    10a0    AU    Triggering AU detection through DetectNow API
    2014-07-22    14:05:29:584     928    10a0    AU    Triggering Online detection (interactive)
    2014-07-22    14:05:29:584     928    1130    AU    #############
    2014-07-22    14:05:29:584     928    1130    AU    ## START ##  AU: Search for updates
    2014-07-22    14:05:29:584     928    1130    AU    #########
    2014-07-22    14:05:29:584     928    1130    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {CC67CC44-7DFB-49DE-AA83-8D6A7995ABFA}]
    2014-07-22    14:05:29:584     928    8e0    Agent    *************
    2014-07-22    14:05:29:584     928    8e0    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    14:05:29:584     928    8e0    Agent    *********
    2014-07-22    14:05:29:584     928    8e0    Agent      * Online = Yes; Ignore download priority = No
    2014-07-22    14:05:29:584     928    8e0    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-07-22    14:05:29:584     928    8e0    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-07-22    14:05:29:584     928    8e0    Agent      * Search Scope = {Machine}
    2014-07-22    14:05:29:584     928    8e0    Setup    Checking for agent SelfUpdate
    2014-07-22    14:05:29:584     928    8e0    Setup    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-07-22    14:05:29:584     928    8e0    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    14:05:29:600     928    8e0    Misc     Microsoft signed: Yes
    2014-07-22    14:05:29:616     928    8e0    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    14:05:29:631     928    8e0    Misc     Microsoft signed: Yes
    2014-07-22    14:05:29:631     928    8e0    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    14:05:29:631     928    8e0    Misc     Microsoft signed: Yes
    2014-07-22    14:05:29:647     928    8e0    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    14:05:29:662     928    8e0    Misc     Microsoft signed: Yes
    2014-07-22    14:05:29:662     928    8e0    Setup    Determining whether a new setup handler needs to be downloaded
    2014-07-22    14:05:29:662     928    8e0    Setup    SelfUpdate handler is not found.  It will be downloaded
    2014-07-22    14:05:29:662     928    8e0    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    14:05:29:662     928    8e0    Setup    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    14:05:29:662     928    8e0    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    14:05:29:694     928    8e0    Setup    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    14:05:29:694     928    8e0    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    14:05:29:709     928    8e0    Setup    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    14:05:29:725     928    8e0    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2014-07-22    14:05:30:037     928    8e0    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-07-22    14:05:30:037     928    8e0    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    14:05:30:053     928    8e0    PT    WARNING: Cached cookie has expired or new PID is available
    2014-07-22    14:05:30:053     928    8e0    PT    Initializing simple targeting cookie, clientId = 487b95fe-31a4-44f7-9989-bd77766ce5fa, target group = , DNS name = itg-soatrainsvr.mbtc.mgc.local
    2014-07-22    14:05:30:053     928    8e0    PT      Server URL = http://mtp-wsus2/SimpleAuthWebService/SimpleAuth.asmx
    2014-07-22    14:05:35:630     928    8e0    PT    +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-07-22    14:05:35:630     928    8e0    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    14:05:36:411     928    8e0    Agent      * Found 0 updates and 68 categories in search; evaluated appl. rules of 503 out of 777 deployed entities
    2014-07-22    14:05:36:411     928    8e0    Agent    *********
    2014-07-22    14:05:36:411     928    8e0    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    14:05:36:411     928    8e0    Agent    *************
    2014-07-22    14:05:36:411     928    1360    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {CC67CC44-7DFB-49DE-AA83-8D6A7995ABFA}]
    2014-07-22    14:05:36:411     928    1360    AU      # 0 updates detected
    2014-07-22    14:05:36:411     928    1360    AU    #########
    2014-07-22    14:05:36:411     928    1360    AU    ##  END  ##  AU: Search for updates [CallId = {CC67CC44-7DFB-49DE-AA83-8D6A7995ABFA}]
    2014-07-22    14:05:36:411     928    1360    AU    #############
    2014-07-22    14:05:36:411     928    1360    AU    Successfully wrote event for AU health state:0
    2014-07-22    14:05:36:411     928    1360    AU    Featured notifications is disabled.
    2014-07-22    14:05:36:411     928    1360    AU    AU setting next detection timeout to 2014-07-22 10:01:01
    2014-07-22    14:05:36:411     928    1360    AU    Successfully wrote event for AU health state:0
    2014-07-22    14:05:36:411     928    1360    AU    Successfully wrote event for AU health state:0
    2014-07-22    14:05:41:410     928    8e0    Report    REPORT EVENT: {6A2B180E-A95F-42F7-B775-5750DFFD6ECD}    2014-07-22 14:05:36:411+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    14:05:41:410     928    8e0    Report    REPORT EVENT: {83041427-693D-4A42-AED0-E8E7BFB8E7E3}    2014-07-22 14:05:36:411+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    14:05:41:410     928    8e0    Report    CWERReporter finishing event handling. (00000000)

    No Service Pack 1 installed. Does this mean that no updates will be detected if SP1 is not installed? thanks
    That's exactly what that means!
    Updates have not been available for Windows Server 2008 R2 *RTM* systems since April, 2013.
    http://support.microsoft.com/lifecycle/?p1=14134
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • External monitor not detected on Thinkpad W530 intel-virtual-output

    I'm having problems with connecting my ThinkPad W530 to external monitors since a few months. I'm using NVIDIA Optimus and bumblebee/optirun since the VGA and Mini DisplayPort connectors are only wired to the NVIDIA card om this laptop. For a long time I have executed:
    $ optirun true
    $ intel-virtual-output
    Then I have started the Screens GUI tool in Gnome to setup the placement of the external screen but now the external screen is not present in the GUI tool and xrandr gives me:
    Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 32767 x 32767
    LVDS1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
    1920x1080 60.00*+ 50.00
    1400x1050 59.98
    1280x1024 60.02
    1280x960 60.00
    1024x768 60.00
    800x600 60.32 56.25
    640x480 59.94
    VGA1 disconnected (normal left inverted right x axis y axis)
    VIRTUAL1 disconnected (normal left inverted right x axis y axis)
    If I select "Discrete mode" and select startup screen as VGA in the BIOS the BIOS and the Grub screens shows on the external monitor but the screen locks on the screen that shows that the system is booting with the linux-ck kernel. This has never worked for me in Arch Linux so that is no surprise. In Ubuntu everything everything worked fine the last time I tried.
    How can I debug this? Why is the external screen not detected any more?

    Thanks, I am not sure exactly how to read the logs but I cannot find anything that is obviously wrong
    Below is my log with an external screen connected via Mini DisplayPort and after running:
    $ optirun true
    $ intel-virtual-output
    a few times, no more logs seem to be added when I connect/disconnect the monitor or when I run the above two commands more times.
    ╰─➤ cat /var/log/Xorg.0.log 1 ↵
    [ 2.616]
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    [ 2.616] X Protocol Version 11, Revision 0
    [ 2.616] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 2.616] Current Operating System: Linux ethuil 3.13.9-1-ck #1 SMP PREEMPT Fri Apr 4 15:50:10 EDT 2014 x86_64
    [ 2.616] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-ck root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet rcutree.rcu_idle_gp_delay=1
    [ 2.616] Build Date: 09 January 2014 08:47:24AM
    [ 2.616]
    [ 2.616] Current version of pixman: 0.32.4
    [ 2.616] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2.616] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2.616] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Apr 14 22:09:08 2014
    [ 2.624] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2.624] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2.627] (==) No Layout section. Using the first Screen section.
    [ 2.627] (==) No screen section available. Using defaults.
    [ 2.627] (**) |-->Screen "Default Screen Section" (0)
    [ 2.627] (**) | |-->Monitor "<default monitor>"
    [ 2.628] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2.628] (==) Automatically adding devices
    [ 2.628] (==) Automatically enabling devices
    [ 2.628] (==) Automatically adding GPU devices
    [ 2.638] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2.638] Entry deleted from font path.
    [ 2.638] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2.638] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2.638] Entry deleted from font path.
    [ 2.638] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2.638] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 2.638] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2.638] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2.638] (II) Loader magic: 0x804c80
    [ 2.638] (II) Module ABI versions:
    [ 2.638] X.Org ANSI C Emulation: 0.4
    [ 2.638] X.Org Video Driver: 15.0
    [ 2.638] X.Org XInput driver : 20.0
    [ 2.638] X.Org Server Extension : 8.0
    [ 2.639] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 3.588] (--) PCI:*(0:0:2:0) 8086:0166:17aa:21f5 rev 9, Mem @ 0xf1400000/4194304, 0xe0000000/268435456, I/O @ 0x00006000/64
    [ 3.588] (--) PCI: (0:1:0:0) 10de:0ffb:17aa:21f5 rev 161, Mem @ 0xf0000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
    [ 3.588] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 3.589] Initializing built-in extension Generic Event Extension
    [ 3.589] Initializing built-in extension SHAPE
    [ 3.589] Initializing built-in extension MIT-SHM
    [ 3.589] Initializing built-in extension XInputExtension
    [ 3.589] Initializing built-in extension XTEST
    [ 3.589] Initializing built-in extension BIG-REQUESTS
    [ 3.589] Initializing built-in extension SYNC
    [ 3.589] Initializing built-in extension XKEYBOARD
    [ 3.589] Initializing built-in extension XC-MISC
    [ 3.589] Initializing built-in extension SECURITY
    [ 3.589] Initializing built-in extension XINERAMA
    [ 3.589] Initializing built-in extension XFIXES
    [ 3.589] Initializing built-in extension RENDER
    [ 3.589] Initializing built-in extension RANDR
    [ 3.589] Initializing built-in extension COMPOSITE
    [ 3.589] Initializing built-in extension DAMAGE
    [ 3.589] Initializing built-in extension MIT-SCREEN-SAVER
    [ 3.589] Initializing built-in extension DOUBLE-BUFFER
    [ 3.589] Initializing built-in extension RECORD
    [ 3.589] Initializing built-in extension DPMS
    [ 3.589] Initializing built-in extension Present
    [ 3.590] Initializing built-in extension DRI3
    [ 3.590] Initializing built-in extension X-Resource
    [ 3.590] Initializing built-in extension XVideo
    [ 3.590] Initializing built-in extension XVideo-MotionCompensation
    [ 3.590] Initializing built-in extension XFree86-VidModeExtension
    [ 3.590] Initializing built-in extension XFree86-DGA
    [ 3.590] Initializing built-in extension XFree86-DRI
    [ 3.590] Initializing built-in extension DRI2
    [ 3.590] (II) "glx" will be loaded by default.
    [ 3.590] (II) LoadModule: "dri2"
    [ 3.590] (II) Module "dri2" already built-in
    [ 3.590] (II) LoadModule: "glamoregl"
    [ 3.593] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 3.615] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 3.615] compiled for 1.15.0, module version = 0.6.0
    [ 3.615] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 3.615] (II) LoadModule: "glx"
    [ 3.617] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 3.618] (II) Module glx: vendor="X.Org Foundation"
    [ 3.618] compiled for 1.15.0, module version = 1.0.0
    [ 3.618] ABI class: X.Org Server Extension, version 8.0
    [ 3.618] (==) AIGLX enabled
    [ 3.618] Loading extension GLX
    [ 3.618] (==) Matched intel as autoconfigured driver 0
    [ 3.618] (==) Matched intel as autoconfigured driver 1
    [ 3.618] (==) Matched modesetting as autoconfigured driver 2
    [ 3.618] (==) Matched fbdev as autoconfigured driver 3
    [ 3.618] (==) Matched vesa as autoconfigured driver 4
    [ 3.618] (==) Assigned the driver to the xf86ConfigLayout
    [ 3.618] (II) LoadModule: "intel"
    [ 3.618] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 3.623] (II) Module intel: vendor="X.Org Foundation"
    [ 3.623] compiled for 1.15.0, module version = 2.99.911
    [ 3.623] Module class: X.Org Video Driver
    [ 3.623] ABI class: X.Org Video Driver, version 15.0
    [ 3.623] (II) LoadModule: "modesetting"
    [ 3.624] (WW) Warning, couldn't open module modesetting
    [ 3.624] (II) UnloadModule: "modesetting"
    [ 3.624] (II) Unloading modesetting
    [ 3.624] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 3.624] (II) LoadModule: "fbdev"
    [ 3.624] (WW) Warning, couldn't open module fbdev
    [ 3.624] (II) UnloadModule: "fbdev"
    [ 3.624] (II) Unloading fbdev
    [ 3.624] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 3.624] (II) LoadModule: "vesa"
    [ 3.624] (WW) Warning, couldn't open module vesa
    [ 3.624] (II) UnloadModule: "vesa"
    [ 3.624] (II) Unloading vesa
    [ 3.624] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 3.624] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 3.624] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 3.624] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 3.624] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 3.624] (++) using VT number 1
    [ 3.625] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 3.625] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    [ 3.625] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 3.625] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 3.625] (==) intel(0): RGB weight 888
    [ 3.625] (==) intel(0): Default visual is TrueColor
    [ 3.625] (**) intel(0): Framebuffer tiled
    [ 3.625] (**) intel(0): Pixmaps tiled
    [ 3.625] (**) intel(0): "Tear free" disabled
    [ 3.625] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 3.625] (II) intel(0): Output LVDS1 has no monitor section
    [ 3.625] (--) intel(0): Found backlight control interface acpi_video0 (type 'firmware') for output LVDS1
    [ 3.625] (II) intel(0): Output VGA1 has no monitor section
    [ 3.625] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 3.625] (--) intel(0): Output LVDS1 using initial mode 1920x1080 on pipe 0
    [ 3.625] (==) intel(0): DPI set to (96, 96)
    [ 3.625] (II) Loading sub module "dri2"
    [ 3.625] (II) LoadModule: "dri2"
    [ 3.625] (II) Module "dri2" already built-in
    [ 3.625] (==) Depth 24 pixmap format is 32 bpp
    [ 3.627] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
    [ 3.627] (==) intel(0): Backing store enabled
    [ 3.627] (==) intel(0): Silken mouse enabled
    [ 3.628] (II) intel(0): HW Cursor enabled
    [ 3.628] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 3.628] (==) intel(0): DPMS enabled
    [ 3.628] (II) intel(0): [DRI2] Setup complete
    [ 3.628] (II) intel(0): [DRI2] DRI driver: i965
    [ 3.628] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 3.628] (II) intel(0): direct rendering: DRI2 Enabled
    [ 3.628] (==) intel(0): hotplug detection: "enabled"
    [ 3.628] (--) RandR disabled
    [ 3.650] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 3.650] (II) AIGLX: enabled GLX_ARB_create_context
    [ 3.650] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 3.650] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 3.650] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 3.650] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 3.650] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 3.650] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 3.650] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 3.650] (II) AIGLX: Loaded and initialized i965
    [ 3.650] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 3.652] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 3.665] (II) intel(0): Setting screen physical size to 508 x 285
    [ 3.732] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 3.732] (**) Power Button: Applying InputClass "system-keyboard"
    [ 3.732] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3.732] (II) LoadModule: "evdev"
    [ 3.732] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3.734] (II) Module evdev: vendor="X.Org Foundation"
    [ 3.734] compiled for 1.15.0, module version = 2.8.2
    [ 3.734] Module class: X.Org XInput Driver
    [ 3.734] ABI class: X.Org XInput driver, version 20.0
    [ 3.734] (II) Using input driver 'evdev' for 'Power Button'
    [ 3.734] (**) Power Button: always reports core events
    [ 3.734] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 3.734] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 3.734] (--) evdev: Power Button: Found keys
    [ 3.734] (II) evdev: Power Button: Configuring as keyboard
    [ 3.734] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
    [ 3.734] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 3.734] (**) Option "xkb_rules" "evdev"
    [ 3.734] (**) Option "xkb_model" "pc104"
    [ 3.734] (**) Option "xkb_layout" "se"
    [ 3.754] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
    [ 3.754] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 3.754] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3.754] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3.754] (**) Video Bus: always reports core events
    [ 3.754] (**) evdev: Video Bus: Device: "/dev/input/event13"
    [ 3.754] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3.754] (--) evdev: Video Bus: Found keys
    [ 3.754] (II) evdev: Video Bus: Configuring as keyboard
    [ 3.754] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input15/event13"
    [ 3.754] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 3.754] (**) Option "xkb_rules" "evdev"
    [ 3.754] (**) Option "xkb_model" "pc104"
    [ 3.754] (**) Option "xkb_layout" "se"
    [ 3.754] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
    [ 3.754] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 3.754] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3.754] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3.754] (**) Video Bus: always reports core events
    [ 3.754] (**) evdev: Video Bus: Device: "/dev/input/event14"
    [ 3.754] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3.754] (--) evdev: Video Bus: Found keys
    [ 3.754] (II) evdev: Video Bus: Configuring as keyboard
    [ 3.754] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input16/event14"
    [ 3.754] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 3.754] (**) Option "xkb_rules" "evdev"
    [ 3.754] (**) Option "xkb_model" "pc104"
    [ 3.754] (**) Option "xkb_layout" "se"
    [ 3.755] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 3.755] (II) No input driver specified, ignoring this device.
    [ 3.755] (II) This device may have been added with another device file.
    [ 3.755] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 3.755] (**) Sleep Button: Applying InputClass "system-keyboard"
    [ 3.755] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 3.755] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 3.755] (**) Sleep Button: always reports core events
    [ 3.755] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 3.755] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 3.755] (--) evdev: Sleep Button: Found keys
    [ 3.755] (II) evdev: Sleep Button: Configuring as keyboard
    [ 3.755] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event2"
    [ 3.755] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 3.755] (**) Option "xkb_rules" "evdev"
    [ 3.755] (**) Option "xkb_model" "pc104"
    [ 3.755] (**) Option "xkb_layout" "se"
    [ 3.755] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 3.755] (II) config/udev: Adding input device Integrated Camera (/dev/input/event6)
    [ 3.756] (**) Integrated Camera: Applying InputClass "system-keyboard"
    [ 3.756] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
    [ 3.756] (II) Using input driver 'evdev' for 'Integrated Camera'
    [ 3.756] (**) Integrated Camera: always reports core events
    [ 3.756] (**) evdev: Integrated Camera: Device: "/dev/input/event6"
    [ 3.756] (--) evdev: Integrated Camera: Vendor 0x4f2 Product 0xb2eb
    [ 3.756] (--) evdev: Integrated Camera: Found keys
    [ 3.756] (II) evdev: Integrated Camera: Configuring as keyboard
    [ 3.756] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input8/event6"
    [ 3.756] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 10)
    [ 3.756] (**) Option "xkb_rules" "evdev"
    [ 3.756] (**) Option "xkb_model" "pc104"
    [ 3.756] (**) Option "xkb_layout" "se"
    [ 3.756] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
    [ 3.756] (II) No input driver specified, ignoring this device.
    [ 3.756] (II) This device may have been added with another device file.
    [ 3.756] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event11)
    [ 3.756] (II) No input driver specified, ignoring this device.
    [ 3.756] (II) This device may have been added with another device file.
    [ 3.756] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event10)
    [ 3.756] (II) No input driver specified, ignoring this device.
    [ 3.756] (II) This device may have been added with another device file.
    [ 3.756] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event9)
    [ 3.756] (II) No input driver specified, ignoring this device.
    [ 3.756] (II) This device may have been added with another device file.
    [ 3.757] (II) config/udev: Adding input device HDA Intel PCH Dock Headphone (/dev/input/event8)
    [ 3.757] (II) No input driver specified, ignoring this device.
    [ 3.757] (II) This device may have been added with another device file.
    [ 3.757] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 3.757] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
    [ 3.757] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 3.757] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 3.757] (**) AT Translated Set 2 keyboard: always reports core events
    [ 3.757] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 3.757] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 3.757] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 3.757] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 3.757] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 3.757] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 3.757] (**) Option "xkb_rules" "evdev"
    [ 3.757] (**) Option "xkb_model" "pc104"
    [ 3.757] (**) Option "xkb_layout" "se"
    [ 3.757] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12)
    [ 3.757] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 3.757] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 3.757] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 3.757] (II) LoadModule: "synaptics"
    [ 3.757] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 3.758] (II) Module synaptics: vendor="X.Org Foundation"
    [ 3.758] compiled for 1.15.0, module version = 1.7.4
    [ 3.758] Module class: X.Org XInput Driver
    [ 3.758] ABI class: X.Org XInput driver, version 20.0
    [ 3.758] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 3.758] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3.758] (**) Option "Device" "/dev/input/event12"
    [ 3.783] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5470 (res 60)
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4498 (res 85)
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 3.783] (**) Option "TapButton1" "1"
    [ 3.783] (**) Option "TapButton2" "2"
    [ 3.783] (**) Option "TapButton3" "3"
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3.783] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3.793] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event12"
    [ 3.793] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 3.793] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 3.793] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 3.793] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 3.793] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3.793] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 3.794] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 3.794] (II) No input driver specified, ignoring this device.
    [ 3.794] (II) This device may have been added with another device file.
    [ 3.794] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
    [ 3.794] (**) ThinkPad Extra Buttons: Applying InputClass "system-keyboard"
    [ 3.794] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 3.794] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 3.794] (**) ThinkPad Extra Buttons: always reports core events
    [ 3.794] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event4"
    [ 3.794] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
    [ 3.794] (--) evdev: ThinkPad Extra Buttons: Found keys
    [ 3.795] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    [ 3.795] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
    [ 3.795] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 13)
    [ 3.795] (**) Option "xkb_rules" "evdev"
    [ 3.795] (**) Option "xkb_model" "pc104"
    [ 3.795] (**) Option "xkb_layout" "se"
    [ 3.799] (II) config/udev: removing device SynPS/2 Synaptics TouchPad
    [ 3.824] (II) UnloadModule: "synaptics"
    [ 3.824] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12)
    [ 3.824] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 3.824] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 3.824] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 3.824] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 3.824] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3.824] (**) Option "Device" "/dev/input/event12"
    [ 3.844] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5470 (res 60)
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4498 (res 85)
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 3.844] (**) Option "TapButton1" "1"
    [ 3.844] (**) Option "TapButton2" "2"
    [ 3.844] (**) Option "TapButton3" "3"
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3.844] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3.854] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event12"
    [ 3.854] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 3.854] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 3.854] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 3.854] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 3.854] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3.854] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 3.855] removing GPU device /sys/devices/pci0000:00/0000:00:02.0/drm/card0 /dev/dri/card0
    [ 3.855] xf86: remove device 0 /sys/devices/pci0000:00/0000:00:02.0/drm/card0
    [ 3.855] failed to find screen to remove
    [ 3.855] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 3.855] removing GPU device /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1 (null)
    [ 3.855] (II) config/udev: removing device Video Bus
    [ 3.863] (II) evdev: Video Bus: Close
    [ 3.863] (II) UnloadModule: "evdev"
    [ 3.863] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
    [ 3.863] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 3.863] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3.863] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3.863] (**) Video Bus: always reports core events
    [ 3.863] (**) evdev: Video Bus: Device: "/dev/input/event13"
    [ 3.863] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3.863] (--) evdev: Video Bus: Found keys
    [ 3.863] (II) evdev: Video Bus: Configuring as keyboard
    [ 3.863] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input15/event13"
    [ 3.863] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 3.863] (**) Option "xkb_rules" "evdev"
    [ 3.863] (**) Option "xkb_model" "pc104"
    [ 3.863] (**) Option "xkb_layout" "se"
    [ 3.863] removing GPU device /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-VGA-1 (null)
    [ 3.863] (II) config/udev: removing device Video Bus
    [ 3.870] (II) evdev: Video Bus: Close
    [ 3.870] (II) UnloadModule: "evdev"
    [ 3.870] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
    [ 3.870] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 3.870] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3.870] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3.870] (**) Video Bus: always reports core events
    [ 3.870] (**) evdev: Video Bus: Device: "/dev/input/event14"
    [ 3.870] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3.870] (--) evdev: Video Bus: Found keys
    [ 3.870] (II) evdev: Video Bus: Configuring as keyboard
    [ 3.870] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input16/event14"
    [ 3.870] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 3.870] (**) Option "xkb_rules" "evdev"
    [ 3.870] (**) Option "xkb_model" "pc104"
    [ 3.870] (**) Option "xkb_layout" "se"
    [ 4.540] (II) intel(0): EDID vendor "LEN", prod id 16562
    [ 4.540] (II) intel(0): Printing DDC gathered Modelines:
    [ 4.540] (II) intel(0): Modeline "1920x1080"x0.0 139.00 1920 1980 2028 2050 1080 1090 1100 1130 -hsync -vsync (67.8 kHz eP)
    [ 4.540] (II) intel(0): Modeline "1920x1080"x0.0 115.83 1920 1980 2028 2050 1080 1090 1100 1130 -hsync -vsync (56.5 kHz e)
    [ 7.358] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event15)
    [ 7.358] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 7.358] (**) TPPS/2 IBM TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 7.358] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 7.358] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 7.358] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event15"
    [ 7.358] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 7.358] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 7.358] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 7.358] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 7.358] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 7.358] (**) Option "Emulate3Buttons" "false"
    [ 7.358] (**) Option "EmulateWheel" "true"
    [ 7.358] (**) Option "EmulateWheelButton" "2"
    [ 7.358] (**) Option "YAxisMapping" "4 5"
    [ 7.358] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 7.358] (**) Option "XAxisMapping" "6 7"
    [ 7.358] (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7
    [ 7.358] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 7.358] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input14/event15"
    [ 7.358] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 14)
    [ 7.358] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 7.359] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 7.359] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 7.359] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 7.359] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 7.359] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
    [ 7.359] (II) No input driver specified, ignoring this device.
    [ 7.359] (II) This device may have been added with another device file.
    [ 20245.335] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 21030.923] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 21196.939] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 21209.255] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 24416.533] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 26177.657] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none

  • [Potentially Solved] Touchpad sometimes not detected possible IRQ.

    Edit:
    Potentially solved: since adding the below entries to my bootloader I have not encountered the issue, or it may be just a coincidence.
    append to the boot line: i8042.nomux=1 i8042.reset
    I've been experiencing an issue for the last few years which has bugged me across two different brands of laptop, but has been very hard to debug due to how random the event seems to occur.
    One in every 20 or so boots, the touchpad on my laptop (Lenovo Z500) is not detected; not just by X, but by the system as a whole, it's as if it has been physically disconnected somehow.
    It will take a few good reboots for the system to detect it again, and the problem disappears for another few days/weeks
    One strange thing I have noticed, is that when looking at the listing of interrupts during a 'failed touchpad boot', IRQ 12, which I believe is normally the touchpad, has vanished.
    I'm not very clued up on these matters so I'm not sure how to start debugging this, and working out if the issue is down to my setup of the system or not.
    Any ideas on what could be causing this?
    Thanks.
    Output of /proc/interrupts during a working boot:
    CPU0 CPU1 CPU2 CPU3
    0: 23 0 0 0 IO-APIC-edge timer
    1: 16 723 9 10 IO-APIC-edge i8042
    8: 0 0 0 1 IO-APIC-edge rtc0
    9: 299 118 10 14 IO-APIC-fasteoi acpi
    12: 845 21415 146 77 IO-APIC-edge i8042
    16: 461 8993 74 44 IO-APIC-fasteoi ehci_hcd:usb1
    17: 0 0 0 0 IO-APIC-fasteoi ath9k
    23: 2 25 5 1 IO-APIC-fasteoi ehci_hcd:usb2
    41: 5 22 0 2 PCI-MSI-edge xhci_hcd
    42: 1557 1065 596 500 PCI-MSI-edge ahci
    43: 11 2 0 0 PCI-MSI-edge mei_me
    44: 266 0 0 0 PCI-MSI-edge snd_hda_intel
    46: 4 28 26 1 PCI-MSI-edge i915
    NMI: 0 0 0 0 Non-maskable interrupts
    LOC: 3002 12958 2572 1842 Local timer interrupts
    SPU: 0 0 0 0 Spurious interrupts
    PMI: 0 0 0 0 Performance monitoring interrupts
    IWI: 88 170 115 197 IRQ work interrupts
    RTR: 1 0 0 0 APIC ICR read retries
    RES: 367 332 393 431 Rescheduling interrupts
    CAL: 129 71 24 58 Function call interrupts
    TLB: 99 72 157 892 TLB shootdowns
    TRM: 0 0 0 0 Thermal event interrupts
    THR: 0 0 0 0 Threshold APIC interrupts
    MCE: 0 0 0 0 Machine check exceptions
    MCP: 2 2 2 2 Machine check polls
    THR: 0 0 0 0 Hypervisor callback interrupts
    ERR: 0
    MIS: 0
    Output of /proc/interrupts during a non-working boot:
    CPU0 CPU1 CPU2 CPU3
    0: 23 0 0 0 IO-APIC-edge timer
    1: 9 235 2 11 IO-APIC-edge i8042
    8: 0 0 1 0 IO-APIC-edge rtc0
    9: 217 44 24 40 IO-APIC-fasteoi acpi
    16: 96 2512 38 173 IO-APIC-fasteoi ehci_hcd:usb1
    17: 0 0 0 0 IO-APIC-fasteoi ath9k
    23: 3 25 1 4 IO-APIC-fasteoi ehci_hcd:usb2
    41: 6 23 0 1 PCI-MSI-edge xhci_hcd
    42: 1445 937 649 479 PCI-MSI-edge ahci
    43: 9 3 0 1 PCI-MSI-edge mei_me
    45: 11 10 4 39 PCI-MSI-edge i915
    46: 93 80 94 0 PCI-MSI-edge snd_hda_intel
    NMI: 0 0 0 0 Non-maskable interrupts
    LOC: 1251 3465 1964 692 Local timer interrupts
    SPU: 0 0 0 0 Spurious interrupts
    PMI: 0 0 0 0 Performance monitoring interrupts
    IWI: 76 97 47 79 IRQ work interrupts
    RTR: 1 0 0 0 APIC ICR read retries
    RES: 349 252 190 335 Rescheduling interrupts
    CAL: 110 72 30 69 Function call interrupts
    TLB: 101 52 817 651 TLB shootdowns
    TRM: 0 0 0 0 Thermal event interrupts
    THR: 0 0 0 0 Threshold APIC interrupts
    MCE: 0 0 0 0 Machine check exceptions
    MCP: 2 2 2 2 Machine check polls
    THR: 0 0 0 0 Hypervisor callback interrupts
    ERR: 0
    MIS: 0
    Output of /proc/bus/input/devices during a working boot (touchpad detected at bus 0011):
    I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
    N: Name="AT Translated Set 2 keyboard"
    P: Phys=isa0060/serio0/input0
    S: Sysfs=/devices/platform/i8042/serio0/input/input0
    U: Uniq=
    H: Handlers=kbd event0
    B: PROP=0
    B: EV=120013
    B: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe
    B: MSC=10
    B: LED=7
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=PNP0C0C/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input2
    U: Uniq=
    H: Handlers=kbd event1
    B: PROP=0
    B: EV=3
    B: KEY=10000000000000 0
    I: Bus=0019 Vendor=0000 Product=0005 Version=0000
    N: Name="Lid Switch"
    P: Phys=PNP0C0D/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    U: Uniq=
    H: Handlers=event2
    B: PROP=0
    B: EV=21
    B: SW=1
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=LNXPWRBN/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    U: Uniq=
    H: Handlers=kbd event3
    B: PROP=0
    B: EV=3
    B: KEY=10000000000000 0
    I: Bus=0019 Vendor=0000 Product=0000 Version=0000
    N: Name="Ideapad extra buttons"
    P: Phys=ideapad/input0
    S: Sysfs=/devices/platform/VPC2004:00/input/input5
    U: Uniq=
    H: Handlers=kbd rfkill event4
    B: PROP=0
    B: EV=13
    B: KEY=1400800100c03 400000000300000 0 0
    B: MSC=10
    I: Bus=0010 Vendor=001f Product=0001 Version=0100
    N: Name="PC Speaker"
    P: Phys=isa0061/input0
    S: Sysfs=/devices/platform/pcspkr/input/input7
    U: Uniq=
    H: Handlers=kbd event5
    B: PROP=0
    B: EV=40001
    B: SND=6
    I: Bus=0003 Vendor=13d3 Product=5170 Version=0730
    N: Name="Lenovo EasyCamera"
    P: Phys=usb-0000:00:14.0-4/button
    S: Sysfs=/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.0/input/input9
    U: Uniq=
    H: Handlers=kbd event6
    B: PROP=0
    B: EV=3
    B: KEY=100000 0 0 0
    I: Bus=0001 Vendor=10ec Product=0269 Version=0001
    N: Name="HDA Digital PCBeep"
    P: Phys=card0/codec#0/beep0
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input8
    U: Uniq=
    H: Handlers=kbd event7
    B: PROP=0
    B: EV=40001
    B: SND=6
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA Intel PCH Mic"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    U: Uniq=
    H: Handlers=event8
    B: PROP=0
    B: EV=21
    B: SW=10
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA Intel PCH Headphone"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    U: Uniq=
    H: Handlers=event9
    B: PROP=0
    B: EV=21
    B: SW=4
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA Intel PCH HDMI/DP,pcm=3"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    U: Uniq=
    H: Handlers=event10
    B: PROP=0
    B: EV=21
    B: SW=140
    I: Bus=0011 Vendor=0002 Product=0007 Version=01b1
    N: Name="SynPS/2 Synaptics TouchPad"
    P: Phys=isa0060/serio1/input0
    S: Sysfs=/devices/platform/i8042/serio1/input/input6
    U: Uniq=
    H: Handlers=event11 mouse0
    B: PROP=5
    B: EV=b
    B: KEY=e520 10000 0 0 0 0
    B: ABS=660800011000003
    I: Bus=0019 Vendor=0000 Product=0006 Version=0000
    N: Name="Video Bus"
    P: Phys=LNXVIDEO/video/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:35/LNXVIDEO:00/input/input13
    U: Uniq=
    H: Handlers=kbd event12
    B: PROP=0
    B: EV=3
    B: KEY=3e000b00000000 0 0 0
    I: Bus=0019 Vendor=0000 Product=0006 Version=0000
    N: Name="Video Bus"
    P: Phys=LNXVIDEO/video/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:03/input/input14
    U: Uniq=
    H: Handlers=kbd event13
    B: PROP=0
    B: EV=3
    B: KEY=3e000b00000000 0 0 0
    Output of /proc/bus/input/devices during a non-working boot:
    I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
    N: Name="AT Translated Set 2 keyboard"
    P: Phys=isa0060/serio0/input0
    S: Sysfs=/devices/platform/i8042/serio0/input/input2
    U: Uniq=
    H: Handlers=kbd event0
    B: PROP=0
    B: EV=120013
    B: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe
    B: MSC=10
    B: LED=7
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=PNP0C0C/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input3
    U: Uniq=
    H: Handlers=kbd event1
    B: PROP=0
    B: EV=3
    B: KEY=10000000000000 0
    I: Bus=0019 Vendor=0000 Product=0005 Version=0000
    N: Name="Lid Switch"
    P: Phys=PNP0C0D/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
    U: Uniq=
    H: Handlers=event2
    B: PROP=0
    B: EV=21
    B: SW=1
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=LNXPWRBN/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    U: Uniq=
    H: Handlers=kbd event3
    B: PROP=0
    B: EV=3
    B: KEY=10000000000000 0
    I: Bus=0019 Vendor=0000 Product=0000 Version=0000
    N: Name="Ideapad extra buttons"
    P: Phys=ideapad/input0
    S: Sysfs=/devices/platform/VPC2004:00/input/input6
    U: Uniq=
    H: Handlers=kbd rfkill event4
    B: PROP=0
    B: EV=13
    B: KEY=1400800100c03 400000000300000 0 0
    B: MSC=10
    I: Bus=0010 Vendor=001f Product=0001 Version=0100
    N: Name="PC Speaker"
    P: Phys=isa0061/input0
    S: Sysfs=/devices/platform/pcspkr/input/input7
    U: Uniq=
    H: Handlers=kbd event5
    B: PROP=0
    B: EV=40001
    B: SND=6
    I: Bus=0003 Vendor=13d3 Product=5170 Version=0730
    N: Name="Lenovo EasyCamera"
    P: Phys=usb-0000:00:14.0-4/button
    S: Sysfs=/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.0/input/input8
    U: Uniq=
    H: Handlers=kbd event6
    B: PROP=0
    B: EV=3
    B: KEY=100000 0 0 0
    I: Bus=0019 Vendor=0000 Product=0006 Version=0000
    N: Name="Video Bus"
    P: Phys=LNXVIDEO/video/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:35/LNXVIDEO:00/input/input9
    U: Uniq=
    H: Handlers=kbd event7
    B: PROP=0
    B: EV=3
    B: KEY=3e000b00000000 0 0 0
    I: Bus=0019 Vendor=0000 Product=0006 Version=0000
    N: Name="Video Bus"
    P: Phys=LNXVIDEO/video/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:03/input/input10
    U: Uniq=
    H: Handlers=kbd event8
    B: PROP=0
    B: EV=3
    B: KEY=3e000b00000000 0 0 0
    I: Bus=0001 Vendor=10ec Product=0269 Version=0001
    N: Name="HDA Digital PCBeep"
    P: Phys=card0/codec#0/beep0
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input11
    U: Uniq=
    H: Handlers=kbd event9
    B: PROP=0
    B: EV=40001
    B: SND=6
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA Intel PCH Mic"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    U: Uniq=
    H: Handlers=event10
    B: PROP=0
    B: EV=21
    B: SW=10
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA Intel PCH Headphone"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    U: Uniq=
    H: Handlers=event11
    B: PROP=0
    B: EV=21
    B: SW=4
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA Intel PCH HDMI/DP,pcm=3"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    U: Uniq=
    H: Handlers=event12
    B: PROP=0
    B: EV=21
    B: SW=140
    Last edited by kYd (2014-07-01 18:11:45)

    Hi gav989,
    welcome to the forums. Please have a look at our forum etiquette, esp. at the "Pasting Pictures and Code" section.
    The image you posted is too big, but only slightly, so I leave it there for now. You may want to look at these screenshot posting rules as well.

  • Printhead appears to be missing, not detected or incorrectly installed

    hp officejet 6699 won't print - gives message "printhead appears to be missing, not detected or incorrectly installed."   I have unplugged as instructed and that did not work.  I replaced all of the cartridges and that did not work.  It's over a year out of warranty and I don't know where to take it.  I didn't want to have to buy a new one just yet.  Is approx 2 years the life of an all-in-one now??   Can anyone tell me what to try?  Thanks!

    Hi pip3, Can you remember what you were doing when the error occured? Was there a specific event that triggered the message? Did you unplug the printer while it was switched on to reset it (documented here)? Please let me know if you resolve your issue, otherwise I will try to help you troubleshoot further. Many Thanks,Francheska

  • How to void Life Events in Detected status

    Hi,
    There are lots of old Life Events in Detected status in the system. And recently the team terminated some employees who were not supposed to be in the system and that created around 3000 potential life events. Is there was way I can void all these Life Events that are there in Detected status?
    Thansk and Regards,
    Archana

    Hi,
    There are lots of old Life Events in Detected status in the system. And recently the team terminated some employees who were not supposed to be in the system and that created around 3000 potential life events. Is there was way I can void all these Life Events that are there in Detected status?
    Thansk and Regards,
    Archana

  • Mouse wheel not detected

    I'm using 64-bit arch on a MacBook Pro.  The trackpad is working much better now (thanks Allan McRae!) but the mouse wheel on any external mice is not detected.  For example on MacOS I have a Logitech M555b connected via Bluetooth, and magically that mouse keeps working in Arch... but without any wheel.  (aside... that's interesting, it must be that the MB bluetooth has firmware to treat connected HID devices as USB HID? because I didn't even have to mess with bluez to get it working)    Likewise if I plug in an old USB Dell mouse its wheel doesn't work either.  Here's the relevant stuff from Xorg.0.log:
      2746.817] (II) config/udev: Adding input device HID 05ac:820b (/dev/input/event11)
    [  2746.817] (**) HID 05ac:820b: Applying InputClass "evdev pointer catchall"
    [  2746.817] (**) HID 05ac:820b: always reports core events
    [  2746.817] (**) HID 05ac:820b: Device: "/dev/input/event11"
    [  2746.829] (**) HID 05ac:820b: ButtonMapping '1 2 3 6 7'
    [  2746.829] (--) HID 05ac:820b: Found 3 mouse buttons
    [  2746.829] (--) HID 05ac:820b: Found relative axes
    [  2746.829] (--) HID 05ac:820b: Found x and y relative axes
    [  2746.830] (II) HID 05ac:820b: Configuring as mouse
    [  2746.830] (**) HID 05ac:820b: YAxisMapping: buttons 4 and 5
    [  2746.830] (**) HID 05ac:820b: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [  2746.830] (II) XINPUT: Adding extended input device "HID 05ac:820b" (type: MOUSE)
    [  2746.830] (**) HID 05ac:820b: (accel) keeping acceleration scheme 1
    [  2746.830] (**) HID 05ac:820b: (accel) acceleration profile 0
    [  2746.830] (**) HID 05ac:820b: (accel) acceleration factor: 2.000
    [  2746.830] (**) HID 05ac:820b: (accel) acceleration threshold: 4
    [  2746.830] (II) HID 05ac:820b: initialized for relative axes.
    [  2746.830] (II) config/udev: Adding input device HID 05ac:820b (/dev/input/mouse1)
    [  2746.830] (II) No input driver/identifier specified (ignoring)
    I tried adding options to force it to 7 buttons in /etc/X11/xorg.conf.d/10-evdev.conf:
    Section "InputClass"
            Identifier "evdev pointer catchall"
            MatchIsPointer "on"
            MatchDevicePath "/dev/input/event*"
            Driver "evdev"
       Option         "Buttons" "7"
       Option         "ZAxisMapping" "4 5"
       Option         "ButtonMapping" "1 2 3 6 7"
    EndSection
    which didn't help.
    xev doesn't see events for the wheel.

    Hi,
    I'm having the same issue, I bought a Logitech Bluetooth mouse, and I found that it works "magically" without any configuration.
    The strange thing it's that as far as I know, the btusb.c of kernel 26.36 doesn't have the right string for macbook pro bluetooth controller, so for hcitool, dmesg, etc, there isn't any bluetooth in the system.
    The mouse as ecloud told, works, but without the mouse wheel. I'm not sure what would be the best thing to do, if recompile the kernel to make bluetooth work, or maybe it's possible to configure udev to have the wheel working...
    Any suggestion or help would be very appreciated!
    Thanks,

  • "IR Hardware Not Detected" message when trying to set up TV on Idea Center A700

    When I am trying to set up my computer to get TV from my set top box the computer identifies my signal and shows a small picture of the live TV.  When I click on next I get a message - IR Hardware not detected.  Can someone please tell me to what this refers?  My wireless remote works and the set top box has an IR cable that is only a few feet away.  My TV remote picks it up easily.  Is there more hardware that needs to be bought for the TV to work with this computer?
    Thanks,
    David

    Ok, I have now gotten Reader 10 installed, can open files from my desktop but IE 9 keeps crashing when I try to open PDF files even though I exited and relaunched IE 9.  I did take ownership of all the folders containing Reader 10 and then clicked OK when I got the error notice about the shortcut being installed. I did make a copy of the crash error report and it reads as follows:
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: iexplore.exe
    Application Version: 9.0.8112.16421
    Application Timestamp: 4d76255d
    Fault Module Name: IEFRAME.dll
    Fault Module Version: 9.0.8112.16440
    Fault Module Timestamp: 4eb319a7
    Exception Code: c0000005
    Exception Offset: 001b174b
    OS Version: 6.1.7601.2.1.0.768.3
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    Any help is greatly appreciated!

  • Adobe Digital Editions does not detect my e-reader

    Can anyone help please? My Adobe Digital Editions does not detect my Sony e-reader and does not appear in my bookshelves. My laptop detects the device without any issues but Adobe does not - I have re-installed twice but still the same.

    Re-installing is not the answer.  Most likely, the issue is either the
    sequence of events that you go through, whether the SONY ereader is
    supported and whether it is registered properly.  Let me go through these in
    reverse order.  I am assuming (dangerous) that the SONY is 'new to you'.  If
    not, then please accept my apologies.
    You start with making sure that the SONY ereader is supported by Adobe
    Digital Editions (ADE from now on).  Check the list of supported devices
    HERE <http://blogs.adobe.com/digitalpublishing/supported-devices>.  If it
    is, then you know that the rest of the process should work.
    Next, attach the ereader to your computer.  Let's assume a Windows
    machine: plug it into a USB port and wait for Windows to recognise it and
    tell you your hardware is ready to use.  If you've done this before, check
    that Windows has added your ereader as a device by going to My Computer and
    looking at the disk drives.  Your ereader should show up.  Then, if you
    haven't registered the ereader with SONY, you should go to their website.
    It will look for attached ereaders and confirm that it finds yours.
    Register it with SONY, using your Adobe ID and password.  SONY will then
    write a small record onto the ereader, which ADE needs to see.  Close the
    SONY website.
    Next, bring up ADE.  If all is well, ADE will recognise your ereader and it
    will show up on your bookshelf.  If there's a problem with the ereader, ADE
    will tell you that, and we can go from there.
    If all is well, you can transfer your ebooks via drag and drop.  When you're
    done, close ADE, but don't disconnect your SONY until it tells you it's
    finished updating itself.  THEN eject it via My Computer or the small icon
    in the system tray at the bottom right of the screen.
    Hope this helps!
    ==================

  • Arch does not detect /dev/sdb

    HI everybody,
    Like the title says, Arch does not detect a second SATA hard drive I have installed on my computer.
    I've searched around Google and the forums and I've doesn't found any helpfull tip.
    The Arch installation is fresh, I just made it tonight, and cfdisk (during the installation) had recogniced the drive.
    I've posted this here because I'm new on Arch, coming from Ubuntu and Fedora distros and I feel like a real Newbie
    Here's some outputs that may be useful:
    sudo fdisk -l
    Disk /dev/sda: 1000.2 GB, 1000204886016 bytes, 1953525168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Identificador del disco: 0x8370a3d6
    Disposit. Inicio Comienzo Fin Bloques Id Sistema
    /dev/sda1 * 2048 206847 102400 7 HPFS/NTFS/exFAT
    /dev/sda2 206848 1435379711 717586432 7 HPFS/NTFS/exFAT
    /dev/sda3 1435379712 1953525167 259072728 5 Extendida
    /dev/sda5 1435379775 1437339641 979933+ 82 Linux swap / Solaris
    /dev/sda6 * 1437339705 1827960116 195310206 83 Linux
    /dev/sda7 1827960180 1953525167 62782494 83 Linux
    ls -lat /dev/sd*
    brw-rw---- 1 root disk 8, 2 feb 3 03:32 /dev/sda2
    brw-rw---- 1 root disk 8, 7 feb 3 03:32 /dev/sda7
    brw-rw---- 1 root disk 8, 5 feb 3 03:32 /dev/sda5
    brw-rw---- 1 root disk 8, 6 feb 3 03:32 /dev/sda6
    brw-rw---- 1 root disk 8, 1 feb 3 03:32 /dev/sda1
    brw-rw---- 1 root disk 8, 3 feb 3 03:32 /dev/sda3
    brw-rw---- 1 root disk 8, 0 feb 3 03:32 /dev/sda
    lspci -k
    00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 02)
    Subsystem: Intel Corporation Device 0036
    00:01.0 PCI bridge: Intel Corporation Core Processor PCI Express x16 Root Port (rev 02)
    Kernel driver in use: pcieport
    00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: mei
    00:16.2 IDE interface: Intel Corporation 5 Series/3400 Series Chipset PT IDER Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: ata_generic
    00:16.3 Serial controller: Intel Corporation 5 Series/3400 Series Chipset KT Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: serial
    00:19.0 Ethernet controller: Intel Corporation 82578DC Gigabit Network Connection (rev 06)
    Subsystem: Intel Corporation Device 0037
    Kernel driver in use: e1000e
    00:1a.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: ehci_hcd
    00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: snd_hda_intel
    00:1d.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: ehci_hcd
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a6)
    00:1f.0 ISA bridge: Intel Corporation 5 Series Chipset LPC Interface Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: lpc_ich
    00:1f.2 IDE interface: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA IDE Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: pata_acpi
    00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: i801_smbus
    00:1f.5 IDE interface: Intel Corporation 5 Series/3400 Series Chipset 2 port SATA IDE Controller (rev 06)
    Subsystem: Intel Corporation Device 0036
    Kernel driver in use: pata_acpi
    01:00.0 VGA compatible controller: NVIDIA Corporation GF114 [GeForce GTX 560 Ti] (rev a1)
    Subsystem: Device 196e:0898
    Kernel driver in use: nvidia
    01:00.1 Audio device: NVIDIA Corporation GF114 HDMI Audio Controller (rev a1)
    Subsystem: Device 196e:0898
    Kernel driver in use: snd_hda_intel
    3f:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 02)
    Subsystem: Intel Corporation Device 8086
    3f:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 02)
    Subsystem: Intel Corporation Device 8086
    3f:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 02)
    Subsystem: Intel Corporation Device 8086
    3f:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 02)
    Subsystem: Intel Corporation Device 8086
    3f:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 02)
    Subsystem: Intel Corporation Device 8086
    3f:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 02)
    Subsystem: Intel Corporation Device 8086
    Thanks for the help!

    I had the drive connected to a eSATA port, but I pluged it to a ordinary SATA port, and the result is the same.
    The configuration on the BIOS:
    ATA/IDE Mode -> Native
    Configure Storage as -> IDE
    It doesn't show more valuable information except for the location of any drive on any SATA port.
    dmesg output, it can be useful for someone:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.7.5-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Mon Jan 28 10:03:32 CET 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=d40a9225-bd6b-46b0-9e14-54b177499391 ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009c000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000df451fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000df452000-0x00000000df494fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000df495000-0x00000000df508fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000df509000-0x00000000df50afff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000df50b000-0x00000000df610fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000df611000-0x00000000df611fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000df612000-0x00000000df612fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000df613000-0x00000000df61afff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000df61b000-0x00000000df61bfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000df61c000-0x00000000df61dfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000df61e000-0x00000000df625fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000df626000-0x00000000df646fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000df647000-0x00000000df689fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000df68a000-0x00000000df7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001fbffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000001fc000000-0x00000001ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000200000000-0x000000021bffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.6 present.
    [ 0.000000] DMI: /DH55HC, BIOS TCIBX10H.86A.0048.2011.1206.1342 12/06/2011
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x21c000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask E00000000 write-back
    [ 0.000000] 1 base 200000000 mask FE0000000 write-back
    [ 0.000000] 2 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 3 base 1FC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 21C000000 mask FFC000000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: update [mem 0x1fc000000-0x1ffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xdf800 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fccd0-0x000fccdf] mapped at [ffff8800000fccd0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xdf7fffff]
    [ 0.000000] [mem 0x00000000-0xdf7fffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xdf7fffff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1fbffffff]
    [ 0.000000] [mem 0x100000000-0x1fbffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x1fbffffff @ [mem 0xdf7fb000-0xdf7fffff]
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x21bffffff]
    [ 0.000000] [mem 0x200000000-0x21bffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x21bffffff @ [mem 0x1fbffe000-0x1fbffffff]
    [ 0.000000] RAMDISK: [mem 0x37a76000-0x37d32fff]
    [ 0.000000] ACPI: RSDP 00000000000f0410 00024 (v02 INTEL)
    [ 0.000000] ACPI: XSDT 00000000df61ce18 00054 (v01 INTEL DH55HC 01072009 MSFT 00010013)
    [ 0.000000] ACPI: FACP 00000000df61ad98 000F4 (v04 INTEL DH55HC 01072009 MSFT 00010013)
    [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20120913/tbfadt-394)
    [ 0.000000] ACPI BIOS Bug: Warning: 32/64X FACS address mismatch in FADT - 0xDF61BF40/0x00000000DF61BE40, using 32 (20120913/tbfadt-521)
    [ 0.000000] ACPI: DSDT 00000000df613018 06B90 (v01 INTEL DH55HC 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000df61bf40 00040
    [ 0.000000] ACPI: APIC 00000000df61af18 000CC (v02 INTEL DH55HC 01072009 MSFT 00010013)
    [ 0.000000] ACPI: SSDT 00000000df61ac18 00102 (v01 INTEL DH55HC 00000001 MSFT 03000001)
    [ 0.000000] ACPI: MCFG 00000000df61df18 0003C (v01 INTEL DH55HC 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000df61de98 00038 (v01 INTEL DH55HC 01072009 AMI. 00000003)
    [ 0.000000] ACPI: ASF! 00000000df61cc18 000A0 (v32 INTEL DH55HC 00000001 TFSM 000F4240)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000021bffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x21bffffff]
    [ 0.000000] NODE_DATA [mem 0x21bffc000-0x21bffffff]
    [ 0.000000] [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880213600000-ffff88021b5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x21bffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009bfff]
    [ 0.000000] node 0: [mem 0x00100000-0xdf451fff]
    [ 0.000000] node 0: [mem 0xdf509000-0xdf50afff]
    [ 0.000000] node 0: [mem 0xdf611000-0xdf611fff]
    [ 0.000000] node 0: [mem 0xdf68a000-0xdf7fffff]
    [ 0.000000] node 0: [mem 0x100000000-0x1fbffffff]
    [ 0.000000] node 0: [mem 0x200000000-0x21bffffff]
    [ 0.000000] On node 0 totalpages: 2061655
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3910 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 894475 pages, LIFO batch:31
    [ 0.000000] Normal zone: 18176 pages used for memmap
    [ 0.000000] Normal zone: 1128704 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x08] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x09] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0a] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0b] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0c] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0d] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0e] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x0f] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 16 CPUs, 12 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000df452000 - 00000000df495000
    [ 0.000000] PM: Registered nosave memory: 00000000df495000 - 00000000df509000
    [ 0.000000] PM: Registered nosave memory: 00000000df50b000 - 00000000df611000
    [ 0.000000] PM: Registered nosave memory: 00000000df612000 - 00000000df613000
    [ 0.000000] PM: Registered nosave memory: 00000000df613000 - 00000000df61b000
    [ 0.000000] PM: Registered nosave memory: 00000000df61b000 - 00000000df61c000
    [ 0.000000] PM: Registered nosave memory: 00000000df61c000 - 00000000df61e000
    [ 0.000000] PM: Registered nosave memory: 00000000df61e000 - 00000000df626000
    [ 0.000000] PM: Registered nosave memory: 00000000df626000 - 00000000df647000
    [ 0.000000] PM: Registered nosave memory: 00000000df647000 - 00000000df68a000
    [ 0.000000] PM: Registered nosave memory: 00000000df800000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000e4000000
    [ 0.000000] PM: Registered nosave memory: 00000000e4000000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] PM: Registered nosave memory: 00000001fc000000 - 0000000200000000
    [ 0.000000] e820: [mem 0xe4000000-0xfed1bfff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:16 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88021bc00000 s84608 r8192 d21888 u131072
    [ 0.000000] pcpu-alloc: s84608 r8192 d21888 u131072 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2027089
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=d40a9225-bd6b-46b0-9e14-54b177499391 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 8033416k/8847360k available (4883k kernel code, 600740k absent, 213204k reserved, 4030k data, 812k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=16.
    [ 0.000000] NR_IRQS:4352 nr_irqs:808 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 3324.877 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 6652.82 BogoMIPS (lpj=11082923)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000034] Security Framework initialized
    [ 0.000044] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000483] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002616] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003590] Mount-cache hash table entries: 256
    [ 0.003783] Initializing cgroup subsys cpuacct
    [ 0.003786] Initializing cgroup subsys memory
    [ 0.003793] Initializing cgroup subsys devices
    [ 0.003794] Initializing cgroup subsys freezer
    [ 0.003796] Initializing cgroup subsys net_cls
    [ 0.003797] Initializing cgroup subsys blkio
    [ 0.003818] CPU: Physical Processor ID: 0
    [ 0.003819] CPU: Processor Core ID: 0
    [ 0.003824] mce: CPU supports 9 MCE banks
    [ 0.003833] CPU0: Thermal monitoring enabled (TM1)
    [ 0.003840] process: using mwait in idle threads
    [ 0.003844] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 6
    [ 0.003958] Freeing SMP alternatives: 16k freed
    [ 0.004816] ACPI: Core revision 20120913
    [ 0.007720] ftrace: allocating 18793 entries in 74 pages
    [ 0.015109] Switched APIC routing to physical flat.
    [ 0.015602] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.048500] smpboot: CPU0: Intel(R) Core(TM) i5 CPU 660 @ 3.33GHz (fam: 06, model: 25, stepping: 05)
    [ 0.154172] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
    [ 0.154177] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
    [ 0.154178] ... version: 3
    [ 0.154179] ... bit width: 48
    [ 0.154180] ... generic registers: 4
    [ 0.154181] ... value mask: 0000ffffffffffff
    [ 0.154182] ... max period: 000000007fffffff
    [ 0.154182] ... fixed-purpose events: 3
    [ 0.154183] ... event mask: 000000070000000f
    [ 0.190806] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.177468] smpboot: Booting Node 0, Processors #1 #2 #3
    [ 0.227213] Brought up 4 CPUs
    [ 0.227218] smpboot: Total of 4 processors activated (26609.30 BogoMIPS)
    [ 0.229378] devtmpfs: initialized
    [ 0.230458] PM: Registering ACPI NVS region [mem 0xdf452000-0xdf494fff] (274432 bytes)
    [ 0.230462] PM: Registering ACPI NVS region [mem 0xdf612000-0xdf612fff] (4096 bytes)
    [ 0.230463] PM: Registering ACPI NVS region [mem 0xdf61b000-0xdf61bfff] (4096 bytes)
    [ 0.230464] PM: Registering ACPI NVS region [mem 0xdf61e000-0xdf625fff] (32768 bytes)
    [ 0.230466] PM: Registering ACPI NVS region [mem 0xdf647000-0xdf689fff] (274432 bytes)
    [ 0.231092] RTC time: 21:05:23, date: 02/03/13
    [ 0.231127] NET: Registered protocol family 16
    [ 0.231227] ACPI: bus type pci registered
    [ 0.231289] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    [ 0.231291] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
    [ 0.236542] PCI: Using configuration type 1 for base access
    [ 0.236958] bio: create slab <bio-0> at 0
    [ 0.237003] ACPI: Added _OSI(Module Device)
    [ 0.237005] ACPI: Added _OSI(Processor Device)
    [ 0.237006] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.237007] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.237812] ACPI: EC: Look up EC in DSDT
    [ 0.238684] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.240605] ACPI: SSDT 00000000df612c18 0038C (v01 AMI IST 00000001 MSFT 03000001)
    [ 0.240820] ACPI: Dynamic OEM Table Load:
    [ 0.240821] ACPI: SSDT (null) 0038C (v01 AMI IST 00000001 MSFT 03000001)
    [ 0.240837] ACPI BIOS Bug: Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x1F (20120913/tbutils-324)
    [ 0.240840] ACPI: SSDT 00000000df61bd18 00084 (v01 AMI CST 00000001 MSFT 03000001)
    [ 0.241020] ACPI: Dynamic OEM Table Load:
    [ 0.241021] ACPI: SSDT (null) 00084 (v01 AMI CST 00000001 MSFT 03000001)
    [ 0.241360] ACPI: Interpreter enabled
    [ 0.241363] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.241374] ACPI: Using IOAPIC for interrupt routing
    [ 0.241528] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.244856] ACPI: No dock devices found.
    [ 0.244859] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.244939] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.244985] pci_root PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.245005] PCI host bridge to bus 0000:00
    [ 0.245007] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.245009] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.245010] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.245011] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.245012] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xffffffff]
    [ 0.245019] pci 0000:00:00.0: [8086:0040] type 00 class 0x060000
    [ 0.245033] DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
    [ 0.245049] pci 0000:00:01.0: [8086:0041] type 01 class 0x060400
    [ 0.245073] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.245118] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
    [ 0.245149] pci 0000:00:16.0: reg 10: [mem 0xfa129000-0xfa12900f 64bit]
    [ 0.245261] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.245285] pci 0000:00:16.2: [8086:3b66] type 00 class 0x010185
    [ 0.245304] pci 0000:00:16.2: reg 10: [io 0xf150-0xf157]
    [ 0.245314] pci 0000:00:16.2: reg 14: [io 0xf140-0xf143]
    [ 0.245323] pci 0000:00:16.2: reg 18: [io 0xf130-0xf137]
    [ 0.245334] pci 0000:00:16.2: reg 1c: [io 0xf120-0xf123]
    [ 0.245346] pci 0000:00:16.2: reg 20: [io 0xf110-0xf11f]
    [ 0.245430] pci 0000:00:16.3: [8086:3b67] type 00 class 0x070002
    [ 0.245452] pci 0000:00:16.3: reg 10: [io 0xf100-0xf107]
    [ 0.245463] pci 0000:00:16.3: reg 14: [mem 0xfa128000-0xfa128fff]
    [ 0.245580] pci 0000:00:19.0: [8086:10f0] type 00 class 0x020000
    [ 0.245601] pci 0000:00:19.0: reg 10: [mem 0xfa100000-0xfa11ffff]
    [ 0.245610] pci 0000:00:19.0: reg 14: [mem 0xfa127000-0xfa127fff]
    [ 0.245620] pci 0000:00:19.0: reg 18: [io 0xf020-0xf03f]
    [ 0.245697] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.245723] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
    [ 0.245745] pci 0000:00:1a.0: reg 10: [mem 0xfa126000-0xfa1263ff]
    [ 0.245840] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.245870] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
    [ 0.245887] pci 0000:00:1b.0: reg 10: [mem 0xfa120000-0xfa123fff 64bit]
    [ 0.245970] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.246001] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
    [ 0.246022] pci 0000:00:1d.0: reg 10: [mem 0xfa125000-0xfa1253ff]
    [ 0.246117] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.246141] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    [ 0.246216] pci 0000:00:1f.0: [8086:3b06] type 00 class 0x060100
    [ 0.246328] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
    [ 0.246347] pci 0000:00:1f.2: reg 10: [io 0xf0f0-0xf0f7]
    [ 0.246357] pci 0000:00:1f.2: reg 14: [io 0xf0e0-0xf0e3]
    [ 0.246366] pci 0000:00:1f.2: reg 18: [io 0xf0d0-0xf0d7]
    [ 0.246376] pci 0000:00:1f.2: reg 1c: [io 0xf0c0-0xf0c3]
    [ 0.246386] pci 0000:00:1f.2: reg 20: [io 0xf0b0-0xf0bf]
    [ 0.246395] pci 0000:00:1f.2: reg 24: [io 0xf0a0-0xf0af]
    [ 0.246454] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
    [ 0.246472] pci 0000:00:1f.3: reg 10: [mem 0xfa124000-0xfa1240ff 64bit]
    [ 0.246498] pci 0000:00:1f.3: reg 20: [io 0xf000-0xf01f]
    [ 0.246538] pci 0000:00:1f.5: [8086:3b26] type 00 class 0x010185
    [ 0.246557] pci 0000:00:1f.5: reg 10: [io 0xf090-0xf097]
    [ 0.246567] pci 0000:00:1f.5: reg 14: [io 0xf080-0xf083]
    [ 0.246576] pci 0000:00:1f.5: reg 18: [io 0xf070-0xf077]
    [ 0.246586] pci 0000:00:1f.5: reg 1c: [io 0xf060-0xf063]
    [ 0.246595] pci 0000:00:1f.5: reg 20: [io 0xf050-0xf05f]
    [ 0.246605] pci 0000:00:1f.5: reg 24: [io 0xf040-0xf04f]
    [ 0.246682] pci 0000:01:00.0: [10de:1200] type 00 class 0x030000
    [ 0.246690] pci 0000:01:00.0: reg 10: [mem 0xf8000000-0xf9ffffff]
    [ 0.246698] pci 0000:01:00.0: reg 14: [mem 0xe8000000-0xefffffff 64bit pref]
    [ 0.246706] pci 0000:01:00.0: reg 1c: [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 0.246711] pci 0000:01:00.0: reg 24: [io 0xe000-0xe07f]
    [ 0.246717] pci 0000:01:00.0: reg 30: [mem 0xfa000000-0xfa07ffff pref]
    [ 0.246758] pci 0000:01:00.1: [10de:0e0c] type 00 class 0x040300
    [ 0.246765] pci 0000:01:00.1: reg 10: [mem 0xfa080000-0xfa083fff]
    [ 0.246835] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.246838] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.246839] pci 0000:00:01.0: bridge window [mem 0xf8000000-0xfa0fffff]
    [ 0.246842] pci 0000:00:01.0: bridge window [mem 0xe8000000-0xf3ffffff 64bit pref]
    [ 0.246904] pci 0000:00:1e.0: PCI bridge to [bus 02] (subtractive decode)
    [ 0.246915] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.246916] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.246917] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.246919] pci 0000:00:1e.0: bridge window [mem 0xe0000000-0xffffffff] (subtractive decode)
    [ 0.246929] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.247023] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR20._PRT]
    [ 0.247107] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.247197] pci0000:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
    [ 0.247198] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.250341] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.250370] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.250397] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.250425] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.250454] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    [ 0.250484] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
    [ 0.250511] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.250542] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.250605] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.250606] vgaarb: loaded
    [ 0.250607] vgaarb: bridge control possible 0000:01:00.0
    [ 0.250627] PCI: Using ACPI for IRQ routing
    [ 0.252814] PCI: Discovered peer bus 3f
    [ 0.252815] PCI: root bus 3f: using default resources
    [ 0.252815] PCI: Probing PCI hardware (bus 3f)
    [ 0.252831] PCI host bridge to bus 0000:3f
    [ 0.252833] pci_bus 0000:3f: root bus resource [io 0x0000-0xffff]
    [ 0.252834] pci_bus 0000:3f: root bus resource [mem 0x00000000-0xfffffffff]
    [ 0.252836] pci_bus 0000:3f: No busn resource found for root bus, will use [bus 3f-ff]
    [ 0.252840] pci 0000:3f:00.0: [8086:2c61] type 00 class 0x060000
    [ 0.252855] pci 0000:3f:00.1: [8086:2d01] type 00 class 0x060000
    [ 0.252869] pci 0000:3f:02.0: [8086:2d10] type 00 class 0x060000
    [ 0.252882] pci 0000:3f:02.1: [8086:2d11] type 00 class 0x060000
    [ 0.252894] pci 0000:3f:02.2: [8086:2d12] type 00 class 0x060000
    [ 0.252906] pci 0000:3f:02.3: [8086:2d13] type 00 class 0x060000
    [ 0.252926] pci_bus 0000:3f: busn_res: [bus 3f-ff] end is updated to 3f
    [ 0.253005] PCI: pci_cache_line_size set to 64 bytes
    [ 0.253052] e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff]
    [ 0.253053] e820: reserve RAM buffer [mem 0xdf452000-0xdfffffff]
    [ 0.253055] e820: reserve RAM buffer [mem 0xdf50b000-0xdfffffff]
    [ 0.253056] e820: reserve RAM buffer [mem 0xdf612000-0xdfffffff]
    [ 0.253058] e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff]
    [ 0.253125] NetLabel: Initializing
    [ 0.253126] NetLabel: domain hash size = 128
    [ 0.253127] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.253137] NetLabel: unlabeled traffic allowed by default
    [ 0.253153] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.253157] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.255164] Switching to clocksource hpet
    [ 0.258533] pnp: PnP ACPI init
    [ 0.258548] ACPI: bus type pnp registered
    [ 0.258610] pnp 00:00: [bus 00-ff]
    [ 0.258612] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.258614] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.258615] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.258616] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.258618] pnp 00:00: [mem 0x00000000 window]
    [ 0.258619] pnp 00:00: [mem 0xe0000000-0xffffffff window]
    [ 0.258649] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.258677] pnp 00:01: [mem 0xfed14000-0xfed19fff]
    [ 0.258678] pnp 00:01: [mem 0xe0000000-0xe3ffffff]
    [ 0.258680] pnp 00:01: [mem 0xfed90000-0xfed93fff]
    [ 0.258681] pnp 00:01: [mem 0xfed20000-0xfed3ffff]
    [ 0.258682] pnp 00:01: [mem 0xfee00000-0xfee0ffff]
    [ 0.258714] system 00:01: [mem 0xfed14000-0xfed19fff] has been reserved
    [ 0.258716] system 00:01: [mem 0xe0000000-0xe3ffffff] has been reserved
    [ 0.258717] system 00:01: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.258719] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.258720] system 00:01: [mem 0xfee00000-0xfee0ffff] has been reserved
    [ 0.258723] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.258812] pnp 00:02: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.258814] pnp 00:02: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.258834] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.258995] pnp 00:03: [io 0x03f8-0x03ff]
    [ 0.259007] pnp 00:03: [irq 4]
    [ 0.259008] pnp 00:03: [dma 0 disabled]
    [ 0.259046] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.259277] pnp 00:04: [io 0x0378-0x037f]
    [ 0.259279] pnp 00:04: [io 0x0778-0x077f]
    [ 0.259283] pnp 00:04: [irq 5]
    [ 0.259284] pnp 00:04: [dma 3]
    [ 0.259381] pnp 00:04: Plug and Play ACPI device, IDs PNP0401 (active)
    [ 0.259389] pnp 00:05: [dma 4]
    [ 0.259390] pnp 00:05: [io 0x0000-0x000f]
    [ 0.259391] pnp 00:05: [io 0x0081-0x0083]
    [ 0.259392] pnp 00:05: [io 0x0087]
    [ 0.259394] pnp 00:05: [io 0x0089-0x008b]
    [ 0.259395] pnp 00:05: [io 0x008f]
    [ 0.259396] pnp 00:05: [io 0x00c0-0x00df]
    [ 0.259407] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.259413] pnp 00:06: [io 0x0070-0x0071]
    [ 0.259418] pnp 00:06: [irq 8]
    [ 0.259431] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.259437] pnp 00:07: [io 0x0061]
    [ 0.259449] pnp 00:07: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.259459] pnp 00:08: [io 0x0010-0x001f]
    [ 0.259460] pnp 00:08: [io 0x0022-0x003f]
    [ 0.259462] pnp 00:08: [io 0x0044-0x005f]
    [ 0.259463] pnp 00:08: [io 0x0062-0x0063]
    [ 0.259464] pnp 00:08: [io 0x0065-0x006f]
    [ 0.259465] pnp 00:08: [io 0x0072-0x007f]
    [ 0.259466] pnp 00:08: [io 0x0080]
    [ 0.259467] pnp 00:08: [io 0x0084-0x0086]
    [ 0.259468] pnp 00:08: [io 0x0088]
    [ 0.259469] pnp 00:08: [io 0x008c-0x008e]
    [ 0.259471] pnp 00:08: [io 0x0090-0x009f]
    [ 0.259472] pnp 00:08: [io 0x00a2-0x00bf]
    [ 0.259473] pnp 00:08: [io 0x00e0-0x00ef]
    [ 0.259474] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.259500] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.259503] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.259508] pnp 00:09: [io 0x00f0-0x00ff]
    [ 0.259513] pnp 00:09: [irq 13]
    [ 0.259526] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.259621] pnp 00:0a: [io 0x0400-0x047f]
    [ 0.259622] pnp 00:0a: [io 0x1180-0x119f]
    [ 0.259623] pnp 00:0a: [io 0x0500-0x057f]
    [ 0.259625] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
    [ 0.259626] pnp 00:0a: [mem 0xfec00000-0xfecfffff]
    [ 0.259627] pnp 00:0a: [mem 0xfed08000-0xfed08fff]
    [ 0.259628] pnp 00:0a: [mem 0xff000000-0xffffffff]
    [ 0.259648] system 00:0a: [io 0x0400-0x047f] has been reserved
    [ 0.259650] system 00:0a: [io 0x1180-0x119f] has been reserved
    [ 0.259651] system 00:0a: [io 0x0500-0x057f] has been reserved
    [ 0.259653] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.259654] system 00:0a: [mem 0xfec00000-0xfecfffff] could not be reserved
    [ 0.259656] system 00:0a: [mem 0xfed08000-0xfed08fff] has been reserved
    [ 0.259658] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.259660] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.259783] pnp 00:0b: [mem 0xfed00000-0xfed003ff]
    [ 0.259800] pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.259892] pnp: PnP ACPI: found 12 devices
    [ 0.259893] ACPI: ACPI bus type pnp unregistered
    [ 0.266408] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.266411] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.266413] pci 0000:00:01.0: bridge window [mem 0xf8000000-0xfa0fffff]
    [ 0.266415] pci 0000:00:01.0: bridge window [mem 0xe8000000-0xf3ffffff 64bit pref]
    [ 0.266418] pci 0000:00:1e.0: PCI bridge to [bus 02]
    [ 0.266444] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.266448] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.266449] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.266450] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.266452] pci_bus 0000:00: resource 7 [mem 0xe0000000-0xffffffff]
    [ 0.266453] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.266454] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xfa0fffff]
    [ 0.266456] pci_bus 0000:01: resource 2 [mem 0xe8000000-0xf3ffffff 64bit pref]
    [ 0.266457] pci_bus 0000:02: resource 4 [io 0x0000-0x0cf7]
    [ 0.266459] pci_bus 0000:02: resource 5 [io 0x0d00-0xffff]
    [ 0.266460] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.266461] pci_bus 0000:02: resource 7 [mem 0xe0000000-0xffffffff]
    [ 0.266463] pci_bus 0000:3f: resource 4 [io 0x0000-0xffff]
    [ 0.266464] pci_bus 0000:3f: resource 5 [mem 0x00000000-0xfffffffff]
    [ 0.266492] NET: Registered protocol family 2
    [ 0.266910] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.268783] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.269029] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.269063] TCP: reno registered
    [ 0.269073] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.269110] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.269211] NET: Registered protocol family 1
    [ 0.315053] pci 0000:01:00.0: Boot video device
    [ 0.315082] PCI: CLS 64 bytes, default 64
    [ 0.315125] Unpacking initramfs...
    [ 0.353156] Freeing initrd memory: 2804k freed
    [ 0.353546] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.353549] software IO TLB [mem 0xdb452000-0xdf451fff] (64MB) mapped at [ffff8800db452000-ffff8800df451fff]
    [ 0.353859] audit: initializing netlink socket (disabled)
    [ 0.353875] type=2000 audit(1359925523.249:1): initialized
    [ 0.363018] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.364275] VFS: Disk quotas dquot_6.5.2
    [ 0.364309] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.364442] msgmni has been set to 15695
    [ 0.364641] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.364676] io scheduler noop registered
    [ 0.364678] io scheduler deadline registered
    [ 0.364713] io scheduler cfq registered (default)
    [ 0.364792] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.364908] vesafb: mode is 1280x800x32, linelength=5120, pages=0
    [ 0.364910] vesafb: scrolling: redraw
    [ 0.364911] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.365255] vesafb: framebuffer at 0xf1000000, mapped to 0xffffc90005600000, using 4032k, total 4032k
    [ 0.452482] Console: switching to colour frame buffer device 160x50
    [ 0.539642] fb0: VESA VGA frame buffer device
    [ 0.539651] intel_idle: MWAIT substates: 0x1120
    [ 0.539652] intel_idle: v0.4 model 0x25
    [ 0.539653] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.539700] GHES: HEST is not enabled!
    [ 0.539744] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.560441] 00:03: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.581146] 0000:00:16.3: ttyS1 at I/O 0xf100 (irq = 17) is a 16550A
    [ 0.581313] Linux agpgart interface v0.103
    [ 0.581361] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.594604] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.594626] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.594726] mousedev: PS/2 mouse device common for all mice
    [ 0.594777] rtc_cmos 00:06: RTC can wake from S4
    [ 0.594939] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 0.594973] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.595018] cpuidle: using governor ladder
    [ 0.595079] cpuidle: using governor menu
    [ 0.595112] drop_monitor: Initializing network drop monitor service
    [ 0.595172] TCP: cubic registered
    [ 0.595242] NET: Registered protocol family 10
    [ 0.595362] NET: Registered protocol family 17
    [ 0.595369] Key type dns_resolver registered
    [ 0.595570] PM: Hibernation image not present or could not be loaded.
    [ 0.595576] registered taskstats version 1
    [ 0.596120] Magic number: 1:939:94
    [ 0.596267] rtc_cmos 00:06: setting system clock to 2013-02-03 21:05:24 UTC (1359925524)
    [ 0.597300] Freeing unused kernel memory: 812k freed
    [ 0.597412] Write protecting the kernel read-only data: 8192k
    [ 0.599884] Freeing unused kernel memory: 1248k freed
    [ 0.601056] Freeing unused kernel memory: 476k freed
    [ 0.606451] systemd-udevd[57]: starting version 197
    [ 0.624469] SCSI subsystem initialized
    [ 0.625159] ACPI: bus type usb registered
    [ 0.625179] usbcore: registered new interface driver usbfs
    [ 0.625187] usbcore: registered new interface driver hub
    [ 0.625823] ACPI: bus type scsi registered
    [ 0.625865] usbcore: registered new device driver usb
    [ 0.625875] libata version 3.00 loaded.
    [ 0.626068] pata_acpi 0000:00:16.2: setting latency timer to 64
    [ 0.626104] pata_acpi 0000:00:1f.2: setting latency timer to 64
    [ 0.626423] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.627806] scsi0 : pata_acpi
    [ 0.628229] scsi1 : pata_acpi
    [ 0.628555] ata1: PATA max UDMA/133 cmd 0xf0f0 ctl 0xf0e0 bmdma 0xf0b0 irq 19
    [ 0.628557] ata2: PATA max UDMA/133 cmd 0xf0d0 ctl 0xf0c0 bmdma 0xf0b8 irq 19
    [ 0.628587] pata_acpi 0000:00:1f.5: setting latency timer to 64
    [ 0.633159] scsi2 : pata_acpi
    [ 0.633673] scsi3 : pata_acpi
    [ 0.634669] ata3: PATA max UDMA/133 cmd 0xf090 ctl 0xf080 bmdma 0xf050 irq 19
    [ 0.634672] ata4: PATA max UDMA/133 cmd 0xf070 ctl 0xf060 bmdma 0xf058 irq 19
    [ 0.634727] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 0.634732] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 0.634739] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.634756] ehci_hcd 0000:00:1a.0: debug port 2
    [ 0.638765] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.638798] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xfa126000
    [ 0.647329] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.647467] hub 1-0:1.0: USB hub found
    [ 0.647471] hub 1-0:1.0: 2 ports detected
    [ 0.647542] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 0.647545] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 0.647549] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.647560] ehci_hcd 0000:00:1d.0: debug port 2
    [ 0.651548] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.651561] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xfa125000
    [ 0.660694] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.660928] hub 2-0:1.0: USB hub found
    [ 0.660932] hub 2-0:1.0: 2 ports detected
    [ 0.801747] ata1.00: ATA-8: ST31000528AS, CC38, max UDMA/133
    [ 0.801750] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 0.802139] ata1.01: ATA-8: ST1000DL002-9TT153, CC32, max UDMA/133
    [ 0.802144] ata1.01: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 0.803079] ata1.01: no PIO support
    [ 0.953074] usb 1-1: new high-speed USB device number 2 using ehci_hcd
    [ 1.076944] hub 1-1:1.0: USB hub found
    [ 1.077141] hub 1-1:1.0: 6 ports detected
    [ 1.182336] usb 2-1: new high-speed USB device number 2 using ehci_hcd
    [ 1.306076] hub 2-1:1.0: USB hub found
    [ 1.306284] hub 2-1:1.0: 8 ports detected
    [ 1.351793] tsc: Refined TSC clocksource calibration: 3325.000 MHz
    [ 1.351799] Switching to clocksource tsc
    [ 1.385166] usb 1-1.2: new low-speed USB device number 3 using ehci_hcd
    [ 1.541306] usb 1-1.4: new low-speed USB device number 4 using ehci_hcd
    [ 5.935629] ata1.01: no PIO support
    [ 5.935631] ata1.01: disabled
    [ 5.951315] ata1.00: configured for UDMA/100
    [ 5.951734] scsi 0:0:0:0: Direct-Access ATA ST31000528AS CC38 PQ: 0 ANSI: 5
    [ 6.120495] ata2.01: ATAPI: TSSTcorp CDDVDW SH-222AB, SB00, max UDMA/100
    [ 6.120503] ata2.01: no PIO support
    [ 11.257635] ata2.01: no PIO support
    [ 11.257639] ata2.01: disabled
    [ 11.421879] ata_generic 0000:00:16.2: setting latency timer to 64
    [ 11.422293] scsi4 : ata_generic
    [ 11.422400] scsi5 : ata_generic
    [ 11.422428] ata5: PATA max UDMA/100 cmd 0xf150 ctl 0xf140 bmdma 0xf110 irq 18
    [ 11.422430] ata6: PATA max UDMA/100 cmd 0xf130 ctl 0xf120 bmdma 0xf118 irq 18
    [ 11.751474] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 11.751521] sd 0:0:0:0: [sda] Write Protect is off
    [ 11.751523] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 11.751538] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 11.775078] usbcore: registered new interface driver usbhid
    [ 11.775081] usbhid: USB HID core driver
    [ 11.812772] sda: sda1 sda2 sda3 < sda5 sda6 sda7 >
    [ 11.813929] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 11.814854] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input0
    [ 11.814908] hid-generic 0003:046D:C31B.0002: input,hidraw0: USB HID v1.11 Keyboard [Logitech Logitech USB Keyboard] on usb-0000:00:1a.0-1.4/input0
    [ 11.815047] input: Microsoft Microsoft® Comfort Mouse 4500 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input1
    [ 11.815422] microsoft 0003:045E:076C.0001: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® Comfort Mouse 4500] on usb-0000:00:1a.0-1.2/input0
    [ 11.817407] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1/input/input2
    [ 11.817457] hid-generic 0003:046D:C31B.0003: input,hidraw2: USB HID v1.11 Device [Logitech Logitech USB Keyboard] on usb-0000:00:1a.0-1.4/input1
    [ 12.388733] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
    [ 12.938667] systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 12.961471] systemd[1]: Set hostname to <archlinuxPC>.
    [ 13.159056] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 13.159185] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 13.159221] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 13.159230] systemd[1]: Starting Remote File Systems.
    [ 13.159238] systemd[1]: Reached target Remote File Systems.
    [ 13.159244] systemd[1]: Expecting device sys-subsystem-net-devices-eth0.device...
    [ 13.159250] systemd[1]: Starting Delayed Shutdown Socket.
    [ 13.159271] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 13.159277] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 13.159292] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 13.159298] systemd[1]: Starting Encrypted Volumes.
    [ 13.159306] systemd[1]: Reached target Encrypted Volumes.
    [ 13.159313] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 13.159334] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 13.159356] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 13.159431] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 13.159472] systemd[1]: Starting udev Kernel Socket.
    [ 13.159488] systemd[1]: Listening on udev Kernel Socket.
    [ 13.159519] systemd[1]: Starting udev Control Socket.
    [ 13.159537] systemd[1]: Listening on udev Control Socket.
    [ 13.159543] systemd[1]: Starting Swap.
    [ 13.159550] systemd[1]: Reached target Swap.
    [ 13.159556] systemd[1]: Starting Journal Socket.
    [ 13.159589] systemd[1]: Listening on Journal Socket.
    [ 13.159600] systemd[1]: Started File System Check on Root Device.
    [ 13.159605] systemd[1]: Mounting Temporary Directory...
    [ 13.191259] systemd[1]: Mounting Huge Pages File System...
    [ 13.194730] systemd[1]: Starting udev Coldplug all Devices...
    [ 13.214643] systemd[1]: Mounting POSIX Message Queue File System...
    [ 13.231452] systemd[1]: Starting Apply Kernel Variables...
    [ 13.240935] systemd[1]: Starting Setup Virtual Console...
    [ 13.252572] systemd[1]: Started Load Kernel Modules.
    [ 13.252592] systemd[1]: Mounted FUSE Control File System.
    [ 13.252605] systemd[1]: Mounting Debug File System...
    [ 13.254667] systemd[1]: Mounting Configuration File System...
    [ 13.274425] systemd[1]: Starting udev Kernel Device Manager...
    [ 13.305170] systemd[1]: Started Set Up Additional Binary Formats.
    [ 13.305183] systemd[1]: Starting Journal Service...
    [ 13.307733] systemd[1]: Started Journal Service.
    [ 13.307763] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 13.726755] EXT4-fs (sda7): re-mounted. Opts: data=ordered
    [ 13.750053] systemd-udevd[127]: starting version 197
    [ 13.921301] systemd-journald[128]: Received SIGUSR1
    [ 14.418021] systemd-journald[128]: File /var/log/journal/9dcd8569a2b14c4f9f53ce4406e57e79/system.journal corrupted or uncleanly shut down, renaming and replacing.
    [ 14.792337] snd_hda_intel 0000:00:1b.0: irq 41 for MSI/MSI-X
    [ 14.877515] input: PC Speaker as /devices/platform/pcspkr/input/input3
    [ 14.893383] e1000e: Intel(R) PRO/1000 Network Driver - 2.1.4-k
    [ 14.893385] e1000e: Copyright(c) 1999 - 2012 Intel Corporation.
    [ 14.953180] parport_pc 00:04: reported by Plug and Play ACPI
    [ 5.951986] ACPI: Invalid Power Resource to register!
    [ 14.953337] parport0: PC-style at 0x378
    [ 14.953338] (0x778), irq 5, dma 3 [PCSPP,TRISTATE,COMPAT,EPP,ECP,DMA]
    [ 15.027758] ppdev: user-space parallel port driver
    [ 15.059527] microcode: CPU0 sig=0x20655, pf=0x2, revision=0x3
    [ 15.068458] microcode: CPU1 sig=0x20655, pf=0x2, revision=0x3
    [ 15.068852] microcode: CPU2 sig=0x20655, pf=0x2, revision=0x3
    [ 15.069229] microcode: CPU3 sig=0x20655, pf=0x2, revision=0x3
    [ 15.069558] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 15.124825] ACPI: Requesting acpi_cpufreq
    [ 15.127274] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
    [ 15.127327] ACPI: Power Button [PWRB]
    [ 15.127369] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 15.127425] ACPI: Power Button [PWRF]
    [ 15.131162] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input6
    [ 15.139560] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 15.139628] input: HDA Intel MID Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 15.139728] input: HDA Intel MID Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 15.139785] input: HDA Intel MID Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 15.139838] input: HDA Intel MID Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 15.140068] hda_intel: Disabling MSI
    [ 15.140077] hda-intel: 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 15.140087] e1000e 0000:00:19.0: setting latency timer to 64
    [ 15.140156] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 15.140194] e1000e 0000:00:19.0: irq 42 for MSI/MSI-X
    [ 15.310985] nvidia: module license 'NVIDIA' taints kernel.
    [ 15.310990] Disabling lock debugging due to kernel taint
    [ 15.335816] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) e0:69:95:a2:d5:75
    [ 15.335819] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 15.335893] e1000e 0000:00:19.0 eth0: MAC: 9, PHY: 9, PBA No: FFFFFF-0FF
    [ 15.335992] mei 0000:00:16.0: setting latency timer to 64
    [ 15.336076] mei 0000:00:16.0: irq 43 for MSI/MSI-X
    [ 15.336761] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.SBRG.AY34 1 (20120913/utaddress-251)
    [ 15.336765] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 15.342893] gpio_ich: GPIO from 180 to 255 on gpio_ich
    [ 15.384478] iTCO_vendor_support: vendor-support=0
    [ 15.392227] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 15.392289] iTCO_wdt: Found a H55 TCO device (Version=2, TCOBASE=0x0460)
    [ 15.392384] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 15.468027] e1000e 0000:00:19.0: irq 42 for MSI/MSI-X
    [ 15.570266] e1000e 0000:00:19.0: irq 42 for MSI/MSI-X
    [ 15.570395] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 15.762514] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
    [ 16.022159] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
    [ 16.022316] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
    [ 16.022456] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
    [ 16.022589] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
    [ 16.023047] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 16.023288] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 313.18 Wed Jan 9 17:02:09 PST 2013
    [ 18.372541] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx
    [ 18.372591] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 34.993202] NVRM: Your system is not currently configured to drive a VGA console
    [ 34.993205] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    [ 34.993206] NVRM: requires the use of a text-mode VGA console. Use of other console
    [ 34.993207] NVRM: drivers including, but not limited to, vesafb, may result in
    [ 34.993208] NVRM: corruption and stability problems, and is not supported.
    [ 44.447627] EXT4-fs (sda7): re-mounted. Opts: data=ordered,commit=0
    [ 98.242223] fuse init (API version 7.20)
    Thanks everyone for every reply, I'm learning more GNU/Linux in two days than in two years as other Linux distro's user.

  • Final Cut Pro 10.1 does not detect Promise Pegasus

    HI,
    I would like to change my location of where events are stored at for FCPX to my Promise Pegasus (6x3TB, configured to RAID 5), which is what i bought it for, but sadly, my FCPX does NOT detect my Pegasus at all in Library. It does however detect other storage devices like when my SD card is plugged in etc, and my macintosh hd.
    I spent alot of time reading up and googling and some advices say it must be configured to MAC OS Extended (journaled) which, when i checked, it is! So I don't know what's the problem now.
    It is getting very frustrating and I can't seem to get it to work. Would really appreciate if any kind souls can help me out on this!

    Did you solved that isue? I have the same problem.
    Thanks

Maybe you are looking for

  • Automatic payments with no Business Area aggregation

    Hello, I am trying to run an automatic payment program for one vendor and the system splits the open items by Business area. But I donu2019t want that. I would like to aggregate line items in one, if my payment is just one. I've check my customizatio

  • Convert PDF to Spool

    Hello, I need to develop a program that reads a PDF file in a server and send it to SAP Spool. I can use UPLOAD function to load it as a binary file, but then how to generate a spool request with this content? I tried class CL_FP_PDF_OBJECT but it se

  • [IDOC] How to access IDOC in function module?

    Hey, I know how to assign an function module to an incoming IDOC. Do I have to define the IDOC as import parameter or how to access the data of the IDOC? Anyone got a link to a short example? regards chris

  • How to deploy shsc applications on weblogic server

    I have weblogic 8.1 with sp3. Any pointers on how to deploy sjsc created applications on Weblogic. I am able to deploy sample jsf programs created without using the IDE without any hitches, I am unable to deploy the war file created by the Sun java s

  • How to encrypt password in Sun ONE directory server?

    Hi, I'm trying to perform an update to a password field in Sun ONE directory server using JNDI, but the stored password does not get encrypted by the directory server. I've searched the forum, and only found examples on how to do so for Active Direct