Mouse cursor coordinates

Is it possible to get mouse cursor coordinates when it is not on a Component?

Whit SwingUtilities.convertPointToScreen(point, component), but you will still need to add a mouse listeners.

Similar Messages

  • Screen Resolution & Mouse Cursor Coordinate

    Hi,
    I would like to ask how to do the following with a java program:
    1. get the screen's resolution
    2. get the coordinate of the mouse cursor on the screen
    Thanks you very much.

    If you can use Java 1.5, the classjava.awt.MouseInfo might be what you need
    Thanks, it really works!
    Glad I could help.
    However, now i find that the method
    getScreenResolution() in class Toolkit is an abstract
    method. I would like to know how to implement this?
    You don't need to. There is a concrete implementation tailor-made for your particular platform ready waiting for you. You get it by calling the static method getDefaultToolkit:
    Toolkit tk = Toolkit.getDefaultToolkit();
    int dotsPerInch = tk.getScreenResolution();

  • Can I use an animated symbol acting like a mouse cursor?

    Hi,
    I'd like to use an EDGE animated symbol ( a blinking magic wand) as my mouse cursor (hiding the original cursor) that stays on the stage all the time at a certain point in the timeline and when clicked on a hotspot, goes to another point in timeline where the symbol no longer act as a mouse cursor. I used the following code suggested in the following thread by YOSHIOKA Ume
    Re: How to I have an animated symbol follow the coordinates of the cursor when clicked?
    1:create a symbol named "Symbol_1"
    2:add this code on Symbol_1-Timeline.complete.
    //delete this instance when timeline complete. sym.deleteSymbol();
    3:add this code on document.compositionReady.
    //on/off mousemove event handler method
    sym.$("Stage")  
    .mouseover(function(){    
    sym.$("Stage").on("mousemove",draw);  
    //create instance of Symbol_1 on stage.
    function draw(evt){  
    var instance = sym.createChildSymbol("Symbol_1", "Stage");  
    instance.getSymbolElement().css({    
    position:"absolute",    
    top:evt.clientY,    
    left:evt.clientX   });
    But the problem is, the symbol is being repeated/drawn one after another according to the above code, which I don't want. Changing the cursor using CSS requires a URL of a image file, not a symbol inside EDGE as it seems. How can I get back the normal mouse cursor in another point in the timeline (and go back to the animated symbol mode again if needed?). If I click on another hotspot element on the stage, do I actually click on the attached symbol as a cursor? Or the hotspot?
    Also, how can I put a constraint on the cursor so that it stays within a certain rectangular area smaller than the stage?
    A suggestion is much appreciated.

    Here is a example I had to move a symbol around as a mouse cursor and play different part of the symbol timeline based on user action.
    mouseCursor.zip - Google Drive
    To constraint the symbol to stage area,check for the x and y values in the event callback function before moving the symbol.
    To get back the normal cursor set the css back to default
    ex: sym.getSymbol('Stage').getSymbolElement().css({ 'cursor' : 'default'});

  • Trapping cursor coordinates in Javascript

    Hello Everyone:
       I am attempting to trap cursor coordinates but I do not know how to make that happen.  Here is the short algorithm I hope to implement:
    click object to select.
    click new location for object to move to
    move object to new location.
    I think I know how to do the first, but I have no idea how to make Javascript report the coordinates of the mouse cursor when I click on the new location.
    Please share with me any thoughts/documentation/snippets that might help.  I will greatly appreciate it.
    TIA.
    John

    @John – if you are using InDesign CS5 (or above) I have something for you.
    At least a proof of concept that will work. Tested with InDesign CS5.5.
    The script will not read out any cursor coordinates.
    Unfortunately we cannot do this…
    Instead I am using:
    one event listener,
    an JPEG image already placed,
    the placeGun
    and the "afterSelectionChanged" event.
    To test the script below, you need:
    1.A The ESTK open, run the script from that
    OR:
    1.B Run the script with a keyboard shortcut from InDesign's Scripts Panel
    2. An open document
    3. An already placed JPEG image in the document (with a link status OK)
    4. One single page item selected (no text selected, not more than one object selected)
    This is just a proof of concept!
    I did not consider moving a selection greater than one object, I needed at least ONE image placed in the document, I did not consider double sided spreads with a coordiante system set by page.
    And: I really had fun writing this!
    Here the script (ExtendScript/JavaScript):
    //MoveSelectionTo_POSITION-OF-CURSOR_ProofOfConcept.jsx
    //Uwe Laubender
    //DESCRIPTION:Just a proof of concept. Some pieces missing!
    #targetengine "MovePositionToCursor[Proof Of Concept ONLY]"
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
    //SOME CHECKS:
    if(parseFloat(app.version)<7){alert("Does not run in InDesign v. "+app.version);exit()};
    if(app.documents.length == 0){alert("No document open!");exit()};
    if(app.selection.length !== 1 && !app.selection[0].hasOwnProperty("baselineShift")){
        alert("This is a proof of concept! Does ONLY work with ONE page item selected. NOT TEXT!");
        exit();
    if(app.documents[0].allGraphics.length == 0){
        alert("This is a proof of concept! Does ONLY work with AT LEAST ONE JPEG ALREADY placed!");
        exit();
    moveSelection();
    function moveSelection(){
    var myDoc = app.documents[0];
    var myOriginalSel = app.selection[0];
    var myOriginalSelID = myOriginalSel.id;
    for(var n=0;n<myDoc.links.length;n++){
        if(myDoc.links[n].status == LinkStatus.NORMAL && myDoc.links[n].linkType == "JPEG"){
            var myImage = File(myDoc.links[n].filePath);
            break;
    if(myImage){myDoc.placeGuns.loadPlaceGun(myImage)}
    else{
        alert("This is a proof of concept! Does ONLY work with AT LEAST ONE JPEG ALREADY placed!");
        exit();
    app.addEventListener("afterSelectionChanged", doSomething);
    app.select(app.documents[0].pageItems.itemByID(myOriginalSelID));
    function doSomething(myEvent){
        try{
        app.removeEventListener("afterSelectionChanged", doSomething);
        var myNewID = app.selection[0].id;
        var myGeoBounds = app.selection[0].getElements()[0].geometricBounds;
        app.documents[0].pageItems.itemByID(myNewID).remove();
        app.documents[0].pageItems.itemByID(myOriginalSelID).move([myGeoBounds[1],myGeoBounds[0]]);
        app.select(app.documents[0].pageItems.itemByID(myOriginalSelID));
        }catch(e){};
    Uwe

  • Controlling Mouse cursor with Labview

    Dear Experts,
    I have a project trying to use Muscle signal to move a mouse cursor on computer screen. Basically, if the signal is positive, it moves to the right, and if it is negative it moves the cursor to the left.
    I've seen a friend did it before way back, but don't remember how. I've been spending a lot of time trying stuffs, but none works.
    It will be nice if someone can post a simple example or give me tips on how to do it
    Thanks!

    Similar but different: Waterloo Labs Eye Mario.
    The basic idea being acquiring data and when it exceeds a limit, an event fires registering an action. In this case it was a button click but for your application, modify it to change the cursor coordinates (increment or decrement the x or y position).
    Logan H
    National Instruments
    Applications Engineer

  • Get screenshot with mouse cursor and send for client application

    I took
    this function for getting a screenshot from a client application. I to tried adapt this function in my project, but I can not capture desktop showing mouse cursor (coming from a remote pc) in my server application (controller).
    Here is my adaptation (in client side) but without success:
    void SendScreenProc()
    // Send First Bitmap
    MemoryStream streamScreen = new MemoryStream();
    this.bmpScreenSend = CaptureScreen(true);//new Bitmap(this.boundScreen.Width, this.boundScreen.Height, PixelFormat.Format24bppRgb);
    Graphics g = Graphics.FromImage(this.bmpScreenSend);
    g.CopyFromScreen(0, 0, 0, 0, this.boundScreen.Size);
    this.bmpScreenSend.Save(streamScreen, System.Drawing.Imaging.ImageFormat.Png);
    Compress.CompressStream(streamScreen);
    Byte[] bufferScreen = streamScreen.ToArray();
    mreSendData.WaitOne();
    this.queueSendData.AddScreen(streamScreen.GetBuffer());
    streamScreen.Close();
    this.receivedScreen = 0;
    while (this.remoted)
    // Send next bitmap result by difference with previous bitmap.
    if(this.receivedScreen == 0) {
    } else {
    Bitmap bmpCurrentScreen = CaptureScreen(true);//new Bitmap(this.boundScreen.Width, this.boundScreen.Height, PixelFormat.Format24bppRgb);
    g = Graphics.FromImage(bmpCurrentScreen);
    g.CopyFromScreen(0, 0, 0, 0, this.boundScreen.Size);
    if (this.receivedScreen == 1) {
    if(this.bmpScreen != null) {
    this.bmpScreen.Dispose();
    this.bmpScreen = this.bmpScreenSend;
    } else if(this.receivedScreen == 2) {
    if (queueSendData.AvailableScreenAdd && IsDifferent(bmpCurrentScreen, this.bmpScreen))
    streamScreen = new MemoryStream();
    Bitmap bmpDiff = XorBitmap(this.bmpScreen, bmpCurrentScreen);
    bmpDiff.Save(streamScreen, System.Drawing.Imaging.ImageFormat.Png);
    this.bmpScreenSend.Dispose();
    bmpDiff.Dispose();
    this.bmpScreenSend = bmpCurrentScreen;
    mreSendData.WaitOne();
    this.queueSendData.AddScreen(streamScreen.GetBuffer());
    streamScreen.Close();
    this.receivedScreen = 0;
    else
    bmpCurrentScreen.Dispose();
    Thread.Sleep(30);

     Hi FlashCoder,
    Do you mean like this capture? Use mouse cursor to capture the specified area.
    If so, here is a sample that I wrote. It should meet your requirement.  If not, please feel free to let me know.
    The following is ScreenForm code
    public partial class ScreenForm : Form
    public ScreenForm()
    InitializeComponent();
    public event copyToFatherTextBox copytoFather;
    public bool begin = false;
    public bool isDoubleClick = false;
    public Point firstPoint = new Point(0, 0);
    public Point secondPoint = new Point(0, 0);
    public Image cachImage = null;
    public int halfWidth = 0;
    public int halfHeight = 0;
    /*Copy the entire screen, and form fill the screen*/
    public void copyScreen()
    Rectangle r = Screen.PrimaryScreen.Bounds;
    Image img = new Bitmap(r.Width, r.Height);
    Graphics g = Graphics.FromImage(img);
    g.CopyFromScreen(new Point(0, 0), new Point(0, 0), r.Size);
    //Maximize form
    this.Width = r.Width;
    this.Height = r.Height;
    this.Left = 0;
    this.Top = 0;
    pictureBox1.Width = r.Width;
    pictureBox1.Height = r.Height;
    pictureBox1.BackgroundImage = img;
    cachImage = img;
    halfWidth = r.Width / 2;
    halfHeight = r.Height / 2;
    this.Cursor = new Cursor(GetType(), "MyCursor.cur");
    private void ScreenForm_Load(object sender, EventArgs e)
    copyScreen();
    /*Begins when the mouse is pressed screenshots*/
    private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
    if(!isDoubleClick)
    begin = true;
    firstPoint = new Point(e.X, e.Y);
    changePoint(e.X, e.Y);
    msg.Visible = true;
    /*Displayed when the mouse moves to intercept the border*/
    private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
    if (begin)
    //Redraw the background image
    secondPoint = new Point(e.X, e.Y);
    int minX = Math.Min(firstPoint.X, secondPoint.X);
    int minY = Math.Min(firstPoint.Y, secondPoint.Y);
    int maxX = Math.Max(firstPoint.X, secondPoint.X);
    int maxY = Math.Max(firstPoint.Y, secondPoint.Y);
    Image tempimage = new Bitmap(cachImage);
    Graphics g = Graphics.FromImage(tempimage);
    //Picture cropping frames
    g.DrawRectangle(new Pen(Color.Red),minX,minY,maxX-minX,maxY-minY);
    pictureBox1.Image = tempimage;
    //Calculation of coordinate information
    msg.Text = "Upper left corner coordinates:(" + minX.ToString() + "," + minY.ToString() + ")\r\n";
    msg.Text += "Lower right corner coordinates:(" + maxX.ToString() + "," + maxY.ToString() + ")\r\n";
    msg.Text += "Screenshot size:" + (maxX - minX) + "×" + (maxY - minY) + "\r\n";
    msg.Text += "Double-click end screenshots anywhere!";
    changePoint((minX + maxX) / 2, (minY + maxY) / 2);
    /*Dynamically adjusts the displayed location, enter the parameters for the current screen mouse position*/
    public void changePoint(int x, int y)
    if (x < halfWidth)
    if (y < halfHeight)
    { msg.Top = halfHeight; msg.Left = halfWidth; }
    else
    { msg.Top = 0; msg.Left = halfWidth; }
    else
    if (y < halfHeight)
    { msg.Top = halfHeight; msg.Left = 0; }
    else
    { msg.Top = 0; msg.Left = 0; }
    /*Screenshot is completed when you let go of the mouse operation */
    private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
    begin = false;
    isDoubleClick = true;
    /*When I double-click a screenshot when notifying parent form complete screenshot action, while closing the form*/
    private void pictureBox1_DoubleClick(object sender, EventArgs e)
    if (firstPoint != secondPoint)
    int minX = Math.Min(firstPoint.X, secondPoint.X);
    int minY = Math.Min(firstPoint.Y, secondPoint.Y);
    int maxX = Math.Max(firstPoint.X, secondPoint.X);
    int maxY = Math.Max(firstPoint.Y, secondPoint.Y);
    Rectangle r = new Rectangle(minX, minY, maxX - minX, maxY - minY);
    copytoFather(r);
    this.Close();
    //msg.Text = r.ToString();
    This is the mainFrom code.
    public delegate void copyToFatherTextBox(Rectangle r);
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    /*Start screenshot*/
    private void button1_Click(object sender, EventArgs e)
    ScreenForm screen = new ScreenForm();
    screen.copytoFather += new copyToFatherTextBox(copytoTextBox);
    screen.ShowDialog();
    /*Screenshot of subsequent operations*/
    public void copytoTextBox(Rectangle rec)
    Rectangle rec2=rec;
    if(rec.Width>2&&rec.Height>2)
    rec2= new Rectangle(rec.X + 1, rec.Y + 1, rec.Width - 2, rec.Height - 2);
    Rectangle r = Screen.PrimaryScreen.Bounds;
    Image img = new Bitmap(rec2.Width, rec2.Height);
    Graphics g = Graphics.FromImage(img);
    g.CopyFromScreen(rec2.Location, new Point(0, 0), rec2.Size);
    Clipboard.SetDataObject(img, false);
    richTextBox1.Paste();
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Make pic as mouse cursor

    i would like to add a picture to a label and set the x and y coordinates of it and somehow make it move according to the movement of the mouse. i want it to look as if the image is actually the mouse cursor, and i don't want to have to paint the image.
    below is an example of a rectangle drawn so that it follows the movement of the mouse. any help would be appreciated.
    import java.awt.*;
    import java.awt.event.*;
    public class SmoothMove
    extends ApplicationFrame
    implements MouseMotionListener {
    public static void main(String[] args) {
    new SmoothMove();
    private int mX, mY;
    private Image mImage;
    public SmoothMove() {
    super("SmoothMove v1.0");
    addMouseMotionListener(this);
    setVisible(true);
    public void mouseMoved(MouseEvent me) {
    mX = (int)me.getPoint().getX();
    mY = (int)me.getPoint().getY();
    repaint();
    public void mouseDragged(MouseEvent me) { mouseMoved(me); }
    public void update(Graphics g) { paint(g); }
    public void paint(Graphics g) {
    // Clear the offscreen image.
    Dimension d = getSize();
    checkOffscreenImage();
    Graphics offG = mImage.getGraphics();
    offG.setColor(getBackground());
    offG.fillRect(0, 0, d.width, d.height);
    // Draw into the offscreen image.
    paintOffscreen(mImage.getGraphics());
    // Put the offscreen image on the screen.
    g.drawImage(mImage, 0, 0, null);
    private void checkOffscreenImage() {
    Dimension d = getSize();
    if (mImage == null ||
    mImage.getWidth(null) != d.width ||
    mImage.getHeight(null) != d.height) {
    mImage = createImage(d.width, d.height);
    public void paintOffscreen(Graphics g) {
    int s = 100;
    g.setColor(Color.blue);
    g.fillRect(mX - s / 2, mY - s / 2, s, s);
    }

    Heres something i just knocked up, I did find a post with similar code but I've lost it, DOH!
    The only thing you might want to add is an ImageTracker, or similar, to wait for the image to load.
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    public class Test extends JFrame implements MouseMotionListener {
      Image cursorImage = null;
      Image offScreenImage = null;
      int x = 0;
      int y = 0;
      public static void main(String args[]) {
        Test t = new Test();
        t.setSize(30, 40);
        t.setVisible(true);
      public Test () {
        super();
        // Load in the image
        cursorImage = Toolkit.getDefaultToolkit().getImage("myimage.gif");
        // Add the mouse listener
        addMouseMotionListener(this);
      public void update(Graphics g) {
        // Double buffering stuff
        if (offScreenImage == null) {
          offScreenImage = createImage(200, 200);
        Graphics offScreenGraphics = offScreenImage.getGraphics();
        // Clear the screen
        offScreenGraphics.setColor(Color.white);
        offScreenGraphics.fillRect(0, 0, 200, 200);
        // Draw the mouse coordinates (for a laugh)
        offScreenGraphics.setColor(Color.black);
        offScreenGraphics.drawString("X: " + x + ", Y: " + y, 10, 20);
        // Draw the image
        offScreenGraphics.drawImage(cursorImage, x, y, this);
        // Paint the graphics to the front
        g.drawImage(offScreenImage, 0, 0, this);
      public void paint(Graphics g) {
      public void mouseDragged(MouseEvent e) {
      public void mouseMoved(MouseEvent e) {
        x = e.getX();
        y = e.getY();
        repaint();
    }Rob.

  • Picture as mouse cursor

    i would like to add a picture to a label and set the x and y coordinates of it and somehow make it move according to the movement of the mouse. i want it to look as if the image is actually the mouse cursor, and i don't want to have to paint the image.
    below is an example of a rectangle drawn so that it follows the movement of the mouse. any help would be appreciated.
    import java.awt.*;
    import java.awt.event.*;
    public class SmoothMove
    extends ApplicationFrame
    implements MouseMotionListener {
    public static void main(String[] args) {
    new SmoothMove();
    private int mX, mY;
    private Image mImage;
    public SmoothMove() {
    super("SmoothMove v1.0");
    addMouseMotionListener(this);
    setVisible(true);
    public void mouseMoved(MouseEvent me) {
    mX = (int)me.getPoint().getX();
    mY = (int)me.getPoint().getY();
    repaint();
    public void mouseDragged(MouseEvent me) { mouseMoved(me); }
    public void update(Graphics g) { paint(g); }
    public void paint(Graphics g) {
    // Clear the offscreen image.
    Dimension d = getSize();
    checkOffscreenImage();
    Graphics offG = mImage.getGraphics();
    offG.setColor(getBackground());
    offG.fillRect(0, 0, d.width, d.height);
    // Draw into the offscreen image.
    paintOffscreen(mImage.getGraphics());
    // Put the offscreen image on the screen.
    g.drawImage(mImage, 0, 0, null);
    private void checkOffscreenImage() {
    Dimension d = getSize();
    if (mImage == null ||
    mImage.getWidth(null) != d.width ||
    mImage.getHeight(null) != d.height) {
    mImage = createImage(d.width, d.height);
    public void paintOffscreen(Graphics g) {
    int s = 100;
    g.setColor(Color.blue);
    g.fillRect(mX - s / 2, mY - s / 2, s, s);
    }

    Issues with tooltips not working properly have been reported to be caused by the Google Toolbar (Tools > Add-ons > Extensions)<br />
    You can check if there is an update available that fixes that issue.<br />
    You can try to uninstall and reinstall the latest Google Toolbar.
    * https://www.google.com/intl/en/toolbar/ff/
    See:
    * [[Troubleshooting extensions and themes]]

  • New Install - startx results in blank screen with mouse cursor

    I installed Arch on my desktop last week with no issues, so I wanted to install it on an old THinkpad R31. Everything with the installation went smooth, but when I try to 'startx' all I get is a blank screen with a mouse cursor that I can move around. I've installed xorg-xinit, xorg-twm, xorg-xclock, and xterm.
    I'm not getting any significant errors in the logs, or even the terminal I issue 'startx' in.
    I'm not sure what the problem could be...
    Here is my output from 'startx'
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.6.0-1-ARCH i686
    Current Operating System: Linux x_00294-ibc 3.5.6-1-ARCH #1 SMP PREEMPT Sun Oct 7 19:33:50 CEST 2012 i686
    Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=ec6a9a60-8d8c-4de0-960b-9e2a044d0ca5 ro quiet
    Build Date: 05 October 2012 02:01:30PM
    Current version of pixman: 0.26.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sat Oct 13 09:26:12 2012
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    xinit: connection to X server lost
    waiting for X server to shut down XIO: fatal IO error 0 (Success) on X server ":0"
    after 554 requests (554 known processed) with 0 events remaining.
    xterm: fatal IO error 11 (Resource temporarily unavailable) or KillClient on X server ":0"
    xterm: fatal IO error 11 (Resource temporarily unavailable) or KillClient on X server ":0"
    xterm: fatal IO error 11 (Resource temporarily unavailable) or KillClient on X server ":0"
    Server terminated successfully (0). Closing log file.
    xinit: unexpected signal 2
    And my Xorg.0.log
    [ 4955.478]
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    [ 4955.479] X Protocol Version 11, Revision 0
    [ 4955.479] Build Operating System: Linux 3.6.0-1-ARCH i686
    [ 4955.479] Current Operating System: Linux x_00294-ibc 3.5.6-1-ARCH #1 SMP PREEMPT Sun Oct 7 19:33:50 CEST 2012 i686
    [ 4955.479] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=ec6a9a60-8d8c-4de0-960b-9e2a044d0ca5 ro quiet
    [ 4955.479] Build Date: 05 October 2012 02:01:30PM
    [ 4955.479]
    [ 4955.479] Current version of pixman: 0.26.2
    [ 4955.479] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 4955.479] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 4955.480] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Oct 13 09:26:12 2012
    [ 4955.480] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 4955.480] (==) No Layout section. Using the first Screen section.
    [ 4955.480] (==) No screen section available. Using defaults.
    [ 4955.480] (**) |-->Screen "Default Screen Section" (0)
    [ 4955.480] (**) | |-->Monitor "<default monitor>"
    [ 4955.481] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 4955.481] (==) Automatically adding devices
    [ 4955.481] (==) Automatically enabling devices
    [ 4955.481] (==) Automatically adding GPU devices
    [ 4955.481] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 4955.481] Entry deleted from font path.
    [ 4955.481] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 4955.481] Entry deleted from font path.
    [ 4955.481] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 4955.481] Entry deleted from font path.
    [ 4955.481] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 4955.481] Entry deleted from font path.
    [ 4955.481] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 4955.481] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 4955.481] Entry deleted from font path.
    [ 4955.481] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 4955.481] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 4955.481] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 4955.481] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 4955.481] (II) Loader magic: 0x825a620
    [ 4955.482] (II) Module ABI versions:
    [ 4955.482] X.Org ANSI C Emulation: 0.4
    [ 4955.482] X.Org Video Driver: 13.0
    [ 4955.482] X.Org XInput driver : 18.0
    [ 4955.482] X.Org Server Extension : 7.0
    [ 4955.484] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 4955.486] (--) PCI:*(0:0:2:0) 8086:3577:1014:0505 rev 4, Mem @ 0x98000000/134217728, 0x90100000/524288
    [ 4955.486] (--) PCI: (0:0:2:1) 8086:3577:1014:0505 rev 0, Mem @ 0x88000000/134217728, 0x80200000/524288
    [ 4955.486] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 4955.486] Initializing built-in extension Generic Event Extension
    [ 4955.486] Initializing built-in extension SHAPE
    [ 4955.486] Initializing built-in extension MIT-SHM
    [ 4955.486] Initializing built-in extension XInputExtension
    [ 4955.486] Initializing built-in extension XTEST
    [ 4955.486] Initializing built-in extension BIG-REQUESTS
    [ 4955.486] Initializing built-in extension SYNC
    [ 4955.487] Initializing built-in extension XKEYBOARD
    [ 4955.487] Initializing built-in extension XC-MISC
    [ 4955.487] Initializing built-in extension SECURITY
    [ 4955.487] Initializing built-in extension XINERAMA
    [ 4955.487] Initializing built-in extension XFIXES
    [ 4955.487] Initializing built-in extension RENDER
    [ 4955.487] Initializing built-in extension RANDR
    [ 4955.487] Initializing built-in extension COMPOSITE
    [ 4955.487] Initializing built-in extension DAMAGE
    [ 4955.487] Initializing built-in extension MIT-SCREEN-SAVER
    [ 4955.487] Initializing built-in extension DOUBLE-BUFFER
    [ 4955.487] Initializing built-in extension RECORD
    [ 4955.487] Initializing built-in extension DPMS
    [ 4955.487] Initializing built-in extension X-Resource
    [ 4955.487] Initializing built-in extension XVideo
    [ 4955.487] Initializing built-in extension XVideo-MotionCompensation
    [ 4955.487] Initializing built-in extension XFree86-VidModeExtension
    [ 4955.487] Initializing built-in extension XFree86-DGA
    [ 4955.487] Initializing built-in extension XFree86-DRI
    [ 4955.487] Initializing built-in extension DRI2
    [ 4955.487] (II) LoadModule: "glx"
    [ 4955.488] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 4955.489] (II) Module glx: vendor="X.Org Foundation"
    [ 4955.489] compiled for 1.13.0, module version = 1.0.0
    [ 4955.489] ABI class: X.Org Server Extension, version 7.0
    [ 4955.489] (==) AIGLX enabled
    [ 4955.489] Loading extension GLX
    [ 4955.489] (==) Matched intel as autoconfigured driver 0
    [ 4955.489] (==) Matched intel as autoconfigured driver 1
    [ 4955.489] (==) Matched vesa as autoconfigured driver 2
    [ 4955.489] (==) Matched modesetting as autoconfigured driver 3
    [ 4955.489] (==) Matched fbdev as autoconfigured driver 4
    [ 4955.489] (==) Assigned the driver to the xf86ConfigLayout
    [ 4955.489] (II) LoadModule: "intel"
    [ 4955.490] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 4955.491] (II) Module intel: vendor="X.Org Foundation"
    [ 4955.491] compiled for 1.13.0, module version = 2.20.9
    [ 4955.491] Module class: X.Org Video Driver
    [ 4955.491] ABI class: X.Org Video Driver, version 13.0
    [ 4955.491] (II) LoadModule: "vesa"
    [ 4955.491] (WW) Warning, couldn't open module vesa
    [ 4955.491] (II) UnloadModule: "vesa"
    [ 4955.492] (II) Unloading vesa
    [ 4955.492] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 4955.492] (II) LoadModule: "modesetting"
    [ 4955.492] (WW) Warning, couldn't open module modesetting
    [ 4955.492] (II) UnloadModule: "modesetting"
    [ 4955.492] (II) Unloading modesetting
    [ 4955.492] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 4955.493] (II) LoadModule: "fbdev"
    [ 4955.493] (WW) Warning, couldn't open module fbdev
    [ 4955.493] (II) UnloadModule: "fbdev"
    [ 4955.493] (II) Unloading fbdev
    [ 4955.493] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 4955.493] (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 Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
    Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
    Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
    Haswell Server (GT2+), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
    Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
    Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
    Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
    Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
    Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
    Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
    ValleyView PO board
    [ 4955.496] (--) using VT number 7
    [ 4955.508] (II) intel(0): using device path '/dev/dri/card0'
    [ 4955.509] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 4955.509] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 4955.509] (==) intel(0): RGB weight 888
    [ 4955.509] (==) intel(0): Default visual is TrueColor
    [ 4955.509] (--) intel(0): Integrated Graphics Chipset: Intel(R) i830M
    [ 4955.509] (**) intel(0): Relaxed fencing disabled
    [ 4955.509] (**) intel(0): Wait on SwapBuffers? enabled
    [ 4955.509] (**) intel(0): Triple buffering? enabled
    [ 4955.509] (**) intel(0): Framebuffer tiled
    [ 4955.510] (**) intel(0): Pixmaps tiled
    [ 4955.510] (**) intel(0): 3D buffers tiled
    [ 4955.510] (**) intel(0): SwapBuffers wait enabled
    [ 4955.510] (==) intel(0): video overlay key set to 0x101fe
    [ 4955.593] (II) intel(0): Output VGA1 has no monitor section
    [ 4955.593] (II) intel(0): Output LVDS1 has no monitor section
    [ 4955.594] (--) intel(0): found backlight control interface /sys/class/backlight/thinkpad_screen
    [ 4955.676] (II) intel(0): EDID for output VGA1
    [ 4955.677] (II) intel(0): Printing probed modes for output VGA1
    [ 4955.677] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 4955.677] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 4955.677] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 4955.677] (II) intel(0): Modeline "848x480"x60.0 33.75 848 864 976 1088 480 486 494 517 +hsync +vsync (31.0 kHz e)
    [ 4955.677] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 489 492 525 -hsync -vsync (31.5 kHz e)
    [ 4955.677] (II) intel(0): EDID for output LVDS1
    [ 4955.677] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 4955.677] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 4955.677] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 4955.677] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 4955.678] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 4955.678] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 4955.678] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 4955.678] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 4955.678] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 4955.678] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 4955.678] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 4955.678] (II) intel(0): Printing probed modes for output LVDS1
    [ 4955.678] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 +hsync +vsync (48.4 kHz P)
    [ 4955.678] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 4955.678] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 4955.678] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 4955.678] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 4955.678] (II) intel(0): Output VGA1 connected
    [ 4955.678] (II) intel(0): Output LVDS1 connected
    [ 4955.678] (II) intel(0): Using exact sizes for initial modes
    [ 4955.678] (II) intel(0): Output VGA1 using initial mode 1024x768
    [ 4955.678] (II) intel(0): Output LVDS1 using initial mode 1024x768
    [ 4955.678] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 4955.678] (II) intel(0): Kernel page flipping support detected, enabling
    [ 4955.678] (==) intel(0): DPI set to (96, 96)
    [ 4955.678] (II) Loading sub module "fb"
    [ 4955.678] (II) LoadModule: "fb"
    [ 4955.679] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 4955.679] (II) Module fb: vendor="X.Org Foundation"
    [ 4955.679] compiled for 1.13.0, module version = 1.0.0
    [ 4955.679] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 4955.679] (II) Loading sub module "dri2"
    [ 4955.679] (II) LoadModule: "dri2"
    [ 4955.680] (II) Module "dri2" already built-in
    [ 4955.680] (==) Depth 24 pixmap format is 32 bpp
    [ 4955.680] (II) intel(0): [DRI2] Setup complete
    [ 4955.680] (II) intel(0): [DRI2] DRI driver: i915
    [ 4955.680] (II) intel(0): Allocated new frame buffer 1024x768 stride 4096, tiled
    [ 4955.680] (II) UXA(0): Driver registered support for the following operations:
    [ 4955.680] (II) solid
    [ 4955.680] (II) copy
    [ 4955.680] (II) composite (RENDER acceleration)
    [ 4955.680] (II) put_image
    [ 4955.680] (II) get_image
    [ 4955.680] (==) intel(0): Backing store disabled
    [ 4955.680] (==) intel(0): Silken mouse enabled
    [ 4955.681] (II) intel(0): Initializing HW Cursor
    [ 4955.681] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 4955.684] (==) intel(0): DPMS enabled
    [ 4955.684] (==) intel(0): Intel XvMC decoder disabled
    [ 4955.684] (II) intel(0): Set up overlay video
    [ 4955.684] (II) intel(0): direct rendering: DRI2 Enabled
    [ 4955.684] (==) intel(0): hotplug detection: "enabled"
    [ 4955.983] (--) RandR disabled
    [ 4956.021] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 4956.021] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 4956.021] (II) AIGLX: enabled GLX_ARB_create_context
    [ 4956.021] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 4956.021] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 4956.021] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 4956.021] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 4956.021] (II) AIGLX: Loaded and initialized i915
    [ 4956.022] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 4956.023] (II) intel(0): Setting screen physical size to 270 x 203
    [ 4956.124] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 4956.124] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 4956.124] (II) LoadModule: "evdev"
    [ 4956.124] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 4956.125] (II) Module evdev: vendor="X.Org Foundation"
    [ 4956.125] compiled for 1.13.0, module version = 2.7.3
    [ 4956.125] Module class: X.Org XInput Driver
    [ 4956.125] ABI class: X.Org XInput driver, version 18.0
    [ 4956.125] (II) Using input driver 'evdev' for 'Power Button'
    [ 4956.125] (**) Power Button: always reports core events
    [ 4956.125] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 4956.126] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 4956.126] (--) evdev: Power Button: Found keys
    [ 4956.126] (II) evdev: Power Button: Configuring as keyboard
    [ 4956.126] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 4956.126] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 4956.126] (**) Option "xkb_rules" "evdev"
    [ 4956.126] (**) Option "xkb_model" "evdev"
    [ 4956.126] (**) Option "xkb_layout" "us"
    [ 4956.197] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 4956.198] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 4956.198] (II) Using input driver 'evdev' for 'Video Bus'
    [ 4956.198] (**) Video Bus: always reports core events
    [ 4956.198] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 4956.198] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 4956.198] (--) evdev: Video Bus: Found keys
    [ 4956.198] (II) evdev: Video Bus: Configuring as keyboard
    [ 4956.198] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/LNXVIDEO:00/input/input2/event2"
    [ 4956.198] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 4956.198] (**) Option "xkb_rules" "evdev"
    [ 4956.198] (**) Option "xkb_model" "evdev"
    [ 4956.198] (**) Option "xkb_layout" "us"
    [ 4956.200] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 4956.200] (II) No input driver specified, ignoring this device.
    [ 4956.200] (II) This device may have been added with another device file.
    [ 4956.201] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 4956.201] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 4956.201] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 4956.202] (**) Sleep Button: always reports core events
    [ 4956.202] (**) evdev: Sleep Button: Device: "/dev/input/event1"
    [ 4956.202] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 4956.202] (--) evdev: Sleep Button: Found keys
    [ 4956.202] (II) evdev: Sleep Button: Configuring as keyboard
    [ 4956.202] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1/event1"
    [ 4956.202] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 4956.202] (**) Option "xkb_rules" "evdev"
    [ 4956.202] (**) Option "xkb_model" "evdev"
    [ 4956.202] (**) Option "xkb_layout" "us"
    [ 4956.204] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 4956.205] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 4956.205] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 4956.205] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 4956.205] (**) AT Translated Set 2 keyboard: always reports core events
    [ 4956.205] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 4956.205] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 4956.205] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 4956.205] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 4956.205] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 4956.205] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 4956.205] (**) Option "xkb_rules" "evdev"
    [ 4956.206] (**) Option "xkb_model" "evdev"
    [ 4956.206] (**) Option "xkb_layout" "us"
    [ 4956.208] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event6)
    [ 4956.208] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 4956.208] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 4956.208] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 4956.208] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event6"
    [ 4956.208] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 4956.208] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 4956.208] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 4956.208] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 4956.208] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 4956.208] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 4956.208] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 4956.208] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event6"
    [ 4956.208] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 10)
    [ 4956.209] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 4956.209] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 4956.209] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 4956.209] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 4956.209] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 4956.210] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse0)
    [ 4956.210] (II) No input driver specified, ignoring this device.
    [ 4956.210] (II) This device may have been added with another device file.
    [ 4956.211] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 4956.211] (II) No input driver specified, ignoring this device.
    [ 4956.211] (II) This device may have been added with another device file.
    [ 4956.213] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event7)
    [ 4956.213] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 4956.213] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 4956.213] (**) ThinkPad Extra Buttons: always reports core events
    [ 4956.213] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event7"
    [ 4956.214] (--) evdev: ThinkPad Extra Buttons: Vendor 0x1014 Product 0x5054
    [ 4956.214] (--) evdev: ThinkPad Extra Buttons: Found keys
    [ 4956.214] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    [ 4956.214] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input7/event7"
    [ 4956.214] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 11)
    [ 4956.214] (**) Option "xkb_rules" "evdev"
    [ 4956.214] (**) Option "xkb_model" "evdev"
    [ 4956.214] (**) Option "xkb_layout" "us"
    [ 4960.630] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 4964.186] (II) evdev: ThinkPad Extra Buttons: Close
    [ 4964.189] (II) UnloadModule: "evdev"
    [ 4964.189] (II) evdev: TPPS/2 IBM TrackPoint: Close
    [ 4964.189] (II) UnloadModule: "evdev"
    [ 4964.189] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 4964.189] (II) UnloadModule: "evdev"
    [ 4964.189] (II) evdev: Sleep Button: Close
    [ 4964.189] (II) UnloadModule: "evdev"
    [ 4964.189] (II) evdev: Video Bus: Close
    [ 4964.190] (II) UnloadModule: "evdev"
    [ 4964.190] (II) evdev: Power Button: Close
    [ 4964.190] (II) UnloadModule: "evdev"
    [ 4964.192] Server terminated successfully (0). Closing log file.

    karol wrote:
    Leonid.I wrote:@0x001A4:
    To run twm, you need to install xorg-twm from [extra] (I am not sure if it installs by default). Do you have xterm installed?
    According to his first post he has both xorg-twm and xterm installed.
    I do indeed.
    I went ahead and installed LXDE anyways, just to see what would happen. Exact same thing, it looks like everything is about to load but only the mouse cursor shows up. My Xorg.0.log is the same, so I won't post it again.
    I do get an error in the console about the openbox menu.xml file missing but I doubt that's related.
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.6.0-1-ARCH i686
    Current Operating System: Linux x_00294-ibc 3.5.6-1-ARCH #1 SMP PREEMPT Sun Oct 7 19:33:50 CEST 2012 i686
    Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=ec6a9a60-8d8c-4de0-960b-9e2a044d0ca5 ro quiet
    Build Date: 05 October 2012 02:01:30PM
    Current version of pixman: 0.26.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Oct 15 18:12:28 2012
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    Openbox-Message: Unable to find a valid menu file "/usr/share/lxde/openbox/menu.xml"
    xinit: connection to X server lost
    waiting for X server to shut down pcmanfm: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
    after 2326 requests (2323 known processed) with 0 events remaining.
    Server terminated successfully (0). Closing log file.
    xinit: unexpected signal 2
    .xinitrc for my user
    exec ck-launch-session startlxde
    Very wierd.

  • On startup Mac Pro I get a blue screen and a cursor on the upper left. The mouse cursor shows up independently. Is it likely a video card failure?

    On startup Mac Pro I get a blue screen and a cursor on the upper left. The mouse cursor shows up independently. Is it likely a video card failure?

    I managed to boot the computer and get the desktop to show. I now have a "repaired" computer. There are several problems that have cropped up. One is that I can only start up now in Safe Boot mode. Is there a way to turn it off? Also, I do not have a sound list, so I can't access anything requiring audio. Google Chrome only shows up as a white screen. Pictures that loaded before don't load in browsers, etc. Any suggestions? I figure I should reinstall Mac OS Lion for starts, maybe even do a mirror backup and reformat the drive. I think this drive has turned into scrambled eggs...what a headache!

  • What causes a slow mouse/cursor response on a fast machine?

    I have a system that has always displayed poor cursor redraw performance with certain adobe applications.   All rendering and other effects are fast, but basic mouse selections and button knobs are extremely unresponsive.   I have searched and searched and can not seem to find out what causes the mouse cursor speed issues.   Does anyone have any ideas as to why my mouse would slow for such basic Interface interactions?    Do I need to change my hardware, settings, displays, BIOS, etc?
    Any insight into what the mouse redraw/refresh is called in terms of computing would help me search for a solution.  And if you have a solution as to why my mouse cursor acts drunk and sluggish when interacting with the Adobe UI's in premiere and after effects and sometimes Photoshop I would greatly appreciate the help.
    Thank You.  I attached a screen shot of a very basic selection interaction that is dog slow.  The selection box redraws like there is a lag in some process associated with the square box overlay.
    Computer Specs
    Windows 7 64
    ASUS Z9PE-d8
    dual xeon
    64 gig ram
    quadro 5000 (driving two 30 inch dell monitors of different models  One DVI-D and the other Display Port)
    512 SSD main drive with windows Swap on 10k Raptor drive.
    *All have been updated and the issue remains for over a year and a half.
    Thank you so much.
    Cliff

    Your answer is in this part of your specs:
    > (driving two 30 inch dell monitors)
    It takes a long time to draw and redraw the pixels to the screen(s) with such large monitors.
    We can mitigate this by making some changes in how our UI is drawn to the screen, and such changes are a rather high priority for use to work on for the near future.

  • Xorg-server 1.6 - black screen with mouse cursor

    Hi
    First of all: I'm really new to Arch, so maybe there is a real easy fix for this problem
    Since upgrading to xorg-server 1.6 (and today to 1.6.1) I'm not able to get a running Desktop Environment.
    Usually I am using gnome with compiz-fusion on my Geforce 4 (nvidia-96xx 96.43.11-4 driver).
    When I boot my machine i see gdm and I am able to login. I can hear my login sound but I only get a black screen with a mouse cursor.
    I added a new test user to my system without compiz and get the same.
    I tried my old xorg.conf from 1.5, generated a new one with X -configure and tried without xorg.conf but everytime the same
    Actually I'm not sure if the xorg update is responsible for this, because i did not watch the upgrade-process....
    I googled this problem and was searching similar things in this froum, but I wasn't able to find something
    Here are some files
    xorg.conf (i know there are some bullshit things in it, but it was workig )
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5x) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
    Load "dbe" # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    # This loads the font modules
    # Load "type1"
    # Load "freetype"
    # Load "xtt"
    # This loads the GLX module
    Load "glx"
    # This loads the DRI module
    # Load "dri"
    EndSection
    # Files section. This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    # FontPath "/usr/share/fonts/OTF"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    FontPath "/usr/lib/X11/fonts/local/"
    FontPath "/usr/lib/X11/fonts/misc/"
    FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    FontPath "/usr/lib/X11/fonts/75dpi/"
    FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received. This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    # Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12). This allows clients to receive these key
    # events.
    # Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    # Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
    # sequences. This allows clients to receive these key events.
    # Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    # Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    # Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    # Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    # Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    # Option "Protocol" "Xqueue"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "de"
    Option "XkbVariant" "nodeadkeys"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "IMPS/2" # PS/2 Mouse
    Option "Device" "/dev/psaux"
    Option "Buttons" "5"
    Option "ZAxisMapping" "4 5"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    # Option "Protocol" "Xqueue"
    # Mouse-speed setting for PS/2 mouse.
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    Option "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
    Identifier "Eizo"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    HorizSync 24.8-80
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    VertRefresh 50-75
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
    Identifier "Standard VGA"
    VendorName "Unknown"
    BoardName "Unknown"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    Driver "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
    Identifier "GeForce4"
    # Driver "nv"
    Driver "nvidia"
    #VideoRam 131072
    # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
    Identifier "Screen 1"
    Device "GeForce4"
    Monitor "Eizo"
    DefaultDepth 24
    Option "AddARGBGLXVisuals" "true"
    Subsection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
    Identifier "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    # Mode 0666
    # EndSection
    Section "Extensions"
    Option "Composite" "enable"
    EndSection
    Xorg.0.log
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH i686
    Current Operating System: Linux delirium 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 8 12:47:56 UTC 2009 i686
    Build Date: 15 April 2009 11:09:10AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 15 23:20:32 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Simple Layout"
    (**) |-->Screen "Screen 1" (0)
    (**) | |-->Monitor "Eizo"
    (**) | |-->Device "GeForce4"
    (**) |-->Input Device "Mouse1"
    (**) |-->Input Device "Keyboard1"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/lib/X11/fonts/local/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/misc/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/75dpi/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/100dpi/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/Type1/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/75dpi/" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/lib/X11/fonts/100dpi/" does not exist.
    Entry deleted from font path.
    (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is enabled
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse1
    (WW) Disabling Keyboard1
    (II) Loader magic: 0x1a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0@3:0:0) nVidia Corporation NV25 [GeForce4 Ti 4200] rev 163, Mem @ 0xe5000000/16777216, 0xd0000000/134217728, 0xd8000000/524288, BIOS @ 0x????????/131072
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 96.43.11 Mon Feb 23 15:43:14 PST 2009
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) NVIDIA dlloader X Driver 96.43.11 Mon Feb 23 15:32:04 PST 2009
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 03@00:00:0
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Option "AddARGBGLXVisuals" "true"
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce4 Ti 4200 at PCI:3:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 131072 kBytes
    (--) NVIDIA(0): VideoBIOS: 04.25.00.34.00
    (II) NVIDIA(0): Detected AGP rate: 4X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce4 Ti 4200 at PCI:3:0:0:
    (--) NVIDIA(0): EIZO L578 (DFP-0)
    (--) NVIDIA(0): EIZO L578 (DFP-0): 165.0 MHz maximum pixel clock
    (--) NVIDIA(0): EIZO L578 (DFP-0): External Single Link TMDS
    (II) NVIDIA(0): Assigned Display Device: DFP-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "1280x1024"
    (II) NVIDIA(0): "1024x768"
    (II) NVIDIA(0): "800x600"
    (II) NVIDIA(0): "640x480"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    (--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) NVIDIA(0): Initialized GART.
    (II) NVIDIA(0): Setting mode "1280x1024"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (II) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing extension GLX
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device ImPS/2 Logitech Wheel Mouse
    (**) ImPS/2 Logitech Wheel Mouse: always reports core events
    (**) ImPS/2 Logitech Wheel Mouse: Device: "/dev/input/event6"
    (II) ImPS/2 Logitech Wheel Mouse: Found 3 mouse buttons
    (II) ImPS/2 Logitech Wheel Mouse: Found x and y relative axes
    (II) ImPS/2 Logitech Wheel Mouse: Found scroll wheel(s)
    (II) ImPS/2 Logitech Wheel Mouse: Configuring as mouse
    (**) ImPS/2 Logitech Wheel Mouse: YAxisMapping: buttons 4 and 5
    (**) ImPS/2 Logitech Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "ImPS/2 Logitech Wheel Mouse" (type: MOUSE)
    (**) ImPS/2 Logitech Wheel Mouse: (accel) keeping acceleration scheme 1
    (**) ImPS/2 Logitech Wheel Mouse: (accel) filter chain progression: 2.00
    (**) ImPS/2 Logitech Wheel Mouse: (accel) filter stage 0: 20.00 ms
    (**) ImPS/2 Logitech Wheel Mouse: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device saa7134 IR (LifeView FlyVIDEO30
    (**) saa7134 IR (LifeView FlyVIDEO30: always reports core events
    (**) saa7134 IR (LifeView FlyVIDEO30: Device: "/dev/input/event5"
    (II) saa7134 IR (LifeView FlyVIDEO30: Found keys
    (II) saa7134 IR (LifeView FlyVIDEO30: Configuring as keyboard
    (II) XINPUT: Adding extended input device "saa7134 IR (LifeView FlyVIDEO30" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    Last edited by MueLLe (2009-04-15 21:35:42)

    I'm having a very similar issue. Sometimes, when I boot and type in startx (I'm not even a GNOME user--I use dwm and no graphical login manager), I just get a black screen. No mouse cursor, so I think X doesn't even load. It only started with the xserver 1.6 update and the update to that hasn't changed anything. What I've been doing is just rebooting until it loads normally (takes one to three times). Is anyone else having this problem?

  • Server 2008 crash - black screen with mouse cursor

    dell poweredge 2950 with Perc 5/I RAID, ESXi 4.1 host, Windows Server 2008 R2 SP1 VM
    After swapping out a failed raid5 drive this vm began displaying inpage operation error popups while checking folder permissions.  event viewer errors: 
    The file system structure on the disk is corrupt and unusable. Please run the chkdsk utility on the volume \Device\HarddiskVolume2.
     The file system structure on the disk is corrupt and unusable. Please run the chkdsk utility on the volume C:.
    chkdsk /r run from the win2k8r2sp1 install dvd command line resulted in more corrections than i was able to screenshot:
    After this the server would only boot to black screen with mouse cursor.  same black screen result in safe mode or directory services restore mode.  sfc /scannow, startrep, and registry repair from the folder contents @ c:\windows\system32\config\regback
    have been attempted with no improvement.  I am still able to access the filesystem contents using the command line from the win2k8r2sp1 installation DVD -  user + registry files copied over to another drive without problem and i was able to load
    the registry hive on another system.  This server was doing dns, domain controller and certification authority but the only important item is getting the CA back somehow.  Any suggestions are welcome.

    Hi,
    According the information you have provided, the file system is broken.
    After the repair, do chkdsk /r and sfc /scannow give any warning or error?
    If yes, it means that the file system and system file are not repaired. Please post the error or warning here. It may give some hints.
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Gnome Black Screen with Mouse Cursor after Login

    I am using Archlinux 64bit with a Gnome Desktop Environment. Everything was running normally uptill today. When i ran "sudo fc-cache", my system froze. I couldnt open any other app but i was able to access terminal. I restarted using "reboot" command. After that I was unable to log in to my desktop.
    The Gnome login screen comes and after entering the correct username and password, all I can see is a black screen with mouse cursor. I then started gnome manually with "startx" and it worked. But still I am unable to use normally (that is the graphical login). I reinstalled gdm but it didnt work. Please help me out.

    there are a lot of processess running... dunno killing which process will not cause a problem
    here is the xorg log  ( sorry i dont have much knowlegde to analyse it )
    [ 2957.489]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 2957.493] X Protocol Version 11, Revision 0
    [ 2957.494] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 2957.495] Current Operating System: Linux defo-arch 3.17.1-1-ARCH #1 SMP PREEMPT Wed Oct 15 15:04:35 CEST 2014 x86_64
    [ 2957.495] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3c376af4-e330-4277-8bfa-388dabfced9e rw quiet
    [ 2957.497] Build Date: 21 September 2014 10:53:13AM
    [ 2957.498]
    [ 2957.499] Current version of pixman: 0.32.6
    [ 2957.501] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2957.501] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2957.506] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct 26 01:36:27 2014
    [ 2957.507] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2957.507] (==) No Layout section. Using the first Screen section.
    [ 2957.507] (==) No screen section available. Using defaults.
    [ 2957.507] (**) |-->Screen "Default Screen Section" (0)
    [ 2957.507] (**) | |-->Monitor "<default monitor>"
    [ 2957.507] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2957.507] (==) Automatically adding devices
    [ 2957.507] (==) Automatically enabling devices
    [ 2957.507] (==) Automatically adding GPU devices
    [ 2957.507] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2957.507] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2957.507] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 2957.507] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2957.507] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2957.507] (II) Loader magic: 0x818d80
    [ 2957.507] (II) Module ABI versions:
    [ 2957.507] X.Org ANSI C Emulation: 0.4
    [ 2957.507] X.Org Video Driver: 18.0
    [ 2957.507] X.Org XInput driver : 21.0
    [ 2957.507] X.Org Server Extension : 8.0
    [ 2957.509] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 2957.509] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 2957.510] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 2957.512] (--) PCI:*(0:0:2:0) 8086:2a02:1028:022f rev 12, Mem @ 0xfea00000/1048576, 0xe0000000/268435456, I/O @ 0x0000eff8/8
    [ 2957.512] (--) PCI: (0:0:2:1) 8086:2a03:1028:022f rev 12, Mem @ 0xfeb00000/1048576
    [ 2957.512] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 2957.512] (II) LoadModule: "glx"
    [ 2957.512] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2957.514] (II) Module glx: vendor="X.Org Foundation"
    [ 2957.514] compiled for 1.16.1, module version = 1.0.0
    [ 2957.514] ABI class: X.Org Server Extension, version 8.0
    [ 2957.514] (==) AIGLX enabled
    [ 2957.514] (==) Matched intel as autoconfigured driver 0
    [ 2957.514] (==) Matched intel as autoconfigured driver 1
    [ 2957.514] (==) Matched modesetting as autoconfigured driver 2
    [ 2957.514] (==) Matched fbdev as autoconfigured driver 3
    [ 2957.514] (==) Matched vesa as autoconfigured driver 4
    [ 2957.514] (==) Assigned the driver to the xf86ConfigLayout
    [ 2957.514] (II) LoadModule: "intel"
    [ 2957.514] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 2957.515] (II) Module intel: vendor="X.Org Foundation"
    [ 2957.515] compiled for 1.16.1, module version = 2.99.916
    [ 2957.515] Module class: X.Org Video Driver
    [ 2957.515] ABI class: X.Org Video Driver, version 18.0
    [ 2957.515] (II) LoadModule: "modesetting"
    [ 2957.515] (WW) Warning, couldn't open module modesetting
    [ 2957.515] (II) UnloadModule: "modesetting"
    [ 2957.515] (II) Unloading modesetting
    [ 2957.515] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 2957.515] (II) LoadModule: "fbdev"
    [ 2957.515] (WW) Warning, couldn't open module fbdev
    [ 2957.515] (II) UnloadModule: "fbdev"
    [ 2957.515] (II) Unloading fbdev
    [ 2957.515] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 2957.515] (II) LoadModule: "vesa"
    [ 2957.515] (WW) Warning, couldn't open module vesa
    [ 2957.515] (II) UnloadModule: "vesa"
    [ 2957.515] (II) Unloading vesa
    [ 2957.515] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 2957.515] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 2957.516] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    [ 2957.516] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    [ 2957.516] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    [ 2957.516] (++) using VT number 1
    [ 2957.516] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 2957.516] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20140725
    [ 2957.516] (--) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
    [ 2957.517] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1
    [ 2957.517] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 2957.517] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 2957.517] (==) intel(0): RGB weight 888
    [ 2957.517] (==) intel(0): Default visual is TrueColor
    [ 2957.517] (II) intel(0): Output LVDS1 has no monitor section
    [ 2957.517] (--) intel(0): Found backlight control interface acpi_video0 (type 'firmware') for output LVDS1
    [ 2957.517] (II) intel(0): Enabled output LVDS1
    [ 2957.517] (II) intel(0): Output VGA1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output VGA1
    [ 2957.517] (II) intel(0): Output HDMI1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output HDMI1
    [ 2957.517] (II) intel(0): Output TV1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output TV1
    [ 2957.517] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
    [ 2957.517] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output VIRTUAL1
    [ 2957.517] (--) intel(0): Output LVDS1 using initial mode 1280x800 on pipe 1
    [ 2957.517] (==) intel(0): TearFree disabled
    [ 2957.517] (==) intel(0): DPI set to (96, 96)
    [ 2957.517] (II) Loading sub module "dri2"
    [ 2957.517] (II) LoadModule: "dri2"
    [ 2957.517] (II) Module "dri2" already built-in
    [ 2957.517] (II) Loading sub module "present"
    [ 2957.517] (II) LoadModule: "present"
    [ 2957.517] (II) Module "present" already built-in
    [ 2957.517] (==) Depth 24 pixmap format is 32 bpp
    [ 2957.518] (II) intel(0): SNA initialized with Broadwater (gen4) backend
    [ 2957.518] (==) intel(0): Backing store enabled
    [ 2957.518] (==) intel(0): Silken mouse enabled
    [ 2957.518] (II) intel(0): HW Cursor enabled
    [ 2957.518] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 2957.518] (==) intel(0): DPMS enabled
    [ 2957.518] (II) intel(0): [XvMC] i965_xvmc driver initialized.
    [ 2957.518] (II) intel(0): [DRI2] Setup complete
    [ 2957.518] (II) intel(0): [DRI2] DRI driver: i965
    [ 2957.518] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 2957.518] (II) intel(0): direct rendering: DRI2 enabled
    [ 2957.518] (II) intel(0): hardware support for Present enabled
    [ 2957.518] (==) intel(0): display hotplug detection enabled
    [ 2957.518] (--) RandR disabled
    [ 2957.569] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_create_context
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 2957.569] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 2957.569] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 2957.569] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 2957.569] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 2957.569] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 2957.569] (II) AIGLX: Loaded and initialized i965
    [ 2957.569] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 2957.576] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 1, position (0, 0), rotation normal, reflection none
    [ 2957.583] (II) intel(0): Setting screen physical size to 338 x 211
    [ 2957.636] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
    [ 2957.636] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 2957.636] (II) LoadModule: "evdev"
    [ 2957.636] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2957.637] (II) Module evdev: vendor="X.Org Foundation"
    [ 2957.637] compiled for 1.16.0, module version = 2.9.0
    [ 2957.637] Module class: X.Org XInput Driver
    [ 2957.637] ABI class: X.Org XInput driver, version 21.0
    [ 2957.637] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 15 paused 0
    [ 2957.637] (II) Using input driver 'evdev' for 'Video Bus'
    [ 2957.638] (**) Video Bus: always reports core events
    [ 2957.638] (**) evdev: Video Bus: Device: "/dev/input/event12"
    [ 2957.638] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 2957.638] (--) evdev: Video Bus: Found keys
    [ 2957.638] (II) evdev: Video Bus: Configuring as keyboard
    [ 2957.638] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input19/event12"
    [ 2957.638] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
    [ 2957.638] (**) Option "xkb_rules" "evdev"
    [ 2957.638] (**) Option "xkb_model" "pc104"
    [ 2957.638] (**) Option "xkb_layout" "us"
    [ 2957.669] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 2957.670] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2957.670] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 16 paused 0
    [ 2957.670] (II) Using input driver 'evdev' for 'Power Button'
    [ 2957.670] (**) Power Button: always reports core events
    [ 2957.670] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 2957.670] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2957.670] (--) evdev: Power Button: Found keys
    [ 2957.670] (II) evdev: Power Button: Configuring as keyboard
    [ 2957.670] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6/event2"
    [ 2957.670] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 2957.670] (**) Option "xkb_rules" "evdev"
    [ 2957.670] (**) Option "xkb_model" "pc104"
    [ 2957.670] (**) Option "xkb_layout" "us"
    [ 2957.671] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 2957.671] (II) No input driver specified, ignoring this device.
    [ 2957.671] (II) This device may have been added with another device file.
    [ 2957.671] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 2957.671] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 2957.672] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 17 paused 0
    [ 2957.672] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 2957.672] (**) Sleep Button: always reports core events
    [ 2957.672] (**) evdev: Sleep Button: Device: "/dev/input/event3"
    [ 2957.672] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 2957.672] (--) evdev: Sleep Button: Found keys
    [ 2957.672] (II) evdev: Sleep Button: Configuring as keyboard
    [ 2957.672] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7/event3"
    [ 2957.672] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 2957.672] (**) Option "xkb_rules" "evdev"
    [ 2957.672] (**) Option "xkb_model" "pc104"
    [ 2957.672] (**) Option "xkb_layout" "us"
    [ 2957.673] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.673] (II) config/udev: Adding input device HDA Intel HDMI/DP,pcm=3 (/dev/input/event7)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.673] (II) config/udev: Adding input device HDA Intel Front Headphone Front (/dev/input/event8)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.674] (II) config/udev: Adding input device HDA Intel Front Headphone Surround (/dev/input/event9)
    [ 2957.674] (II) No input driver specified, ignoring this device.
    [ 2957.674] (II) This device may have been added with another device file.
    [ 2957.674] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2957.674] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2957.675] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 18 paused 0
    [ 2957.675] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 2957.675] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2957.675] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2957.675] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 2957.675] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 2957.675] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2957.675] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 2957.675] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 2957.675] (**) Option "xkb_rules" "evdev"
    [ 2957.675] (**) Option "xkb_model" "pc104"
    [ 2957.675] (**) Option "xkb_layout" "us"
    [ 2957.675] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event11)
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "evdev touchpad catchall"
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "Default clickpad buttons"
    [ 2957.675] (II) LoadModule: "synaptics"
    [ 2957.676] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 2957.676] (II) Module synaptics: vendor="X.Org Foundation"
    [ 2957.676] compiled for 1.16.0, module version = 1.8.1
    [ 2957.676] Module class: X.Org XInput Driver
    [ 2957.676] ABI class: X.Org XInput driver, version 21.0
    [ 2957.676] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 19 paused 0
    [ 2957.676] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
    [ 2957.676] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 2957.676] (**) Option "Device" "/dev/input/event11"
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023 (res 0)
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767 (res 0)
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
    [ 2957.710] (II) synaptics: AlpsPS/2 ALPS GlidePoint: device does not report finger width.
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: buttons: left right middle
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: Vendor 0x2 Product 0x8
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: invalid finger width range. defaulting to 0 - 15
    [ 2957.710] (**) Option "TapButton1" "1"
    [ 2957.710] (**) Option "TapButton2" "2"
    [ 2957.710] (**) Option "TapButton3" "3"
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 2957.710] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input10/event11"
    [ 2957.710] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD, id 10)
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MaxSpeed is now 1.75
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) AccelFactor is now 0.156
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 2957.711] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse1)
    [ 2957.711] (**) AlpsPS/2 ALPS GlidePoint: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 2957.711] (II) config/udev: Adding input device ALPS PS/2 Device (/dev/input/event10)
    [ 2957.711] (**) ALPS PS/2 Device: Applying InputClass "evdev pointer catchall"
    [ 2957.712] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 20 paused 0
    [ 2957.712] (II) Using input driver 'evdev' for 'ALPS PS/2 Device'
    [ 2957.712] (**) ALPS PS/2 Device: always reports core events
    [ 2957.712] (**) evdev: ALPS PS/2 Device: Device: "/dev/input/event10"
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Vendor 0x2 Product 0x8
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found 3 mouse buttons
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found relative axes
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found x and y relative axes
    [ 2957.712] (II) evdev: ALPS PS/2 Device: Configuring as mouse
    [ 2957.712] (**) evdev: ALPS PS/2 Device: YAxisMapping: buttons 4 and 5
    [ 2957.712] (**) evdev: ALPS PS/2 Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2957.712] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input12/event10"
    [ 2957.712] (II) XINPUT: Adding extended input device "ALPS PS/2 Device" (type: MOUSE, id 11)
    [ 2957.712] (II) evdev: ALPS PS/2 Device: initialized for relative axes.
    [ 2957.712] (**) ALPS PS/2 Device: (accel) keeping acceleration scheme 1
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration profile 0
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration factor: 2.000
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration threshold: 4
    [ 2957.713] (II) config/udev: Adding input device ALPS PS/2 Device (/dev/input/mouse0)
    [ 2957.713] (II) No input driver specified, ignoring this device.
    [ 2957.713] (II) This device may have been added with another device file.
    [ 2957.713] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 2957.713] (II) No input driver specified, ignoring this device.
    [ 2957.713] (II) This device may have been added with another device file.
    [ 2957.714] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event5)
    [ 2957.714] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 2957.714] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0
    [ 2957.714] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    [ 2957.714] (**) Dell WMI hotkeys: always reports core events
    [ 2957.714] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event5"
    [ 2957.714] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
    [ 2957.714] (--) evdev: Dell WMI hotkeys: Found keys
    [ 2957.714] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
    [ 2957.714] (**) Option "config_info" "udev:/sys/devices/virtual/input/input11/event5"
    [ 2957.714] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 12)
    [ 2957.714] (**) Option "xkb_rules" "evdev"
    [ 2957.714] (**) Option "xkb_model" "pc104"
    [ 2957.714] (**) Option "xkb_layout" "us"
    [ 2963.887] (II) evdev: Dell WMI hotkeys: Close
    [ 2963.887] (II) UnloadModule: "evdev"
    [ 2963.887] (II) systemd-logind: releasing fd for 13:69
    [ 2963.949] (II) evdev: ALPS PS/2 Device: Close
    [ 2963.950] (II) UnloadModule: "evdev"
    [ 2963.950] (II) systemd-logind: releasing fd for 13:74
    [ 2964.016] (II) UnloadModule: "synaptics"
    [ 2964.016] (II) systemd-logind: releasing fd for 13:75
    [ 2964.069] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 2964.070] (II) UnloadModule: "evdev"
    [ 2964.070] (II) systemd-logind: releasing fd for 13:64
    [ 2964.123] (II) evdev: Sleep Button: Close
    [ 2964.123] (II) UnloadModule: "evdev"
    [ 2964.123] (II) systemd-logind: releasing fd for 13:67
    [ 2964.156] (II) evdev: Power Button: Close
    [ 2964.156] (II) UnloadModule: "evdev"
    [ 2964.156] (II) systemd-logind: releasing fd for 13:66
    [ 2964.183] (II) evdev: Video Bus: Close
    [ 2964.183] (II) UnloadModule: "evdev"
    [ 2964.183] (II) systemd-logind: releasing fd for 13:76
    [ 2964.271] (EE) Server terminated successfully (0). Closing log file.

  • Black Screen with mouse cursor

    Hello
    We are an enterprise organization with staffs logging in to their systems using domain username and password.
    For some of our users having Windows 7 as OS, when they log in with their domain credentials a blank screen appears with movable mouse cursor, this screen does not go away until we disconnect them from LAN as well as wireless after which only the login
    happens.
    Kindly suggest how to resolve this issue

    Hi,
    Have you tried the suggestion Cyber_Defend_Team provided?
    If the issue persists, start the computer in Safe mode to check the result:
    If it doesn't reappear when you start in safe mode, you can eliminate the default settings and basic device drivers as possible causes. If a recently installed program, device, or driver prevents Windows from running correctly, you can start your computer
    in safe mode and then remove the program that's causing the problem.
    If it still in the safe mode, we may need to repair the installation with the recovery media.
    In addition, please logon the problematic computer with the domain user account which works fine in other computer to test to see if it's the user account issue.
    Karen Hu
    TechNet Community Support

Maybe you are looking for