Error 1061 - SharedObjects

Hello to all, I'm having some serious problems with
SharedObjects in Flex, when I try to call the method getLocal()
from a SharedObject it shows se following error message:
1061: Call to a possibly undefined method clear through a
reference with static type SharedObject.
Here are the lines that throws the error:
public var sharedObj:SharedObject;
sharedObj = SharedObject.getLocal("myTasks");
I'm using Flex Builder 3 trial, Flash Player 10 ActiveX and
the latest 3.2.0 SDK.
Please anyone has some clue of what may be happening??
Thanks for your attention!

Hi rtalton, i got the SharedObject example from the Flex
Builder Help, you can see the full code here:
http://learn.adobe.com/wiki/display/Flex/Shared+Objects
I just copied and pasted in a new flex project.
There is a sharedObject.clear() method in the
deleteSavedTasks() function, but it didn't prevented the error... I
don't know if it's about the sdk, the flex IDE, the flash player...
Thanks for your help!

Similar Messages

  • Error 1061 when downloading free trial of Acrobat XI Pro

    I am attempting to download a free trial of Acrobat XI Pro on a PC running Windows 8.  While downloading, I receive an error message of "Windows Search Error 1061:  The service cannot accept control messages at this time."  I have tried stopping the Windows Search service through the admin services in my Control Panel but receive a similar message (or one indicating that other services dependant upon Windows Search are running).  Can I "ignore" this error and continue to succesfully download the trial version?  Or, is there a way to stop this service until the download is completed?  I am not an IT professional, so any advice is appreciated.

    Don't know, but I would suggest to just try ignoring it and seeing if you get a successful download. Of course, when you install you need to be logged in as the administrator and disable anti-virus. An online search for the error suggests the problem is a WIndows configuration issue. The one site I found had a fix tool, but I do not generally recommend downloading such fix files. Another site suggests a corrupt registry.
    You might try the CCleaner tool to see if that can help with the registry. However, I would just continue with the download if you can and see if it works.

  • Error with SharedObject on RHEL4

    I have installed Flash Media Server 2.0.4 on RedHat
    Enterprise Linux 4. In process of the installation I have entered
    user "fms" and group "fms". But after application starting and
    connect to SharedObject system throws an error:
    Error: Error #2139: SharedObject could not connect.
    at Error$/throwError()
    at flash.net::SharedObject/connect()
    The same application correctly works on the same type of
    server.
    Could this be because of the Linux Setup or because of the
    flash media setup?
    This really sucks! Please HELP, all help is appreciated.

    I'm sorry, it is problem with my application and server
    settings

  • Help with error 1061

    I'm just starting out in flash and I'm trying to create a simple maze that just displays "Yes" when you hit the edges, but I get the error "1061: Call to a possibly undefined method hitTestPoint through a reference with static type Class." whenever I try to test it. Yes, I have searched several pages of Google for a solution and good for you if you found it in five seconds. This is what i have so far:
    addEventListener(Event.ENTER_FRAME, checkCollision);
    function checkCollision(event:Event) {
    if (maze.hitTestPoint(mouseX, mouseY, true)) {
      messageText1.text = "hitTestPoint: YES";
    } else {
      messageText1.text = "hitTestPoint: NO";

    I think what you just described explains it.  Are you adding the maze to the stage dynamically or is it planted on the stage manually?  In the code, "maze" is the instance name of the object, not what you did with it.  You assign instance names in the Properties panel if the object is planted on the stage manually.  But because you created a class named maze. using that in the code as an instance name will cause a problem.
    Just as an exercise, start a new file and draw a quick maze (just a rectangle is enough).  Right click that and select Convert to Symbol--just check the option to make it a Movieclip and then OK.  With that object still selected, in the Properties panel enter "maze" in the input there that has <Instance Name> in it.
    Then add a textfield that has an instance name "messageText1".
    Then copy and paste your code into an actions layer in the same frame as the object (same frame, different layer)
    That should work.

  • Learning: error 1061

    Hey,
    Just learning flash action script 3
    all i want to do is add a link to a URL
    i have converted my graphic into a button named myButton
    here is my code:
    var link:URLRequest = new URLRequest ("
    http://www.bikes.com.au/g/37231/interstate-delivery-charges.html");
    myButton.addEventListener(MouseEvent.CLICK, linktourl);
    function linktourl(event:MouseEvent):void {
    navigateToURL(link);
    and i get error 1061: call to possibly undefined method
    addEventListener through a reference with a static type class
    if anybody could help that would be fantastic

    Nope,
    myButton is the name of my button.
    i dont really understand it so i'm hoping somebody can
    help

  • Preloader Code: Error 1061

    I bought a preloader on Flashden.com and it didn't come with much instruction.
    Here is what I have done:
    My index file has my timeline with actions, preloader, and then my movie clips for my opening page. I have placed my preloader movieclip in frame 1 and it ends on frame 2. In frame one on the actions layer I have stop();
    I then have all of my movie clips on frame 3 with my actions for my movieclips on frame three. I added a name to frame 3 named index
    My preloader movieclip has this code:
    stop();
    this.addEventListener(Event.ENTER_FRAME, loading);
    function loading(evt:Event):void
        var percentageLoaded:Number = Math.round(this.stage.loaderInfo.bytesLoaded/ this.stage.loaderInfo.bytesTotal*100);
         this.loaderInformation.loadingtxt.text = "Loading "+percentageLoaded+"%";
        if(percentageLoaded>=100)
            this.removeEventListener(Event.ENTER_FRAME, loading);
            this.parent.gotoAndPlay("index");
    When I test the file I get a 1061 Error saying Call to a possibly undefined method gotoAndPlay through a refernece with static type flash.disply:DisplayObjectContainer.
    Any ideas on what I can do to correct this? I contacted the person I purchased it from but have not heard back yet.
    Thank you!
    Mariah Danielsen

    Try casting the parent as a MovieClip...
           MovieClip(this.parent).gotoAndPlay("index");

  • [AIR 3.0] New JSON functionality doesn't work in FlashPro: Error #1065: Variable JSON is not defined

    After upgrading the AIR SDK to 3.0 in Flash Professional CS5.5 I've found some problems.
    First, the JSON class in the as3corelib.swc library now throws a couple of compile errors:
    1061: Call to a possibly undefined method decode through a reference with static type Class.
    1172: Definition com.adobe.serialization.json:JSON could not be found.
    At first I was completely puzzled, since I had the proper "import com.adobe.serialization.json.JSON;" reference,
    and I had the "as3corelib.swc" referenced in my ActionScript Properties, so how could that not be found?
    Then, I found out that's because it conflicts with the new internal JSON class included with AIR 3.0
    (maybe it should have been called something else, to avoid conflicts with Adobe's own as3corelib library).
    The new native JSON class doesn't have the decode() method. Now it's called parse()
    Ok, so I've tried using the new JSON class, but after changing decode() with parse() and removing
    the "import com.adobe.serialization.json.JSON;" reference, Flash tells me that "Variable JSON is not defined".
    Really? The JSON class is showing in the Flash Builder code completion popup,
    complete with its all-new parse() and stringify() methods! So why does it say it's not defined?
    Also, my SWF file gets compiled with no errors at all, so that verifies that the new 3.0 libraries are in place.
    I only get the "JSON is not defined" error at runtime in ADL, not at compile time. Why?
    In order to upgrade to the AIR 3.0 SDK, I've followed this guide:
    http://kb2.adobe.com/cps/908/cpsid_90810.html
    I know that's about upgrading to AIR 2.7, but I suppose the steps to upgrade to AIR 3.0 would be very similar,
    only with the AIR3.0 SDK package, instead of 2.7.
    I also took care to type version="13" in all the XMLs, instead of version="12" as stated in that guide, which is meant for 2.7.
    Also, I followed this advice about adding -swf-version=13 in the Project Properties window in Flash Builder:
    http://blogs.adobe.com/cantrell/archives/2011/08/how-to-use-the-air-3-beta-sdk.html
    But that doesn't seem to make a difference, since, even though I use Flash Builder for code editing (which is usually used for Flex),
    my project is a Flash Professional project, not a Flex one, and when testing the project, Flash Builder runs Flash Professional
    to compile and then runs adl.exe (it's the same as if you click the option "Control / Test movie / in AIR Debug Launcher (Mobile)" inside Flash Pro).
    In the "ActionScript Settings" window in Flash Professional, I also have the proper airglobal.swc referenced (from the AIR 3.0 SDK),
    and the same airglobal.swc is referenced in Flash Builder as well (in "Referenced Libraries"), to get proper code completion.
    I've tried all sorts of things to try to get it to work, but no luck. Still get the "JSON is not defined" error at runtime.
    I'm starting to get desperate about this. I'm going to have to revert back to AIR 2.7.1, to stop wasting time on this issue.
    BTW, I'm also having another unrelated problem (though maybe it happens because of the same reason as the other problem).
    Now Flash Builder underlines the getTime() method in my code, as if it no longer were a method of a Date class instance.
    I have a line where I ask for the timestamp like this:
    ts = new Date().getTime();
    That has worked perfectly fine up until now with AIR 3.0.
    Now, when hovering the mouse cursor over the orange "(?)" icon that appears at the left, Flash Builder tells me
    "Access of undefined property getTime". Why?
    The AS3 documentation doesn't say anything about getTime() getting deprecated of anything of the sort:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/Date.html
    In fact, in the code completion popup that Flash Builder shows, now there isn't any mention
    of get or set methods, as you can see here:
    I suppose I can use the .time property instead of .getTime() but I don't know why I'm not getting all the methods I had available before.
    Any ideas why all this is happenning? Specially the dreaded "JSON is not defined" error.

    Well, after much tinkering, I think I've finally found a way to finally make it work!.
    I've created some modified XML files with the profiles needed for AIR 3.0 and after a lot of tries, it finally works!
    I've uploaded them here: http://www.mediafire.com/?d5e761frl5px4
    These are the steps needed to get AIR 3.0 running properly:
    Put all three files into the folder "c:\Program Files (x86)\Adobe\Adobe Flash CS5.5\Common\Configuration\Players"
    Then, make sure you've unzipped the AIR 3.0 SDK into the folder "c:\Program Files (x86)\Adobe\Adobe Flash CS5.5\AIR3.0" Do not overwrite the contents of the "AIR2.6" folder, as suggested by the "Overlay AIR SDK" article (linked in the above post). It gave me problems. It's best to use a different separate folder. My XML files point to that new "AIR3.0" folder.
    Inside the folder "c:\Program Files (x86)\Adobe\Adobe Flash CS5.5\Common\Configuration\ActionScript 3.0" create a new folder named "AIR3.0". Inside that folder, copy the file "airglobal.swc" located at "c:\Program Files (x86)\Adobe\Adobe Flash CS5.5\AIR3.0\frameworks\libs\air".
    Finally, you will have to keep the file "descriptor-sample.xml" in the "c:\Program Files (x86)\Adobe\Adobe Flash CS5.5\AIR2.6\samples" folder, but change the xmlns attribute to "http://ns.adobe.com/air/application/3.0"
    Yes, you have to change that inside the AIR2.6 folder even if the SDK has been put into AIR3.0. That's because of how the publish settings work in Adobe Flash. It's hardcoded into a DLL, so that can't be changed. Not very intuitive.
    I think AIR SDK installations should be a lot more straightforward than this! I know Adobe AIR is meant for developers, not for final users, but still, all these not very well documented upgrade procedures are a pain in the ***. I've wasted A LOT of hours in this (more than half a day), with what should have been a straightforward upgrade!
    Adobe should make a SDK installer so we do not have to be tinkering with all these error-prone procedures each time a new update is released!
    Well, I hope those XML files are useful to somebody and avoids further frustration.
    Regards,
    OMA2k
    PD: BTW, I still have the .getTime() issue described in my above post, but it's not very important,
    since I can still use the .time property. Still, it puzzles me why this is happening.

  • Error while attempting to use the CSSFormatResolver Class in Flash CS4

    Hello,
    While trying to work with a revised version of the CSSFormatResolver class (created by timoisalive and posted on this thread) the compiler threw the following error:
    1061: Call to a possibly undefined method getChildAtIndex through a reference with static type flashx.textLayout.elements:FlowGroupElement.
    The method originates from within the invalidate() method of the CSSFormatResolver class.
    public function invalidate(target:Object):void {       
         delete _textLayoutFormatCache[target];      
         var blockElem:FlowGroupElement = target as FlowGroupElement;      
         if(blockElem) {          
              for(var idx:int = 0; idx < blockElem.numChildren; idx++)                          invalidate(blockElem.getChildAtIndex(idx));          
    If I comment the for loop I can get the example to run, but that seems to seriously affect the way the styles are interpreted...
    The example files are attached below.
    Any suggestions?
    Thank you in advance.

    There is no FlowGroupElement.getChildAtIndex method.
    There are these two:
    getChildAt(index:int):FlowElement
    Returns the FlowElement child at the specified index.
    FlowGroupElement
    getChildIndex(child:FlowElement):int
    Searches in children for the specified FlowElement object and returns its index position.
    FlowGroupElement
    I think you meant getChildAt.
    Hope that helps,
    Rich

  • Need to fix Error 1009 for very simple task!

    Hi to all,
    I'm learning AS3 for the first time so that I can make a game, but I'm stuck on the most basic of tasks!
    What I want to do is be able to click on a button to take me to the next frame of the main timeline, which I've called "gameboard". The button is called "storymode".
    In the first frame of the main timeline, I have a movie clip that runs a short animation before the menu appears. My button that I want to click on is nested in this movie clip.
    This is the code I'm using on frame 95 of the movie clip (exactly where the button appears):
    stop();
    storymode.addEventListener(MouseEvent.MOUSE_UP, gotoGame);
    function gotoGame(evt:MouseEvent):void {
    evt.target.parent.gotoAndStop("gameboard");
    ...but it just gives me Error 1009 every time and won't work!
    I've read a few other forums for help on this error already and tried a few potential solutions, but nothing works - so I'm asking my own question! Also, I ran the debugging tool in Flash, and it tells me the error is specifically on Line 3 (beginning with the word 'storymode'). I've made sure that everything has a name, and double and triple-checked that I'm referring to the right names in the right places, so "storymode" does indeed refer to my button!
    One cause I read about was that the button may not have been loaded yet, but I've made sure that the code is on the same frame as the button. It appears in the exported file and changes colour when hovered over like a functional button, so it's definitely loaded! It just doesn't work when clicked! What could the problem be?!
    I am utterly bewildered by this and desperately need help, otherwise I will never be able to progress to more difficult tasks!

    Kglad, I did as you suggested, and that gives me not only another error (1120: Access of undefined property titlemenu (that's the name of the movieclip)), but it also negates all the "stop" commands I've put in the timeline actions, resulting in the export flickering uncontrollably between the first and second frames on the main timeline.
    I had this problem before I had the 1009 error, and managed to fix it on my own. Back then, it was Error 1061, and was caused by me using the wrong target in my code. I had:
    this.parent.gotoAndStop("gameboard")
    instead of
    evt.target.parent.gotoAndStop("gameboard")
    ...and changing it to the latter fixed Error 1061. However, this error 1120 causes the same problem again, so it's a targeting issue I'm not very willing to change, I think.
    I've tried about a dozen different targeting options as well, and none of them solve Error 1009.

  • Help With Error in Code Generated by WSDL Wizard

    I generated code using the webservice wizard, and then wrote
    a simple mxml file to test the code. I get this error:
    1061: Call to a possibly undefined method getClass through a
    reference with static type Class.
    It occurs in the following code:
    * Internal event handler to process a successful operation
    call from the server
    * The result is decoded using the schema and operation
    settings and then the
    * events get passed on to the actual facade that the user
    employs in the application
    * @private
    private function
    processResult(result:Object,wrappedData:Object):void
    var token:AsyncToken = wrappedData.returnToken;
    var currentOperation:WSDLOperation = wrappedData.operation;
    var decoder:SOAPDecoder = new SOAPDecoder();
    decoder.resultFormat="object";
    decoder.ignoreWhitespace = true;
    decoder.makeObjectsBindable=true;
    decoder.wsdlOperation = currentOperation;
    decoder.schemaManager = currentOperation.schemaManager;
    var body:Object = result.message.body;
    var stringResult:String = String(body);
    if (stringResult == null || stringResult == "")
    return;
    var soapResult:SOAPResult =
    decoder.decodeResponse(result.message.body);
    if (soapResult.isFault)
    var faults:Array = soapResult.result as Array;
    for each (var soapFault:Fault in faults)
    var soapFaultEvent:FaultEvent =
    FaultEvent.createEvent(soapFault,token,null);
    token.dispatchEvent(soapFaultEvent);
    } else {
    result = decoder.decodeResponse(result.message.body).result;
    if (result is ArrayCollection)
    //shoud upcast to specific type here
    var arrayTypedClass:Class =
    SchemaTypeRegistry.getClass(currentOperation.outputMessage.parts[0].type);
    result = new arrayTypedClass(result.source);
    var event:ResultEvent =
    ResultEvent.createEvent(result,token,null);
    token.dispatchEvent(event);
    The statement where the error occurs is in
    bold above. The comment above that line says I should upcast
    to a specific type here, but I don't know what that means. Which
    specific type? How do I determine what type to upcast to?
    Any help would be appreciated.
    TIA,
    Randy

    Hi Martin,
    From the error you showed it seems you have upgraded your SDK
    version, but not the builder. The problem you are experiencing
    comes from the fact that the one of the SDK classes (the
    SchemaTypeRegistry) has been updated from a static to a dynamic
    class. Therefore, using the getClass() call on it will not work any
    more. Also, the lines that register type mappings won't work.
    We've updated the generated code, but it seems you are
    running on an older version. Now, to fix your code you have to:
    1. Locate all occurences where the SchemaTypeRegistry class
    is called as a static class.
    2. Replace the SchemaTypeRegistry part from the method calls
    with SchemaTypeRegistry.getInstance(), like this:
    SchemaTypeRegistry.registerClass(params) becomes
    SchemaTypeRegistry.getInstance().registerClass(params)
    The problem is that when you re-generate the code you will
    have to re-do all these changes again.
    Hope this helps,
    Cristian

  • Application Migration Error

    Hi All
      I am going to migrate my code form flex 3 to flex 4. I uses mx.core.ITextInput in my code i am getting follwing errors:
      1061: Call to a possibly undefined method setSelection through a reference with static type mx.core:ITextInput.
    1119: Access of possibly undefined property selectionBeginIndex through a reference with static type mx.core:ITextInput.
    my code sinplet is
      textInput.setSelection(textInput.text.length, textInput.text.length);
    textInput.selectionBeginIndex;
    sorry i forgeeten imp thing my class is AutoCompleteModified that extends ComboBox
    and get from
    // Copyright (C) 2003-2006 Adobe Macromedia Software LLC and its licensors.
    // All Rights Reserved. The following is Source Code and is subject to all
    // restrictions on such code as contained in the End User License Agreement
    // accompanying this product.
    // Modified by Jens Krause [www.websector.de] to avoid issues using Flex 3
    // @see: http://www.websector.de/blog/2008/04/30/quick-tip-avoid-issues-using-adobes-autocomplete-i nput-component-using-flex-3/
    // This class is for demonstration purposes only.
    // To use this solution extend the original Autocomplete.as described at the blog entry mentioned above, please.
    Any help would be hieghly appriceated .
    regards
    gaurav kumar pandey

    Hi Subah,
       What ever property Robin had suggested in the above thread is correct make sure you use the latest stable build of flex sdk 4 , I had solved the issue by using the flex sdk flex_sdk_4.0.0.14159 . Hope this will help you . Any further query or suggestion  are welcome.
    Gaurav kumar Pandey

  • A few seconds after start the GDM mouse stops working

    After today's update I have the following problem: a few seconds after start the GDM mouse stops working. XDM doesn't work.
    Edited: Mouse works. Only pointer does not move.
    lscpi says:
    00:02.0 VGA compatible controller: Intel Corporation 82946GZ/GL Integrated Graphics Controller (rev 02)
    gdm says:
    usb 2-2: new low speed USB device using uhci_hcd and address 4
    input: USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input6
    generic-usb 0003:04B3:310C.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:1d.0-2/input0
    [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
    [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -11 (awaiting 1071 at 650, next 1076)
    (this line is repeated several times:)
    [drm:i915_do_wait_request] *ERROR* something (likely vbetool) disabled interrupts, re-enabling
    [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
    [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -11 (awaiting 1079 at 650, next 1080)
    [drm:i915_reset] *ERROR* GPU hanging too fast, declaring wedged!
    [drm:i915_reset] *ERROR* Failed to reset chip.
    /var/log/Xorg.0.log says:
    [ 23.129]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 23.129]
    X.Org X Server 1.9.3.901 (1.9.4 RC 1)
    Release Date: 2011-01-07
    [ 23.129] X Protocol Version 11, Revision 0
    [ 23.129] Build Operating System: Linux 2.6.36-ARCH i686
    [ 23.129] Current Operating System: Linux mariuszch 2.6.37-ARCH #1 SMP PREEMPT Sat Jan 29 19:40:04 UTC 2011 i686
    [ 23.129] Kernel command line: root=/dev/disk/by-uuid/3e82e71b-7de4-406d-8da9-8101fe4a713f ro i915.modeset=1
    [ 23.129] Build Date: 08 January 2011 11:27:31PM
    [ 23.129]
    [ 23.130] Current version of pixman: 0.20.2
    [ 23.130] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 23.130] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 23.131] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jan 31 09:24:08 2011
    [ 23.163] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 23.206] (==) No Layout section. Using the first Screen section.
    [ 23.206] (==) No screen section available. Using defaults.
    [ 23.206] (**) |-->Screen "Default Screen Section" (0)
    [ 23.206] (**) | |-->Monitor "<default monitor>"
    [ 23.206] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 23.206] (==) Automatically adding devices
    [ 23.206] (==) Automatically enabling devices
    [ 23.260] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 23.260] Entry deleted from font path.
    [ 23.295] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 23.295] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 23.295] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 23.295] (II) Loader magic: 0x81f3160
    [ 23.295] (II) Module ABI versions:
    [ 23.295] X.Org ANSI C Emulation: 0.4
    [ 23.295] X.Org Video Driver: 8.0
    [ 23.295] X.Org XInput driver : 11.0
    [ 23.295] X.Org Server Extension : 4.0
    [ 23.296] (--) PCI:*(0:0:2:0) 8086:2972:17aa:1015 rev 2, Mem @ 0xd0000000/1048576, 0xc0000000/268435456, I/O @ 0x000018c0/8
    [ 23.296] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 23.296] (II) LoadModule: "extmod"
    [ 23.306] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 23.314] (II) Module extmod: vendor="X.Org Foundation"
    [ 23.314] compiled for 1.9.3.901, module version = 1.0.0
    [ 23.314] Module class: X.Org Server Extension
    [ 23.314] ABI class: X.Org Server Extension, version 4.0
    [ 23.314] (II) Loading extension MIT-SCREEN-SAVER
    [ 23.314] (II) Loading extension XFree86-VidModeExtension
    [ 23.314] (II) Loading extension XFree86-DGA
    [ 23.314] (II) Loading extension DPMS
    [ 23.314] (II) Loading extension XVideo
    [ 23.314] (II) Loading extension XVideo-MotionCompensation
    [ 23.314] (II) Loading extension X-Resource
    [ 23.314] (II) LoadModule: "dbe"
    [ 23.314] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 23.320] (II) Module dbe: vendor="X.Org Foundation"
    [ 23.320] compiled for 1.9.3.901, module version = 1.0.0
    [ 23.320] Module class: X.Org Server Extension
    [ 23.320] ABI class: X.Org Server Extension, version 4.0
    [ 23.320] (II) Loading extension DOUBLE-BUFFER
    [ 23.320] (II) LoadModule: "glx"
    [ 23.320] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 23.337] (II) Module glx: vendor="X.Org Foundation"
    [ 23.337] compiled for 1.9.3.901, module version = 1.0.0
    [ 23.337] ABI class: X.Org Server Extension, version 4.0
    [ 23.337] (==) AIGLX enabled
    [ 23.337] (II) Loading extension GLX
    [ 23.337] (II) LoadModule: "record"
    [ 23.338] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 23.338] (II) Module record: vendor="X.Org Foundation"
    [ 23.338] compiled for 1.9.3.901, module version = 1.13.0
    [ 23.338] Module class: X.Org Server Extension
    [ 23.338] ABI class: X.Org Server Extension, version 4.0
    [ 23.339] (II) Loading extension RECORD
    [ 23.339] (II) LoadModule: "dri"
    [ 23.339] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 23.347] (II) Module dri: vendor="X.Org Foundation"
    [ 23.347] compiled for 1.9.3.901, module version = 1.0.0
    [ 23.347] ABI class: X.Org Server Extension, version 4.0
    [ 23.347] (II) Loading extension XFree86-DRI
    [ 23.347] (II) LoadModule: "dri2"
    [ 23.348] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 23.351] (II) Module dri2: vendor="X.Org Foundation"
    [ 23.351] compiled for 1.9.3.901, module version = 1.2.0
    [ 23.351] ABI class: X.Org Server Extension, version 4.0
    [ 23.351] (II) Loading extension DRI2
    [ 23.351] (==) Matched intel as autoconfigured driver 0
    [ 23.351] (==) Matched vesa as autoconfigured driver 1
    [ 23.351] (==) Matched fbdev as autoconfigured driver 2
    [ 23.351] (==) Assigned the driver to the xf86ConfigLayout
    [ 23.351] (II) LoadModule: "intel"
    [ 23.352] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 23.408] (II) Module intel: vendor="X.Org Foundation"
    [ 23.408] compiled for 1.9.3, module version = 2.14.0
    [ 23.408] Module class: X.Org Video Driver
    [ 23.408] ABI class: X.Org Video Driver, version 8.0
    [ 23.408] (II) LoadModule: "vesa"
    [ 23.408] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 23.414] (II) Module vesa: vendor="X.Org Foundation"
    [ 23.414] compiled for 1.9.0, module version = 2.3.0
    [ 23.414] Module class: X.Org Video Driver
    [ 23.414] ABI class: X.Org Video Driver, version 8.0
    [ 23.414] (II) LoadModule: "fbdev"
    [ 23.425] (WW) Warning, couldn't open module fbdev
    [ 23.425] (II) UnloadModule: "fbdev"
    [ 23.425] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 23.426] (II) intel: Driver for Intel 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, B43, Clarkdale, Arrandale,
    Sandybridge, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
    Sandybridge, Sandybridge
    [ 23.426] (II) VESA: driver for VESA chipsets: vesa
    [ 23.426] (++) using VT number 7
    [ 23.435] (WW) Falling back to old probe method for vesa
    [ 23.435] drmOpenDevice: node name is /dev/dri/card0
    [ 23.435] drmOpenDevice: open result is 8, (OK)
    [ 23.435] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 23.435] drmOpenDevice: node name is /dev/dri/card0
    [ 23.435] drmOpenDevice: open result is 8, (OK)
    [ 23.435] drmOpenByBusid: drmOpenMinor returns 8
    [ 23.435] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 23.435] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 23.435] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 23.435] (==) intel(0): RGB weight 888
    [ 23.435] (==) intel(0): Default visual is TrueColor
    [ 23.436] (II) intel(0): Integrated Graphics Chipset: Intel(R) 946GZ
    [ 23.436] (--) intel(0): Chipset: "946GZ"
    [ 23.436] (**) intel(0): Tiling enabled
    [ 23.436] (**) intel(0): SwapBuffers wait enabled
    [ 23.436] (==) intel(0): video overlay key set to 0x101fe
    [ 23.520] (II) intel(0): Output VGA1 has no monitor section
    [ 23.587] (II) intel(0): EDID for output VGA1
    [ 23.587] (II) intel(0): Manufacturer: SAM Model: 594 Serial#: 1297691186
    [ 23.587] (II) intel(0): Year: 2010 Week: 1
    [ 23.587] (II) intel(0): EDID Version: 1.3
    [ 23.587] (II) intel(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 23.587] (II) intel(0): Sync: Separate Composite SyncOnGreen
    [ 23.587] (II) intel(0): Max Image Size [cm]: horiz.: 44 vert.: 30
    [ 23.587] (II) intel(0): Gamma: 2.20
    [ 23.587] (II) intel(0): DPMS capabilities: Off; RGB/Color Display
    [ 23.587] (II) intel(0): First detailed timing is preferred mode
    [ 23.587] (II) intel(0): redX: 0.646 redY: 0.339 greenX: 0.290 greenY: 0.603
    [ 23.587] (II) intel(0): blueX: 0.145 blueY: 0.070 whiteX: 0.312 whiteY: 0.329
    [ 23.587] (II) intel(0): Supported established timings:
    [ 23.587] (II) intel(0): 720x400@70Hz
    [ 23.587] (II) intel(0): 640x480@60Hz
    [ 23.587] (II) intel(0): 640x480@67Hz
    [ 23.587] (II) intel(0): 640x480@72Hz
    [ 23.587] (II) intel(0): 640x480@75Hz
    [ 23.587] (II) intel(0): 800x600@56Hz
    [ 23.587] (II) intel(0): 800x600@60Hz
    [ 23.587] (II) intel(0): 800x600@72Hz
    [ 23.587] (II) intel(0): 800x600@75Hz
    [ 23.587] (II) intel(0): 832x624@75Hz
    [ 23.587] (II) intel(0): 1024x768@60Hz
    [ 23.587] (II) intel(0): 1024x768@70Hz
    [ 23.587] (II) intel(0): 1024x768@75Hz
    [ 23.587] (II) intel(0): 1280x1024@75Hz
    [ 23.587] (II) intel(0): 1152x864@75Hz
    [ 23.587] (II) intel(0): Manufacturer's mask: 0
    [ 23.587] (II) intel(0): Supported standard timings:
    [ 23.587] (II) intel(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 23.587] (II) intel(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 23.587] (II) intel(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 23.587] (II) intel(0): #3: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 23.587] (II) intel(0): #4: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 23.587] (II) intel(0): #5: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 23.587] (II) intel(0): #6: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 23.588] (II) intel(0): Supported detailed timing:
    [ 23.588] (II) intel(0): clock: 119.0 MHz Image Size: 459 x 296 mm
    [ 23.588] (II) intel(0): h_active: 1680 h_sync: 1728 h_sync_end 1760 h_blank_end 1840 h_border: 0
    [ 23.588] (II) intel(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1080 v_border: 0
    [ 23.588] (II) intel(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 23.588] (II) intel(0): Monitor name: SyncMaster
    [ 23.588] (II) intel(0): Serial No: HMFZ102588
    [ 23.588] (II) intel(0): EDID (in hex):
    [ 23.588] (II) intel(0): 00ffffffffffff004c2d94053232594d
    [ 23.588] (II) intel(0): 011401030e2c1e782ab501a5564a9a25
    [ 23.588] (II) intel(0): 125054bfef80b30081808140714f8100
    [ 23.588] (II) intel(0): 9500950f01017c2e90a0601a1e403020
    [ 23.588] (II) intel(0): 3600cb281100001a000000fd00384b1e
    [ 23.588] (II) intel(0): 510e000a202020202020000000fc0053
    [ 23.588] (II) intel(0): 796e634d61737465720a2020000000ff
    [ 23.588] (II) intel(0): 00484d465a3130323538380a20200026
    [ 23.588] (II) intel(0): EDID vendor "SAM", prod id 1428
    [ 23.613] (II) intel(0): Using EDID range info for horizontal sync
    [ 23.613] (II) intel(0): Using EDID range info for vertical refresh
    [ 23.613] (II) intel(0): Printing DDC gathered Modelines:
    [ 23.613] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
    [ 23.613] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 23.613] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 23.613] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 23.613] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    [ 23.613] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 23.613] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 23.613] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 23.613] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 23.613] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    [ 23.613] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 23.613] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 23.613] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 23.613] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 23.613] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 23.613] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 23.613] (II) intel(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 23.613] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 23.613] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 23.613] (II) intel(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 23.613] (II) intel(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 23.613] (II) intel(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 23.614] (II) intel(0): Printing probed modes for output VGA1
    [ 23.614] (II) intel(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
    [ 23.614] (II) intel(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 23.614] (II) intel(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 23.614] (II) intel(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 23.614] (II) intel(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 23.614] (II) intel(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 23.614] (II) intel(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz)
    [ 23.614] (II) intel(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 23.614] (II) intel(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz)
    [ 23.614] (II) intel(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 23.614] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 23.614] (II) intel(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 23.614] (II) intel(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 23.614] (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 23.614] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 23.614] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 23.614] (II) intel(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz)
    [ 23.614] (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 23.614] (II) intel(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 23.614] (II) intel(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 23.614] (II) intel(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 23.614] (II) intel(0): Output VGA1 connected
    [ 23.614] (II) intel(0): Using exact sizes for initial modes
    [ 23.614] (II) intel(0): Output VGA1 using initial mode 1680x1050
    [ 23.614] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 23.614] (II) intel(0): Kernel page flipping support detected, enabling
    [ 23.614] (**) intel(0): Display dimensions: (440, 300) mm
    [ 23.614] (**) intel(0): DPI set to (96, 88)
    [ 23.614] (II) Loading sub module "fb"
    [ 23.614] (II) LoadModule: "fb"
    [ 23.615] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 23.628] (II) Module fb: vendor="X.Org Foundation"
    [ 23.629] compiled for 1.9.3.901, module version = 1.0.0
    [ 23.629] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 23.629] (II) UnloadModule: "vesa"
    [ 23.629] (II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 23.629] (==) Depth 24 pixmap format is 32 bpp
    [ 23.629] (==) intel(0): VideoRam: 262144 KB
    [ 23.629] (II) intel(0): [DRI2] Setup complete
    [ 23.629] (II) intel(0): [DRI2] DRI driver: i915
    [ 23.629] (II) intel(0): Allocated new frame buffer 1728x1050 stride 7168, tiled
    [ 23.656] (II) UXA(0): Driver registered support for the following operations:
    [ 23.656] (II) solid
    [ 23.656] (II) copy
    [ 23.656] (II) composite (RENDER acceleration)
    [ 23.656] (II) put_image
    [ 23.656] (II) get_image
    [ 23.656] (==) intel(0): Backing store disabled
    [ 23.656] (==) intel(0): Silken mouse enabled
    [ 23.658] (II) intel(0): Initializing HW Cursor
    [ 23.673] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 23.673] (==) intel(0): DPMS enabled
    [ 23.673] (==) intel(0): Intel XvMC decoder disabled
    [ 23.673] (II) intel(0): Set up textured video
    [ 23.673] (II) intel(0): Set up overlay video
    [ 23.673] (II) intel(0): direct rendering: DRI2 Enabled
    [ 23.673] (==) intel(0): hotplug detection: "enabled"
    [ 23.674] (--) RandR disabled
    [ 23.674] (II) Initializing built-in extension Generic Event Extension
    [ 23.674] (II) Initializing built-in extension SHAPE
    [ 23.674] (II) Initializing built-in extension MIT-SHM
    [ 23.674] (II) Initializing built-in extension XInputExtension
    [ 23.674] (II) Initializing built-in extension XTEST
    [ 23.674] (II) Initializing built-in extension BIG-REQUESTS
    [ 23.674] (II) Initializing built-in extension SYNC
    [ 23.674] (II) Initializing built-in extension XKEYBOARD
    [ 23.674] (II) Initializing built-in extension XC-MISC
    [ 23.674] (II) Initializing built-in extension SECURITY
    [ 23.674] (II) Initializing built-in extension XINERAMA
    [ 23.674] (II) Initializing built-in extension XFIXES
    [ 23.674] (II) Initializing built-in extension RENDER
    [ 23.674] (II) Initializing built-in extension RANDR
    [ 23.674] (II) Initializing built-in extension COMPOSITE
    [ 23.674] (II) Initializing built-in extension DAMAGE
    [ 23.754] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 23.754] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 23.754] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 23.754] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 23.754] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 23.754] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    [ 23.754] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 23.755] (II) intel(0): Setting screen physical size to 444 x 277
    [ 24.316] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 24.316] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 24.316] (II) LoadModule: "evdev"
    [ 24.317] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 24.334] (II) Module evdev: vendor="X.Org Foundation"
    [ 24.334] compiled for 1.9.0, module version = 2.5.0
    [ 24.334] Module class: X.Org XInput Driver
    [ 24.334] ABI class: X.Org XInput driver, version 11.0
    [ 24.334] (**) Power Button: always reports core events
    [ 24.334] (**) Power Button: Device: "/dev/input/event1"
    [ 24.340] (--) Power Button: Found keys
    [ 24.340] (II) Power Button: Configuring as keyboard
    [ 24.340] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 24.340] (**) Option "xkb_rules" "evdev"
    [ 24.340] (**) Option "xkb_model" "evdev"
    [ 24.340] (**) Option "xkb_layout" "us"
    [ 24.380] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 24.380] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 24.380] (**) Power Button: always reports core events
    [ 24.380] (**) Power Button: Device: "/dev/input/event0"
    [ 24.386] (--) Power Button: Found keys
    [ 24.386] (II) Power Button: Configuring as keyboard
    [ 24.386] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 24.386] (**) Option "xkb_rules" "evdev"
    [ 24.386] (**) Option "xkb_model" "evdev"
    [ 24.386] (**) Option "xkb_layout" "us"
    [ 24.394] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event3)
    [ 24.394] (II) No input driver/identifier specified (ignoring)
    [ 24.398] (II) config/udev: Adding input device CHICONY USB NetVista Full Width Keyboard (/dev/input/event4)
    [ 24.398] (**) CHICONY USB NetVista Full Width Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 24.398] (**) CHICONY USB NetVista Full Width Keyboard: always reports core events
    [ 24.398] (**) CHICONY USB NetVista Full Width Keyboard: Device: "/dev/input/event4"
    [ 24.403] (--) CHICONY USB NetVista Full Width Keyboard: Found keys
    [ 24.403] (II) CHICONY USB NetVista Full Width Keyboard: Configuring as keyboard
    [ 24.403] (II) XINPUT: Adding extended input device "CHICONY USB NetVista Full Width Keyboard" (type: KEYBOARD)
    [ 24.403] (**) Option "xkb_rules" "evdev"
    [ 24.403] (**) Option "xkb_model" "evdev"
    [ 24.403] (**) Option "xkb_layout" "us"
    [ 24.411] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 24.411] (II) No input driver/identifier specified (ignoring)
    [ 27.181] (II) intel(0): EDID vendor "SAM", prod id 1428
    [ 27.182] (II) intel(0): Using hsync ranges from config file
    [ 27.182] (II) intel(0): Using vrefresh ranges from config file
    [ 27.182] (II) intel(0): Printing DDC gathered Modelines:
    [ 27.182] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
    [ 27.182] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 27.182] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 27.182] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 27.182] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    [ 27.182] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 27.182] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 27.182] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 27.182] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 27.182] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    [ 27.182] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 27.182] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 27.182] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 27.182] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 27.182] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 27.182] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 27.182] (II) intel(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 27.182] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 27.182] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 27.182] (II) intel(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 27.182] (II) intel(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 27.182] (II) intel(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 27.256] (II) intel(0): EDID vendor "SAM", prod id 1428
    [ 27.256] (II) intel(0): Using hsync ranges from config file
    [ 27.256] (II) intel(0): Using vrefresh ranges from config file
    [ 27.256] (II) intel(0): Printing DDC gathered Modelines:
    [ 27.256] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
    [ 27.256] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 27.256] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 27.256] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 27.256] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    [ 27.256] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 27.256] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 27.256] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 27.256] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 27.256] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    [ 27.256] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 27.256] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 27.256] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 27.256] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 27.256] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 27.256] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 27.256] (II) intel(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 27.256] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 27.256] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 27.256] (II) intel(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 27.256] (II) intel(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 27.256] (II) intel(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 27.363] (II) intel(0): EDID vendor "SAM", prod id 1428
    [ 27.363] (II) intel(0): Using hsync ranges from config file
    [ 27.364] (II) intel(0): Using vrefresh ranges from config file
    [ 27.364] (II) intel(0): Printing DDC gathered Modelines:
    [ 27.364] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
    [ 27.364] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 27.364] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 27.364] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 27.364] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    [ 27.364] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 27.364] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 27.364] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 27.364] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 27.364] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    [ 27.364] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 27.364] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 27.364] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 27.364] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 27.364] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 27.364] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 27.364] (II) intel(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 27.364] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 27.364] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 27.364] (II) intel(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 27.364] (II) intel(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 27.364] (II) intel(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 27.433] (II) intel(0): EDID vendor "SAM", prod id 1428
    [ 27.433] (II) intel(0): Using hsync ranges from config file
    [ 27.433] (II) intel(0): Using vrefresh ranges from config file
    [ 27.433] (II) intel(0): Printing DDC gathered Modelines:
    [ 27.433] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
    [ 27.434] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 27.434] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 27.434] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 27.434] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    [ 27.434] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 27.434] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 27.434] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 27.434] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 27.434] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    [ 27.434] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 27.434] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 27.434] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 27.434] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 27.434] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 27.434] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 27.434] (II) intel(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 27.434] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 27.434] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 27.434] (II) intel(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 27.434] (II) intel(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 27.434] (II) intel(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 33.144] (EE) intel(0): Detected a hung GPU, disabling acceleration.
    [ 33.145] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.146] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.162] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.162] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.166] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.166] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.284] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.287] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.294] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.402] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.402] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.723] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.724] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.725] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.725] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 33.732] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 34.493] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 34.893] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 35.695] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 36.096] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 36.896] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 37.298] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 38.948] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 38.949] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 39.057] (EE) intel(0): failed to set cursor: Input/output error
    [ 39.057] (EE) intel(0): failed to set cursor: Input/output error
    [ 39.064] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 39.064] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 39.255] (EE) intel(0): failed to set cursor: Input/output error
    [ 39.255] (EE) intel(0): failed to set cursor: Input/output error
    [ 39.329] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 39.337] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 39.341] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 42.522] (EE) intel(0): failed to set cursor: Input/output error
    [ 42.522] (EE) intel(0): failed to set cursor: Input/output error
    [ 42.531] (WW) intel(0): intel_uxa_prepare_access: bo map failed: Input/output error
    [ 42.695] (EE) intel(0): failed to set cursor: Input/output error
    [ 42.695] (EE) intel(0): failed to set cursor: Input/output error
    [ 45.970] (EE) intel(0): failed to set cursor: Input/output error
    [ 45.970] (EE) intel(0): failed to set cursor: Input/output error
    [ 46.957] (EE) intel(0): failed to set cursor: Input/output error
    [ 46.957] (EE) intel(0): failed to set cursor: Input/output error
    [ 53.971] (EE) intel(0): failed to set cursor: Input/output error
    [ 53.971] (EE) intel(0): failed to set cursor: Input/output error
    [ 54.206] (EE) intel(0): failed to set cursor: Input/output error
    [ 54.206] (EE) intel(0): failed to set cursor: Input/output error
    [ 54.804] (EE) intel(0): failed to set cursor: Input/output error
    [ 54.804] (EE) intel(0): failed to set cursor: Input/output error
    [ 72.861] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/event5)
    [ 72.861] (**) USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 72.861] (**) USB Optical Mouse: always reports core events
    [ 72.861] (**) USB Optical Mouse: Device: "/dev/input/event5"
    [ 72.866] (--) USB Optical Mouse: Found 3 mouse buttons
    [ 72.866] (--) USB Optical Mouse: Found scroll wheel(s)
    [ 72.866] (--) USB Optical Mouse: Found relative axes
    [ 72.866] (--) USB Optical Mouse: Found x and y relative axes
    [ 72.866] (II) USB Optical Mouse: Configuring as mouse
    [ 72.866] (**) USB Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 72.866] (**) USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 72.867] (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE)
    [ 72.867] (**) USB Optical Mouse: (accel) keeping acceleration scheme 1
    [ 72.867] (**) USB Optical Mouse: (accel) acceleration profile 0
    [ 72.867] (**) USB Optical Mouse: (accel) acceleration factor: 2.000
    [ 72.867] (**) USB Optical Mouse: (accel) acceleration threshold: 4
    [ 72.867] (II) USB Optical Mouse: initialized for relative axes.
    [ 72.868] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse0)
    [ 72.868] (II) No input driver/identifier specified (ignoring)
    [ 84.484] (EE) intel(0): failed to set cursor: Input/output error
    [ 84.484] (EE) intel(0): failed to set cursor: Input/output error
    [ 136.555] (EE) intel(0): failed to set cursor: Input/output error
    [ 136.555] (EE) intel(0): failed to set cursor: Input/output error
    [ 163.561] (EE) intel(0): failed to set cursor: Input/output error
    [ 163.561] (EE) intel(0): failed to set cursor: Input/output error
    [ 176.751] (EE) intel(0): failed to set cursor: Input/output error
    [ 176.752] (EE) intel(0): failed to set cursor: Input/output error
    [ 179.565] (EE) intel(0): failed to set cursor: Input/output error
    [ 179.565] (EE) intel(0): failed to set cursor: Input/output error
    [ 179.613] (EE) intel(0): failed to set cursor: Input/output error
    [ 179.613] (EE) intel(0): failed to set cursor: Input/output error
    [ 190.939] (EE) intel(0): failed to set cursor: Input/output error
    [ 190.939] (EE) intel(0): failed to set cursor: Input/output error
    [ 196.719] (EE) intel(0): failed to set cursor: Input/output error
    [ 196.719] (EE) intel(0): failed to set cursor: Input/output error
    [ 197.007] (EE) intel(0): failed to set cursor: Input/output error
    [ 197.007] (EE) intel(0): failed to set cursor: Input/output error
    [ 200.991] (EE) intel(0): failed to set cursor: Input/output error
    [ 200.991] (EE) intel(0): failed to set cursor: Input/output error
    [ 202.499] (EE) intel(0): failed to set cursor: Input/output error
    [ 202.499] (EE) intel(0): failed to set cursor: Input/output error
    [ 203.164] (EE) intel(0): failed to set cursor: Input/output error
    [ 203.164] (EE) intel(0): failed to set cursor: Input/output error
    [ 207.322] (EE) intel(0): failed to set cursor: Input/output error
    [ 207.323] (EE) intel(0): failed to set cursor: Input/output error
    [ 208.093] (EE) intel(0): failed to set cursor: Input/output error
    [ 208.094] (EE) intel(0): failed to set cursor: Input/output error
    [ 209.080] (EE) intel(0): failed to set cursor: Input/output error
    [ 209.081] (EE) intel(0): failed to set cursor: Input/output error
    [ 209.641] (EE) intel(0): failed to set cursor: Input/output error
    [ 209.642] (EE) intel(0): failed to set cursor: Input/output error
    [ 214.392] (EE) intel(0): failed to set cursor: Input/output error
    [ 214.392] (EE) intel(0): failed to set cursor: Input/output error
    [ 214.885] (EE) intel(0): failed to set cursor: Input/output error
    [ 214.885] (EE) intel(0): failed to set cursor: Input/output error
    [ 225.899] (EE) intel(0): failed to set cursor: Input/output error
    [ 225.899] (EE) intel(0): failed to set cursor: Input/output error
    [ 225.912] (EE) intel(0): failed to set cursor: Input/output error
    [ 225.913] (EE) intel(0): failed to set cursor: Input/output error
    [ 244.351] (EE) intel(0): failed to set cursor: Input/output error
    [ 244.351] (EE) intel(0): failed to set cursor: Input/output error
    [ 245.332] (EE) intel(0): failed to set cursor: Input/output error
    [ 245.332] (EE) intel(0): failed to set cursor: Input/output error
    [ 248.711] (EE) intel(0): failed to set cursor: Input/output error
    [ 248.712] (EE) intel(0): failed to set cursor: Input/output error
    [ 249.347] (EE) intel(0): failed to set cursor: Input/output error
    [ 249.348] (EE) intel(0): failed to set cursor: Input/output error
    [ 252.594] (EE) intel(0): failed to set cursor: Input/output error
    [ 252.594] (EE) intel(0): failed to set cursor: Input/output error
    [ 253.062] (EE) intel(0): failed to set cursor: Input/output error
    [ 253.062] (EE) intel(0): failed to set cursor: Input/output error
    [ 273.635] (EE) intel(0): failed to set cursor: Input/output error
    [ 273.635] (EE) intel(0): failed to set cursor: Input/output error
    [ 274.148] (EE) intel(0): failed to set cursor: Input/output error
    [ 274.148] (EE) intel(0): failed to set cursor: Input/output error
    [ 285.208] (EE) intel(0): failed to set cursor: Input/output error
    [ 285.208] (EE) intel(0): failed to set cursor: Input/output error
    [ 287.473] (EE) intel(0): failed to set cursor: Input/output error
    [ 287.473] (EE) intel(0): failed to set cursor: Input/output error
    [ 353.216] (EE) intel(0): failed to set cursor: Input/output error
    [ 353.216] (EE) intel(0): failed to set cursor: Input/output error
    [ 355.928] (EE) intel(0): failed to set cursor: Input/output error
    [ 355.928] (EE) intel(0): failed to set cursor: Input/output error
    [ 357.845] (EE) intel(0): failed to set cursor: Input/output error
    [ 357.845] (EE) intel(0): failed to set cursor: Input/output error
    [ 360.465] (EE) intel(0): failed to set cursor: Input/output error
    [ 360.465] (EE) intel(0): failed to set cursor: Input/output error
    [ 361.916] (EE) intel(0): failed to set cursor: Input/output error
    [ 361.917] (EE) intel(0): failed to set cursor: Input/output error
    [ 363.505] (EE) intel(0): failed to set cursor: Input/output error
    [ 363.505] (EE) intel(0): failed to set cursor: Input/output error
    [ 364.433] (EE) intel(0): failed to set cursor: Input/output error
    [ 364.433] (EE) intel(0): failed to set cursor: Input/output error
    [ 366.375] (EE) intel(0): failed to set cursor: Input/output error
    [ 366.375] (EE) intel(0): failed to set cursor: Input/output error
    [ 367.953] (EE) intel(0): failed to set cursor: Input/output error
    [ 367.954] (EE) intel(0): failed to set cursor: Input/output error
    [ 369.092] (EE) intel(0): failed to set cursor: Input/output error
    [ 369.092] (EE) intel(0): failed to set cursor: Input/output error
    [ 372.906] (EE) intel(0): failed to set cursor: Input/output error
    [ 372.906] (EE) intel(0): failed to set cursor: Input/output error
    [ 374.450] (EE) intel(0): failed to set cursor: Input/output error
    [ 374.451] (EE) intel(0): failed to set cursor: Input/output error
    [ 376.802] (EE) intel(0): failed to set cursor: Input/output error
    [ 376.803] (EE) intel(0): failed to set cursor: Input/output error
    [ 378.140] (EE) intel(0): failed to set cursor: Input/output error
    [ 378.140] (EE) intel(0): failed to set cursor: Input/output error
    [ 382.347] (EE) intel(0): failed to set cursor: Input/output error
    [ 382.347] (EE) intel(0): failed to set cursor: Input/output error
    [ 383.812] (EE) intel(0): failed to set cursor: Input/output error
    [ 383.812] (EE) intel(0): failed to set cursor: Input/output error
    [ 386.612] (EE) intel(0): failed to set cursor: Input/output error
    [ 386.612] (EE) intel(0): failed to set cursor: Input/output error
    [ 388.092] (EE) intel(0): failed to set cursor: Input/output error
    [ 388.092] (EE) intel(0): failed to set cursor: Input/output error
    [ 389.436] (EE) intel(0): failed to set cursor: Input/output error
    [ 389.436] (EE) intel(0): failed to set cursor: Input/output error
    [ 391.131] (EE) intel(0): failed to set cursor: Input/output error
    [ 391.131] (EE) intel(0): failed to set cursor: Input/output error
    [ 392.372] (EE) intel(0): failed to set cursor: Input/output error
    [ 392.373] (EE) intel(0): failed to set cursor: Input/output error
    [ 393.630] (EE) intel(0): failed to set cursor: Input/output error
    [ 393.631] (EE) intel(0): failed to set cursor: Input/output error
    [ 394.932] (EE) intel(0): failed to set cursor: Input/output error
    [ 394.933] (EE) intel(0): failed to set cursor: Input/output error
    [ 396.629] (EE) intel(0): failed to set cursor: Input/output error
    [ 396.629] (EE) intel(0): failed to set cursor: Input/output error
    [ 398.349] (EE) intel(0): failed to set cursor: Input/output error
    [ 398.349] (EE) intel(0): failed to set cursor: Input/output error
    [ 400.264] (EE) intel(0): failed to set cursor: Input/output error
    [ 400.264] (EE) intel(0): failed to set cursor: Input/output error
    [ 402.517] (EE) intel(0): failed to set cursor: Input/output error
    [ 402.518] (EE) intel(0): failed to set cursor: Input/output error
    [ 404.749] (EE) intel(0): failed to set cursor: Input/output error
    [ 404.749] (EE) intel(0): failed to set cursor: Input/output error
    [ 407.798] (EE) intel(0): failed to set cursor: Input/output error
    [ 407.798] (EE) intel(0): failed to set cursor: Input/output error
    [ 411.170] (EE) intel(0): failed to set cursor: Input/output error
    [ 411.170] (EE) intel(0): failed to set cursor: Input/output error
    [ 411.910] (EE) intel(0): failed to set cursor: Input/output error
    [ 411.912] (EE) intel(0): failed to set cursor: Input/output error
    [ 413.276] (EE) intel(0): failed to set cursor: Input/output error
    [ 413.276] (EE) intel(0): failed to set cursor: Input/output error
    [ 414.775] (EE) intel(0): failed to set cursor: Input/output error
    [ 414.775] (EE) intel(0): failed to set cursor: Input/output error
    [ 416.762] (EE) intel(0): failed to set cursor: Input/output error
    [ 416.763] (EE) intel(0): failed to set cursor: Input/output error
    [ 420.439] (EE) intel(0): failed to set cursor: Input/output error
    [ 420.440] (EE) intel(0): failed to set cursor: Input/output error
    [ 424.614] (EE) intel(0): failed to set cursor: Input/output error
    [ 424.614] (EE) intel(0): failed to set cursor: Input/output error
    [ 426.920] (EE) intel(0): failed to set cursor: Input/output error
    [ 426.920] (EE) intel(0): failed to set cursor: Input/output error
    [ 430.033] (EE) intel(0): failed to set cursor: Input/output error
    [ 430.033] (EE) intel(0): failed to set cursor: Input/output error
    [ 432.265] (EE) intel(0): failed to set cursor: Input/output error
    [ 432.265] (EE) intel(0): failed to set cursor: Input/output error
    [ 435.339] (EE) intel(0): failed to set cursor: Input/output error
    [ 435.339] (EE) intel(0): failed to set cursor: Input/output error
    [ 437.705] (EE) intel(0): failed to set cursor: Input/output error
    [ 437.706] (EE) intel(0): failed to set cursor: Input/output error
    [ 441.112] (EE) intel(0): failed to set cursor: Input/output error
    [ 441.112] (EE) intel(0): failed to set cursor: Input/output error
    [ 444.922] (EE) intel(0): failed to set cursor: Input/output error
    [ 444.922] (EE) intel(0): failed to set cursor: Input/output error
    [ 448.296] (EE) intel(0): failed to set cursor: Input/output error
    [ 448.296] (EE) intel(0): failed to set cursor: Input/output error
    [ 450.299] (EE) intel(0): failed to set cursor: Input/output error
    [ 450.299] (EE) intel(0): failed to set cursor: Input/output error
    [ 453.190] (EE) intel(0): failed to set cursor: Input/output error
    [ 453.191] (EE) intel(0): failed to set cursor: Input/output error
    [ 455.467] (EE) intel(0): failed to set cursor: Input/output error
    [ 455.468] (EE) intel(0): failed to set cursor: Input/output error
    [ 458.751] (EE) intel(0): failed to set cursor: Input/output error
    [ 458.751] (EE) intel(0): failed to set cursor: Input/output error
    [ 460.132] (EE) intel(0): failed to set cursor: Input/output error
    [ 460.132] (EE) intel(0): failed to set cursor: Input/output error
    [ 462.768] (EE) intel(0): failed to set cursor: Input/output error
    [ 462.770] (EE) intel(0): failed to set cursor: Input/output error
    [ 464.061] (EE) intel(0): failed to set cursor: Input/output error
    [ 464.061] (EE) intel(0): failed to set cursor: Input/output error
    [ 467.064] (EE) intel(0): failed to set cursor: Input/output error
    [ 467.064] (EE) intel(0): failed to set cursor: Input/output error
    [ 469.637] (EE) intel(0): failed to set cursor: Input/output error
    [ 469.637] (EE) intel(0): failed to set cursor: Input/output error
    [ 472.446] (EE) intel(0): failed to set cursor: Input/output error
    [ 472.447] (EE) intel(0): failed to set cursor: Input/output error
    [ 475.654] (EE) intel(0): failed to set cursor: Input/output error
    [ 475.654] (EE) intel(0): failed to set cursor: Input/output error
    [ 477.849] (EE) intel(0): failed to set cursor: Input/output error
    [ 477.852] (EE) intel(0): failed to set cursor: Input/output error
    [ 481.102] (EE) intel(0): failed to set cursor: Input/output error
    [ 481.102] (EE) intel(0): failed to set cursor: Input/output error
    [ 483.658] (EE) intel(0): failed to set cursor: Input/output error
    [ 483.658] (EE) intel(0): failed to set cursor: Input/output error
    [ 486.239] (EE) intel(0): failed to set cursor: Input/output error
    [ 486.239] (EE) intel(0): failed to set cursor: Input/output error
    [ 489.082] (EE) intel(0): failed to set cursor: Input/output error
    [ 489.083] (EE) intel(0): failed to set cursor: Input/output error
    [ 491.279] (EE) intel(0): failed to set cursor: Input/output error
    [ 491.280] (EE) intel(0): failed to set cursor: Input/output error
    [ 494.315] (EE) intel(0): failed to set cursor: Input/output error
    [ 494.315] (EE) intel(0): failed to set cursor: Input/output error
    [ 495.905] (EE) intel(0): failed to set cursor: Input/output error
    [ 495.905] (EE) intel(0): failed to set cursor: Input/output error
    [ 498.171] (EE) intel(0): failed to set cursor: Input/output error
    [ 498.172] (EE) intel(0): failed to set cursor: Input/output error
    [ 499.312] (EE) intel(0): failed to set cursor: Input/output error
    [ 499.313] (EE) intel(0): failed to set cursor: Input/output error
    [ 501.813] (EE) intel(0): failed to set cursor: Input/output error
    [ 501.813] (EE) intel(0): failed to set cursor: Input/output error
    [ 502.817] (EE) intel(0): failed to set cursor: Input/output error
    [ 502.817] (EE) intel(0): failed to set cursor: Input/output error
    [ 507.125] (EE) intel(0): failed to set cursor: Input/output error
    [ 507.125] (EE) intel(0): failed to set cursor: Input/output error
    [ 508.209] (EE) intel(0): failed to set cursor: Input/output error
    [ 508.210] (EE) intel(0): failed to set cursor: Input/output error
    [ 540.521] (EE) intel(0): failed to set cursor: Input/output error
    [ 540.526] (EE) intel(0): failed to set cursor: Input/output error
    [ 541.621] (EE) intel(0): failed to set cursor: Input/output error
    [ 541.621] (EE) intel(0): failed to set cursor: Input/output error
    [ 552.597] (EE) intel(0): failed to set cursor: Input/output error
    [ 552.597] (EE) intel(0): failed to set cursor: Input/output error
    [ 553.470] (EE) intel(0): failed to set cursor: Input/output error
    [ 553.471] (EE) intel(0): failed to set cursor: Input/output error
    [ 554.186] (EE) intel(0): failed to set cursor: Input/output error
    [ 554.186] (EE) intel(0): failed to set cursor: Input/output error
    [ 555.103] (EE) intel(0): failed to set cursor: Input/output error
    [ 555.103] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.143] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.143] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.263] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.263] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.333] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.333] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.557] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.557] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.591] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.591] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.606] (EE) intel(0): failed to set cursor: Input/output error
    [ 690.607] (EE) intel(0): failed to set cursor: Input/output error
    [ 691.055] (EE) intel(0): failed to set cursor: Input/output error
    [ 691.055] (EE) intel(0): failed to set cursor: Input/output error
    [ 691.070] (EE) intel(0): failed to set cursor: Input/output error
    [ 691.071] (EE) intel(0): failed to set cursor: Input/output error
    [ 755.300] (EE) intel(0): failed to set cursor: Input/output error
    [ 755.300] (EE) intel(0): failed to set cursor: Input/output error
    [ 755.444] (EE) intel(0): failed to set cursor: Input/output error
    [ 755.444] (EE) intel(0): failed to set cursor: Input/output error
    [ 765.910] (EE) intel(0): failed to set cursor: Input/output error
    [ 765.911] (EE) intel(0): failed to set cursor: Input/output error
    [ 769.826] (EE) intel(0): failed to set cursor: Input/output error
    [ 769.827] (EE) intel(0): failed to set cursor: Input/output error
    [ 771.279] (EE) intel(0): failed to set cursor: Input/output error
    [ 771.279] (EE) intel(0): failed to set cursor: Input/output error
    [ 776.475] (EE) intel(0): failed to set cursor: Input/output error
    [ 776.475] (EE) intel(0): failed to set cursor: Input/output error
    [ 777.584] (EE) intel(0): failed to set cursor: Input/output error
    [ 777.584] (EE) intel(0): failed to set cursor: Input/output error
    [ 782.163] (EE) intel(0): failed to set cursor: Input/output error
    [ 782.163] (EE) intel(0): failed to set cursor: Input/output error
    [ 784.345] (EE) intel(0): failed to set cursor: Input/output error
    [ 784.345] (EE) intel(0): failed to set cursor: Input/output error
    [ 789.813] (EE) intel(0): failed to set cursor: Input/output error
    [ 789.814] (EE) intel(0): failed to set cursor: Input/output error
    [ 793.986] (EE) intel(0): failed to set cursor: Input/output error
    [ 793.986] (EE) intel(0): failed to set cursor: Input/output error
    [ 796.717] (EE) intel(0): failed to set cursor: Input/output error
    [ 796.717] (EE) intel(0): failed to set cursor: Input/output error
    [ 802.971] (EE) intel(0): failed to set cursor: Input/output error
    [ 802.971] (EE) intel(0): failed to set cursor: Input/output error
    [ 805.567] (EE) intel(0): failed to set cursor: Input/output error
    [ 805.568] (EE) intel(0): failed to set cursor: Input/output error
    [ 807.811] (EE) intel(0): failed to set cursor: Input/output error
    [ 807.811] (EE) intel(0): failed to set cursor: Input/output error
    [ 814.410] (EE) intel(0): failed to set cursor: Input/output error
    [ 814.410] (EE) intel(0): failed to set cursor: Input/output error
    [ 815.460] (EE) intel(0): failed to set cursor: Input/output error
    [ 815.460] (EE) intel(0): failed to set cursor: Input/output error
    [ 818.800] (EE) intel(0): failed to set cursor: Input/output error
    [ 818.800] (EE) intel(0): failed to set cursor: Input/output error
    [ 821.589] (EE) intel(0): failed to set cursor: Input/output error
    [ 821.589] (EE) intel(0): failed to set cursor: Input/output error
    [ 825.657] (EE) intel(0): failed to set cursor: Input/output error
    [ 825.657] (EE) intel(0): failed to set cursor: Input/output error
    [ 828.078] (EE) intel(0): failed to set cursor: Input/output error
    [ 828.078] (EE) intel(0): failed to set cursor: Input/output error
    [ 831.833] (EE) intel(0): failed to set cursor: Input/output error
    [ 831.834] (EE) intel(0): failed to set cursor: Input/output error
    [ 833.806] (EE) intel(0): failed to set cursor: Input/output error
    [ 833.807] (EE) intel(0): failed to set cursor: Input/output error
    [ 835.978] (EE) intel(0): failed to set cursor: Input/output error
    [ 835.978] (EE) intel(0): failed to set cursor: Input/output error
    [ 840.143] (EE) intel(0): failed to set cursor: Input/output error
    [ 840.143] (EE) intel(0): failed to set cursor: Input/output error
    [ 854.335] (EE) intel(0): failed to set cursor: Input/output error
    [ 854.335] (EE) intel(0): failed to set cursor: Input/output error
    [ 855.471] (EE) intel(0): failed to set cursor: Input/output error
    [ 855.471] (EE) intel(0): failed to set cursor: Input/output error
    [ 867.428] (EE) intel(0): failed to set cursor: Input/output error
    [ 867.429] (EE) intel(0): failed to set cursor: Input/output error
    [ 870.354] (EE) intel(0): failed to set cursor: Input/output error
    [ 870.355] (EE) intel(0): failed to set cursor: Input/output error
    [ 873.062] (EE) intel(0): failed to set cursor: Input/output error
    [ 873.062] (EE) intel(0): failed to set cursor: Input/output error
    [ 873.955] (EE) intel(0): failed to set cursor: Input/output error
    [ 873.955] (EE) intel(0): failed to set cursor: Input/output error
    [ 877.131] (EE) intel(0): failed to set cursor: Input/output error
    [ 877.132] (EE) intel(0): failed to set cursor: Input/output error
    [ 878.020] (EE) intel(0): failed to set cursor: Input/output error
    [ 878.021] (EE) intel(0): failed to set cursor: Input/output error
    [ 880.499] (EE) intel(0): failed to set cursor: Input/output error
    [ 880.499] (EE) intel(0): failed to set cursor: Input/output error
    [ 881.708] (EE) intel(0): failed to set cursor: Input/output error
    [ 881.708] (EE) intel(0): failed to set cursor: Input/output error
    [ 884.711] (EE) intel(0): failed to set cursor: Input/output error
    [ 884.711] (EE) intel(0): failed to set cursor: Input/output error
    [ 893.533] (EE) intel(0): failed to set cursor: Input/output error
    [ 893.533] (EE) intel(0): failed to set cursor: Input/output error
    [ 896.537] (EE) intel(0): failed to set cursor: Input/output error
    [ 896.537] (EE) intel(0): failed to set cursor: Input/output error
    [ 898.029] (EE) intel(0): failed to set cursor: Input/output error
    [ 898.030] (EE) intel(0): failed to set cursor: Input/output error
    [ 901.447] (EE) intel(0): failed to set cursor: Input/output error
    [ 901.447] (EE) intel(0): failed to set cursor: Input/output error
    [ 902.670] (EE) intel(0): failed to set cursor: Input/output error
    [ 902.670] (EE) intel(0): failed to set cursor: Input/output error
    [ 907.266] (EE) intel(0): failed to set cursor: Input/output error
    [ 907.267] (EE) intel(0): failed to set cursor: Input/output error
    [ 908.415] (EE) intel(0): failed to set cursor: Input/output error
    [ 908.415] (EE) intel(0): failed to set cursor: Input/output error
    [ 911.083] (EE) intel(0): failed to set cursor: Input/output error
    [ 911.083] (EE) intel(0): failed to set cursor: Input/output error
    [ 912.335] (EE) intel(0): failed to set cursor: Input/output error
    [ 912.335] (EE) intel(0): failed to set cursor: Input/output error
    [ 914.699] (EE) intel(0): failed to set cursor: Input/output error
    [ 914.699] (EE) intel(0): failed to set cursor: Input/output error
    [ 915.519] (EE) intel(0): failed to set cursor: Input/output error
    [ 915.520] (EE) intel(0): failed to set cursor: Input/output error
    [ 921.179] (EE) intel(0): failed to set cursor: Input/output error
    [ 921.180] (EE) intel(0): failed to set cursor: Input/output error
    [ 923.296] (EE) intel(0): failed to set cursor: Input/output error
    [ 923.297] (EE) intel(0): failed to set cursor: Input/output error
    [ 926.020] (EE) intel(0): failed to set cursor: Input/output error
    [ 926.021] (EE) intel(0): failed to set cursor: Input/output error
    [ 926.881] (EE) intel(0): failed to set cursor: Input/output error
    [ 926.881] (EE) intel(0): failed to set cursor: Input/output error
    [ 930.252] (EE) intel(0): failed to set cursor: Input/output error
    [ 930.252] (EE) intel(0): failed to set cursor: Input/output error
    [ 931.105] (EE) intel(0): failed to set cursor: Input/output error
    [ 931.105] (EE) intel(0): failed to set cursor: Input/output error
    [ 938.375] (EE) intel(0): failed to set cursor: Input/output error
    [ 938.376] (EE) intel(0): failed to set cursor: Input/output error
    [ 951.395] (EE) intel(0): failed to set cursor: Input/output error
    [ 951.396] (EE) intel(0): failed to set cursor: Input/output error
    [ 997.695] (EE) intel(0): failed to set cursor: Input/output error
    [ 997.695] (EE) intel(0): failed to set cursor: Input/output error
    [ 1034.261] (EE) intel(0): failed to set cursor: Input/output error
    [ 1034.261] (EE) intel(0): failed to set cursor: Input/output error
    [ 1042.673] (EE) intel(0): failed to set cursor: Input/output error
    [ 1042.674] (EE) intel(0): failed to set cursor: Input/output error
    [ 1058.408] (EE) intel(0): failed to set cursor: Input/output error
    [ 1058.408] (EE) intel(0): failed to set cursor: Input/output error
    [ 1061.964] (EE) intel(0): failed to set cursor: Input/output error
    [ 1061.964] (EE) intel(0): failed to set cursor: Input/outpu

    I have installed the xf86-video-intel-newest from AUR, but with modified version - 2.13.0. Now mouse pointer works.

  • Parent/Child communication in CS3

    Hello -
    I have a movie setup that imports another external swf file.
    I am trying to get the two movieclips to communicate with
    eachother. I am able to call a function in the child movie from the
    parent movie, but I cannot get the child movie to call a function
    in the parent movie.
    parent.functionName(); results with an error #1061 call to a
    possibly undefined method.
    I'm really banging my head on my desk with this one, it seems
    that this should be very simple (it was in AS2 anyway) but I just
    cannot get it to work. Any help would be greatly appreciated.
    thanks
    ~Dave

    I've tried all those ideas, and can't seem to get any of them
    to work. I posted a quick example of what I'm trying to do at :
    http://www.verge-technology.com/parentTest.rar
    the code in my parent page is:
    //imports
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    var thisMovieClip:MovieClip;
    var thisLoader:Loader = new Loader();
    thisLoader.contentLoaderInfo.addEventListener(Event.INIT,
    doneLoading);
    thisLoader.load( new URLRequest("childClip.swf") );
    function doneLoading(evt:Event):void {
    thisMovieClip = MovieClip(thisLoader.content);
    stage.addChild(thisMovieClip);
    thisMovieClip.stop();
    //button event listener
    parentButton.addEventListener(MouseEvent.MOUSE_DOWN,
    onPressHandler);
    function onPressHandler(myEvent:MouseEvent){
    thisMovieClip.toggleChildBox();
    function toggleParentBox(){
    if(parentBox.visible == true)
    {parentBox.visible = false}
    else{parentBox.visible = true}
    and in the child movieclip:
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    childButton.addEventListener(MouseEvent.MOUSE_DOWN,
    onPressHandler);
    function onPressHandler(myEvent:MouseEvent){
    try{
    MovieClip(parent).toggleParentBox();
    catch(error:Error){
    trace(error);
    function toggleChildBox(){
    if(childBox.visible == true)
    {childBox.visible = false}
    else{childBox.visible = true}
    I have tried using parent.parent, level0, root, and It always
    throws back an error. It doesn't seem to like the cast to the
    movieclip type very much either. Again, any help would be greatly
    appreciated. I'm fairly new to AS3 and it's a bit overwhelming at
    first.
    cheers
    ~Dave

  • Can you call a public method in a custom skin?

    I made a custom skin for a button. In the skin there's a method to change some text. Can I call this method from my application?
    I get an error message when I try to call it like a normal object:
    uploadNewBtn.setNewPhotosLabel("test");
    Error 1061: Call to a possibly undefined method setNewPhotosLabel through a reference with static type spark.components:Button.

    You said it yourself, the method is inside skin not the HostComponent (button in your case). Obviously you cannot call it.
    There is a skin protperty inside SkinnableComponent, but it is typed as UIComponent so you still cannot cal it on the skin without casting. I don't know your use case, so in theory you either push the text/label from the host towards the skin, or you listen or bind from the skin on the hostcomponent.
    C

  • RTE using FilePublisher in Flash CS 5.5

    Hello world. I'm having extraordinary difficulty using the FilePublisher class from the Flash CS 5.5 environment. I think I've tracked down the problem, but have no idea how to fix it.
    I'm trying to make a prototype application that essentially functions as a dynamic online powerpoint presentation. To this end I've thusfar created an application (largely from the samples) that allows users to connect to a room hosted through LCCS, see who all is there and supports basic chat.
    The problem originates from the next step, where I try to upload images to the service.  In a nutshell, if I try to use any of the methods like browse() or  uploadFileReference(), I get null refs (Error #1009: Cannot access a property or method of a null object reference) despite the fact that I'm instantiating a new publisher on the line immediately prior before trying (publisher==null is false as well at this point).
    I've read this post (http://forums.adobe.com/message/1054513) and suspect that the fact that I can't call initialize means the publisher isn't getting added to the display properly. However, I can't use initialize as it is done with the Flex example because the swf won't compile (Error 1061: call to a possibly undefined method "initialize") when I try to call publisher.initialize(), even though the editor can see all of the other methods outlined in the documentation.
    Trying to manually add the publisher to the display with AddChild(publisher as DisplayObject) fails, because while publisher traces out to being not null, publisher as DisplayObject DOES trace out as null. So the 64 thousand dollar question is;
    How do you get the darn FilePublisher to work with CS 5.5 when you can't initialize() it? Or, how do you cast it so you can?
    Also, I'm using 10.1 player, AS3, and the swc compiled as FlashOnly.

    Hi,
    For the flash only swc, you dont need the initialize functionality. As
    mentioned in the post, intialize() function is called when the
    FilePublisher component is added to a Flex container. In the flash only
    swc we have decoupled it from Flex and its mechanisms, and it required
    us to eliminate intialize functionality. So, calling
    filePublisher.subscribe() should instantiate all the needed variables.
    In summary, the thread you mentioned is Flex specific, and doesn't apply
    to the scenario you mentioned. Subscribing to the filePublisher manually
    might fix your issue.
    If you are still stuck, Can you post your code and debug logs if possible,
    Thanks
    Arun

Maybe you are looking for

  • Laptop is not coming out from hibernating

    regardings,my laptop is not coming out from hibernation. it is showing that is is going to hibernate but stuck there.it is showing that it is working. i wait for an hour but result is tha same. then i tried to restart but same result. can u help me i

  • Outlook 2010/2013 not able to connect to Exchange 2013

    Hi, I'm the midst of co-exist between Exchange 2010/2013. I have issues where none of internal users that migrated to Exchange 2013 not able to connect via Outlook 2010/2013. OWA is running fine without issue. Using MCA, the issue due to port is bloc

  • Why wont my Album Covers go into Itunes?

    I just moved over from Zune and I have to recopy all my music into Itunes. With Zune all my album art work is there, in Apple 1/2 of my stuff is just written and when I go out to ask for it there is nothing there? How do

  • Nokia Lumia Contacts issue

    basically I bought this phone today and put my contacts on it. When someone texts me It comes up with their name, but when i click peopleit comes up with 'all' but then doesnt display any of my contacts. The only options are 'set up account' or 'impo

  • Answered - Workflow editor, left pane, container elements & step type hidden

    Hello, How do I restore the workflow container & step types to the left pane of the workflow editor?  Looking at the attached screen print, you can see that they are missing.  Obviously, if can't see step types, I can't drag a step type into the edit