Reg: MouseListener and Mouse Motion Listener Interfaces

Hi,
Good day,
I have added the mouselistener and mouse motion listeners to JButton..... With this i am trying to draw Circle and Line use mouse... When i was drawing at a particular point the actual drawn one is not placed at that point... so where can be error be present..how to overcome it.........
Bye

Insufficient information to find a solution. Please go through these links and respond accordingly.
[How to ask questions the smart way|http://catb.org/~esr/faqs/smart-questions.html]
SSCCE
Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.
db

Similar Messages

  • Confused with Mouse Motion Listener

    I'm having a hard time understanding mouse motion listener and mouse listener.
    What I know is that it's an interface and it's supposed to be overriden, but what I don't understand is how on earth does each of the methods know what the event just did.
    How does method mouseClicked know that the mouse was just clicked and not pressed?
    As you can see, well at least to me, there's not telling how given only the passed event. I was expecting something inside the method that would go like:
    event.getWhatHappend();something like that then so you can go on with the rest of the code and say that it was actually pressed or clicked.
    public void mouseClicked( MouseEvent event )
           statusBar.setText( String.format( "Clicked at [%d, %d]",
            event.getX(), event.getY() ) );
    } // end method mouseClicked
    // handle event when mouse pressed
    public void mousePressed( MouseEvent event )
          statusBar.setText( String.format( "Pressed at [%d, %d]",
          event.getX(), event.getY() ) );
    } // end method mousePressed

    How does method mouseClicked know that the mouse was just clicked and not pressed?try this example
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    class Testing extends JFrame
      public Testing()
        setSize(100,75);
        setLocation(300,200);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        JPanel p = new JPanel();
        JLabel lbl = new JLabel("Click me");
        lbl.setBorder(BorderFactory.createLineBorder(Color.BLACK));
        p.add(lbl);
        getContentPane().add(p);
        lbl.addMouseListener(new MouseListener(){
          public void mousePressed(MouseEvent me){
            System.out.println("pressed");
          public void mouseClicked(MouseEvent me){
            System.out.println("clicked");
          public void mouseReleased(MouseEvent me){
            System.out.println("released");
          public void mouseEntered(MouseEvent me){
            System.out.println("entered");
          public void mouseExited(MouseEvent me){
            System.out.println("exited");
      public static void main(String[] args){new Testing().setVisible(true);}
    }what happens is when you add the mouseListener to the label, it is
    registered to receive mouse events. There are 5 mouse events, each with a
    different event id.
    (watch the console for these)
    move the mouse inside the label's border, and the mouseEntered event is
    sent to registered listeners of the label.
    press the mouse button, holding it down, mousePressed is sent.
    release the mouse button, mouseReleased is sent.
    if the x,y position of mousePressed is the same as that for mouseReleased
    a mouseClicked event is fired .
    (check by again holding down the mouseButton,then move the mouse
    slightly before releasing the button - no mouseClicked event)
    move the cursor outside the label, and the mouseExited event is sent.
    so, basically, 5 separate events are available to be sent - you select the one/s
    you want to handle.

  • Mouse motion listener for JTable with JScrollpane

    Hi All,
    I have added mouse motion listener for JTable which is added in JScrollPane. But if i move the mouse, over the vertical/horizontal scroll bars, mouse motion listener doesn't works.
    So it it required to add mousemotionlistener for JTable, JScrollPane, JScrollBar and etc.
    Thanks in advance.
    Regards,
    Tamizhan

    I am having one popup window which shows address information. This window contains JTable with JScrollPane and JButton components to show the details. While showing this information window, if the mouse cursor is over popupwindow, it should show the window otherwise it should hide the window after 30 seconds.
    To achieve this, i have added mouse listener to JPanel, JTable, JButton and JScrollPane. so if the cursor is in any one of the component, it will not hide the window.
    but for this i need to add listener to all the components in the JPanel. For JScrollPane i have to add horizontal, vertical and all the top corner buttons of Scroll bar.
    Is this the only way to do this?

  • Mouse Motion Listener

    How can i detect when the mose moves when the mouse is not located on the Frame?
    Here is my mouse motion listener
    private class EventHandler implements AWTEventListener {
              private JPanel myPanel;
              public EventHandler(JPanel thepanel){
                   myPanel = thepanel;
            public void eventDispatched(AWTEvent event) {
                if (event.getID() == MouseEvent.MOUSE_MOVED) {
                     MouseEvent me = (MouseEvent)event;
                     myScreenShooter.setCaptureLocation(me.getX(), me.getY());
                    myPanel.repaint();
        }and I register it with a JPanel which I extended
    Toolkit.getDefaultToolkit().addAWTEventListener(new EventHandler(this), AWTEvent.MOUSE_MOTION_EVENT_MASK);But the only time the motion is detected is when the mouse is within the panel...I need to know when it is moved anywhere on the screen.
    Any ideas?
    Thanks

    import java.awt.*;
    import java.awt.event.*;
    import java.text.NumberFormat;
    import javax.swing.*;
    public class MotionTest
        public MotionTest()
            JLabel label = new JLabel();
            label.setHorizontalAlignment(JLabel.CENTER);
            new Monitor(label);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(label);
            f.setSize(300,100);
            f.setLocation(200,200);
            f.setVisible(true);
        public static void main(String[] args)
            new MotionTest();
    class Monitor
        JLabel label;
        Point lastLocation;
        boolean continueToMonitor;
        NumberFormat nf;
        public Monitor(JLabel label)
            this.label = label;
            lastLocation = new Point();
            continueToMonitor = true;
            nf = NumberFormat.getInstance();
            nf.setMaximumFractionDigits(1);
            new Thread(runner).start();
        Runnable runner = new Runnable()
            public void run()
                while(continueToMonitor)
                    Point p = MouseInfo.getPointerInfo().getLocation();
                    double distance = p.distance(lastLocation);
                    if(distance != 0)
                        Toolkit.getDefaultToolkit().beep();
                        label.setText("mouse moved " + nf.format(distance));
                        lastLocation = p;
                    else
                        label.setText("mouse still");
                    try
                        Thread.sleep(250);
                    catch(InterruptedException ie)
                        System.err.println("interrupt: " + ie.getMessage());
    }

  • Detect Key Press and Mouse Motion in ONE event?

    Hi
    I am trying to create a functionality where a mouse motion from left to right performs one action, and the same motion while a given key is pressed performs another action.
    How can i combine the two events? How do I unify the KeyEvent and MouseEvent, particulary when I need to capture the directional motion of the mouse together with the key press?
    many thanks for any insight

    you cannot actualy combine them into 1 event but there is an easy way around this:boolean mouseKeyPressed = false;
    public void keyPressed (KeyEvent e)
      if (e.getKeyCode () == ??) \\ or e.isCtrlDown(), e.isAltDown(), ...
        mouseKeyPressed = true;
    public void keyReleased (KeyEvent e)
      if (e.getKeyCode () == ??) \\ or !e.isCtrlDown(), !e.isAltDown(), ...
        mouseKeyPressed = false;
    public void mouseMoved (MouseEvent e)
      if (mouseKeyPressed)
        //processAction
    }hope this helps,
    greetz,
    Stijn

  • Mouse motion listener outside any component

    Please show me the way to detect mouse events( move, click etc) on the system level in java. I know to detect it on any component. But say I have a java frame window with a JLabel component on it. I want to see the cursor positions (x,y) even when I am moving the mouse outside any part of the frame or its components...ie, any position on the screen( taskbar, system tray area or anywhere)

    praschat wrote:
    Please show me the way to detect mouse events( move, click etc) on the system level in java. I know to detect it on any component. But say I have a java frame window with a JLabel component on it. I want to see the cursor positions (x,y) even when I am moving the mouse outside any part of the frame or its components...ie, any position on the screen( taskbar, system tray area or anywhere)You can try JInput (it's used for gamepad/controllers in Java, but it also has abstractions for Keyboard and Mouse). JInput can be used in a quasi-event-driven way.
    If you're trying to do this through an applet in a Browser or when there's strict security manager running, you can forget about it.

  • Mouse motion listener tolerance

    I am writing a screen saver program and I am wondering if i can turn down the tolerance of the mousemoved method.
    For example I want a little mouse movements not to be registered but I do want big mouse movement to be registered. Is there a way to do that?

    Let me see if I remember correctly... the mouseEvent just gives you X and Y coordinates, so you can choose to either address the movement or not depending on the distance from your last know set of points.

  • Mouse motion events

    For some reason my custom JComponent or cutom Jpanel do not detect any mouseMotion events. Does anyone know why that is?
    I have a class like the following
    public class GeometryPanel  extends JComponent implements MouseInputListenerin my main class (the frame class) I have the following
             JFrame frame = new JFrame();
         JPanel p = new MyPanel();
         JComponent geometryPanel;
         JComponent buttonPanel = new ButtonPanel(this);
         public MainWindow()
              geometryPanel = new GeometryPanel(this,600, 600);
              setupGUI();
              displayFrame();
         public void setupGUI()
               p.setBackground( Color.white );
              p.setPreferredSize(new Dimension(width, height));
              geometryPanel.setPreferredSize(new Dimension(600, 600));
              buttonPanel.setPreferredSize(new Dimension(620, 80));
               p.add( geometryPanel );
               p.add( buttonPanel );
         public void displayFrame()
               frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setContentPane(p);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.show();
         }For some reason all of the mouse pressed events are caught, but not the motion events. They are not fired.

    Ah I got it, thank you. Forgot to add the mouse motion listener next to the mouse listner

  • Motion control: PXI 7350 controller and UMI 7774 to interface with third-party driver UDK5114NW2

    Dear community,
    This is about Motion control in Labview: I try to control a step motor by using a PXI 7350 controller and UMI 7774 to interface with  third-party driver UDK5114NW2. The problem is 5 Disable LEDS on UMI 7774 board always lit even when I check "enable" on "Motion I/O setting" in configuration of PXI 7350 motion controller. Furthermore, when I start to control step motor, it is not working and I found disable LED on UMI board still lit. I don't know how to solve this problem. Can someone help me to figure out? Thank you in advance!
    Hau Nguyen.

    Dear Community,
    I said wrong, 4 disable LEDS on UMI 7774 Board instead of 5 as my previous post. Why nobody help me to solve this problem. I can not turn off disable LEDs on UMI 7774 Board so I can not start the strp motor. Please help me!
    Hau Nguyen. 

  • On Apple TV. Can the USB port be used for a keyboard and mouse interface

    On Apple TV. Can the USB port be used for a keyboard and mouse interface

    A bluetooth keyboard can be used with the Apple TV.
    There is no need for a mouse with an ATV.

  • Constraining mouse motion to specific distance (width and height)

    Hi,
    I want to constrain the mouse motion over a canvas by allowing it to move through specified distance (width and height).
    How can i do this?
    What does the translatePoint() in MouseEvent do? How do i use it?
    Can someone help me with this?
    Thanks
    Niteen

    The correct way with Pixel Bender 1.0 is indeed to pass in the width and height as parameters. There are no ramifications.

  • Keyboard and mouse not working after boot

    Hello!
    it's my first time here
    I have been using archlinux for a couple of months and after an upgrade, my mouse and keyboard stopped working.
    I have also posted it on linuxquestions:
    http://www.linuxquestions.org/questions … ot-934040/
    What might be causing that problem?
    and, considering the problem occurred after an upgrade, reinstalling the system would correct it?

    when booting into runlevel 3, the keyboard and mouse works fine.
    my pacman.log(only for the update day) and messages.log are:
    Mar 11 11:35:37 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 11:35:37 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 11:35:37 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 11:35:37 myhost dhcpcd[2756]: eth0: eth0: MTU set to 576
    Mar 11 11:39:41 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 11:39:41 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 11:39:41 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 11:42:11 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 11:42:11 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 11:42:11 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 11:44:41 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 11:44:41 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 11:44:41 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:06:33 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:06:33 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:06:33 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:16:45 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:16:45 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:16:45 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:19:15 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:19:15 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:19:15 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:21:45 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:21:45 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:21:45 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:23:41 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:23:41 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:23:41 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:31:56 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:31:56 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:31:56 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:34:26 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:34:26 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:34:26 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:35:37 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 12:35:37 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 12:35:37 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 12:35:37 myhost dhcpcd[2926]: eth0: eth0: MTU set to 576
    Mar 11 12:36:56 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:36:56 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:36:56 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:40:27 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:40:27 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:40:27 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:52:30 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:52:30 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:52:30 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:55:00 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:55:00 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:55:00 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 12:57:30 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 12:57:30 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 12:57:30 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 13:21:01 myhost -- MARK --
    Mar 11 13:35:37 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 13:35:37 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 13:35:37 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 13:35:37 myhost dhcpcd[3041]: eth0: eth0: MTU set to 576
    Mar 11 13:55:37 myhost -- MARK --
    Mar 11 14:21:01 myhost -- MARK --
    Mar 11 14:35:37 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 14:35:37 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 14:35:37 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 14:35:37 myhost dhcpcd[3095]: eth0: eth0: MTU set to 576
    Mar 11 14:55:37 myhost -- MARK --
    Mar 11 15:21:01 myhost -- MARK --
    Mar 11 15:35:38 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 15:35:38 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 15:35:38 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 15:35:38 myhost dhcpcd[3144]: eth0: eth0: MTU set to 576
    Mar 11 15:55:38 myhost -- MARK --
    Mar 11 16:21:01 myhost -- MARK --
    Mar 11 16:35:38 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 16:35:38 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 16:35:38 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 16:35:38 myhost dhcpcd[3192]: eth0: eth0: MTU set to 576
    Mar 11 16:51:02 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 16:51:02 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 16:51:02 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 17:21:01 myhost -- MARK --
    Mar 11 17:27:48 myhost init: Trying to re-exec init
    Mar 11 17:28:18 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:18 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:18 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:18 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:25 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:34 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:34 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:34 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:34 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:46 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:46 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:46 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:46 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:47 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:28:47 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:04 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:04 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:04 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:05 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:14 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:14 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:14 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:14 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:19 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:19 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:19 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:20 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:20 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:20 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:20 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:20 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:29:20 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:30:18 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:30:18 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:30:18 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:30:18 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:31:15 myhost kernel: [25090.053873] mdadm: sending ioctl 800c0910 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.053877] mdadm: sending ioctl 800c0910 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.053883] mdadm: sending ioctl 1261 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.053885] mdadm: sending ioctl 1261 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.060059] mdadm: sending ioctl 1261 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.060061] mdadm: sending ioctl 1261 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.076899] mdadm: sending ioctl 1261 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.076902] mdadm: sending ioctl 1261 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.077037] mdadm: sending ioctl 1261 to a partition!
    Mar 11 17:31:15 myhost kernel: [25090.077039] mdadm: sending ioctl 1261 to a partition!
    Mar 11 17:32:15 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:32:15 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:32:15 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:32:15 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:32:15 myhost dbus[434]: [system] Reloaded configuration
    Mar 11 17:35:38 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 17:35:38 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 17:35:38 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 17:35:38 myhost dhcpcd[6669]: eth0: eth0: MTU set to 576
    Mar 11 17:55:07 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 17:55:07 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 17:55:07 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 17:57:37 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 17:57:37 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 17:57:37 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 18:00:07 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 18:00:07 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 18:00:07 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 18:17:33 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 18:17:33 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 18:17:33 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 18:35:38 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 18:35:38 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 18:35:38 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 18:35:38 myhost dhcpcd[7243]: eth0: eth0: MTU set to 576
    Mar 11 18:55:39 myhost -- MARK --
    Mar 11 19:21:01 myhost -- MARK --
    Mar 11 19:27:03 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 19:27:04 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 19:27:04 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 19:29:33 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 19:29:33 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 19:29:33 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 19:32:03 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 19:32:03 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 19:32:03 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 19:34:05 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 19:34:05 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 19:34:05 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 19:35:38 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 19:35:38 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 19:35:38 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 19:35:38 myhost dhcpcd[8708]: eth0: eth0: MTU set to 576
    Mar 11 19:55:38 myhost -- MARK --
    Mar 11 20:21:01 myhost -- MARK --
    Mar 11 20:32:12 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 20:32:12 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 20:32:12 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 20:34:42 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 20:34:42 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 20:34:42 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 20:35:38 myhost dhcpcd[1269]: eth0: renewing lease of 192.168.1.100
    Mar 11 20:35:38 myhost dhcpcd[1269]: eth0: acknowledged 192.168.1.100 from 192.168.1.1 `ÿ'
    Mar 11 20:35:38 myhost dhcpcd[1269]: eth0: leased 192.168.1.100 for 7200 seconds
    Mar 11 20:35:38 myhost dhcpcd[10147]: eth0: eth0: MTU set to 576
    Mar 11 20:37:12 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 20:37:12 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 20:37:12 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 20:48:37 myhost dbus[434]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 11 20:48:37 myhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 11 20:48:37 myhost dbus[434]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 11 20:54:44 myhost shutdown[10347]: shutting down for system halt
    Mar 11 20:54:44 myhost init: Switching to runlevel: 0
    Mar 11 20:54:48 myhost dhcpcd[10522]: sending signal 1 to pid 1269
    Mar 11 20:54:48 myhost dhcpcd[1269]: received SIGHUP, releasing
    Mar 11 20:54:48 myhost dhcpcd[1269]: eth0: releasing lease of 192.168.1.100
    Mar 11 20:54:48 myhost dhcpcd[10522]: waiting for pid 1269 to exit
    Mar 11 20:54:48 myhost dhcpcd[10527]: eth0: eth0: MTU restored to 1500
    Mar 11 20:54:49 myhost dhcpcd[1269]: eth0: removing interface
    Mar 12 10:23:35 myhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Mar 12 10:23:35 myhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Mar 12 10:23:35 myhost kernel: [ 0.000000] Linux version 3.2.6-2-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20120120 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Feb 16 10:10:02 CET 2012
    Mar 12 10:23:35 myhost kernel: [ 0.000000] Command line: root=/dev/disk/by-uuid/03876ae1-14ad-42f4-920b-9d949d3cb434 ro
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-provided physical RAM map:
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 00000000000e6000 - 0000000000100000 (reserved)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000bffc0000 (usable)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 00000000bffc0000 - 00000000bffce000 (ACPI data)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 00000000bffce000 - 00000000bfff0000 (ACPI NVS)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 00000000bfff0000 - 00000000bfffe000 (reserved)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    Mar 12 10:23:35 myhost kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0Mar 12 10:25:59 myhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Linux version 3.2.6-2-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20120120 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Feb 16 10:10:02 CET 2012
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Command line: root=/dev/disk/by-uuid/03876ae1-14ad-42f4-920b-9d949d3cb434 ro
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-provided physical RAM map:
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 00000000000e6000 - 0000000000100000 (reserved)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000bffc0000 (usable)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 00000000bffc0000 - 00000000bffce000 (ACPI data)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 00000000bffce000 - 00000000bfff0000 (ACPI NVS)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 00000000bfff0000 - 00000000bfffe000 (reserved)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] NX (Execute Disable) protection: active
    Mar 12 10:25:59 myhost kernel: [ 0.000000] DMI present.
    Mar 12 10:25:59 myhost kernel: [ 0.000000] No AGP bridge found
    Mar 12 10:25:59 myhost kernel: [ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mar 12 10:25:59 myhost kernel: [ 0.000000] last_pfn = 0xbffc0 max_arch_pfn = 0x400000000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Using GB pages for direct mapping
    Mar 12 10:25:59 myhost kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000bffc0000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] RAMDISK: 3759a000 - 37ff0000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: RSDP 00000000000fa1f0 00014 (v00 ACPIAM)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: RSDT 00000000bffc0000 00038 (v01 021709 RSDT1317 20090217 MSFT 00000097)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: FACP 00000000bffc0200 00084 (v01 021709 FACP1317 20090217 MSFT 00000097)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: DSDT 00000000bffc04a0 04880 (v01 1ADKR 1ADKR017 00000017 INTL 20051117)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: FACS 00000000bffce000 00040
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: APIC 00000000bffc0390 00080 (v01 021709 APIC1317 20090217 MSFT 00000097)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: MCFG 00000000bffc0410 0003C (v01 021709 OEMMCFG 20090217 MSFT 00000097)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: WDRT 00000000bffc0450 00047 (v01 021709 NV-WDRT 20090217 MSFT 00000097)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: OEMB 00000000bffce040 00071 (v01 021709 OEMB1317 20090217 MSFT 00000097)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Scanning NUMA topology in Northbridge 24
    Mar 12 10:25:59 myhost kernel: [ 0.000000] No NUMA configuration found
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Faking a node at 0000000000000000-0000000140000000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Initmem setup node 0 0000000000000000-0000000140000000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] NODE_DATA [000000013fffb000 - 000000013fffffff]
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Zone PFN ranges:
    Mar 12 10:25:59 myhost kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Normal 0x00100000 -> 0x00140000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Movable zone start PFN for each node
    Mar 12 10:25:59 myhost kernel: [ 0.000000] early_node_map[3] active PFN ranges
    Mar 12 10:25:59 myhost kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
    Mar 12 10:25:59 myhost kernel: [ 0.000000] 0: 0x00000100 -> 0x000bffc0
    Mar 12 10:25:59 myhost kernel: [ 0.000000] 0: 0x00100000 -> 0x00140000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Nvidia board detected. Ignoring ACPI timer override.
    Mar 12 10:25:59 myhost kernel: [ 0.000000] If you got timer trouble try acpi_use_timer_override
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfec00000] gsi_base[0])
    Mar 12 10:25:59 myhost kernel: [ 0.000000] IOAPIC[0]: apic_id 3, version 17, address 0xfec00000, GSI 0-23
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Mar 12 10:25:59 myhost kernel: [ 0.000000] SMP: Allowing 4 CPUs, 1 hotplug CPUs
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e6000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e6000 - 0000000000100000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000bffc0000 - 00000000bffce000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000bffce000 - 00000000bfff0000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000bfff0000 - 00000000bfffe000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000bfffe000 - 00000000fec00000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fee00000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fef00000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 00000000fff00000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fff00000 - 0000000100000000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Allocating PCI resources starting at bfffe000 (gap: bfffe000:3ec02000)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Mar 12 10:25:59 myhost kernel: [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s82176 r8192 d24320 u524288
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1027914
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Policy zone: Normal
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Kernel command line: root=/dev/disk/by-uuid/03876ae1-14ad-42f4-920b-9d949d3cb434 ro
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Checking aperture...
    Mar 12 10:25:59 myhost kernel: [ 0.000000] No AGP bridge found
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Node 0: aperture @ 748000000 size 32 MB
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Aperture beyond 4GB. Ignoring.
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Please enable the IOMMU option in the BIOS setup
    Mar 12 10:25:59 myhost kernel: [ 0.000000] This costs you 64 MB of RAM
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Mapping aperture over 65536 KB of RAM @ b4000000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000b4000000 - 00000000b8000000
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Memory: 3974248k/5242880k available (4488k kernel code, 1049284k absent, 219348k reserved, 4409k data, 736k init)
    Mar 12 10:25:59 myhost kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Verbose stalled-CPUs detection is disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Console: colour VGA+ 80x25
    Mar 12 10:25:59 myhost kernel: [ 0.000000] console [tty0] enabled
    Mar 12 10:25:59 myhost kernel: [ 0.000000] allocated 33554432 bytes of page_cgroup
    Mar 12 10:25:59 myhost kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Fast TSC calibration using PIT
    Mar 12 10:25:59 myhost kernel: [ 0.000000] Detected 2109.668 MHz processor.
    Mar 12 10:25:59 myhost kernel: [ 0.003337] Calibrating delay loop (skipped), value calculated using timer frequency.. 4221.14 BogoMIPS (lpj=7032226)
    Mar 12 10:25:59 myhost kernel: [ 0.003342] pid_max: default: 32768 minimum: 301
    Mar 12 10:25:59 myhost kernel: [ 0.003370] Security Framework initialized
    Mar 12 10:25:59 myhost kernel: [ 0.003376] AppArmor: AppArmor disabled by boot time parameter
    Mar 12 10:25:59 myhost kernel: [ 0.003905] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.007031] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.007954] Mount-cache hash table entries: 256
    Mar 12 10:25:59 myhost kernel: [ 0.008114] Initializing cgroup subsys cpuacct
    Mar 12 10:25:59 myhost kernel: [ 0.008121] Initializing cgroup subsys memory
    Mar 12 10:25:59 myhost kernel: [ 0.008131] Initializing cgroup subsys devices
    Mar 12 10:25:59 myhost kernel: [ 0.008133] Initializing cgroup subsys freezer
    Mar 12 10:25:59 myhost kernel: [ 0.008136] Initializing cgroup subsys net_cls
    Mar 12 10:25:59 myhost kernel: [ 0.008138] Initializing cgroup subsys blkio
    Mar 12 10:25:59 myhost kernel: [ 0.008192] CPU: Physical Processor ID: 0
    Mar 12 10:25:59 myhost kernel: [ 0.008194] CPU: Processor Core ID: 0
    Mar 12 10:25:59 myhost kernel: [ 0.008197] mce: CPU supports 6 MCE banks
    Mar 12 10:25:59 myhost kernel: [ 0.008208] using AMD E400 aware idle routine
    Mar 12 10:25:59 myhost kernel: [ 0.009025] ACPI: Core revision 20110623
    Mar 12 10:25:59 myhost kernel: [ 0.011442] ftrace: allocating 17394 entries in 69 pages
    Mar 12 10:25:59 myhost kernel: [ 0.014007] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
    Mar 12 10:25:59 myhost kernel: [ 0.047059] CPU0: AMD Phenom(tm) 8400 Triple-Core Processor stepping 02
    Mar 12 10:25:59 myhost kernel: [ 0.049997] Performance Events: AMD PMU driver.
    Mar 12 10:25:59 myhost kernel: [ 0.049997] ... version: 0
    Mar 12 10:25:59 myhost kernel: [ 0.049997] ... bit width: 48
    Mar 12 10:25:59 myhost kernel: [ 0.049997] ... generic registers: 4
    Mar 12 10:25:59 myhost kernel: [ 0.049997] ... value mask: 0000ffffffffffff
    Mar 12 10:25:59 myhost kernel: [ 0.049997] ... max period: 00007fffffffffff
    Mar 12 10:25:59 myhost kernel: [ 0.049997] ... fixed-purpose events: 0
    Mar 12 10:25:59 myhost kernel: [ 0.049997] ... event mask: 000000000000000f
    Mar 12 10:25:59 myhost kernel: [ 0.066733] NMI watchdog enabled, takes one hw-pmu counter.
    Mar 12 10:25:59 myhost kernel: [ 0.093342] Booting Node 0, Processors #1
    Mar 12 10:25:59 myhost kernel: [ 0.190007] NMI watchdog enabled, takes one hw-pmu counter.
    Mar 12 10:25:59 myhost kernel: [ 0.210005] #2
    Mar 12 10:25:59 myhost kernel: [ 0.306665] NMI watchdog enabled, takes one hw-pmu counter.
    Mar 12 10:25:59 myhost kernel: [ 0.313317] Brought up 3 CPUs
    Mar 12 10:25:59 myhost kernel: [ 0.313319] Total of 3 processors activated (12662.21 BogoMIPS).
    Mar 12 10:25:59 myhost kernel: [ 0.315139] devtmpfs: initialized
    Mar 12 10:25:59 myhost kernel: [ 0.317377] PM: Registering ACPI NVS region at bffce000 (139264 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.317603] print_constraints: dummy:
    Mar 12 10:25:59 myhost kernel: [ 0.317656] NET: Registered protocol family 16
    Mar 12 10:25:59 myhost kernel: [ 0.317767] TOM: 00000000c0000000 aka 3072M
    Mar 12 10:25:59 myhost kernel: [ 0.317784] TOM2: 0000000140000000 aka 5120M
    Mar 12 10:25:59 myhost kernel: [ 0.317805] Extended Config Space enabled on 1 nodes
    Mar 12 10:25:59 myhost kernel: [ 0.317819] ACPI: bus type pci registered
    Mar 12 10:25:59 myhost kernel: [ 0.317893] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Mar 12 10:25:59 myhost kernel: [ 0.317896] PCI: not using MMCONFIG
    Mar 12 10:25:59 myhost kernel: [ 0.317898] PCI: Using configuration type 1 for base access
    Mar 12 10:25:59 myhost kernel: [ 0.317899] PCI: Using configuration type 1 for extended access
    Mar 12 10:25:59 myhost kernel: [ 0.318408] bio: create slab <bio-0> at 0
    Mar 12 10:25:59 myhost kernel: [ 0.318408] ACPI: Added _OSI(Module Device)
    Mar 12 10:25:59 myhost kernel: [ 0.318408] ACPI: Added _OSI(Processor Device)
    Mar 12 10:25:59 myhost kernel: [ 0.318408] ACPI: Added _OSI(3.0 _SCP Extensions)
    Mar 12 10:25:59 myhost kernel: [ 0.318408] ACPI: Added _OSI(Processor Aggregator Device)
    Mar 12 10:25:59 myhost kernel: [ 0.321075] ACPI: Executed 1 blocks of module-level executable AML code
    Mar 12 10:25:59 myhost kernel: [ 0.322673] ACPI: Interpreter enabled
    Mar 12 10:25:59 myhost kernel: [ 0.322677] ACPI: (supports S0 S1 S4 S5)
    Mar 12 10:25:59 myhost kernel: [ 0.322695] ACPI: Using IOAPIC for interrupt routing
    Mar 12 10:25:59 myhost kernel: [ 0.322713] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Mar 12 10:25:59 myhost kernel: [ 0.323739] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Mar 12 10:25:59 myhost kernel: [ 0.353905] ACPI: No dock devices found.
    Mar 12 10:25:59 myhost kernel: [ 0.353908] HEST: Table not found.
    Mar 12 10:25:59 myhost kernel: [ 0.353912] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Mar 12 10:25:59 myhost kernel: [ 0.354095] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Mar 12 10:25:59 myhost kernel: [ 0.354265] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    Mar 12 10:25:59 myhost kernel: [ 0.354268] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    Mar 12 10:25:59 myhost kernel: [ 0.354271] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    Mar 12 10:25:59 myhost kernel: [ 0.354273] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff]
    Mar 12 10:25:59 myhost kernel: [ 0.354276] pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xdfffffff]
    Mar 12 10:25:59 myhost kernel: [ 0.354279] pci_root PNP0A03:00: host bridge window [mem 0xf0000000-0xfebfffff]
    Mar 12 10:25:59 myhost kernel: [ 0.355812] pci 0000:00:04.0: PCI bridge to [bus 01-01] (subtractive decode)
    Mar 12 10:25:59 myhost kernel: [ 0.359989] pci 0000:00:09.0: PCI bridge to [bus 02-02]
    Mar 12 10:25:59 myhost kernel: [ 0.360030] pci 0000:00:0b.0: PCI bridge to [bus 03-03]
    Mar 12 10:25:59 myhost kernel: [ 0.360061] pci 0000:00:0c.0: PCI bridge to [bus 04-04]
    Mar 12 10:25:59 myhost kernel: [ 0.360429] pci0000:00: Requesting ACPI _OSC control (0x1d)
    Mar 12 10:25:59 myhost kernel: [ 0.360569] pci0000:00: ACPI _OSC control (0x1d) granted
    Mar 12 10:25:59 myhost kernel: [ 0.365142] ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *0, disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.365238] ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *11
    Mar 12 10:25:59 myhost kernel: [ 0.365330] ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *0, disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.365424] ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *0, disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.365515] ACPI: PCI Interrupt Link [LNEA] (IRQs 16 17 18 19) *0, disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.365606] ACPI: PCI Interrupt Link [LNEB] (IRQs 16 17 18 19) *0, disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.365697] ACPI: PCI Interrupt Link [LNEC] (IRQs 16 17 18 19) *0, disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.365788] ACPI: PCI Interrupt Link [LNED] (IRQs 16 17 18 19) *10
    Mar 12 10:25:59 myhost kernel: [ 0.365882] ACPI: PCI Interrupt Link [LUB0] (IRQs 20 21 22 23) *7
    Mar 12 10:25:59 myhost kernel: [ 0.365973] ACPI: PCI Interrupt Link [LUB2] (IRQs 20 21 22 23) *10
    Mar 12 10:25:59 myhost kernel: [ 0.366073] ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *5
    Mar 12 10:25:59 myhost kernel: [ 0.366165] ACPI: PCI Interrupt Link [LAZA] (IRQs 20 21 22 23) *11
    Mar 12 10:25:59 myhost kernel: [ 0.366256] ACPI: PCI Interrupt Link [LMC9] (IRQs 20 21 22 23) *0, disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.366346] ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *11
    Mar 12 10:25:59 myhost kernel: [ 0.366437] ACPI: PCI Interrupt Link [LPMU] (IRQs 20 21 22 23) *5
    Mar 12 10:25:59 myhost kernel: [ 0.366528] ACPI: PCI Interrupt Link [LSA0] (IRQs 20 21 22 23) *10
    Mar 12 10:25:59 myhost kernel: [ 0.366618] ACPI: PCI Interrupt Link [LSA1] (IRQs 20 21 22 23) *10
    Mar 12 10:25:59 myhost kernel: [ 0.366728] ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22 23) *0, disabled.
    Mar 12 10:25:59 myhost kernel: [ 0.366818] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
    Mar 12 10:25:59 myhost kernel: [ 0.366818] vgaarb: loaded
    Mar 12 10:25:59 myhost kernel: [ 0.366818] vgaarb: bridge control possible 0000:02:00.0
    Mar 12 10:25:59 myhost kernel: [ 0.366818] PCI: Using ACPI for IRQ routing
    Mar 12 10:25:59 myhost kernel: [ 0.374202] pci 0000:00:01.3: no compatible bridge window for [mem 0xfec80000-0xfecfffff]
    Mar 12 10:25:59 myhost kernel: [ 0.374361] NetLabel: Initializing
    Mar 12 10:25:59 myhost kernel: [ 0.374363] NetLabel: domain hash size = 128
    Mar 12 10:25:59 myhost kernel: [ 0.374365] NetLabel: protocols = UNLABELED CIPSOv4
    Mar 12 10:25:59 myhost kernel: [ 0.374382] NetLabel: unlabeled traffic allowed by default
    Mar 12 10:25:59 myhost kernel: [ 0.381236] pnp: PnP ACPI init
    Mar 12 10:25:59 myhost kernel: [ 0.381259] ACPI: bus type pnp registered
    Mar 12 10:25:59 myhost kernel: [ 0.382933] system 00:07: [io 0x04d0-0x04d1] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382939] system 00:07: [io 0x0800-0x080f] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382942] system 00:07: [io 0x4000-0x407f] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382945] system 00:07: [io 0x4080-0x40ff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382948] system 00:07: [io 0x4400-0x447f] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382950] system 00:07: [io 0x4480-0x44ff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382953] system 00:07: [io 0x4800-0x487f] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382955] system 00:07: [io 0x4880-0x48ff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382958] system 00:07: [io 0x4c00-0x4c7f] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382960] system 00:07: [io 0x4c80-0x4cff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382964] system 00:07: [mem 0x000d0000-0x000d3fff window] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382966] system 00:07: [mem 0x000d4000-0x000d7fff window] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382969] system 00:07: [mem 0x000de000-0x000dffff window] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382973] system 00:07: [mem 0xfec80000-0x1fd93ffff] could not be reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382975] system 00:07: [mem 0xfefe0000-0xfefe01ff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382978] system 00:07: [mem 0xfefe1000-0xfefe1fff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382981] system 00:07: [mem 0xfee01000-0xfeefffff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.382984] system 00:07: [mem 0xffb80000-0xffffffff] could not be reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383127] system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383130] system 00:08: [mem 0xfee00000-0xfee00fff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383413] system 00:0b: [io 0x0a00-0x0adf] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383416] system 00:0b: [io 0x0ae0-0x0aef] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383507] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383708] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383710] system 00:0d: [mem 0x000c0000-0x000cffff] could not be reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383713] system 00:0d: [mem 0x000e0000-0x000fffff] could not be reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383716] system 00:0d: [mem 0x00100000-0xbfffffff] could not be reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383719] system 00:0d: [mem 0xfec00000-0xffffffff] could not be reserved
    Mar 12 10:25:59 myhost kernel: [ 0.383953] pnp: PnP ACPI: found 14 devices
    Mar 12 10:25:59 myhost kernel: [ 0.383955] ACPI: ACPI bus type pnp unregistered
    Mar 12 10:25:59 myhost kernel: [ 0.390613] Switching to clocksource acpi_pm
    Mar 12 10:25:59 myhost kernel: [ 0.390674] pci 0000:00:01.3: BAR 0: assigned [mem 0xd0000000-0xd007ffff]
    Mar 12 10:25:59 myhost kernel: [ 0.390679] pci 0000:00:01.3: BAR 0: set to [mem 0xd0000000-0xd007ffff] (PCI address [0xd0000000-0xd007ffff])
    Mar 12 10:25:59 myhost kernel: [ 0.390683] pci 0000:00:04.0: PCI bridge to [bus 01-01]
    Mar 12 10:25:59 myhost kernel: [ 0.390691] pci 0000:00:09.0: PCI bridge to [bus 02-02]
    Mar 12 10:25:59 myhost kernel: [ 0.390694] pci 0000:00:09.0: bridge window [io 0xe000-0xefff]
    Mar 12 10:25:59 myhost kernel: [ 0.390698] pci 0000:00:09.0: bridge window [mem 0xdc000000-0xdfffffff]
    Mar 12 10:25:59 myhost kernel: [ 0.390702] pci 0000:00:09.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Mar 12 10:25:59 myhost kernel: [ 0.390706] pci 0000:00:0b.0: PCI bridge to [bus 03-03]
    Mar 12 10:25:59 myhost kernel: [ 0.390712] pci 0000:00:0c.0: PCI bridge to [bus 04-04]
    Mar 12 10:25:59 myhost kernel: [ 0.390824] NET: Registered protocol family 2
    Mar 12 10:25:59 myhost kernel: [ 0.391013] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.392601] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.395867] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.396352] TCP: Hash tables configured (established 524288 bind 65536)
    Mar 12 10:25:59 myhost kernel: [ 0.396355] TCP reno registered
    Mar 12 10:25:59 myhost kernel: [ 0.396368] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.396419] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.396554] NET: Registered protocol family 1
    Mar 12 10:25:59 myhost kernel: [ 0.460124] pci 0000:00:00.0: Found enabled HT MSI Mapping
    Mar 12 10:25:59 myhost kernel: [ 0.460179] pci 0000:00:00.0: Found enabled HT MSI Mapping
    Mar 12 10:25:59 myhost kernel: [ 0.460246] pci 0000:00:00.0: Found enabled HT MSI Mapping
    Mar 12 10:25:59 myhost kernel: [ 0.460312] pci 0000:00:00.0: Found enabled HT MSI Mapping
    Mar 12 10:25:59 myhost kernel: [ 0.460377] pci 0000:00:00.0: Found enabled HT MSI Mapping
    Mar 12 10:25:59 myhost kernel: [ 0.460449] pci 0000:00:00.0: Found enabled HT MSI Mapping
    Mar 12 10:25:59 myhost kernel: [ 0.460526] pci 0000:00:00.0: Found enabled HT MSI Mapping
    Mar 12 10:25:59 myhost kernel: [ 0.460609] pci 0000:00:00.0: Found enabled HT MSI Mapping
    Mar 12 10:25:59 myhost kernel: [ 0.460711] Unpacking initramfs...
    Mar 12 10:25:59 myhost kernel: [ 0.572196] Freeing initrd memory: 10584k freed
    Mar 12 10:25:59 myhost kernel: [ 0.577900] PCI-DMA: Disabling AGP.
    Mar 12 10:25:59 myhost kernel: [ 0.581545] PCI-DMA: aperture base @ b4000000 size 65536 KB
    Mar 12 10:25:59 myhost kernel: [ 0.581547] PCI-DMA: using GART IOMMU.
    Mar 12 10:25:59 myhost kernel: [ 0.581551] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    Mar 12 10:25:59 myhost kernel: [ 0.585462] IBS: LVT offset 1 assigned
    Mar 12 10:25:59 myhost kernel: [ 0.585486] perf: AMD IBS detected (0x00000007)
    Mar 12 10:25:59 myhost kernel: [ 0.585671] audit: initializing netlink socket (disabled)
    Mar 12 10:25:59 myhost kernel: [ 0.585695] type=2000 audit(1331547952.583:1): initialized
    Mar 12 10:25:59 myhost kernel: [ 0.598511] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Mar 12 10:25:59 myhost kernel: [ 0.625385] VFS: Disk quotas dquot_6.5.2
    Mar 12 10:25:59 myhost kernel: [ 0.625456] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Mar 12 10:25:59 myhost kernel: [ 0.625563] msgmni has been set to 7911
    Mar 12 10:25:59 myhost kernel: [ 0.625796] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    Mar 12 10:25:59 myhost kernel: [ 0.625843] io scheduler noop registered
    Mar 12 10:25:59 myhost kernel: [ 0.625845] io scheduler deadline registered
    Mar 12 10:25:59 myhost kernel: [ 0.625880] io scheduler cfq registered (default)
    Mar 12 10:25:59 myhost kernel: [ 0.626497] pcieport 0000:00:09.0: Signaling PME through PCIe PME interrupt
    Mar 12 10:25:59 myhost kernel: [ 0.626501] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    Mar 12 10:25:59 myhost kernel: [ 0.626523] pcieport 0000:00:0b.0: Signaling PME through PCIe PME interrupt
    Mar 12 10:25:59 myhost kernel: [ 0.626541] pcieport 0000:00:0c.0: Signaling PME through PCIe PME interrupt
    Mar 12 10:25:59 myhost kernel: [ 0.626710] ERST: Table is not found!
    Mar 12 10:25:59 myhost kernel: [ 0.626712] GHES: HEST is not enabled!
    Mar 12 10:25:59 myhost kernel: [ 0.626780] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Mar 12 10:25:59 myhost kernel: [ 0.647333] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    Mar 12 10:25:59 myhost kernel: [ 0.883974] 00:05: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    Mar 12 10:25:59 myhost kernel: [ 0.943516] Linux agpgart interface v0.103
    Mar 12 10:25:59 myhost kernel: [ 0.943585] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    Mar 12 10:25:59 myhost kernel: [ 0.945853] serio: i8042 KBD port at 0x60,0x64 irq 1
    Mar 12 10:25:59 myhost kernel: [ 0.945870] serio: i8042 AUX port at 0x60,0x64 irq 12
    Mar 12 10:25:59 myhost kernel: [ 0.946084] mousedev: PS/2 mouse device common for all mice
    Mar 12 10:25:59 myhost kernel: [ 0.946138] rtc_cmos 00:02: RTC can wake from S4
    Mar 12 10:25:59 myhost kernel: [ 0.946297] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    Mar 12 10:25:59 myhost kernel: [ 0.946334] rtc0: alarms up to one year, y3k, 114 bytes nvram
    Mar 12 10:25:59 myhost kernel: [ 0.946347] cpuidle: using governor ladder
    Mar 12 10:25:59 myhost kernel: [ 0.946350] cpuidle: using governor menu
    Mar 12 10:25:59 myhost kernel: [ 0.946589] TCP cubic registered
    Mar 12 10:25:59 myhost kernel: [ 0.946729] NET: Registered protocol family 10
    Mar 12 10:25:59 myhost kernel: [ 0.947209] NET: Registered protocol family 17
    Mar 12 10:25:59 myhost kernel: [ 0.947213] Registering the dns_resolver key type
    Mar 12 10:25:59 myhost kernel: [ 0.947383] registered taskstats version 1
    Mar 12 10:25:59 myhost kernel: [ 0.960176] rtc_cmos 00:02: setting system clock to 2012-03-12 10:25:53 UTC (1331547953)
    Mar 12 10:25:59 myhost kernel: [ 0.960226] Initializing network drop monitor service
    Mar 12 10:25:59 myhost kernel: [ 0.961665] Freeing unused kernel memory: 736k freed
    Mar 12 10:25:59 myhost kernel: [ 0.961941] Write protecting the kernel read-only data: 8192k
    Mar 12 10:25:59 myhost kernel: [ 0.964578] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Mar 12 10:25:59 myhost kernel: [ 0.968163] Freeing unused kernel memory: 1636k freed
    Mar 12 10:25:59 myhost kernel: [ 0.971309] Freeing unused kernel memory: 660k freed
    Mar 12 10:25:59 myhost [ 0.983845] udevd[66]: starting version 181
    Mar 12 10:25:59 myhost kernel: [ 1.019251] usbcore: registered new interface driver usbfs
    Mar 12 10:25:59 myhost kernel: [ 1.019287] usbcore: registered new interface driver hub
    Mar 12 10:25:59 myhost kernel: [ 1.019363] usbcore: registered new device driver usb
    Mar 12 10:25:59 myhost kernel: [ 1.020457] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Mar 12 10:25:59 myhost kernel: [ 1.022334] SCSI subsystem initialized
    Mar 12 10:25:59 myhost kernel: [ 1.024094] ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 23
    Mar 12 10:25:59 myhost kernel: [ 1.024122] ehci_hcd 0000:00:02.1: PCI INT B -> Link[LUB2] -> GSI 23 (level, low) -> IRQ 23
    Mar 12 10:25:59 myhost kernel: [ 1.024181] ehci_hcd 0000:00:02.1: EHCI Host Controller
    Mar 12 10:25:59 myhost kernel: [ 1.024230] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
    Mar 12 10:25:59 myhost kernel: [ 1.024274] ehci_hcd 0000:00:02.1: debug port 1
    Mar 12 10:25:59 myhost kernel: [ 1.024314] ehci_hcd 0000:00:02.1: irq 23, io mem 0xdbf7ec00
    Mar 12 10:25:59 myhost kernel: [ 1.033384] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00
    Mar 12 10:25:59 myhost kernel: [ 1.033711] hub 1-0:1.0: USB hub found
    Mar 12 10:25:59 myhost kernel: [ 1.033717] hub 1-0:1.0: 10 ports detected
    Mar 12 10:25:59 myhost kernel: [ 1.034730] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Mar 12 10:25:59 myhost kernel: [ 1.036435] ACPI: PCI Interrupt Link [LUB0] enabled at IRQ 22
    Mar 12 10:25:59 myhost kernel: [ 1.036458] ohci_hcd 0000:00:02.0: PCI INT A -> Link[LUB0] -> GSI 22 (level, low) -> IRQ 22
    Mar 12 10:25:59 myhost kernel: [ 1.036513] ohci_hcd 0000:00:02.0: OHCI Host Controller
    Mar 12 10:25:59 myhost kernel: [ 1.036536] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
    Mar 12 10:25:59 myhost kernel: [ 1.036579] ohci_hcd 0000:00:02.0: irq 22, io mem 0xdbf7f000
    Mar 12 10:25:59 myhost kernel: [ 1.088876] hub 2-0:1.0: USB hub found
    Mar 12 10:25:59 myhost kernel: [ 1.088885] hub 2-0:1.0: 10 ports detected
    Mar 12 10:25:59 myhost kernel: [ 1.090175] scsi0 : pata_amd
    Mar 12 10:25:59 myhost kernel: [ 1.090309] scsi1 : pata_amd
    Mar 12 10:25:59 myhost kernel: [ 1.091064] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfff0 irq 14
    Mar 12 10:25:59 myhost kernel: [ 1.091067] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfff8 irq 15
    Mar 12 10:25:59 myhost kernel: [ 1.094698] ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 21
    Mar 12 10:25:59 myhost kernel: [ 1.094721] sata_nv 0000:00:08.0: PCI INT A -> Link[LSA0] -> GSI 21 (level, low) -> IRQ 21
    Mar 12 10:25:59 myhost kernel: [ 1.095105] scsi2 : sata_nv
    Mar 12 10:25:59 myhost kernel: [ 1.095190] scsi3 : sata_nv
    Mar 12 10:25:59 myhost kernel: [ 1.095306] ata3: SATA max UDMA/133 cmd 0xdd80 ctl 0xdd00 bmdma 0xdb00 irq 21
    Mar 12 10:25:59 myhost kernel: [ 1.095309] ata4: SATA max UDMA/133 cmd 0xdc00 ctl 0xdb80 bmdma 0xdb08 irq 21
    Mar 12 10:25:59 myhost kernel: [ 1.095559] ACPI: PCI Interrupt Link [LSA1] enabled at IRQ 20
    Mar 12 10:25:59 myhost kernel: [ 1.095574] sata_nv 0000:00:08.1: PCI INT B -> Link[LSA1] -> GSI 20 (level, low) -> IRQ 20
    Mar 12 10:25:59 myhost kernel: [ 1.095843] scsi4 : sata_nv
    Mar 12 10:25:59 myhost kernel: [ 1.095923] scsi5 : sata_nv
    Mar 12 10:25:59 myhost kernel: [ 1.096025] ata5: SATA max UDMA/133 cmd 0xda80 ctl 0xda00 bmdma 0xd880 irq 20
    Mar 12 10:25:59 myhost kernel: [ 1.096028] ata6: SATA max UDMA/133 cmd 0xd980 ctl 0xd900 bmdma 0xd888 irq 20
    Mar 12 10:25:59 myhost kernel: [ 1.417172] ata5: SATA link down (SStatus 0 SControl 300)
    Mar 12 10:25:59 myhost kernel: [ 1.560059] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Mar 12 10:25:59 myhost kernel: [ 1.566979] ata3.00: ATA-8: SAMSUNG HD502HJ, 1AJ10001, max UDMA/133
    Mar 12 10:25:59 myhost kernel: [ 1.566983] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    Mar 12 10:25:59 myhost kernel: [ 1.573620] ata3.00: configured for UDMA/133
    Mar 12 10:25:59 myhost kernel: [ 1.573817] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD502HJ 1AJ1 PQ: 0 ANSI: 5
    Mar 12 10:25:59 myhost kernel: [ 1.586714] Refined TSC clocksource calibration: 2109.721 MHz.
    Mar 12 10:25:59 myhost kernel: [ 1.586720] Switching to clocksource tsc
    Mar 12 10:25:59 myhost kernel: [ 2.040045] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Mar 12 10:25:59 myhost kernel: [ 2.046813] ata4.00: ATAPI: HL-DT-ST DVDRAM GH22NS70, EX00, max UDMA/100
    Mar 12 10:25:59 myhost kernel: [ 2.060169] ata4.00: configured for UDMA/100
    Mar 12 10:25:59 myhost kernel: [ 2.068605] scsi 3:0:0:0: CD-ROM HL-DT-ST DVDRAM GH22NS70 EX00 PQ: 0 ANSI: 5
    Mar 12 10:25:59 myhost kernel: [ 2.390479] ata6: SATA link down (SStatus 0 SControl 300)
    Mar 12 10:25:59 myhost kernel: [ 2.397239] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Mar 12 10:25:59 myhost kernel: [ 2.397316] sd 2:0:0:0: [sda] Write Protect is off
    Mar 12 10:25:59 myhost kernel: [ 2.397338] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Mar 12 10:25:59 myhost kernel: [ 2.413212] sda: sda1 sda2 sda3 sda4
    Mar 12 10:25:59 myhost kernel: [ 2.413653] sd 2:0:0:0: [sda] Attached SCSI disk
    Mar 12 10:25:59 myhost kernel: [ 2.423220] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    Mar 12 10:25:59 myhost kernel: [ 2.423226] cdrom: Uniform CD-ROM driver Revision: 3.20
    Mar 12 10:25:59 myhost kernel: [ 2.818552] EXT4-fs (sda3): INFO: recovery required on readonly filesystem
    Mar 12 10:25:59 myhost kernel: [ 2.818556] EXT4-fs (sda3): write access will be enabled during recovery
    Mar 12 10:25:59 myhost kernel: [ 2.844947] EXT4-fs (sda3): recovery complete
    Mar 12 10:25:59 myhost kernel: [ 2.845244] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    Mar 12 10:25:59 myhost [ 4.125862] udevd[177]: starting version 181
    Mar 12 10:25:59 myhost kernel: [ 5.513480] EXT4-fs (sda3): re-mounted. Opts: (null)
    Mar 12 10:25:59 myhost kernel: [ 5.619429] Adding 265068k swap on /dev/sda2. Priority:-1 extents:1 across:265068k
    Mar 12 10:26:01 myhost ntpd[546]: ntpd [email protected] Thu Mar 1 21:32:56 UTC 2012 (1)
    Mar 12 10:26:01 myhost ntpd[547]: proto: precision = 0.115 usec
    Mar 12 10:26:01 myhost ntpd[547]: Listen and drop on 0 v4wildcard 0.0.0.0 UDP 123
    Mar 12 10:26:01 myhost ntpd[547]: Listen and drop on 1 v6wildcard :: UDP 123
    Mar 12 10:26:01 myhost ntpd[547]: Listen normally on 2 lo 127.0.0.1 UDP 123
    Mar 12 10:26:01 myhost ntpd[547]: Listen normally on 3 lo ::1 UDP 123
    Mar 12 10:26:01 myhost ntpd[547]: peers refreshed
    Mar 12 10:26:01 myhost ntpd[547]: Listening on routing socket on fd #20 for interface updates
    Mar 12 10:26:02 myhost kernel: [ 9.760264] mtrr: base(0xdd000000) is not aligned on a size(0xe00000) boundary
    Mar 12 10:26:57 myhost dbus[419]: [system] Failed to activate service 'org.freedesktop.Avahi': timed out
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Linux version 3.2.6-2-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20120120 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Feb 16 10:10:02 CET 2012
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Command line: root=/dev/disk/by-uuid/03876ae1-14ad-42f4-920b-9d949d3cb434 ro
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-provided physical RAM map:
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 00000000000e6000 - 0000000000100000 (reserved)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000bffc0000 (usable)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 00000000bffc0000 - 00000000bffce000 (ACPI data)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 00000000bffce000 - 00000000bfff0000 (ACPI NVS)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 00000000bfff0000 - 00000000bfffe000 (reserved)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] NX (Execute Disable) protection: active
    Mar 12 12:41:56 myhost kernel: [ 0.000000] DMI present.
    Mar 12 12:41:56 myhost kernel: [ 0.000000] No AGP bridge found
    Mar 12 12:41:56 myhost kernel: [ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mar 12 12:41:56 myhost kernel: [ 0.000000] last_pfn = 0xbffc0 max_arch_pfn = 0x400000000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Using GB pages for direct mapping
    Mar 12 12:41:56 myhost kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000bffc0000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] RAMDISK: 37d6c000 - 37ff0000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: RSDP 00000000000fa1f0 00014 (v00 ACPIAM)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: RSDT 00000000bffc0000 00038 (v01 021709 RSDT1317 20090217 MSFT 00000097)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: FACP 00000000bffc0200 00084 (v01 021709 FACP1317 20090217 MSFT 00000097)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: DSDT 00000000bffc04a0 04880 (v01 1ADKR 1ADKR017 00000017 INTL 20051117)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: FACS 00000000bffce000 00040
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: APIC 00000000bffc0390 00080 (v01 021709 APIC1317 20090217 MSFT 00000097)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: MCFG 00000000bffc0410 0003C (v01 021709 OEMMCFG 20090217 MSFT 00000097)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: WDRT 00000000bffc0450 00047 (v01 021709 NV-WDRT 20090217 MSFT 00000097)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: OEMB 00000000bffce040 00071 (v01 021709 OEMB1317 20090217 MSFT 00000097)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Scanning NUMA topology in Northbridge 24
    Mar 12 12:41:56 myhost kernel: [ 0.000000] No NUMA configuration found
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Faking a node at 0000000000000000-0000000140000000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Initmem setup node 0 0000000000000000-0000000140000000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] NODE_DATA [000000013fffb000 - 000000013fffffff]
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Zone PFN ranges:
    Mar 12 12:41:56 myhost kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Normal 0x00100000 -> 0x00140000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Movable zone start PFN for each node
    Mar 12 12:41:56 myhost kernel: [ 0.000000] early_node_map[3] active PFN ranges
    Mar 12 12:41:56 myhost kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
    Mar 12 12:41:56 myhost kernel: [ 0.000000] 0: 0x00000100 -> 0x000bffc0
    Mar 12 12:41:56 myhost kernel: [ 0.000000] 0: 0x00100000 -> 0x00140000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Nvidia board detected. Ignoring ACPI timer override.
    Mar 12 12:41:56 myhost kernel: [ 0.000000] If you got timer trouble try acpi_use_timer_override
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfec00000] gsi_base[0])
    Mar 12 12:41:56 myhost kernel: [ 0.000000] IOAPIC[0]: apic_id 3, version 17, address 0xfec00000, GSI 0-23
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    Mar 12 12:41:56 myhost kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Mar 12 12:41:56 myhost kernel: [ 0.000000] SMP: Allowing 4 CPUs, 1 hotplug CPUs
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e6000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e6000 - 0000000000100000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000bffc0000 - 00000000bffce000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000bffce000 - 00000000bfff0000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000bfff0000 - 00000000bfffe000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000bfffe000 - 00000000fec00000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Mar 12 12:41:56 myhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fee00000
    Mar 12 12

  • I need help adding a mouse motion listner to my game. PLEASE i need it for

    I need help adding a mouse motion listner to my game. PLEASE i need it for a grade.
    i have a basic game that shoots target how can use the motion listner so that paint objects (the aim) move with the mouse.
    i am able to shoot targets but it jus clicks to them ive been using this:
    public void mouse() {
    dotX = mouseX;
    dotY = mouseY;
    int d = Math.abs(dotX - (targetX + 60/2)) + Math.abs(dotY - (targetY + 60/2));
    if(d < 15) {
    score++;
    s1 = "" + score;
    else {
    score--;
    s1 = "" + score;
    and here's my cross hairs used for aiming
    //lines
    page.setStroke(new BasicStroke(1));
    page.setColor(Color.green);
    page.drawLine(dotX-10,dotY,dotX+10,dotY);
    page.drawLine(dotX,dotY-10,dotX,dotY+10);
    //cricle
    page.setColor(new Color(0,168,0,100));
    page.fillOval(dotX-10,dotY-10,20,20);
    please can some1 help me

    please can some1 help meNot when you triple post a question:
    http://forum.java.sun.com/thread.jspa?threadID=5244281
    http://forum.java.sun.com/thread.jspa?threadID=5244277

  • KEYBOARD AND MOUSE

    Lately my keyboard and mouse just stop working, the keyboard misses typed letters, mouse doenst move, and if I just unplug and plug again the wireless stick it works again, plus I listen from time to time the windows sound of when you reconnect a usb drive.
    HP Envy 1414
    GTX 660
    i7 3770K
    12GB Ram

    Hi,
    Tas Chew shared a good suggestion.
    In addition, based on you description, I would like to share the following with you:
    Microsoft Wireless Laser Mouse 6000 and 5000 Cleaning
    http://www.ifixit.com/Guide/Microsoft-Wireless-Laser-Mouse-6000-and-5000-Cleaning/3028/1
    How to Clean, Upgrade, Repair, Mod, Disassemble a Computer Mouse
    http://repair4mouse.org/disassembly_computer_mice.html
    ===================================
    If you had the set for 4 years it is out of warranty.
    If needed check your mouse for warranty.
    http://www.microsoft.com/hardware/mouseandkeyboard/default.mspx
    Wireless Mouse 5000 - 3 year Warranty
    http://www.microsoft.com/hardware/mouseandkeyboard/ProductDetails.aspx?pid=012&active_tab=systemRequirements
    Microsoft Hardware Warranty Information.
    http://www.microsoft.com/hardware/Warranties.mspx
    If the mouse is defective check with the seller or Microsoft.
    MS Hardware Support and Warranty Claims
    Tech Support 1-800-936-5700 for MS Hardware.
    Please note: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites;
    therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure
    that you completely understand the risk before retrieving any software from the Internet.
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • Listener Interface implementation questions

    Dear all experts,
    I am getting a bit confused of the "standard" way of implementing listener interfaces.
    I found that there are 3 general methods:
    1) create an extra class implementing the interface.
    2) implement the interface as an inner class
    3) using the existing class to implement the inferface :
    eg:
    public class oneofmyclass implement FocusListener
    public oneofmyclass()
    constructor....
    all my other methods.........
    the interface methods......
    Why there are so many ways to do it?
    what's the differences/benefits of each??
    Thx

    I am getting a bit confused of the "standard" way of implementing listener interfaces.
    I found that there are 3 general methods:
    1) create an extra class implementing the interface.
    2) implement the interface as an inner class
    3) using the existing class to implement the inferfaceThere isn't much difference between 1) and 2). The first alternative creates a named inner class
    (that implements the listener interface) while the second creates an anonymous class using that
    listener interface. Alternative 3) exposes the interface to the outer world, i.e. your class may be
    attached to some listener list (in some observable) it really wasn't meant for.
    I prefer 1) or 2) If the actual code for the listener is small I use 2), otherwise I use 1) but that's
    just for readability reasons. I almost never use 3) because I don't want my class to be hooked
    up to any observable it wasn't designed for.
    kind regards,
    Jos

Maybe you are looking for

  • How to dynamically populate data from a data source

    What I am trying to do: I am building a simple blog reader application with two screens, 'Home' and 'FeedR'. The data needed for this to work is an excel table 'Blogs'; which has the following columns: BlogName, image, Source I have created about 6 R

  • How to send a packaging request with a multiline description

    If I try to send a package request with this metadata description: <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">First Line Second Line</dc:description> Notice there is a carriage return between "First Line" and "Second Line". Then, the

  • Just got new FF version - can't get app tabs to work

    I'm on a Mac and can't get the app tab function to work. I promise I read through all of the instructions; just still won't give me the pin option when I do control click.

  • Can i use this line in JNLP file?

    Can i use the below line in JNLP file? <property name="ondc.root" value="@user.dir"/> I want to get the client side location of a JAR file. How can i get it? plz help Thanks, Deepak

  • Not updating but iTunes sais different

    Hello, Im heading on a big trip tomorrow so I wanted to update my iPod. So when I go to do so everything looks normal, when I try to delete some video's and add others iTunes claims it has. However, when I disconnect my iPod nothing has changed. It's