Conky display abnormal CPU usage

The CPU usage in conky is always more than 50%. I have a dual-core T2300.
All the CPU related variable: ${cpu}, ${cpu0}, ${cpu1}, ${cpu2} are at least 50%.
It's very confusing.
Anyone can help me?

i have a similar problem, in an athlon xp cpu and 512 ram conky use no more than 5% cpu usage, but in my new computer, amd 5200+ 1 gig ram, with the same .conkyrc file it was 10%-20%... so yes... something in the hard or config makes conky needs more power, but dont know why, i switch to gkrellm so i have more functionality thanks to its plugins from AUR, less cpu usage, and can put it inside the fluxbox slit, with fbpager, and make the slit always on top so if i maximize windows, them always show, gkrellm uses no more than 5% cpu usage and can display a lot of important things

Similar Messages

  • Conky + ratpoison = 100% CPU usage

    Is anyone having this problem ?
    When I run conky in a ratpoison session , the CPU usage maxes out .
    A very simple .conkyrc would do this :
    use_xft yes
    xftfont Bitstream Vera Sans:size=10
    total_run_times 0
    own_window yes
    TEXT
    CPU: $cpu%

    i have a similar problem, in an athlon xp cpu and 512 ram conky use no more than 5% cpu usage, but in my new computer, amd 5200+ 1 gig ram, with the same .conkyrc file it was 10%-20%... so yes... something in the hard or config makes conky needs more power, but dont know why, i switch to gkrellm so i have more functionality thanks to its plugins from AUR, less cpu usage, and can put it inside the fluxbox slit, with fbpager, and make the slit always on top so if i maximize windows, them always show, gkrellm uses no more than 5% cpu usage and can display a lot of important things

  • Conky and high CPU usage

    I originally posted this in the Newbie Corner, as I consider myself a newbie, but got no answers there and I think my issue is pretty kernel-HW-related, excuse me for re-posting.
    I was editing an old peaceful Conky and it somewhen started making high use of the CPU (around 30-40% avg.). As I couldn't figure out where the problem was, took out every configuration line in the conky file and ended up with the few following lines, which are by themselves triggering the same high CPU usage. I don't have much experience with Conky, could anyone explain me if this behaviour would be expected from this simple code or is there something else?
    Thank you.
    own_window yes
    minimum_size 400 600
    maximum_width 400
    alignment bottom_right
    gap_x -120
    gap_y -200
    TEXT
    ${voffset 105}${offset 85}${font Helvetica:size=20}${time %H:%M}${font}

    no please do not cross-post. If you feel that a mistake has been made, Report the post and ask a mod to move it to the appropriate section for you.
    Continue discussion here :  https://bbs.archlinux.org/viewtopic.php?id=124315
    Closing...

  • WPA displays negative CPU usage in view "CPU Usage (Precise)"

    We are running a Win 2008 R2 server on an Hyper-V host. When I run "xperf" on the server and look at the data in Windows Performance Analyzer (Version 6.3.9600.16384) using the "CPU Usage (Precise)" view, I see that the CPU Usage of many
    processes is below Zero (in other words: negative). Is this a bug in WPA, or is it tied to the fact that the server is running in Hyper-V? What am I missing here?

    We are running a Win 2008 R2 server on an Hyper-V host. When I run "xperf" on the server and look at the data in Windows Performance Analyzer (Version 6.3.9600.16384) using the "CPU Usage (Precise)" view, I see that the CPU Usage of many
    processes is below Zero (in other words: negative). Is this a bug in WPA, or is it tied to the fact that the server is running in Hyper-V? What am I missing here?

  • [Solved] conky displaying incorrect ram usage

    Conky isn't subtracting the cached memory, is there a subtraction function?
    "${mem} - ${cached}"
    displays:
    "1.11Gib - 770.53Mib"
    Is there anyway to show just the value of the actual ram being used?
    $mem just displays the 1.11gib
    Last edited by playdafunkimuzic (2009-01-16 15:25:12)

    playdafunkimuzic wrote:Is there anyway to show just the value of the actual ram being used?
    Toggle the "no_buffers" setting in your config:
    no_buffers yes
    Last edited by tdy (2009-01-16 06:19:29)

  • Problems with firewire / coreaudio - abnormal cpu usage

    (powerbook aluminium..)
    I own a Presonus Firebox firewire audio device that makes use of the coreaudio drivers of OSX. As soon as I connect it to the build-in firewire port, kernel_task eats up 15% of my cpu. (when disconnected, kernel_task is at 0,5%) Secondly, ghost spikes appear at regular intervals.
    I first thought it had to do with the firebox, but I tested several brands - all using the coreaudio drivers - with the same results. The ghosts spikes appeared too.
    Other devices, such as DV cameras, Harddrives etc, work fine. No spikes, nothing. So only devices that make use of coreaudio create problems.
    How can I find out if either the drivers are corrupt, the motherboard is faulty, or something else is going bad?
    I bought a firewire pccard, but the problem is the same.
    I reset pram & hardware, but no difference.
    What can I do to fix this?
    forgot to mention that the powerbook whines like crazy when the audio device is connected.

    Hi, kahara. Try reposting in the Aluminum Powerbook discussions area.

  • Stripchart control, strange high CPU usage

    Hi all...
    I have tracked a strange problem with stripchart control.
    I noticed in the past that "sometime" different programs I wrote had an abnormal CPU usage, not justified by any activity they were actually performing.
    Finally I had the time to track down the problem and to build a minimal sample code.
    The presented program has a panel with a stripchart control and two command buttons. 
    The buttons simply clear the stripchart and add a single point to the empty stripchart.
    int CVICALLBACK ControlCB (int panel, int control, int event,void *callbackData, int eventData1, int eventData2)
    switch (event) {
    case EVENT_COMMIT:
    switch(control) {
    case PANEL_BUG:
    ClearStripChart(panel,PANEL_GRAPH);
    PlotStripChartPoint (panel, PANEL_GRAPH, MAGIC_VALUE);
    break;
    case PANEL_NOBUG:
    ClearStripChart(panel,PANEL_GRAPH);
    PlotStripChartPoint (panel, PANEL_GRAPH, NOT_SO_MAGIC_VALUE);
    break;
    break;
    return 0;
    I found that adding "special" values to the stripchart starts a background activity that consumes a significant amount of CPU time.
    In this screenshot you can see what happens on my PC when I click the "Bug" command button.
    The special value is here 42.22 but I bet there are other thousands with similar behaviour.
    Being a single point, the stripchart does not show nothing but the change of the Y axis scale.
    Clicking the "No Bug" command button inserts the value 100.0 and no bad behaviour occurs.
    Just to shuffle ideas, if you push "No Bug" and then "Bug", the bad behavior does not occurs, too.
    It's surely an interaction between the Y axis autoscale, the initial values and may be the "scale name". I haven't the time to explore all the combinations and may be a minimal workaround.
    In my applications I ended in doing the autoscaling "by hand".
    I have tested the program on five different PCs, Core 2 Duo CPUs running XP, Vista and 7 (italian), compiled with CVI 2010 SP1
    Attached there is the full project.
    The distribution kit for the project (no sources) can be downloaded here: http://dl.dropbox.com/u/23913808/CPUeater.zip
    Carlo A.
    Megaris
    Solved!
    Go to Solution.
    Attachments:
    StripChartCPUeater.zip ‏5 KB

    There was a bug in the graph/strip chart code which could cause endless cycling when attempting to resize a graph axis which had an axis label visible. It has been fixed for the next version of CVI so unfortunately you're going to have to wait a little bit.
    There are two possible workarounds:
    1) disable the axis label. If it isn't displayed, this looping can never occur.
    2) Enable Fixed plot area and play around with the left and width of the plot area to move the whole thing over to the right a bit more. The problem was introduced when the graph/chart thinks the label is getting too close to the edge of the graph and attempts to reposition the label. Unfortunately the code was a little buggy and the label was getting positioned in the exact same spot, but we weren't checking to see if we'd already tried to reposition the label, and so it endlessly cycled.
    Sorry about the inconvenience.
    Kevin B.
    National Instruments

  • Skype 4.2.0.11 has abnormally high CPU usage while...

    Skype 4.2.0.11 has abnormally high CPU usage while idle.
    I can't get my laptop under 70 degrees celsius unless I cpulimit or quit skype, and cpulimiting it actually makes it completely unresponsive, as if some other thread is constantly generating a lot of work and taking priority over the UI thread.
    What the heck is skype doing? (And why do any of its threads need nice -10?) It takes up more CPU time than pulseaudio, truecrypt, and deluged combined.
    Its CPU usage is constantly between 5 and 50 percent*, it's absolutely horrible.
    *While idle. I'm unable to make calls.
    I know this is expected from a linux user, but for all I know, Skype is malware. It's not open-source, so I can't find out for myself, and there are no open-source alternatives so the frankly shameful amount of bugs I encounter in Skype will never be fixed.
    There are several bugs I'd love to be fixed in Skype, but first, PLEASE, optimize your code. It's absolutely horriffic at the moment.

    Attached are statistics from my desktop over approximately a 24 hour period for the processes shown (other than firefox and adb).
    Pulseaudio tops skype this time but that's because I've had music playing through mpd for a few hours. Skype uses more than 16 times the CPU that pidgin does, and almost double the RAM! RAM isn't shown in the screenshot but take my word for it. Bear in mind that I haven't taken (or made) any calls in this period of time, and pidgin has been signed into three different services and using encrypted chat.
    I really wish that at least the protocol would be documented so someone could work around this, at the moment I don't think the guys writing skype realize just how unstable the linux port is. At least it's better than the Android port.
    [Edit for those unfamiliar with linux processes: "TIME" is the cumulative time that the program has been scheduled for on any core, effectively making it a measure of total CPU usage for a given time period]
    Attachments:
    2014-06-22-233238_530x119_scrot.png ‏9 KB

  • High CPU usage while display is asleep

    This is a strange one, and I've noticed it on multiple distros, and Arch is no different.  When my system is sitting idle with the screen on my CPU usage hovers around 5%, which I would consider to be perfectly normal.  However, when the display goes to sleep (no screen saver, just DPMS sleep) the CPU jumps up to about 25% and stays there until I bump the mouse (or do whatever to wake the system up), and then it will drop back down to the normal 5% CPU usage. 
    I had always thought it had something to do with Firefox, but I had Firefox closed while I was away at work today, and yet when I come home and wake my computer up my CPU usage graph shows that it's been at a solid 25% all day long. 
    Anyone have any ideas what this might be, or recommend a way to hunt down exactly what process is eating my CPU cycles while the display is off?
    Thanks a lot, this has been puzzling me for some time now.
    EDIT: I should add that I am running KDE, and have been on the other distros as well (to the best of my recollection).  After realizing this it seems like this thread may be better suited for the Applications & DE forum, but I'm not sure... it could very well be something to do with the kernel or something to do with power saving.  Please move if you see fit.
    Last edited by hippieben (2014-09-07 00:17:46)

    The CPU usage is not accounted for in the system monitor app.  There's roughly 4% usage accounted for, yet there's a total of 29% being used.
    The script doesn't seem to find anything either.  High idle CPU usage kicks in maybe 3/4 of the way through, but the output doesn't seem to change from the beginning at all.
    ben@arch-desktop:~$ for i in $(seq 1 20); do sleep 10 && ps -eo pcpu,pid,user,args | sort -rk1 | head -6; done
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    %CPU PID USER COMMAND
    6.0 428 root /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-biq1sc
    3.8 3690 ben /usr/lib/firefox/plugin-container /usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 3231 plugin
    2.4 4910 ben /usr/bin/systemsettings -caption System Settings --icon preferences-system
    2.4 14853 ben clementine -t
    1.9 3231 ben /usr/bin/firefox
    Also, the screen doesn't have to be asleep, the system just needs to sit idle for a few minutes.
    Last edited by hippieben (2014-09-20 19:10:58)

  • CPU usage displayed by top does not make sense.

    Here is the CPU usage displayed by top (while running VirtualBox with a guest Windows 7, the Archlinux machine is the host).
    top - 11:49:07 up 54 min, 3 users, load average: 1.80, 1.18, 0.74
    Tasks: 143 total, 1 running, 142 sleeping, 0 stopped, 0 zombie
    %Cpu0 : 2.2/7.7 10[|||||||||| ]
    %Cpu1 : 2.2/7.7 10[|||||||||| ]
    %Cpu2 : 1.8/8.2 10[|||||||||| ]
    %Cpu3 : 2.2/8.8 11[||||||||||| ]
    GiB Mem : 79.4/3.796 [ ]
    GiB Swap: 5.3/3.356 [ ]
    PID USER PR NI VIRT RES %CPU %MEM TIME+ S COMMAND
    3504 oesser 20 0 4209.1m 2.396g 173.3 63.1 5:11.05 S VirtualBox
    2688 oesser 20 0 997.1m 273.6m 0.0 7.0 0:27.96 S firefox
    3204 oesser 20 0 949.7m 64.3m 0.0 1.7 0:02.24 S VirtualBox
    2812 oesser 20 0 1015.5m 63.6m 0.0 1.6 0:02.10 S VirtualBox
    3068 oesser 20 0 882.8m 60.5m 0.0 1.6 0:01.66 S VirtualBox
    990 root 20 0 393.5m 40.3m 6.7 1.0 0:50.11 S Xorg
    2235 oesser 20 0 949.8m 22.2m 0.0 0.6 0:05.03 S VirtualBox
    1134 oesser 20 0 435.5m 16.4m 0.0 0.4 0:02.57 S xfce4-terminal
    318 ntp 20 0 105.3m 15.4m 0.0 0.4 0:00.14 S ntpd
    1029 oesser 20 0 208.0m 13.5m 0.0 0.3 0:05.94 S xfwm4
    2220 oesser 20 0 832.5m 12.8m 0.0 0.3 0:05.47 S VBoxSVC
    1038 oesser 20 0 612.8m 11.9m 0.0 0.3 0:00.68 S xfdesktop
    1033 oesser 20 0 385.2m 11.6m 0.0 0.3 0:01.47 S xfce4-panel
    1120 oesser 20 0 265.4m 8.3m 0.0 0.2 0:03.82 S panel-14-cpugra
    1119 oesser 20 0 196.3m 7.0m 0.0 0.2 0:00.03 S panel-4-systray
    1093 oesser 20 0 299.5m 4.4m 0.0 0.1 0:00.02 S gvfs-udisks2-vo
    1059 oesser 20 0 774.4m 4.3m 0.0 0.1 0:01.14 S AgentAntidote.b
    2778 oesser 20 0 16.7m 4.3m 0.0 0.1 0:00.02 S bash
    1019 oesser 20 0 357.8m 4.2m 0.0 0.1 0:00.05 S xfce4-session
    560 root 20 0 415.1m 4.1m 0.0 0.1 0:00.44 S udisksd
    1037 oesser 20 0 363.3m 3.7m 0.0 0.1 0:00.10 S xfsettingsd
    1380 oesser 20 0 16.7m 3.6m 0.0 0.1 0:00.09 S bash
    1064 oesser 20 0 214.3m 3.3m 0.0 0.1 0:00.01 S gvfsd
    3746 oesser 20 0 34.9m 3.3m 0.0 0.1 0:00.00 R top
    1121 oesser 20 0 489.4m 3.2m 0.0 0.1 0:00.08 S panel-2-mixer
    514 root 20 0 219.0m 3.2m 0.0 0.1 0:00.03 S upowerd
    1035 oesser 20 0 202.9m 3.1m 0.0 0.1 0:00.02 S Thunar
    2212 oesser 20 0 150.4m 3.0m 0.0 0.1 0:02.77 S VBoxXPCOMIPCD
    1022 oesser 20 0 34.6m 2.8m 0.0 0.1 0:00.02 S xfconfd
    1139 oesser 20 0 16.7m 2.7m 0.0 0.1 0:00.03 S bash
    1058 oesser 20 0 462.8m 2.6m 0.0 0.1 0:00.04 S xfce4-volumed
    1048 oesser 20 0 268.2m 2.6m 0.0 0.1 0:00.04 S xfce4-power-man
    1067 oesser 20 0 42.6m 2.5m 0.0 0.1 0:00.00 S gconfd-2
    1045 oesser 20 0 365.9m 2.4m 0.0 0.1 0:00.10 S polkit-gnome-au
    1 root 20 0 33.5m 2.3m 0.0 0.1 0:00.36 S systemd
    1012 oesser 20 0 30.7m 2.1m 0.0 0.1 0:00.09 S dbus-daemon
    1077 oesser 20 0 357.7m 2.0m 0.0 0.1 0:00.00 S gvfsd-fuse
    446 polkitd 20 0 505.5m 1.9m 0.0 0.1 0:00.04 S polkitd
    422 oesser 20 0 34.9m 1.9m 0.0 0.0 0:00.00 S systemd
    1073 oesser 20 0 30.3m 1.9m 0.0 0.0 0:00.05 S dbus-daemon
    266 dbus 20 0 30.6m 1.8m 0.0 0.0 0:00.03 S dbus-daemon
    999 root 20 0 72.4m 1.8m 0.0 0.0 0:00.00 S lxdm-session
    179 root 20 0 34.2m 1.8m 0.0 0.0 0:00.08 S systemd-udevd
    1106 oesser 20 0 366.8m 1.7m 0.0 0.0 0:00.00 S gvfsd-trash
    1086 oesser 20 0 120.2m 1.7m 0.0 0.0 0:00.17 S at-spi2-registr
    263 root 20 0 14.8m 1.7m 0.0 0.0 0:00.01 S systemd-logind
    297 root 20 0 20.1m 1.6m 0.0 0.0 0:00.30 S lxdm-binary
    1138 oesser 20 0 8.2m 1.3m 0.0 0.0 0:00.00 S gnome-pty-helpe
    1000 oesser 20 0 13.7m 1.3m 0.0 0.0 0:00.00 S sh
    144 root 20 0 29.7m 1.3m 0.0 0.0 0:00.09 S systemd-journal
    459 oesser 20 0 161.7m 1.2m 0.0 0.0 0:00.06 S gpg-agent
    307 root 20 0 4.4m 1.0m 0.0 0.0 0:00.10 S dhcpcd
    1062 oesser 20 0 255.6m 1.0m 0.0 0.0 0:00.00 S at-spi-bus-laun
    1011 oesser 20 0 17.6m 0.9m 0.0 0.0 0:00.00 S dbus-launch
    423 oesser 20 0 80.0m 0.0m 0.0 0.0 0:00.00 S (sd-pam)
    457 oesser 20 0 13.0m 0.0m 0.0 0.0 0:00.00 S ssh-agent
    1025 oesser 20 0 13.0m 0.0m 0.0 0.0 0:00.00 S ssh-agent
    2 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S kthreadd
    3 root 20 0 0.0m 0.0m 0.0 0.0 0:02.94 S ksoftirqd/0
    5 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/0:0H
    7 root 20 0 0.0m 0.0m 0.0 0.0 0:02.39 S rcu_preempt
    8 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S rcu_sched
    9 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S rcu_bh
    10 root rt 0 0.0m 0.0m 0.0 0.0 0:00.00 S migration/0
    11 root rt 0 0.0m 0.0m 0.0 0.0 0:00.00 S watchdog/0
    12 root rt 0 0.0m 0.0m 0.0 0.0 0:00.00 S watchdog/1
    13 root rt 0 0.0m 0.0m 0.0 0.0 0:00.00 S migration/1
    14 root 20 0 0.0m 0.0m 0.0 0.0 0:02.55 S ksoftirqd/1
    16 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/1:0H
    17 root rt 0 0.0m 0.0m 0.0 0.0 0:00.00 S watchdog/2
    18 root rt 0 0.0m 0.0m 0.0 0.0 0:00.00 S migration/2
    19 root 20 0 0.0m 0.0m 0.0 0.0 0:01.28 S ksoftirqd/2
    21 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/2:0H
    22 root rt 0 0.0m 0.0m 0.0 0.0 0:00.00 S watchdog/3
    23 root rt 0 0.0m 0.0m 0.0 0.0 0:00.00 S migration/3
    24 root 20 0 0.0m 0.0m 0.0 0.0 0:00.47 S ksoftirqd/3
    26 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/3:0H
    27 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S khelper
    28 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S kdevtmpfs
    29 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S netns
    30 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S perf
    31 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S khungtaskd
    32 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S writeback
    33 root 25 5 0.0m 0.0m 0.0 0.0 0:00.00 S ksmd
    34 root 39 19 0.0m 0.0m 0.0 0.0 0:00.27 S khugepaged
    35 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S crypto
    36 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kintegrityd
    37 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S bioset
    38 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kblockd
    39 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S devfreq_wq
    41 root 20 0 0.0m 0.0m 0.0 0.0 2:31.11 S kswapd0
    42 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S fsnotify_mark
    47 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kthrotld
    51 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S deferwq
    83 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S ata_sff
    84 root 20 0 0.0m 0.0m 0.0 0.0 0:00.38 S kworker/3:1
    85 root 20 0 0.0m 0.0m 0.0 0.0 0:00.48 S kworker/1:2
    86 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_eh_0
    87 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_tmf_0
    88 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_eh_1
    89 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_tmf_1
    90 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_eh_2
    91 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_tmf_2
    92 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_eh_3
    93 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_tmf_3
    94 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_eh_4
    95 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_tmf_4
    96 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_eh_5
    97 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S scsi_tmf_5
    100 root 20 0 0.0m 0.0m 0.0 0.0 0:02.53 S kworker/u8:4
    106 root 0 -20 0.0m 0.0m 0.0 0.0 0:01.39 S kworker/0:1H
    107 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.57 S kworker/1:1H
    108 root 0 -20 0.0m 0.0m 0.0 0.0 0:05.04 S kworker/2:1H
    111 root 20 0 0.0m 0.0m 0.0 0.0 0:00.16 S kworker/2:2
    120 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.80 S kworker/3:1H
    123 root 20 0 0.0m 0.0m 0.0 0.0 0:00.07 S jbd2/sda2-8
    124 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S ext4-rsv-conver
    152 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/3:3
    159 root 20 0 0.0m 0.0m 0.0 0.0 0:00.88 S kworker/0:2
    203 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S edac-poller
    204 root -51 0 0.0m 0.0m 0.0 0.0 0:00.00 S irq/27-mei_me
    212 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S acpi_thermal_pm
    238 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kpsmoused
    241 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S hd-audio1
    246 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S hd-audio0
    258 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S led_workqueue
    269 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kvm-irqfd-clean
    298 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S cfg80211
    301 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S kfd_process_wq
    303 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S ttm_swap
    379 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S radeon-crtc
    380 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S radeon-crtc
    381 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S radeon-crtc
    382 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S radeon-crtc
    383 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S radeon-crtc
    384 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S radeon-crtc
    886 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S iprt
    1201 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/1:0
    1698 root 20 0 0.0m 0.0m 0.0 0.0 0:00.46 S kworker/2:1
    1922 root 0 -20 0.0m 0.0m 0.0 0.0 0:00.00 S dio/sda2
    1923 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/u8:0
    3098 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/0:1
    3722 root 20 0 0.0m 0.0m 0.0 0.0 0:00.00 S kworker/0:0
    So VirtualBox is using 173% of my CPU time (how is this possible?), but I see only 1% or 2% on each logical CPU. My CPU is an "i3-3240 CPU @ 3.40GHz" (2 physical cores, 4 logical cores) and the kernel is 3.19.3-3-ARCH (latest official Archlinux kernel). How is this possible? What's happening here? Is it a bug or do I completely misunderstand what these stats mean?

    Top does add up your multicore usage. So if a process is using two cores at 100% it is using 200%.
    However something does not add up in correctly in your case.
    I've found top to be kind of unreliable in multicore (especially with hyper threading) systems.

  • Prstat displays PROCESS/NLWP  with /0 , but high USR and SYS  cpu usage

    I'm running prstat on Sol 10u4 sparc and see from time to time one of more processes with high user and kernel cpu usage, The process name is just displayed as " /0". What is this ?
    see sample snapshot below:
    PID USERNAME USR SYS TRP TFL DFL LCK SLP LAT VCX ICX SCL SIG PROCESS/NLWP
    18738 root 18 42 3.5 0.0 0.0 0.0 36 0.5 123 247 15K 0 sort/1
    18728 root 10 30 1.0 0.0 0.0 0.0 0.0 59 0 361 16K 0 /0
    18737 root 6.8 15 2.1 0.0 0.0 0.0 75 0.2 82 82 5K 0 awk/1
    18731 root 5.2 12 1.3 0.0 0.0 0.0 80 1.5 68 0 5K 0 /0
    18730 root 4.8 10 1.1 0.0 0.0 0.0 82 1.4 58 58 4K 0 /0
    18736 root 4.4 10 1.1 0.0 0.0 0.0 84 0.1 63 0 4K 0 grep/1
    18732 root 3.0 11 2.1 0.0 0.0 0.0 0.0 84 0 45 3K 0 head/1
    18735 root 4.3 9.2 1.1 0.0 0.0 0.0 85 0.1 57 57 3K 0 grep/1
    18729 root 4.3 8.7 1.2 0.0 0.0 0.0 84 1.3 103 51 3K 0 /0
    18734 root 3.7 8.9 1.0 0.0 0.0 0.0 86 0.5 52 52 3K 0 grep/1

    The slash number format is used to show the number of threads (light weight processes or LWP in Solaris parlance) in a given process (see the header says "PROCESS/NLWP"). I'd guess this is a race condition where prstat finds a process exists and has consumed some CPU, but when it goes to query the data on the process it's already exited so there's no process name and zero threads associated with it. For this to be true and to see this except more than every once in a blue-moon you'd have to have a system that was having processes forked at an amazing rate.
    I'd also say this is a bug, but one that you might have a hard time getting an traction on.

  • Flash causing abnormally high CPU usage and overheating when browsing internet

    Hello,
    Flash Player (Safari Internet plug-in) spikes to 110-120% of my CPU usage while browsing the internet. This also causes my computer to overheat. (This also occurs when using Firefox)
    I am running OSX 10.8.4 and I am using Adobe Flash Player 11.8.800.94
    I have tried uninstalling through the Adobe uninstaller and resetting Safari and my computer.
    I contacted apple care and they said it was a problem with Adobe and I needed to contact you guys.
    Thank you for your help.
    Justin

    The link you posted is fine. its only around 9%
    Here is an example of a page that causes my CPU to freak out
    http://forums.prosportsdaily.com/forumdisplay.php?143-Soccer

  • Drop in CPU Usage

    Hello Apple family,
    I'm having an issue with my Macbook that is rather surprising. Couple days ago I formatted it since it was almost 3 years since the last one and it was running a Lion install on top of a Snow Leopard install and it was in need of a good summer cleaning. I also had noticed that some of the more heavy tasks I was probably making on it were a bit slow, as in casual gaming and watching videos. So I started a fresh install, here is basically everything I installed:
    I also installed via Homebrew: git and postgresql (and their dependecies).
    Other little things I've installed or changes I've made:
    Installed OSX FUSE
    Installed Apple Command Line Tools
    Installed Zend Framework
    Disabled Dashboard
    When I finally reached running a game, I got the exact same issue I was having before the format, and let me describe that. At first I start running the task and it behaves very well, all computer is fluid no matter what.
    The problem occurs after a more or less 30 seconds: the cpu usage drops. I don't see any other process taking its place or fighting for the same resources, the only process noticed that rises a bit more is kernel_task (it jumps from 5-6% to 10-12%), but I guess its normal since we are talking about more intensive tasks for the kernel. Here is a some screenshots of the problem playing Heroes of Newerth (I'm using atMonitor and the Apple Activity Monitor).
    Normal behavior, high CPU usage
    CPU usage drops
    CPU usage comes back to normal
    I also had this same problem in other games (Swords and Soldiers e.g.) and also watching flash videos (ESPN.com).
    Lets focus on this screenshot in particular. At the moment of the screen shot you can see the process is behaving normally: processor is at 77%, GPU is at 46% and FPS are at 27. But if you take a look at the panel on the right side, you can see the history before that:
    CPU dropped to 10-15% and before that was on the values that were expected.
    Same thing for GPU: at the moment is at 46%, but before that was at 5% and at the start was at 46% as expected.
    FPS also oscillate from 27FPS when the system is running good, to 5FPS when the system is running "low". I guess its a consequence of the other 2 behaving abnormally.
    Also worth notice, the RAM is never near full (as you can see from the screenshot above it stays around 50%); and the log (any of them) are not displaying any message when the system "drops".
    Some procedures I already took:
    Reset PRAM, SMC
    Apple Hardware Test: It hang up 2 times, both at the same spot: logic board
    Repaired disk and disk permissions (from the boot DVD)
    Reseted Spotlight index (it was my first suspicion that was wrong after all)
    I'm really hopeless here. I've googled thousands of stuff, but they are all the opposite of my issue - usually complaining about high CPU usage. Hope someone can point me into some direction. I hope the post has all the information needed, if you need anything else just ask.
    Thank you all.
    PS: Sorry about any english mistakes.

    A couple of things I think you should check:
    1) Regarding using 200 users and having a queue of thousands of requests... When you say that you have 200 users, this means that you will have maximum 200 threads simultaneously on the client side, right?
    2) What is the read timeout on the client side? That could explain the number of threads in use in weblogic. Threads might be left running, and if the client stops waiting for the response and initiates a new connection, it could lead to the scenario you are describing.
    3) As you said that the web application starts consuming less CPU when the issue happens and at the same time the queue increases, it seems to me that you might have a contention on the webservices. Are you also monitoring the webservices? Do they run in a different server? Is it deployed on the same physical server but in different weblogic server, or it's deployed in the same weblogic server?
    4) Did you run performance test in the webservices on their own to make sure that they scale?
    5) In this situation, I would run a separate performance test against the webservices. Then I would stub the webservices and run a performance test in the web application. By stubbing the webservices, I'm able to create any kind of behaviour I want. E.g: Simulate slow response times, respond under a consistent response time, etc.
    6) Is there a read timeout between the web application and the web service?
    Regards,
    Fabio Douek
    Edited by: Fabio Douek on Mar 13, 2013 3:25 PM

  • CPU usage observations

    When my system is idle (running only X, OpenBox, Conky, Visibility and autocutsel),  the CPU usage is 5-7%. When I run Audacious - just open it without playing music - the usage goes to about 20%. AFAIR under Windows XP on the same machine idle CPU usage was 0-2% and around 5-6% when playing music with Foobar2000.
    My question is: does Linux use more CPU than Windows when performing similar tasks, or the difference is caused by different methods of measuring CPU usage?
    Here's a list of daemons, that run on my system's start:
    syslog-ng network netfs crond autofs acpid sensors
    Here's a list of programs in my .xinitrc:
    autocutsel -selection PRIMARY -fork &
    autocutsel -selection CLIPBOARD -fork &
    conky &
    visibility &
    openbox
    My CPU is Athlon 2000 XP.
    I also noticed other thing, that I don't understand. When I check system load under htop, the sum of CPU usages of particular programs (2.1%) doesn't add up to overall CPU usage (7.3%). Here's an example screenshot of htop:
    How to explain above observations?
    Some time passes...
    OK, I already figured out answer for above questions. top displays the following information:
    Cpu(s): 3.3%us, 3.0%sy, 0.0%ni, 70.2%id, 0.0%wa, 0.0%hi, 23.5%si, 0.0%st
    So I assume, that Task Manager under Windows XP displays only "us" and under Linux htop by default shows total CPU usage in the meter in top left corner and "us" for particular processes.
    But now I have other questions:
    1. What do those abbreviations like "us", "sy" etc. stand for? I'm guessing, that us = user, sy = system, ni = nice and id = idle, but the others?
    2. What those different usages really mean?
    3. Which CPU usage is most relevant from perspective of desktop system user?
    Last edited by dyzdyz (2007-03-03 20:37:23)

    lucke wrote:Such high %si might denote some problem, unless you were doing something peculiar that time.
    When I run Firefox with one open tab (this thread) and download one file with wget at 50 kb/s, %si is 5-6%. When I additionally play music with Audacious, %si goes to 20-25%. When I play music with mplayer instead, %si goes to ~8%. Above figures were measured by top.
    Update #1:
    htop shows 0% si while top shows 25% si. Now I'm really confused.
    Update #2:
    I installed xosview, which shows active interrupts. Here's a screenshot:
    LEDs #1, #17 & #21 are on all the time, #2 & #13 blink rarely. #19 blinks 2-3 times a second, when music is being played with Audacious and is on constantly, when music is being played with mplayer.
    Last edited by dyzdyz (2007-03-03 22:23:04)

  • High CPU usage when laptop is idle!

    Hi,
    After upgrade CPU usage is 20-30 % when laptop is idle.This happens for the first time,i use arch for about 2 months.
    WM: Openbox.Here is what "top" gives me:
    [dejan@DejanArch ~]$ top
    top - 01:52:33 up 20 min, 0 users, load average: 0.13, 0.14, 0.13
    Tasks: 123 total, 2 running, 120 sleeping, 0 stopped, 1 zombie
    Cpu(s): 7.6%us, 16.7%sy, 0.0%ni, 75.0%id, 0.5%wa, 0.0%hi, 0.2%si, 0.0%st
    Mem: 1019104k total, 587564k used, 431540k free, 37668k buffers
    Swap: 2048280k total, 0k used, 2048280k free, 350592k cached
    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
    3531 root 20 0 71724 18m 8392 S 32 1.9 6:44.09 X
    3827 dejan 20 0 79728 5040 3992 S 7 0.5 1:10.07 conky
    3687 dejan 20 0 3432 1572 856 S 2 0.2 0:18.94 dbus-daemon
    22165 dejan 20 0 88800 9820 7172 S 1 1.0 0:00.57 lxterminal
    3704 dejan 20 0 90312 8456 6220 S 0 0.8 0:03.44 xfce4-power-man
    3787 dejan 20 0 14124 2852 2364 S 0 0.3 0:02.81 obex-data-serve
    22208 dejan 20 0 2556 984 756 R 0 0.1 0:00.06 top
    1 root 20 0 1872 552 484 S 0 0.1 0:00.78 init
    2 root 20 0 0 0 0 S 0 0.0 0:00.00 kthreadd
    3 root 20 0 0 0 0 S 0 0.0 0:00.22 ksoftirqd/0
    6 root RT 0 0 0 0 S 0 0.0 0:00.00 migration/0
    7 root RT 0 0 0 0 S 0 0.0 0:00.00 watchdog/0
    8 root RT 0 0 0 0 S 0 0.0 0:00.00 migration/1
    10 root 20 0 0 0 0 S 0 0.0 0:00.16 ksoftirqd/1
    12 root RT 0 0 0 0 S 0 0.0 0:00.00 watchdog/1
    13 root 0 -20 0 0 0 S 0 0.0 0:00.00 cpuset
    Thanks.
    Last edited by grobar87 (2011-05-16 23:54:52)

    @AliWam Thanks!Conky was the problem.When i kill conky CPU load drops.Strange :S But i want conky on my desktop,i hope there is solution for this.
    @lagagon When i kill conky cpu load is normal (0 - 2 %),with conky 20-30% when laptop is idle.This is my "lspci":
    [dejan@DejanArch ~]$ lspci
    00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 0c)
    00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 0c)
    00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (secondary) (rev 0c)
    00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 02)
    00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 02)
    00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 02)
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 02)
    00:1c.5 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 6 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f2)
    00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface Controller (rev 02)
    00:1f.2 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA IDE Controller (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 02)
    03:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev ba)
    03:01.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 04)
    03:01.2 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 21)
    09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)
    0c:00.0 Network controller: Atheros Communications Inc. AR5001 Wireless Network Adapter (rev 01)
    [dejan@DejanArch ~]$
    So i think my video card is Intel and i use the lastest intel drivers.I install with this command "pacman -S xf86-video-intel".Please tell me if i do something wrong.
    This is all i have in Xorg.0.log file:
    [ 19.630]
    X.Org X Server 1.10.1
    Release Date: 2011-04-15
    [ 19.630] X Protocol Version 11, Revision 0
    [ 19.630] Build Operating System: Linux 2.6.38-ARCH i686
    [ 19.630] Current Operating System: Linux DejanArch 2.6.38-ARCH #1 SMP PREEMPT Fri May 13 07:54:18 UTC 2011 i686
    [ 19.630] Kernel command line: root=/dev/disk/by-uuid/9931bc08-6fa4-45f2-811c-1c7eb558b92d ro
    [ 19.630] Build Date: 16 April 2011 12:05:35PM
    [ 19.630]
    [ 19.645] Current version of pixman: 0.20.2
    [ 19.645] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 19.645] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 19.645] (==) Log file: "/var/log/Xorg.0.log", Time: Wed May 18 20:00:06 2011
    [ 19.670] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 19.687] (==) No Layout section. Using the first Screen section.
    [ 19.687] (==) No screen section available. Using defaults.
    [ 19.687] (**) |-->Screen "Default Screen Section" (0)
    [ 19.687] (**) | |-->Monitor "<default monitor>"
    [ 19.688] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 19.688] (==) Automatically adding devices
    [ 19.688] (==) Automatically enabling devices
    [ 19.728] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 19.728] Entry deleted from font path.
    [ 19.786] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 19.786] Entry deleted from font path.
    [ 19.786] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 19.787] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 19.787] Entry deleted from font path.
    [ 19.787] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 19.787] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 19.787] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 19.787] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 19.787] (II) Loader magic: 0x81f4ee0
    [ 19.787] (II) Module ABI versions:
    [ 19.787] X.Org ANSI C Emulation: 0.4
    [ 19.787] X.Org Video Driver: 10.0
    [ 19.787] X.Org XInput driver : 12.2
    [ 19.787] X.Org Server Extension : 5.0
    [ 19.788] (--) PCI:*(0:0:2:0) 8086:2a02:1028:029a rev 12, Mem @ 0xf6e00000/1048576, 0xe0000000/268435456, I/O @ 0x0000efe8/8
    [ 19.788] (--) PCI: (0:0:2:1) 8086:2a03:1028:029a rev 12, Mem @ 0xf6f00000/1048576
    [ 19.789] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 19.789] (II) LoadModule: "extmod"
    [ 19.813] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 19.822] (II) Module extmod: vendor="X.Org Foundation"
    [ 19.822] compiled for 1.10.1, module version = 1.0.0
    [ 19.822] Module class: X.Org Server Extension
    [ 19.822] ABI class: X.Org Server Extension, version 5.0
    [ 19.822] (II) Loading extension MIT-SCREEN-SAVER
    [ 19.822] (II) Loading extension XFree86-VidModeExtension
    [ 19.822] (II) Loading extension XFree86-DGA
    [ 19.822] (II) Loading extension DPMS
    [ 19.822] (II) Loading extension XVideo
    [ 19.822] (II) Loading extension XVideo-MotionCompensation
    [ 19.822] (II) Loading extension X-Resource
    [ 19.822] (II) LoadModule: "dbe"
    [ 19.822] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 19.823] (II) Module dbe: vendor="X.Org Foundation"
    [ 19.823] compiled for 1.10.1, module version = 1.0.0
    [ 19.823] Module class: X.Org Server Extension
    [ 19.823] ABI class: X.Org Server Extension, version 5.0
    [ 19.823] (II) Loading extension DOUBLE-BUFFER
    [ 19.823] (II) LoadModule: "glx"
    [ 19.823] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 19.842] (II) Module glx: vendor="X.Org Foundation"
    [ 19.842] compiled for 1.10.1, module version = 1.0.0
    [ 19.842] ABI class: X.Org Server Extension, version 5.0
    [ 19.843] (==) AIGLX enabled
    [ 19.843] (II) Loading extension GLX
    [ 19.843] (II) LoadModule: "record"
    [ 19.844] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 19.853] (II) Module record: vendor="X.Org Foundation"
    [ 19.853] compiled for 1.10.1, module version = 1.13.0
    [ 19.853] Module class: X.Org Server Extension
    [ 19.853] ABI class: X.Org Server Extension, version 5.0
    [ 19.853] (II) Loading extension RECORD
    [ 19.853] (II) LoadModule: "dri"
    [ 19.853] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 19.876] (II) Module dri: vendor="X.Org Foundation"
    [ 19.876] compiled for 1.10.1, module version = 1.0.0
    [ 19.876] ABI class: X.Org Server Extension, version 5.0
    [ 19.876] (II) Loading extension XFree86-DRI
    [ 19.876] (II) LoadModule: "dri2"
    [ 19.877] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 19.917] (II) Module dri2: vendor="X.Org Foundation"
    [ 19.917] compiled for 1.10.1, module version = 1.2.0
    [ 19.917] ABI class: X.Org Server Extension, version 5.0
    [ 19.917] (II) Loading extension DRI2
    [ 19.917] (==) Matched intel as autoconfigured driver 0
    [ 19.917] (==) Matched vesa as autoconfigured driver 1
    [ 19.917] (==) Matched fbdev as autoconfigured driver 2
    [ 19.917] (==) Assigned the driver to the xf86ConfigLayout
    [ 19.917] (II) LoadModule: "intel"
    [ 19.917] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 19.940] (II) Module intel: vendor="X.Org Foundation"
    [ 19.940] compiled for 1.10.0.902, module version = 2.15.0
    [ 19.940] Module class: X.Org Video Driver
    [ 19.940] ABI class: X.Org Video Driver, version 10.0
    [ 19.940] (II) LoadModule: "vesa"
    [ 19.941] (WW) Warning, couldn't open module vesa
    [ 19.941] (II) UnloadModule: "vesa"
    [ 19.941] (II) Unloading vesa
    [ 19.941] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 19.941] (II) LoadModule: "fbdev"
    [ 19.941] (WW) Warning, couldn't open module fbdev
    [ 19.941] (II) UnloadModule: "fbdev"
    [ 19.941] (II) Unloading fbdev
    [ 19.941] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 19.941] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
    Sandybridge, Sandybridge
    [ 19.942] (++) using VT number 7
    [ 19.948] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 19.948] drmOpenDevice: node name is /dev/dri/card0
    [ 19.949] drmOpenDevice: open result is 9, (OK)
    [ 19.949] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 19.949] drmOpenDevice: node name is /dev/dri/card0
    [ 19.949] drmOpenDevice: open result is 9, (OK)
    [ 19.949] drmOpenByBusid: drmOpenMinor returns 9
    [ 19.949] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 19.949] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 19.949] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 19.949] (==) intel(0): RGB weight 888
    [ 19.949] (==) intel(0): Default visual is TrueColor
    [ 19.949] (II) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
    [ 19.949] (--) intel(0): Chipset: "965GM"
    [ 19.949] (**) intel(0): Relaxed fencing enabled
    [ 19.949] (**) intel(0): Framebuffer tiled
    [ 19.949] (**) intel(0): Pixmaps tiled
    [ 19.949] (**) intel(0): 3D buffers tiled
    [ 19.949] (**) intel(0): SwapBuffers wait enabled
    [ 19.949] (==) intel(0): video overlay key set to 0x101fe
    [ 19.957] (II) intel(0): Output LVDS1 has no monitor section
    [ 19.976] (II) intel(0): Output VGA1 has no monitor section
    [ 19.976] (II) intel(0): EDID for output LVDS1
    [ 19.976] (II) intel(0): Manufacturer: AUO Model: 11ec Serial#: 0
    [ 19.976] (II) intel(0): Year: 2008 Week: 1
    [ 19.977] (II) intel(0): EDID Version: 1.3
    [ 19.977] (II) intel(0): Digital Display Input
    [ 19.977] (II) intel(0): Max Image Size [cm]: horiz.: 34 vert.: 19
    [ 19.977] (II) intel(0): Gamma: 2.20
    [ 19.977] (II) intel(0): No DPMS capabilities specified
    [ 19.977] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 19.977] (II) intel(0): First detailed timing is preferred mode
    [ 19.977] (II) intel(0): redX: 0.640 redY: 0.342 greenX: 0.310 greenY: 0.580
    [ 19.977] (II) intel(0): blueX: 0.150 blueY: 0.120 whiteX: 0.313 whiteY: 0.329
    [ 19.977] (II) intel(0): Manufacturer's mask: 0
    [ 19.977] (II) intel(0): Supported detailed timing:
    [ 19.977] (II) intel(0): clock: 72.0 MHz Image Size: 344 x 193 mm
    [ 19.977] (II) intel(0): h_active: 1366 h_sync: 1414 h_sync_end 1446 h_blank_end 1486 h_border: 0
    [ 19.977] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 775 v_blanking: 806 v_border: 0
    [ 19.977] (II) intel(0): Supported detailed timing:
    [ 19.977] (II) intel(0): clock: 72.0 MHz Image Size: 344 x 193 mm
    [ 19.977] (II) intel(0): h_active: 1366 h_sync: 1414 h_sync_end 1446 h_blank_end 1486 h_border: 0
    [ 19.977] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 775 v_blanking: 806 v_border: 0
    [ 19.977] (II) intel(0): M094G€B156XW1
    [ 19.977] (II) intel(0): Unknown vendor-specific block 0
    [ 19.977] (II) intel(0): EDID (in hex):
    [ 19.977] (II) intel(0): 00ffffffffffff0006afec1100000000
    [ 19.977] (II) intel(0): 01120103902213780ae6b5a3574f9426
    [ 19.977] (II) intel(0): 1e505400000001010101010101010101
    [ 19.977] (II) intel(0): 010101010101201c5678500026303020
    [ 19.977] (II) intel(0): 340058c11000001a201c567850002630
    [ 19.977] (II) intel(0): 3020340058c11000001a000000fe004d
    [ 19.977] (II) intel(0): 30393447804231353658573100000000
    [ 19.977] (II) intel(0): 00000000000000000001010a202000df
    [ 19.977] (II) intel(0): EDID vendor "AUO", prod id 4588
    [ 19.977] (II) intel(0): Printing DDC gathered Modelines:
    [ 19.977] (II) intel(0): Modeline "1366x768"x0.0 72.00 1366 1414 1446 1486 768 771 775 806 +hsync -vsync (48.5 kHz)
    [ 19.977] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 19.977] (II) intel(0): Printing probed modes for output LVDS1
    [ 19.977] (II) intel(0): Modeline "1366x768"x60.1 72.00 1366 1414 1446 1486 768 771 775 806 +hsync -vsync (48.5 kHz)
    [ 19.977] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 19.977] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 19.977] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 19.977] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 19.996] (II) intel(0): EDID for output VGA1
    [ 19.996] (II) intel(0): Output LVDS1 connected
    [ 19.996] (II) intel(0): Output VGA1 disconnected
    [ 19.996] (II) intel(0): Using exact sizes for initial modes
    [ 19.996] (II) intel(0): Output LVDS1 using initial mode 1366x768
    [ 19.996] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 19.996] (II) intel(0): Kernel page flipping support detected, enabling
    [ 19.996] (++) intel(0): DPI set to (96, 96)
    [ 19.996] (II) Loading sub module "fb"
    [ 19.996] (II) LoadModule: "fb"
    [ 19.997] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 20.006] (II) Module fb: vendor="X.Org Foundation"
    [ 20.006] compiled for 1.10.1, module version = 1.0.0
    [ 20.006] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 20.006] (II) Loading sub module "dri2"
    [ 20.006] (II) LoadModule: "dri2"
    [ 20.007] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 20.007] (II) Module dri2: vendor="X.Org Foundation"
    [ 20.007] compiled for 1.10.1, module version = 1.2.0
    [ 20.007] ABI class: X.Org Server Extension, version 5.0
    [ 20.007] (==) Depth 24 pixmap format is 32 bpp
    [ 20.007] (II) intel(0): [DRI2] Setup complete
    [ 20.007] (II) intel(0): [DRI2] DRI driver: i965
    [ 20.007] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
    [ 20.041] (II) UXA(0): Driver registered support for the following operations:
    [ 20.041] (II) solid
    [ 20.041] (II) copy
    [ 20.041] (II) composite (RENDER acceleration)
    [ 20.041] (II) put_image
    [ 20.041] (II) get_image
    [ 20.041] (==) intel(0): Backing store disabled
    [ 20.041] (==) intel(0): Silken mouse enabled
    [ 20.042] (II) intel(0): Initializing HW Cursor
    [ 20.063] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 20.063] (==) intel(0): DPMS enabled
    [ 20.063] (==) intel(0): Intel XvMC decoder enabled
    [ 20.063] (II) intel(0): Set up textured video
    [ 20.063] (II) intel(0): Set up overlay video
    [ 20.063] (II) intel(0): [XvMC] i965_xvmc driver initialized.
    [ 20.063] (II) intel(0): direct rendering: DRI2 Enabled
    [ 20.063] (==) intel(0): hotplug detection: "enabled"
    [ 20.064] (--) RandR disabled
    [ 20.064] (II) Initializing built-in extension Generic Event Extension
    [ 20.064] (II) Initializing built-in extension SHAPE
    [ 20.064] (II) Initializing built-in extension MIT-SHM
    [ 20.064] (II) Initializing built-in extension XInputExtension
    [ 20.064] (II) Initializing built-in extension XTEST
    [ 20.064] (II) Initializing built-in extension BIG-REQUESTS
    [ 20.064] (II) Initializing built-in extension SYNC
    [ 20.064] (II) Initializing built-in extension XKEYBOARD
    [ 20.064] (II) Initializing built-in extension XC-MISC
    [ 20.064] (II) Initializing built-in extension SECURITY
    [ 20.064] (II) Initializing built-in extension XINERAMA
    [ 20.064] (II) Initializing built-in extension XFIXES
    [ 20.064] (II) Initializing built-in extension RENDER
    [ 20.064] (II) Initializing built-in extension RANDR
    [ 20.064] (II) Initializing built-in extension COMPOSITE
    [ 20.064] (II) Initializing built-in extension DAMAGE
    [ 20.210] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 20.210] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 20.210] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 20.210] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 20.210] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 20.210] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
    [ 20.210] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 20.211] (II) intel(0): Setting screen physical size to 361 x 203
    [ 20.500] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 20.500] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 20.500] (II) LoadModule: "evdev"
    [ 20.500] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 20.514] (II) Module evdev: vendor="X.Org Foundation"
    [ 20.514] compiled for 1.10.0, module version = 2.6.0
    [ 20.514] Module class: X.Org XInput Driver
    [ 20.514] ABI class: X.Org XInput driver, version 12.2
    [ 20.514] (II) Using input driver 'evdev' for 'Video Bus'
    [ 20.514] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 20.514] (**) Video Bus: always reports core events
    [ 20.514] (**) Video Bus: Device: "/dev/input/event7"
    [ 20.530] (--) Video Bus: Found keys
    [ 20.530] (II) Video Bus: Configuring as keyboard
    [ 20.530] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/LNXVIDEO:01/input/input7/event7"
    [ 20.530] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 20.530] (**) Option "xkb_rules" "evdev"
    [ 20.530] (**) Option "xkb_model" "evdev"
    [ 20.530] (**) Option "xkb_layout" "us"
    [ 20.564] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 20.564] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 20.564] (II) Using input driver 'evdev' for 'Power Button'
    [ 20.564] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 20.564] (**) Power Button: always reports core events
    [ 20.564] (**) Power Button: Device: "/dev/input/event2"
    [ 20.580] (--) Power Button: Found keys
    [ 20.580] (II) Power Button: Configuring as keyboard
    [ 20.580] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 20.580] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 20.580] (**) Option "xkb_rules" "evdev"
    [ 20.580] (**) Option "xkb_model" "evdev"
    [ 20.580] (**) Option "xkb_layout" "us"
    [ 20.580] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 20.580] (II) No input driver/identifier specified (ignoring)
    [ 20.581] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 20.581] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 20.581] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 20.581] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 20.581] (**) Sleep Button: always reports core events
    [ 20.581] (**) Sleep Button: Device: "/dev/input/event3"
    [ 20.596] (--) Sleep Button: Found keys
    [ 20.596] (II) Sleep Button: Configuring as keyboard
    [ 20.596] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event3"
    [ 20.596] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    [ 20.596] (**) Option "xkb_rules" "evdev"
    [ 20.596] (**) Option "xkb_model" "evdev"
    [ 20.596] (**) Option "xkb_layout" "us"
    [ 20.600] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 20.600] (II) No input driver/identifier specified (ignoring)
    [ 20.600] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event10)
    [ 20.600] (II) No input driver/identifier specified (ignoring)
    [ 20.601] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event11)
    [ 20.601] (II) No input driver/identifier specified (ignoring)
    [ 20.601] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event9)
    [ 20.601] (II) No input driver/identifier specified (ignoring)
    [ 20.607] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 20.607] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 20.607] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 20.607] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 20.607] (**) AT Translated Set 2 keyboard: always reports core events
    [ 20.607] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 20.640] (--) AT Translated Set 2 keyboard: Found keys
    [ 20.640] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 20.640] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 20.640] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 20.640] (**) Option "xkb_rules" "evdev"
    [ 20.640] (**) Option "xkb_model" "evdev"
    [ 20.640] (**) Option "xkb_layout" "us"
    [ 20.641] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/event4)
    [ 20.641] (**) PS/2 Mouse: Applying InputClass "evdev pointer catchall"
    [ 20.641] (II) Using input driver 'evdev' for 'PS/2 Mouse'
    [ 20.641] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 20.641] (**) PS/2 Mouse: always reports core events
    [ 20.641] (**) PS/2 Mouse: Device: "/dev/input/event4"
    [ 20.660] (--) PS/2 Mouse: Found 3 mouse buttons
    [ 20.660] (--) PS/2 Mouse: Found relative axes
    [ 20.660] (--) PS/2 Mouse: Found x and y relative axes
    [ 20.660] (II) PS/2 Mouse: Configuring as mouse
    [ 20.660] (**) PS/2 Mouse: YAxisMapping: buttons 4 and 5
    [ 20.660] (**) PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 20.660] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input4/event4"
    [ 20.660] (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
    [ 20.660] (II) PS/2 Mouse: initialized for relative axes.
    [ 20.660] (**) PS/2 Mouse: (accel) keeping acceleration scheme 1
    [ 20.660] (**) PS/2 Mouse: (accel) acceleration profile 0
    [ 20.660] (**) PS/2 Mouse: (accel) acceleration factor: 2.000
    [ 20.660] (**) PS/2 Mouse: (accel) acceleration threshold: 4
    [ 20.660] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/mouse0)
    [ 20.660] (II) No input driver/identifier specified (ignoring)
    [ 20.661] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event5)
    [ 20.661] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "evdev touchpad catchall"
    [ 20.661] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
    [ 20.661] (II) LoadModule: "synaptics"
    [ 20.661] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 20.667] (II) Module synaptics: vendor="X.Org Foundation"
    [ 20.667] compiled for 1.10.0, module version = 1.4.0
    [ 20.667] Module class: X.Org XInput Driver
    [ 20.667] ABI class: X.Org XInput driver, version 12.2
    [ 20.667] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
    [ 20.667] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 20.667] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 20.667] (**) Option "Device" "/dev/input/event5"
    [ 20.793] (--) AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023
    [ 20.793] (--) AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767
    [ 20.793] (--) AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
    [ 20.793] (--) AlpsPS/2 ALPS GlidePoint: buttons: left right middle
    [ 20.793] (--) AlpsPS/2 ALPS GlidePoint: invalid finger width range. defaulting to 0 - 16
    [ 20.793] (**) Option "TapButton1" "0"
    [ 20.793] (**) Option "TapButton2" "2"
    [ 20.793] (**) Option "TapButton3" "3"
    [ 20.900] (--) AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 20.900] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 20.953] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event5"
    [ 20.953] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD)
    [ 20.953] (**) AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
    [ 20.953] (**) AlpsPS/2 ALPS GlidePoint: MaxSpeed is now 1.75
    [ 20.953] (**) AlpsPS/2 ALPS GlidePoint: AccelFactor is now 0.156
    [ 20.953] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
    [ 20.953] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
    [ 20.953] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
    [ 20.953] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
    [ 20.986] (--) AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 20.987] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse1)
    [ 20.987] (II) No input driver/identifier specified (ignoring)
    [ 20.989] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event6)
    [ 20.989] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 20.989] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    [ 20.989] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 20.989] (**) Dell WMI hotkeys: always reports core events
    [ 20.989] (**) Dell WMI hotkeys: Device: "/dev/input/event6"
    [ 20.996] (--) Dell WMI hotkeys: Found keys
    [ 20.996] (II) Dell WMI hotkeys: Configuring as keyboard
    [ 20.996] (**) Option "config_info" "udev:/sys/devices/virtual/input/input6/event6"
    [ 20.996] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD)
    [ 20.996] (**) Option "xkb_rules" "evdev"
    [ 20.996] (**) Option "xkb_model" "evdev"
    [ 20.996] (**) Option "xkb_layout" "us"
    Thanks for your patience and thanks for help

Maybe you are looking for