[SOLVED] Thunderbird integration with KDE Digital Clock Widget

Is there a way to integrate Thunderbird's Lightning calendar extension with the KDE Digital Clock widget (default clock) so that clicking on it shows you your calendar events? Something similar like using the Evolution Data Server Mirror to sync with the GNOME Panel clock.
I have tried fiddling with various widgets, exporting iCalendars and importing with Personal Information settings, but nothing has worked so far.
Last edited by cornelus (2012-06-07 08:45:16)

Hello
I use these steps in Thunderbird 31:
"New Calendar" >> "On the Network" >> "iCalendar (ICS)"
and use the "file://" protocol for the "Location" and give it the path of iCalendar file I use in the Akonadi/KOrganizer, i.e: "file:///home/MYNAME/calendar.ics"
also check the calndar "Properties" and uncheck the "Read Only", if it is necessary.

Similar Messages

  • Digital Clock Widget for OS X

    Hi, I've just bought a Mac Air (OS X 10.8). Does anyone know of any digital world clock widgets for dashboard? I'd like something similar to the digital clock available on my iphone where I can show the time and date of various countries around the world simultaneously.
    I've searched for hours and cant find many digital clock widgets at all. Can anyone help?
    Thanks

    The links don't allow to download anymore, at least not from Firefox and I cannot spend all my times juggling between three web browsers because now web development is becoming browser-targeted. I am just getting a page describing the applications. Links either go to a widget browser or to Apple's page describing the Mac computer. Moreover, the Mac page somehow disables keyboard shortcut for Back in Firefox, which is an additional unnecessary annoyance. I needed a digital clock widget to work around the fact that the time displayed in the upper right corner of the screen is in a too small font for me to read comfortably, and there is no way to enlarge the font. Seems I have to take the plunge and write myself a small application, quite bad that something so basic is not out of the box and download links are always broken or outdated.

  • [Solved] Icon changing with Vicious, based on widget value (AwesomeWM)

    Ideally, I want to be able to use Vicious (or some other suitable library, but Vicious seems to be the best) to allow the icons I set for widgets to change colors upon certain states. I achieved this with conky + dzen2: for example, my widget icon plus text would change from blue to red when I receive a new message, battery charge went to a certain level, etc.
    So, the Vicious README establishes that widgets can use functions to shape output based on the returned values. This would be sufficient, except I wish to also change the icon, either the color or if it appears at all.
    For that latter point, I bring you to the problem at hand. I am trying to write an MPD vicious widget that will, if nothing is playing, output nothing (including no icon);  if it is playing, it will initialize the imagebox widget of the icon, and also output the now playing text. As one could observe, I have just followed the Vicious README when doing this, modifying it to also (ideally) create an imagebox when something is playing.
    However, nothing is output to the wibox, whether something is playing or not.
    I am very new to Lua, so perhaps I am making some trivial error, I would just like to find some way to make this happen.
    You can find my entire rc.lua here, but here is the widgets/wibox portion:
    -- {{{ Widgets
    -- Containers
    topbar = {}
    bottombar = {}
    -- Generic widgets
    clock = awful.widget.textclock({align = "right"}, "%a %b %d, %I:%M %p")
    mysystray = widget({ type = "systray" })
    seperator = widget({ type = "textbox" })
    seperator.text = " | "
    spacer = widget({ type = "textbox" })
    spacer.width = 6
    -- Set all the icons needed
    cpuicon = widget ({ type = "textbox" })
    cpuicon.bg_image = image(beautiful.widget_cpu)
    cpuicon.bg_align = "middle"
    cpuicon.width = 8
    tempicon = widget ({ type = "textbox" })
    tempicon.bg_image = image(beautiful.widget_temp)
    tempicon.bg_align = "middle"
    tempicon.width = 8
    -- They continue in this format
    -- Create some widgets...
    cpuinfo = widget ({ type = "textbox" })
    cputemp = widget ({ type = "textbox" })
    meminfo = widget ({ type = "textbox" })
    spkrinfo = widget ({ type = "textbox" })
    headinfo = widget ({ type = "textbox" })
    netdowninfo = widget ({ type = "textbox" })
    netupinfo = widget ({ type = "textbox" })
    mailinfo = widget ({ type = "textbox" })
    pacinfo = widget ({ type = "textbox" })
    battinfo = widget ({ type = "textbox" })
    mpdinfo = widget ({ type = "textbox" })
    -- ... And register them
    vicious.register(cpuinfo, vicious.widgets.cpu, "$1% / $2%")
    vicious.register(cputemp, vicious.widgets.thermal, "$1 C", 19, "thermal_zone0")
    vicious.cache(vicious.widgets.mem)
    vicious.register(meminfo, vicious.widgets.mem, "$1% ($2Mb)", 5)
    vicious.cache(vicious.widgets.volume)
    vicious.register(spkrinfo, vicious.widgets.volume, "$1", 11, "Speaker")
    vicious.register(headinfo, vicious.widgets.volume, "$1", 11, "Headphone")
    vicious.cache(vicious.widgets.net)
    vicious.register(netdowninfo, vicious.widgets.net, "${wlan0 down_kb}", 3)
    vicious.register(netupinfo, vicious.widgets.net, "${wlan0 up_kb}", 3)
    vicious.register(mailinfo, vicious.widgets.gmail, "${count}", 61)
    vicious.register(pacinfo, vicious.widgets.pkg, "$1", 301, "Arch")
    vicious.register(battinfo, vicious.widgets.bat, "$2%", 59, "BAT0")
    -- Here is my MPD widget that is troublesome:
    vicious.register(mpdinfo, vicious.widgets.mpd,
    function (widget, args)
    if args["{state}"] == "Stop" then return ""
    else
    mpdicon = widget ({ type = "textbox" })
    mpdicon.bg_image = image(beautiful.widget_mpd)
    mpdicon.bg_align = "middle"
    mpdicon.width = 8
    return "MPD: " .. args["{Artist}"] .. ' - ' .. args["{Title}"]
    end
    end)
    -- Create a wibox for each screen and add it
    mylayoutbox = {}
    mytaglist = {}
    mytaglist.buttons = awful.util.table.join(
    awful.button({ }, 1, awful.tag.viewonly),
    awful.button({ modkey }, 1, awful.client.movetotag),
    awful.button({ }, 3, awful.tag.viewtoggle),
    awful.button({ modkey }, 3, awful.client.toggletag),
    awful.button({ }, 4, awful.tag.viewnext),
    awful.button({ }, 5, awful.tag.viewprev)
    mytasklist = {}
    mytasklist.buttons = awful.util.table.join(
    awful.button({ }, 1, function (c)
    if not c:isvisible() then
    awful.tag.viewonly(c:tags()[1])
    end
    client.focus = c
    c:raise()
    end),
    awful.button({ }, 3, function ()
    if instance then
    instance:hide()
    instance = nil
    else
    instance = awful.menu.clients({ width=250 })
    end
    end),
    awful.button({ }, 4, function ()
    awful.client.focus.byidx(1)
    if client.focus then client.focus:raise() end
    end),
    awful.button({ }, 5, function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end))
    for s = 1, screen.count() do
    -- Set a screen margin, for borders
    awful.screen.padding( screen[s], {top = 1, bottom = 1} )
    -- Create the layout box, taglist, and tasklist widgets
    mylayoutbox[s] = awful.widget.layoutbox(s)
    mylayoutbox[s]:buttons(awful.util.table.join(
    awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
    awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
    mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
    mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
    -- Create the bars
    topbar[s] = awful.wibox({
    position = "top", screen = s, height = 13,
    fg = beautiful.fg_normal, bg = beautiful.bg_normal,
    border_width = beautiful.border_width,
    border_color = beautiful.border_normal,
    cursor = "/usr/share/themes/Human/cursor.theme"
    bottombar[s] = awful.wibox({
    position = "bottom", screen = s, height = 13,
    fg = beautiful.fg_normal, bg = beautiful.bg_normal,
    border_width = beautiful.border_width,
    border_color = beautiful.border_normal
    -- Create a table of widgets
    right_aligned = { layout = awful.widget.layout.horizontal.rightleft}
    if s == 1 then table.insert(right_aligned, mysystray) end
    table.insert(right_aligned, mylayoutbox[s])
    topbar[s].widgets = {
    mytaglist[s],
    right_aligned,
    mytasklist[s],
    layout = awful.widget.layout.horizontal.leftright,
    height = 13
    --Inserting the MPD widget
    mpd_widget_container = { layout = awful.widget.layout.horizontal.leftright}
    if mpdicon then table.insert( mpd_widget_container, mpdicon) end
    table.insert( mpd_widget_container, mpdinfo )
    bottombar[s].widgets = {
    mpd_widget_container,
    cpuicon, spacer, cpuinfo, seperator, tempicon, spacer, cputemp,
    seperator, memicon, spacer, meminfo, seperator, spkricon, spacer,
    spkrinfo, spacer, headicon, spacer, headinfo, seperator,
    netdownicon, spacer, netdowninfo, spacer, netupicon, spacer,
    netupinfo, seperator, mailicon, spacer, mailinfo, seperator,
    pacicon, spacer, pacinfo, seperator, batticon, spacer,
    battinfo, seperator, clockicon, spacer, clock, spacer,
    layout = awful.widget.layout.horizontal.rightleft,
    height = 13
    end
    Thanks.
    Last edited by epsilon (2010-06-16 02:22:03)

    Create an imagebox widget for mpd icon. Where you did all the others. You could then set its .image field to nothing or nil (image(nil)). In the format function of the mpd textbox widget you can then toggle that image to an actual png or back to nil.
    Your widgets not showing up at all are probably connected to the mess you made in the wibox section, with the "container" stuff.

  • KDE digital clock taking up too much space...

    ... and it seems I can't resize it.   It wants to eat up as much space on my panel as it can.  Obviously, I'm using 4.2.
    Is there any way to make it smaller?  Even gnome gives you that option.

    You can try this plasmoid and see if it helps.

  • World Clock widget in Dashboard - missing hands

    Prior to Daylight Saving Time (South Australia) all clock hands [hour, minute etc.] on the world clock widget in the Dashboard were visible.
    However, the day after the introduction of Daylight Saving Time the clock hands had gone. I've heard of people who believe that curtains fade due to DST, but clock hands? :-)))
    I downloaded another world clock ('Stationsklok') but that was also minus the clock hands. The same was done with a digital clock widget ('Flip Clock') and the numerals were missing.
    I removed the original world clock and replaced it with another - no luck. Trashing the world clock plist files has not brought any luck either.
    Can anyone suggest anything else that I can try?
    iMac G5 PowerMac 8,2 PowerPC   Mac OS X (10.4.8)   CPU 2 GHz, Memory 1 GB DDR SDRAM
    iMac G5 PowerMac 8,2 PowerPC   Mac OS X (10.4.8)   CPU 2 GHz, Memory 1 GB DDR SDRAM

    OS X 10.10 Yosemite
    You can add  world clock widget to Notification center.

  • SAP HR Integration with KRONOS

    Hi All,
    Am looking for information on SAP Time mgmt integration with KRONOS time clock application. I understand that there are tools available in SAP HR for a seamless integration with KRONOS application (KRONOS being a certified ISV provider); So how does this work out? is there any documentation on how this can achieved etc?
    regards
    Chandra

    Chandra,
    We went with Kronos as our consulting partner at the time indicated as you said that they were SAP certified and it would be a seamless integration with standard IDOCS. That was very far from the truth and to this day we would love to get rid of Kronos in favor of a true dummy clock system for collecting IN/OUT punches simply.
    In the end we had to custom code an interface to send a MINIMASTER (employee data) file to the Kronos server via FTP as well as an interface to create a flat .txt file containing the punch data on the Kronos server that gets picked up and processed via PI (or XI to some) and then processed as an IDOC that eventually become 2011 records. We used 3 developers in house as well as having to retain a consultant to do the interfaces on the Kronos server. In the end it works pretty well but the support from the Kronos side has been awful and when we wanted to clear up some of the SQL punch tables we where told by Kronos we would have to purchase a separate archiving product. Instead I wrote a custom delete program. It was a huge project and cost and took more time than anyone anticipated. The only good thing I guess I could say Is we have been able to use the same IDOC and PI interface to process punch files we have coming from other countries clock systems.
    But personally here in the US we did not have a good experience with Kronos and still have unresolved issues with license/support fees today.
    Good luck,
    Martha.

  • Issue with KDE power management plugin and battery monitor widget

    Hi everyone, I'm having troubles with the battery monitor widget on KDE: since I have installed the DM I get an error message during the startup saying that "no valid power management backend plugin is available", so I can't get my battery monitor working. Does anyone know how could I do to have this problem solved?

    Hi everyone, I'm having troubles with the battery monitor widget on KDE: since I have installed the DM I get an error message during the startup saying that "no valid power management backend plugin is available", so I can't get my battery monitor working. Does anyone know how could I do to have this problem solved?

  • Digital clock reset problem with 74193N

    Hi, i'm designing a digital clock circuit.
    However, i faced problems during reset part.
    when i tried to reset on 3(U11) with 1 NAND gate and 2 NOR gates,
    i think i don't make mistake to reset with 0011(U3),how come the 3 will also appear on the seven-segment display?
    Well,i also wonder how can i reset  the other seven-segment display(U9) to show the following sequences:
    0,1,2,3,4,5,6,7,8,9,0,1,2,3,0,1,2,3,4,5,6,7,8,9,0,1,2,3,0.. 
    Lastly, is that possible to configure the transmition speed in multisim 11.0?
    Thanks.. 
    Attachments:
    NEW140712.ms11 ‏363 KB

    Hi,
    There were a few problems with the circuit which is why the clock was not reseting at 3. I have modified the file. Please take a look and see. You will need to add a buffer between the second input and the AND gate because otherwise, the gate will trigger before the output has actually reached the desired state.
    I had to edit the delay time in the buffer to make it work of this circuit. To edit the delay time, double-click the Buffer and under the Value tab, click on Edit Model. You can change the rise time and fall time from this window.
    Hope this helps.
    Regards,
    Tayyab R,
    National Instruments.
    Attachments:
    NEW140712 mod.ms11 ‏545 KB

  • Problem with the clock widget

    Hi,
       I would like to know if someone have a problem with the clock widget after doing the update system to Mac OS X Mavericks (v.10.9), cause the appearance of my clock was like this (attached image). Pay attention for the position of hands of the clock (watch hands): Don't have something strange?
      Anyone know how to fix this problem?
    Thanks in advance.

    Hi, I have the same problem, I have done a fresh install of OS X and still did not fix the clock ... For when a new update?
    Thanks

  • [SOLVED] Firefox 18 + Oxygen KDE theme, missing scrollbar integration

    Hi!
    For those of you who are using Firefox 18 from AUR: firefox-kde-opensuse-18.0-1-x86_64
    and applied the Oxygen KDE integration: Oxygen KDE (patched) 3.9.1
    do you also have missing integration as regards the firefox page scrollbar? It looks like w95ish, as if no theme was applied. All the rest is nice, buttons, tabs, menus, except the scrollbar...
    Bye!
    Last edited by marcopus (2013-01-29 15:25:06)

    Now it's fixed! I missed the oxygen-gtk2 and gtk-qt-engine from the official repo.
    Then I removed all firefox add-ons (such as themes etc.) and selected oxygen-gtk style from the "GTK Styles and Fonts" in the KDE "Settings" menu. Then I clicked on "Install scrollbar fix..." from the "Firefox and Thunderbird" section, and restart the browser.
    Now it's all well integrated, scrollbars included.

  • Using an internal sample clock with a digital input

    I am using an encoder to measure angle and velocity. The example that I have started with is here. https://decibel.ni.com/content/docs/DOC-6834. The problem I am having is with the Sample clock, I get a timeout at the DAQmx read. If I remove the sample clock the VI runs fine, but I have no idea of my sample rate. Below is the the problem setup with the Sample clock inline.
    Attachments:
    encoder with timer.JPG ‏50 KB

    Hi there, a couple suggestions: first , this is a post that it is suppose to be on the DAQ board. Second, you are not being clear about the error, try to include the error code, description and its location, is it coming out of the channel node or the timing VI? Also what hardware are you using?
    Now, If you open the example called "Measure Angular Position.vi" from the NI example finder, drill the DAQmx Create Channel, you will see that you are missing a couple terminals for the task configuration, I wonder if this is part of the error.
    Alejandro | Academic Program Engineer | National Instruments

  • [SOLVED] Post installation issues with KDE 4.7.0

    I reinstalled my machine (DELL Studio 540 PC) with Arch Linux 64 bit. I did an install using LVM2 and RAID (have 2 500 GB drives in my machine). Everything went fine with the installation and bootloader (grub2) but I'm having a few issues with KDE and grub2.
    1. When booting my machine grub2 gives an error saying "error: fd0 not found" (twice). My machine does not have a floppy drive and has never had one. There is no option in the BIOS to turn floppy off. So why is grub2 complaining about it?
    2. With KDE 4.7.0 thumbnails of pdf files are not generated anymore, they were with previous versions of KDE4. Anybody else have that issue with 4.7?
    3. I have and Brother DCP-7045n printer in my network and when try to print from a KDE program (Koffice, Kate, Kwrite, Kile etc.), the margins are completely messed up. The print preview on the screens looks right but the actual print everything shift upwards to the right. So things on top of a page are cut off for example. Printing from Gnome/GTK apps (Acrobat Reader, Libreoffice etc.) do not show this behaviour. I 've had this issue with KDE4 since KDE 4.3. Here is the original ustream bug:
    https://bugs.kde.org/show_bug.cgi?id=196590
    Anybody got an idea how to fix this?
    4. Skype is crashing on me on startup constantly several times before it finally runs. I've had this problem since the 2.2.x series got released? Anybody got a fix for that. I was hoping a reinstall would fix that problem (same with the printing issue) but no luck.
    5. I'm using KDE's microblogging plasma app to check my twitter account but I can't get to remember my password. Everytime I log into I have to manually login to my twitter and kdewallet is running and has my password stored and everything. This one really pusles me.
    6. The final issue I having and issue was also the  reason why I wanted to reinstall my machine in the first place. I originally used KDEmod as my desktop but they stopped making KDEmod some time ago when they started working on Chakra. So I removed KDEmod and installed KDE from Arch directly. A nice feature of KDE4 is its ability to generate previews on folders containing images and videos. When I switched to KDE that feature stopped working. So I was expecting that with a fresh install that this work and it does except for folders containing jpeg files. If I have a folder containing only jpeg files no previews/thumbnails are generated on the folder but previews the jpeg files themselves are generated. Does anybody else have that problem with jpegs and folder previews?
    Hope somebody can help me with these few issues...
    Last edited by fettouhi (2012-04-05 06:00:06)

    benny_kenobi wrote:
    fettouhi wrote:1. When booting my machine grub2 gives an error saying "error: fd0 not found" (twice). My machine does not have a floppy drive and has never had one. There is no option in the BIOS to turn floppy off. So why is grub2 complaining about it?
    Have you installed grub2 with that --no-floppy flag as described in:
    https://wiki.archlinux.org/index.php/Grub2#BIOS_systems?
    fettouhi wrote:2. With KDE 4.7.0 thumbnails of pdf files are not generated anymore, they were with previous versions of KDE4. Anybody else have that issue with 4.7?
    fettouhi wrote:Does anybody else have that problem with jpegs and folder previews?
    Nope. Is it selected in dolphin>settings>general>previews.
    fettouhi wrote:5. I'm using KDE's microblogging plasma app to check my twitter account but I can't get to remember my password.
    Well that won't be a solution, but you might use choqok instead - at least it stores the password.
    To answer your first answer, yes I installed grub2 with the --no-floppy option as mentioned in the wiki. Regarding 2 I don't understand why that works for you then? I have all things turned on under previews (folder, video, jpeg etc.) but as mentioned in my first post I have no previews with pdf files and jpegs do generate on folder previews. Finally regarding 5 the microblogging plasma app worked fine on my old installation even after I updated to KDE 4.7.0. The password issue I'm having is on my fresh install.

  • Digital clock example(with thread).

    Can you write me a example of a simple digital clock?
    And btw is there a tutorial for threading on the site?

    Can you write me a example of a simple digital clock?ingredients:
    JLabel
    Date
    SimpleDateFormat
    Swing Timer
    have a go at making your own, post any specific problem you have

  • [SOLVED?] Problem with nVidia card

    This is my first post, so; hello to everyone!! Thx in advance to this great community!!
    My problem is pretty strange and anoying. I have an nVidia 8600GT in a Abit AX78 MB running Arch with KDE. Anything is going right until logon process. I write the user and password in KDM screen and then, after de animation of init proces of KDE, all graphics displayed are corrupted (a rectangle in the upper left corner is showed) and that's it. Only work the mouse pointer.
    This malfunction its showed by the nouveau driver AND the proprietary driver... So i think the problem is it in other place than the driver of the card.
    The Xorg.0.log and dmesg.log files are atached at the end of this thread.
    I hope that annyone can help me.
    Thx in advance again.
    The Xorg.0.log file contains this:
    [ 15.809]
    X.Org X Server 1.10.3
    Release Date: 2011-07-08
    [ 15.814] X Protocol Version 11, Revision 0
    [ 15.814] Build Operating System: Linux 2.6.39-ARCH i686
    [ 15.814] Current Operating System: Linux hidramedia_host 2.6.39-ARCH #1 SMP PREEMPT Sat Jul 9 15:31:04 CEST 2011 i686
    [ 15.815] Kernel command line: root=/dev/sda5 ro
    [ 15.815] Build Date: 09 July 2011 07:57:07AM
    [ 15.815]
    [ 15.815] Current version of pixman: 0.22.2
    [ 15.815] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 15.815] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 15.815] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Aug 1 14:13:23 2011
    [ 15.829] (==) Using config file: "/etc/X11/xorg.conf"
    [ 15.829] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 15.835] (==) ServerLayout "Layout0"
    [ 15.835] (**) |-->Screen "Screen0" (0)
    [ 15.835] (**) | |-->Monitor "Monitor0"
    [ 15.836] (**) | |-->Device "Device0"
    [ 15.836] (**) |-->Input Device "Keyboard0"
    [ 15.836] (**) |-->Input Device "Mouse0"
    [ 15.836] (==) Automatically adding devices
    [ 15.836] (==) Automatically enabling devices
    [ 15.859] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 15.859] Entry deleted from font path.
    [ 15.859] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 15.859] Entry deleted from font path.
    [ 15.859] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 15.859] Entry deleted from font path.
    [ 15.859] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 15.859] Entry deleted from font path.
    [ 15.859] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 15.859] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 15.859] Entry deleted from font path.
    [ 15.859] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 15.859] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 15.859] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 15.859] (**) Extension "Composite" is disabled
    [ 15.859] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 15.859] (WW) Disabling Keyboard0
    [ 15.859] (WW) Disabling Mouse0
    [ 15.859] (II) Loader magic: 0x822e1a0
    [ 15.859] (II) Module ABI versions:
    [ 15.859] X.Org ANSI C Emulation: 0.4
    [ 15.859] X.Org Video Driver: 10.0
    [ 15.859] X.Org XInput driver : 12.2
    [ 15.859] X.Org Server Extension : 5.0
    [ 15.860] (--) PCI:*(0:1:0:0) 10de:0402:0000:0000 rev 161, Mem @ 0xfa000000/16777216, 0xd0000000/268435456, 0xf8000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/131072
    [ 15.860] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 15.860] (II) LoadModule: "extmod"
    [ 15.871] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 15.880] (II) Module extmod: vendor="X.Org Foundation"
    [ 15.880] compiled for 1.10.3, module version = 1.0.0
    [ 15.880] Module class: X.Org Server Extension
    [ 15.880] ABI class: X.Org Server Extension, version 5.0
    [ 15.880] (II) Loading extension MIT-SCREEN-SAVER
    [ 15.880] (II) Loading extension XFree86-VidModeExtension
    [ 15.880] (II) Loading extension XFree86-DGA
    [ 15.880] (II) Loading extension DPMS
    [ 15.880] (II) Loading extension XVideo
    [ 15.880] (II) Loading extension XVideo-MotionCompensation
    [ 15.880] (II) Loading extension X-Resource
    [ 15.880] (II) LoadModule: "dbe"
    [ 15.880] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 15.881] (II) Module dbe: vendor="X.Org Foundation"
    [ 15.881] compiled for 1.10.3, module version = 1.0.0
    [ 15.881] Module class: X.Org Server Extension
    [ 15.881] ABI class: X.Org Server Extension, version 5.0
    [ 15.881] (II) Loading extension DOUBLE-BUFFER
    [ 15.881] (II) LoadModule: "glx"
    [ 15.881] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 16.640] (II) Module glx: vendor="NVIDIA Corporation"
    [ 16.640] compiled for 4.0.2, module version = 1.0.0
    [ 16.640] Module class: X.Org Server Extension
    [ 16.640] (II) NVIDIA GLX Module 275.21 Mon Jul 18 14:55:52 PDT 2011
    [ 16.640] (II) Loading extension GLX
    [ 16.640] (II) LoadModule: "record"
    [ 16.641] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 16.645] (II) Module record: vendor="X.Org Foundation"
    [ 16.645] compiled for 1.10.3, module version = 1.13.0
    [ 16.645] Module class: X.Org Server Extension
    [ 16.645] ABI class: X.Org Server Extension, version 5.0
    [ 16.645] (II) Loading extension RECORD
    [ 16.645] (II) LoadModule: "dri"
    [ 16.645] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 16.661] (II) Module dri: vendor="X.Org Foundation"
    [ 16.661] compiled for 1.10.3, module version = 1.0.0
    [ 16.661] ABI class: X.Org Server Extension, version 5.0
    [ 16.661] (II) Loading extension XFree86-DRI
    [ 16.661] (II) LoadModule: "dri2"
    [ 16.661] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 16.662] (II) Module dri2: vendor="X.Org Foundation"
    [ 16.662] compiled for 1.10.3, module version = 1.2.0
    [ 16.662] ABI class: X.Org Server Extension, version 5.0
    [ 16.662] (II) Loading extension DRI2
    [ 16.662] (II) LoadModule: "nvidia"
    [ 16.662] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 16.709] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 16.709] compiled for 4.0.2, module version = 1.0.0
    [ 16.709] Module class: X.Org Video Driver
    [ 16.732] (II) NVIDIA dlloader X Driver 275.21 Mon Jul 18 14:38:30 PDT 2011
    [ 16.737] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 16.740] (++) using VT number 7
    [ 16.751] (II) Loading sub module "fb"
    [ 16.751] (II) LoadModule: "fb"
    [ 16.751] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 16.762] (II) Module fb: vendor="X.Org Foundation"
    [ 16.762] compiled for 1.10.3, module version = 1.0.0
    [ 16.762] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 16.762] (II) Loading sub module "wfb"
    [ 16.762] (II) LoadModule: "wfb"
    [ 16.763] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 16.769] (II) Module wfb: vendor="X.Org Foundation"
    [ 16.769] compiled for 1.10.3, module version = 1.0.0
    [ 16.769] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 16.769] (II) Loading sub module "ramdac"
    [ 16.769] (II) LoadModule: "ramdac"
    [ 16.769] (II) Module "ramdac" already built-in
    [ 16.771] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 16.771] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 16.771] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 16.780] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 16.780] (==) NVIDIA(0): RGB weight 888
    [ 16.780] (==) NVIDIA(0): Default visual is TrueColor
    [ 16.780] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 17.785] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (CRT-0)) does not support NVIDIA
    [ 17.785] (II) NVIDIA(GPU-0): 3D Vision stereo.
    [ 17.789] (II) NVIDIA(0): NVIDIA GPU GeForce 8600 GT (G84) at PCI:1:0:0 (GPU-0)
    [ 17.789] (--) NVIDIA(0): Memory: 262144 kBytes
    [ 17.789] (--) NVIDIA(0): VideoBIOS: 60.84.35.00.00
    [ 17.789] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 17.789] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 17.789] (--) NVIDIA(0): Connected display device(s) on GeForce 8600 GT at PCI:1:0:0
    [ 17.789] (--) NVIDIA(0): Samsung SyncMaster (CRT-0)
    [ 17.789] (--) NVIDIA(0): Samsung SyncMaster (CRT-0): 400.0 MHz maximum pixel clock
    [ 17.859] (II) NVIDIA(0): Assigned Display Device: CRT-0
    [ 17.859] (==) NVIDIA(0):
    [ 17.859] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 17.859] (==) NVIDIA(0): will be used as the requested mode.
    [ 17.859] (==) NVIDIA(0):
    [ 17.859] (II) NVIDIA(0): Validated modes:
    [ 17.859] (II) NVIDIA(0): "nvidia-auto-select"
    [ 17.859] (II) NVIDIA(0): Virtual screen size determined to be 800 x 600
    [ 17.900] (--) NVIDIA(0): DPI set to (72, 72); computed from "UseEdidDpi" X config
    [ 17.900] (--) NVIDIA(0): option
    [ 17.900] (--) Depth 24 pixmap format is 32 bpp
    [ 17.901] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 17.905] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 17.905] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 17.905] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 17.905] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 17.905] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 17.905] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 17.905] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 17.905] (II) NVIDIA(0): Config Options in the README.
    [ 17.908] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 17.946] (II) Loading extension NV-GLX
    [ 18.001] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 18.002] (==) NVIDIA(0): Backing store disabled
    [ 18.002] (==) NVIDIA(0): Silken mouse enabled
    [ 18.002] (**) NVIDIA(0): DPMS enabled
    [ 18.002] (II) Loading extension NV-CONTROL
    [ 18.003] (II) Loading extension XINERAMA
    [ 18.003] (II) Loading sub module "dri2"
    [ 18.003] (II) LoadModule: "dri2"
    [ 18.003] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 18.003] (II) Module dri2: vendor="X.Org Foundation"
    [ 18.003] compiled for 1.10.3, module version = 1.2.0
    [ 18.003] ABI class: X.Org Server Extension, version 5.0
    [ 18.003] (II) NVIDIA(0): [DRI2] Setup complete
    [ 18.003] (==) RandR enabled
    [ 18.003] (II) Initializing built-in extension Generic Event Extension
    [ 18.003] (II) Initializing built-in extension SHAPE
    [ 18.003] (II) Initializing built-in extension MIT-SHM
    [ 18.003] (II) Initializing built-in extension XInputExtension
    [ 18.003] (II) Initializing built-in extension XTEST
    [ 18.003] (II) Initializing built-in extension BIG-REQUESTS
    [ 18.003] (II) Initializing built-in extension SYNC
    [ 18.003] (II) Initializing built-in extension XKEYBOARD
    [ 18.003] (II) Initializing built-in extension XC-MISC
    [ 18.003] (II) Initializing built-in extension SECURITY
    [ 18.003] (II) Initializing built-in extension XINERAMA
    [ 18.003] (II) Initializing built-in extension XFIXES
    [ 18.003] (II) Initializing built-in extension RENDER
    [ 18.003] (II) Initializing built-in extension RANDR
    [ 18.003] (II) Initializing built-in extension COMPOSITE
    [ 18.003] (II) Initializing built-in extension DAMAGE
    [ 18.005] (II) Initializing extension GLX
    [ 18.213] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 18.213] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 18.213] (II) LoadModule: "evdev"
    [ 18.213] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.214] (II) Module evdev: vendor="X.Org Foundation"
    [ 18.214] compiled for 1.10.0, module version = 2.6.0
    [ 18.214] Module class: X.Org XInput Driver
    [ 18.214] ABI class: X.Org XInput driver, version 12.2
    [ 18.214] (II) Using input driver 'evdev' for 'Power Button'
    [ 18.214] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.214] (**) Power Button: always reports core events
    [ 18.214] (**) Power Button: Device: "/dev/input/event3"
    [ 18.226] (--) Power Button: Found keys
    [ 18.226] (II) Power Button: Configuring as keyboard
    [ 18.226] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 18.226] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 18.226] (**) Option "xkb_rules" "evdev"
    [ 18.226] (**) Option "xkb_model" "evdev"
    [ 18.226] (**) Option "xkb_layout" "us"
    [ 18.252] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 18.252] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 18.252] (II) Using input driver 'evdev' for 'Power Button'
    [ 18.252] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.252] (**) Power Button: always reports core events
    [ 18.252] (**) Power Button: Device: "/dev/input/event2"
    [ 18.266] (--) Power Button: Found keys
    [ 18.266] (II) Power Button: Configuring as keyboard
    [ 18.266] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 18.266] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 18.266] (**) Option "xkb_rules" "evdev"
    [ 18.266] (**) Option "xkb_model" "evdev"
    [ 18.266] (**) Option "xkb_layout" "us"
    [ 18.271] (II) config/udev: Adding input device Primax Electronics Wireless Mouse (/dev/input/event1)
    [ 18.271] (**) Primax Electronics Wireless Mouse: Applying InputClass "evdev pointer catchall"
    [ 18.271] (II) Using input driver 'evdev' for 'Primax Electronics Wireless Mouse'
    [ 18.271] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.271] (**) Primax Electronics Wireless Mouse: always reports core events
    [ 18.271] (**) Primax Electronics Wireless Mouse: Device: "/dev/input/event1"
    [ 18.283] (--) Primax Electronics Wireless Mouse: Found 3 mouse buttons
    [ 18.283] (--) Primax Electronics Wireless Mouse: Found scroll wheel(s)
    [ 18.283] (--) Primax Electronics Wireless Mouse: Found relative axes
    [ 18.283] (--) Primax Electronics Wireless Mouse: Found x and y relative axes
    [ 18.283] (II) Primax Electronics Wireless Mouse: Configuring as mouse
    [ 18.283] (II) Primax Electronics Wireless Mouse: Adding scrollwheel support
    [ 18.283] (**) Primax Electronics Wireless Mouse: YAxisMapping: buttons 4 and 5
    [ 18.283] (**) Primax Electronics Wireless Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 18.283] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.4/usb6/6-2/6-2:1.0/input/input1/event1"
    [ 18.283] (II) XINPUT: Adding extended input device "Primax Electronics Wireless Mouse" (type: MOUSE)
    [ 18.283] (II) Primax Electronics Wireless Mouse: initialized for relative axes.
    [ 18.283] (**) Primax Electronics Wireless Mouse: (accel) keeping acceleration scheme 1
    [ 18.283] (**) Primax Electronics Wireless Mouse: (accel) acceleration profile 0
    [ 18.283] (**) Primax Electronics Wireless Mouse: (accel) acceleration factor: 2.000
    [ 18.283] (**) Primax Electronics Wireless Mouse: (accel) acceleration threshold: 4
    [ 18.283] (II) config/udev: Adding input device Primax Electronics Wireless Mouse (/dev/input/mouse0)
    [ 18.283] (II) No input driver/identifier specified (ignoring)
    [ 18.285] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 18.285] (II) No input driver/identifier specified (ignoring)
    [ 18.285] (II) config/udev: Adding input device HDA ATI SB Headphone (/dev/input/event6)
    [ 18.285] (II) No input driver/identifier specified (ignoring)
    [ 18.286] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 18.286] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 18.286] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 18.286] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.286] (**) AT Translated Set 2 keyboard: always reports core events
    [ 18.286] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 18.300] (--) AT Translated Set 2 keyboard: Found keys
    [ 18.300] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 18.300] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 18.300] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 18.300] (**) Option "xkb_rules" "evdev"
    [ 18.300] (**) Option "xkb_model" "evdev"
    [ 18.300] (**) Option "xkb_layout" "us"
    [ 18.300] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 18.300] (II) No input driver/identifier specified (ignoring)
    [ 1563.531] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 1563.587] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 1563.587] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 1563.587] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 1563.587] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 1563.587] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 1563.587] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 1563.587] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 1563.587] (II) NVIDIA(0): Config Options in the README.
    And the dmesg.log file contains this:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (thomas@evey) (gcc version 4.6.1 (GCC) ) #1 SMP PREEMPT Sat Jul 9 15:31:04 CEST 2011
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
    [ 0.000000] BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000007fff0000 (usable)
    [ 0.000000] BIOS-e820: 000000007fff0000 - 000000007fff3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007fff3000 - 0000000080000000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] DMI 2.5 present.
    [ 0.000000] DMI: . ./AX78(AMD770+SB600), BIOS 6.00 PG 01/17/2008
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] last_pfn = 0x7fff0 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-C7FFF write-protect
    [ 0.000000] C8000-CFFFF uncachable
    [ 0.000000] D0000-D3FFF write-back
    [ 0.000000] D4000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask FF80000000 write-back
    [ 0.000000] 1 disabled
    [ 0.000000] 2 disabled
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [c00f41f0] f41f0
    [ 0.000000] initial memory mapped : 0 - 01c00000
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] 0000000000 - 0000400000 page 4k
    [ 0.000000] 0000400000 - 0037400000 page 2M
    [ 0.000000] 0037400000 - 00377fe000 page 4k
    [ 0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
    [ 0.000000] RAMDISK: 7fdc9000 - 7ffe0000
    [ 0.000000] Allocated new RAMDISK: 375e7000 - 377fd792
    [ 0.000000] Move RAMDISK from 000000007fdc9000 - 000000007ffdf791 to 375e7000 - 377fd791
    [ 0.000000] ACPI: RSDP 000f81d0 00024 (v02 AMD770)
    [ 0.000000] ACPI: RSDT 7fff3000 00038 (v01 AMD770 AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: FACP 7fff3080 00074 (v01 AMD770 AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DSDT 7fff3100 051E2 (v01 AMD770 AWRDACPI 00001000 MSFT 03000000)
    [ 0.000000] ACPI: FACS 7fff0000 00040
    [ 0.000000] ACPI: SSDT 7fff83c0 002CC (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    [ 0.000000] ACPI: HPET 7fff86c0 00038 (v01 AMD770 AWRDACPI 42302E31 AWRD 00000098)
    [ 0.000000] ACPI: MCFG 7fff8700 0003C (v01 AMD770 AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: APIC 7fff8300 00084 (v01 AMD770 AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 1159MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] Normal 0x00001000 -> 0x000377fe
    [ 0.000000] HighMem 0x000377fe -> 0x0007fff0
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[2] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x0007fff0
    [ 0.000000] On node 0 totalpages: 524159
    [ 0.000000] free_area_init_node: node 0, pgdat c14a1980, node_mem_map f65e6200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 2320 pages used for memmap
    [ 0.000000] HighMem zone: 294626 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] Detected use of extended apic ids on hypertransport bus
    [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 12 pages/cpu @f6000000 s27648 r0 d21504 u1048576
    [ 0.000000] pcpu-alloc: s27648 r0 d21504 u1048576 alloc=1*4194304
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 520063
    [ 0.000000] Kernel command line: root=/dev/sda5 ro
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 8388096 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0007fff0)
    [ 0.000000] Memory: 2062632k/2097088k available (3376k kernel code, 34004k reserved, 1390k data, 512k init, 1187784k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    [ 0.000000] .init : 0xc14a8000 - 0xc1528000 ( 512 kB)
    [ 0.000000] .data : 0xc134c3bf - 0xc14a7c00 (1390 kB)
    [ 0.000000] .text : 0xc1000000 - 0xc134c3bf (3376 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptable hierarchical RCU implementation.
    [ 0.000000] RCU-based detection of stalled CPUs is disabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:512
    [ 0.000000] CPU 0 irqstacks, hard=f540c000 soft=f540e000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration failed
    [ 0.000000] TSC: Unable to calibrate against PIT
    [ 0.000000] TSC: using HPET reference calibration
    [ 0.000000] Detected 2700.236 MHz processor.
    [ 0.000000] Marking TSC unstable due to TSCs unsynchronized
    [ 0.016736] Calibrating delay loop (skipped), value calculated using timer frequency.. 5402.49 BogoMIPS (lpj=9000786)
    [ 0.016870] pid_max: default: 32768 minimum: 301
    [ 0.016983] Security Framework initialized
    [ 0.017051] AppArmor: AppArmor disabled by boot time parameter
    [ 0.017144] Mount-cache hash table entries: 512
    [ 0.017404] Initializing cgroup subsys ns
    [ 0.017471] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.017549] Initializing cgroup subsys cpuacct
    [ 0.017625] Initializing cgroup subsys memory
    [ 0.017701] Initializing cgroup subsys devices
    [ 0.017767] Initializing cgroup subsys freezer
    [ 0.017833] Initializing cgroup subsys net_cls
    [ 0.017899] Initializing cgroup subsys blkio
    [ 0.017995] CPU: Physical Processor ID: 0
    [ 0.018060] CPU: Processor Core ID: 0
    [ 0.018126] mce: CPU supports 5 MCE banks
    [ 0.018199] using C1E aware idle routine
    [ 0.019127] ACPI: Core revision 20110316
    [ 0.023362] ftrace: allocating 15225 entries in 30 pages
    [ 0.026734] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.027332] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061631] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ stepping 02
    [ 0.063329] Performance Events: AMD PMU driver.
    [ 0.063329] ... version: 0
    [ 0.063329] ... bit width: 48
    [ 0.063329] ... generic registers: 4
    [ 0.063329] ... value mask: 0000ffffffffffff
    [ 0.063329] ... max period: 00007fffffffffff
    [ 0.063329] ... fixed-purpose events: 0
    [ 0.063329] ... event mask: 000000000000000f
    [ 0.080086] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.106674] CPU 1 irqstacks, hard=f54b4000 soft=f54b6000
    [ 0.106676] Booting Node 0, Processors #1
    [ 0.106783] smpboot cpu 1: start_ip = 9b000
    [ 0.019998] Initializing CPU#1
    [ 0.200085] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.206657] Brought up 2 CPUs
    [ 0.206721] Total of 2 processors activated (10805.88 BogoMIPS).
    [ 0.207206] devtmpfs: initialized
    [ 0.207206] PM: Registering ACPI NVS region at 7fff0000 (12288 bytes)
    [ 0.207649] print_constraints: dummy:
    [ 0.207764] NET: Registered protocol family 16
    [ 0.207919] node 0 link 0: io port [c000, ffff]
    [ 0.207922] TOM: 0000000080000000 aka 2048M
    [ 0.207987] node 0 link 0: mmio [a0000, bffff]
    [ 0.207990] node 0 link 0: mmio [80000000, dfffffff]
    [ 0.207992] node 0 link 0: mmio [f0000000, fe02ffff]
    [ 0.207995] node 0 link 0: mmio [e0000000, e03fffff]
    [ 0.207997] bus: [00, 03] on node 0 link 0
    [ 0.208000] bus: 00 index 0 [io 0x0000-0xffff]
    [ 0.208002] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
    [ 0.208003] bus: 00 index 2 [mem 0x80000000-0xefffffff]
    [ 0.208005] bus: 00 index 3 [mem 0xf0000000-0xffffffff]
    [ 0.208011] ACPI: bus type pci registered
    [ 0.208149] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.208227] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.208292] PCI: Using MMCONFIG for extended config space
    [ 0.208357] PCI: Using configuration type 1 for base access
    [ 0.208842] bio: create slab <bio-0> at 0
    [ 0.210574] ACPI: EC: Look up EC in DSDT
    [ 0.211181] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.214150] ACPI: Interpreter enabled
    [ 0.214220] ACPI: (supports S0 S3 S4 S5)
    [ 0.214501] ACPI: Using IOAPIC for interrupt routing
    [ 0.225790] ACPI: No dock devices found.
    [ 0.225854] HEST: Table not found.
    [ 0.225919] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.226037] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.226190] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.226257] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.226324] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.226399] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 0.226474] pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xffffffff]
    [ 0.226562] pci 0000:00:00.0: [1002:5957] type 0 class 0x000600
    [ 0.226576] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
    [ 0.226609] pci 0000:00:02.0: [1002:5978] type 1 class 0x000604
    [ 0.226636] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.226639] pci 0000:00:02.0: PME# disabled
    [ 0.226667] pci 0000:00:0a.0: [1002:597f] type 1 class 0x000604
    [ 0.226693] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.226696] pci 0000:00:0a.0: PME# disabled
    [ 0.226723] pci 0000:00:12.0: [1002:4380] type 0 class 0x000106
    [ 0.226742] pci 0000:00:12.0: reg 10: [io 0xff00-0xff07]
    [ 0.226752] pci 0000:00:12.0: reg 14: [io 0xfe00-0xfe03]
    [ 0.226763] pci 0000:00:12.0: reg 18: [io 0xfd00-0xfd07]
    [ 0.226773] pci 0000:00:12.0: reg 1c: [io 0xfc00-0xfc03]
    [ 0.226784] pci 0000:00:12.0: reg 20: [io 0xfb00-0xfb0f]
    [ 0.226794] pci 0000:00:12.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
    [ 0.226836] pci 0000:00:13.0: [1002:4387] type 0 class 0x000c03
    [ 0.226851] pci 0000:00:13.0: reg 10: [mem 0xfe02e000-0xfe02efff]
    [ 0.226919] pci 0000:00:13.1: [1002:4388] type 0 class 0x000c03
    [ 0.226933] pci 0000:00:13.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
    [ 0.227002] pci 0000:00:13.2: [1002:4389] type 0 class 0x000c03
    [ 0.227016] pci 0000:00:13.2: reg 10: [mem 0xfe02c000-0xfe02cfff]
    [ 0.227084] pci 0000:00:13.3: [1002:438a] type 0 class 0x000c03
    [ 0.227099] pci 0000:00:13.3: reg 10: [mem 0xfe02b000-0xfe02bfff]
    [ 0.227166] pci 0000:00:13.4: [1002:438b] type 0 class 0x000c03
    [ 0.227181] pci 0000:00:13.4: reg 10: [mem 0xfe02a000-0xfe02afff]
    [ 0.227255] pci 0000:00:13.5: [1002:4386] type 0 class 0x000c03
    [ 0.227275] pci 0000:00:13.5: reg 10: [mem 0xfe029000-0xfe0290ff]
    [ 0.227351] pci 0000:00:13.5: supports D1 D2
    [ 0.227352] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot
    [ 0.227357] pci 0000:00:13.5: PME# disabled
    [ 0.227379] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
    [ 0.227402] pci 0000:00:14.0: reg 10: [io 0x0b00-0x0b0f]
    [ 0.227483] pci 0000:00:14.1: [1002:438c] type 0 class 0x000101
    [ 0.227497] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    [ 0.227507] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    [ 0.227518] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    [ 0.227528] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    [ 0.227538] pci 0000:00:14.1: reg 20: [io 0xf900-0xf90f]
    [ 0.227577] pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
    [ 0.227600] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
    [ 0.227663] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.227667] pci 0000:00:14.2: PME# disabled
    [ 0.227681] pci 0000:00:14.3: [1002:438d] type 0 class 0x000601
    [ 0.227759] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
    [ 0.227808] pci 0000:00:18.0: [1022:1100] type 0 class 0x000600
    [ 0.227823] pci 0000:00:18.1: [1022:1101] type 0 class 0x000600
    [ 0.227835] pci 0000:00:18.2: [1022:1102] type 0 class 0x000600
    [ 0.227848] pci 0000:00:18.3: [1022:1103] type 0 class 0x000600
    [ 0.227903] pci 0000:01:00.0: [10de:0402] type 0 class 0x000300
    [ 0.227914] pci 0000:01:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
    [ 0.227926] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.227937] pci 0000:01:00.0: reg 1c: [mem 0xf8000000-0xf9ffffff 64bit]
    [ 0.227945] pci 0000:01:00.0: reg 24: [io 0xdf00-0xdf7f]
    [ 0.227953] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.233329] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.233396] pci 0000:00:02.0: bridge window [io 0xd000-0xdfff]
    [ 0.233399] pci 0000:00:02.0: bridge window [mem 0xf8000000-0xfbffffff]
    [ 0.233404] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.233444] pci 0000:02:00.0: [11ab:4364] type 0 class 0x000200
    [ 0.233462] pci 0000:02:00.0: reg 10: [mem 0xfdffc000-0xfdffffff 64bit]
    [ 0.233472] pci 0000:02:00.0: reg 18: [io 0xee00-0xeeff]
    [ 0.233505] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.233535] pci 0000:02:00.0: supports D1 D2
    [ 0.233537] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.233541] pci 0000:02:00.0: PME# disabled
    [ 0.239995] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.240062] pci 0000:00:0a.0: bridge window [io 0xe000-0xefff]
    [ 0.240065] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.240069] pci 0000:00:0a.0: bridge window [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.240134] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.240203] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.240207] pci 0000:00:14.4: bridge window [mem 0xfdd00000-0xfddfffff]
    [ 0.240212] pci 0000:00:14.4: bridge window [mem 0xfdc00000-0xfdcfffff pref]
    [ 0.240214] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.240217] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.240219] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.240221] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.240224] pci 0000:00:14.4: bridge window [mem 0x80000000-0xffffffff] (subtractive decode)
    [ 0.240236] pci_bus 0000:00: on NUMA node 0
    [ 0.240239] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.240363] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    [ 0.240408] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
    [ 0.240440] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
    [ 0.240465] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.240531] Unable to assume _OSC PCIe control. Disabling ASPM
    [ 0.251996] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.252665] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.253351] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.254017] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.254684] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.255350] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.257059] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.257725] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.258446] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.258522] vgaarb: loaded
    [ 0.258678] PCI: Using ACPI for IRQ routing
    [ 0.258742] PCI: pci_cache_line_size set to 64 bytes
    [ 0.258749] pci 0000:00:00.0: address space collision: [mem 0xe0000000-0xffffffff 64bit] conflicts with PCI Bus 0000:01 [mem 0xf8000000-0xfbffffff]
    [ 0.258890] reserve RAM buffer: 000000000009f400 - 000000000009ffff
    [ 0.258893] reserve RAM buffer: 000000007fff0000 - 000000007fffffff
    [ 0.259004] NetLabel: Initializing
    [ 0.259067] NetLabel: domain hash size = 128
    [ 0.259131] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.259205] NetLabel: unlabeled traffic allowed by default
    [ 0.259287] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.259608] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
    [ 0.261015] Switching to clocksource hpet
    [ 0.261499] Switched to NOHz mode on CPU #0
    [ 0.261582] Switched to NOHz mode on CPU #1
    [ 0.266362] pnp: PnP ACPI init
    [ 0.266443] ACPI: bus type pnp registered
    [ 0.266593] pnp 00:00: [bus 00-ff]
    [ 0.266598] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.266600] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.266602] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.266604] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.266606] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.266609] pnp 00:00: [mem 0x80000000-0xffffffff window]
    [ 0.266662] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.266792] pnp 00:01: [io 0x4100-0x411f]
    [ 0.266794] pnp 00:01: [io 0x0228-0x022f]
    [ 0.266796] pnp 00:01: [io 0x040b]
    [ 0.266798] pnp 00:01: [io 0x04d6]
    [ 0.266799] pnp 00:01: [io 0x0c00-0x0c01]
    [ 0.266801] pnp 00:01: [io 0x0c14]
    [ 0.266803] pnp 00:01: [io 0x0c50-0x0c52]
    [ 0.266805] pnp 00:01: [io 0x0c6c-0x0c6d]
    [ 0.266807] pnp 00:01: [io 0x0c6f]
    [ 0.266808] pnp 00:01: [io 0x0cd0-0x0cd1]
    [ 0.266810] pnp 00:01: [io 0x0cd2-0x0cd3]
    [ 0.266812] pnp 00:01: [io 0x0cd4-0x0cdf]
    [ 0.266814] pnp 00:01: [io 0x4000-0x40fe]
    [ 0.266815] pnp 00:01: [io 0x4210-0x4217]
    [ 0.266817] pnp 00:01: [io 0x0b10-0x0b1f]
    [ 0.266819] pnp 00:01: [mem 0x00000000-0x00000fff window]
    [ 0.266822] pnp 00:01: [mem 0xfee00400-0xfee00fff window]
    [ 0.266828] pnp 00:01: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.266939] pnp 00:01: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:01:00.0 BAR 6 [mem 0x00000000-0x0001ffff pref]
    [ 0.267023] pnp 00:01: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:02:00.0 BAR 6 [mem 0x00000000-0x0001ffff pref]
    [ 0.267131] system 00:01: [io 0x4100-0x411f] has been reserved
    [ 0.267198] system 00:01: [io 0x0228-0x022f] has been reserved
    [ 0.267264] system 00:01: [io 0x040b] has been reserved
    [ 0.267330] system 00:01: [io 0x04d6] has been reserved
    [ 0.267395] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.267461] system 00:01: [io 0x0c14] has been reserved
    [ 0.267530] system 00:01: [io 0x0c50-0x0c52] has been reserved
    [ 0.267596] system 00:01: [io 0x0c6c-0x0c6d] has been reserved
    [ 0.267662] system 00:01: [io 0x0c6f] has been reserved
    [ 0.267727] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.267793] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.267859] system 00:01: [io 0x0cd4-0x0cdf] has been reserved
    [ 0.267926] system 00:01: [io 0x4000-0x40fe] has been reserved
    [ 0.267992] system 00:01: [io 0x4210-0x4217] has been reserved
    [ 0.268058] system 00:01: [io 0x0b10-0x0b1f] has been reserved
    [ 0.268125] system 00:01: [mem 0xfee00400-0xfee00fff window] has been reserved
    [ 0.268201] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.268290] pnp 00:02: [dma 4]
    [ 0.268291] pnp 00:02: [io 0x0000-0x000f]
    [ 0.268293] pnp 00:02: [io 0x0080-0x0090]
    [ 0.268295] pnp 00:02: [io 0x0094-0x009f]
    [ 0.268297] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.268326] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.268366] pnp 00:03: [irq 0 disabled]
    [ 0.268380] pnp 00:03: [irq 8]
    [ 0.268382] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.268408] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.268430] pnp 00:04: [io 0x0070-0x0073]
    [ 0.268456] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.268463] pnp 00:05: [io 0x0061]
    [ 0.268488] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.268495] pnp 00:06: [io 0x00f0-0x00ff]
    [ 0.268504] pnp 00:06: [irq 13]
    [ 0.268535] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.268566] pnp 00:07: [io 0x0010-0x001f]
    [ 0.268567] pnp 00:07: [io 0x0022-0x003f]
    [ 0.268569] pnp 00:07: [io 0x0044-0x005f]
    [ 0.268571] pnp 00:07: [io 0x0062-0x0063]
    [ 0.268573] pnp 00:07: [io 0x0065-0x006f]
    [ 0.268575] pnp 00:07: [io 0x0074-0x007f]
    [ 0.268576] pnp 00:07: [io 0x0091-0x0093]
    [ 0.268578] pnp 00:07: [io 0x00a2-0x00bf]
    [ 0.268580] pnp 00:07: [io 0x00e0-0x00ef]
    [ 0.268582] pnp 00:07: [io 0x04d0-0x04d1]
    [ 0.268632] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 0.268699] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.269033] pnp 00:08: [io 0x0060]
    [ 0.269034] pnp 00:08: [io 0x0064]
    [ 0.269043] pnp 00:08: [irq 1]
    [ 0.269080] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.269127] pnp 00:09: [mem 0x000f0000-0x000fffff]
    [ 0.269129] pnp 00:09: [mem 0x00000000-0x001fffff]
    [ 0.269131] pnp 00:09: [mem 0xfed00000-0xfed000ff]
    [ 0.269132] pnp 00:09: [mem 0x7fff0000-0x7fffffff]
    [ 0.269134] pnp 00:09: [mem 0xffff0000-0xffffffff]
    [ 0.269136] pnp 00:09: [mem 0x00000000-0x0009ffff]
    [ 0.269138] pnp 00:09: [mem 0x00100000-0x7ffeffff]
    [ 0.269140] pnp 00:09: [mem 0xfec00000-0xfec00fff]
    [ 0.269142] pnp 00:09: [mem 0xfee00000-0xfee00fff]
    [ 0.269144] pnp 00:09: [mem 0xfff80000-0xfffeffff]
    [ 0.269148] pnp 00:09: disabling [mem 0x000f0000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.269229] pnp 00:09: disabling [mem 0x00000000-0x001fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.269309] pnp 00:09: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.269390] pnp 00:09: disabling [mem 0x00100000-0x7ffeffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.269519] system 00:09: [mem 0xfed00000-0xfed000ff] has been reserved
    [ 0.269587] system 00:09: [mem 0x7fff0000-0x7fffffff] could not be reserved
    [ 0.269654] system 00:09: [mem 0xffff0000-0xffffffff] has been reserved
    [ 0.269721] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.269788] system 00:09: [mem 0xfee00000-0xfee00fff] could not be reserved
    [ 0.269855] system 00:09: [mem 0xfff80000-0xfffeffff] has been reserved
    [ 0.269922] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.269930] pnp: PnP ACPI: found 10 devices
    [ 0.269994] ACPI: ACPI bus type pnp unregistered
    [ 0.306168] pci 0000:01:00.0: BAR 6: assigned [mem 0xfb000000-0xfb01ffff pref]
    [ 0.306245] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.306311] pci 0000:00:02.0: bridge window [io 0xd000-0xdfff]
    [ 0.306378] pci 0000:00:02.0: bridge window [mem 0xf8000000-0xfbffffff]
    [ 0.306445] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.306523] pci 0000:02:00.0: BAR 6: assigned [mem 0xfde00000-0xfde1ffff pref]
    [ 0.306598] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.306664] pci 0000:00:0a.0: bridge window [io 0xe000-0xefff]
    [ 0.306741] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.306809] pci 0000:00:0a.0: bridge window [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.306886] pci 0000:00:14.4: PCI bridge to [bus 03-03]
    [ 0.306952] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.307022] pci 0000:00:14.4: bridge window [mem 0xfdd00000-0xfddfffff]
    [ 0.307090] pci 0000:00:14.4: bridge window [mem 0xfdc00000-0xfdcfffff pref]
    [ 0.307175] pci 0000:00:02.0: setting latency timer to 64
    [ 0.307180] pci 0000:00:0a.0: setting latency timer to 64
    [ 0.307188] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.307190] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.307192] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.307194] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.307197] pci_bus 0000:00: resource 8 [mem 0x80000000-0xffffffff]
    [ 0.307199] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.307201] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xfbffffff]
    [ 0.307203] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.307206] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.307208] pci_bus 0000:02: resource 1 [mem 0xfdf00000-0xfdffffff]
    [ 0.307210] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.307213] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 0.307215] pci_bus 0000:03: resource 1 [mem 0xfdd00000-0xfddfffff]
    [ 0.307217] pci_bus 0000:03: resource 2 [mem 0xfdc00000-0xfdcfffff pref]
    [ 0.307219] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.307222] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.307224] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.307226] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.307228] pci_bus 0000:03: resource 8 [mem 0x80000000-0xffffffff]
    [ 0.307274] NET: Registered protocol family 2
    [ 0.307398] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.307694] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.308325] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.308652] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.308719] TCP reno registered
    [ 0.308783] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.308856] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.309050] NET: Registered protocol family 1
    [ 0.426742] pci 0000:01:00.0: Boot video device
    [ 0.426749] PCI: CLS 64 bytes, default 64
    [ 0.426800] Unpacking initramfs...
    [ 0.460291] Freeing initrd memory: 2140k freed
    [ 0.461639] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
    [ 0.461707] apm: disabled - APM is not SMP safe.
    [ 0.461884] audit: initializing netlink socket (disabled)
    [ 0.461957] type=2000 audit(1312207987.459:1): initialized
    [ 0.462290] highmem bounce pool size: 64 pages
    [ 0.462357] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.464180] VFS: Disk quotas dquot_6.5.2
    [ 0.464312] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.464469] msgmni has been set to 1712
    [ 0.464730] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.464841] io scheduler noop registered
    [ 0.464907] io scheduler deadline registered
    [ 0.464983] io scheduler cfq registered (default)
    [ 0.465152] pcieport 0000:00:02.0: setting latency timer to 64
    [ 0.465180] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 0.465225] pcieport 0000:00:0a.0: setting latency timer to 64
    [ 0.465246] pcieport 0000:00:0a.0: irq 41 for MSI/MSI-X
    [ 0.465393] ERST: Table is not found!
    [ 0.465467] isapnp: Scanning for PnP cards...
    [ 0.822554] isapnp: No Plug & Play device found
    [ 0.822675] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.050031] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 1.050099] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 1.050669] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.050792] mousedev: PS/2 mouse device common for all mice
    [ 1.050892] rtc_cmos 00:04: RTC can wake from S4
    [ 1.074526] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.076767] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 1.076869] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 1.076954] cpuidle: using governor ladder
    [ 1.077018] cpuidle: using governor menu
    [ 1.077281] TCP cubic registered
    [ 1.077345] NET: Registered protocol family 17
    [ 1.077415] Registering the dns_resolver key type
    [ 1.077492] Using IPI No-Shortcut mode
    [ 1.077626] PM: Hibernation image not present or could not be loaded.
    [ 1.077633] registered taskstats version 1
    [ 1.077987] rtc_cmos 00:04: setting system clock to 2011-08-01 14:13:08 UTC (1312207988)
    [ 1.078086] Initializing network drop monitor service
    [ 1.078222] Freeing unused kernel memory: 512k freed
    [ 1.078587] Write protecting the kernel text: 3380k
    [ 1.078672] Write protecting the kernel read-only data: 1028k
    [ 1.088713] udevd[47]: starting version 171
    [ 1.180160] SCSI subsystem initialized
    [ 1.197209] usbcore: registered new interface driver usbfs
    [ 1.197412] usbcore: registered new interface driver hub
    [ 1.197625] usbcore: registered new device driver usb
    [ 1.215729] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.215840] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 1.215930] ehci_hcd 0000:00:13.5: EHCI Host Controller
    [ 1.216028] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1
    [ 1.226748] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround
    [ 1.226842] ehci_hcd 0000:00:13.5: debug port 1
    [ 1.226937] ehci_hcd 0000:00:13.5: irq 19, io mem 0xfe029000
    [ 1.237087] libata version 3.00 loaded.
    [ 1.240040] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00
    [ 1.240292] hub 1-0:1.0: USB hub found
    [ 1.240359] hub 1-0:1.0: 10 ports detected
    [ 1.240733] pata_atiixp 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.241613] scsi0 : pata_atiixp
    [ 1.241804] scsi1 : pata_atiixp
    [ 1.242405] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf900 irq 14
    [ 1.242472] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf908 irq 15
    [ 1.244130] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 1.244228] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.244315] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 1.244390] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2
    [ 1.250091] ohci_hcd 0000:00:13.0: irq 16, io mem 0xfe02e000
    [ 1.307508] hub 2-0:1.0: USB hub found
    [ 1.307579] hub 2-0:1.0: 2 ports detected
    [ 1.307730] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 1.307813] ohci_hcd 0000:00:13.1: OHCI Host Controller
    [ 1.307889] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3
    [ 1.326729] ohci_hcd 0000:00:13.1: irq 17, io mem 0xfe02d000
    [ 1.384201] hub 3-0:1.0: USB hub found
    [ 1.384274] hub 3-0:1.0: 2 ports detected
    [ 1.384428] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.384511] ohci_hcd 0000:00:13.2: OHCI Host Controller
    [ 1.384583] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4
    [ 1.405209] ohci_hcd 0000:00:13.2: irq 18, io mem 0xfe02c000
    [ 1.460849] hub 4-0:1.0: USB hub found
    [ 1.460923] hub 4-0:1.0: 2 ports detected
    [ 1.461068] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 1.461149] ohci_hcd 0000:00:13.3: OHCI Host Controller
    [ 1.461220] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5
    [ 1.480027] ohci_hcd 0000:00:13.3: irq 17, io mem 0xfe02b000
    [ 1.537463] hub 5-0:1.0: USB hub found
    [ 1.537533] hub 5-0:1.0: 2 ports detected
    [ 1.537661] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.537735] ohci_hcd 0000:00:13.4: OHCI Host Controller
    [ 1.537805] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6
    [ 1.553363] ohci_hcd 0000:00:13.4: irq 18, io mem 0xfe02a000
    [ 1.610820] hub 6-0:1.0: USB hub found
    [ 1.610890] hub 6-0:1.0: 2 ports detected
    [ 1.611025] ahci 0000:00:12.0: version 3.0
    [ 1.611043] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 1.611127] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit
    [ 1.611295] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    [ 1.611377] ahci 0000:00:12.0: flags: ncq sntf ilck led clo pmp pio ccc
    [ 1.612922] scsi2 : ahci
    [ 1.613831] scsi3 : ahci
    [ 1.614815] scsi4 : ahci
    [ 1.614997] scsi5 : ahci
    [ 1.615170] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
    [ 1.615247] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
    [ 1.615324] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
    [ 1.615400] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
    [ 1.933384] ata6: SATA link down (SStatus 0 SControl 300)
    [ 1.933527] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.063354] usb 6-2: new low speed USB device number 2 using ohci_hcd
    [ 2.106684] ata3: softreset failed (device not ready)
    [ 2.106751] ata3: applying SB600 PMP SRST workaround and retrying
    [ 2.106831] ata4: softreset failed (device not ready)
    [ 2.106897] ata4: applying SB600 PMP SRST workaround and retrying
    [ 2.273373] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.273477] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.275971] ata4.00: ATAPI: HL-DT-ST DVDRAM GH20NS10, EL00, max UDMA/100
    [ 2.276040] ata4.00: SB600 AHCI: limiting to 255 sectors per cmd
    [ 2.278897] ata3.00: ATA-7: SAMSUNG HD161HJ, JF100-19, max UDMA7
    [ 2.278963] ata3.00: 312581808 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    [ 2.279030] ata3.00: SB600 AHCI: limiting to 255 sectors per cmd
    [ 2.279635] ata4.00: SB600 AHCI: limiting to 255 sectors per cmd
    [ 2.279701] ata4.00: configured for UDMA/100
    [ 2.284467] ata3.00: SB600 AHCI: limiting to 255 sectors per cmd
    [ 2.284533] ata3.00: configured for UDMA/133
    [ 2.284747] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD161HJ JF10 PQ: 0 ANSI: 5
    [ 2.397145] scsi 3:0:0:0: CD-ROM HL-DT-ST DVDRAM GH20NS10 EL00 PQ: 0 ANSI: 5
    [ 2.407639] sd 2:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    [ 2.407755] sd 2:0:0:0: [sda] Write Protect is off
    [ 2.407821] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.407838] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.411375] input: Primax Electronics Wireless Mouse as /devices/pci0000:00/0000:00:13.4/usb6/6-2/6-2:1.0/input/input1
    [ 2.411568] generic-usb 0003:0461:4D25.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [Primax Electronics Wireless Mouse] on usb-0000:00:13.4-2/input0
    [ 2.411669] usbcore: registered new interface driver usbhid
    [ 2.411745] usbhid: USB HID core driver
    [ 2.437927] sda: sda1 sda2 sda3 < sda5 >
    [ 2.438378] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 2.518436] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.518516] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.518787] sr 3:0:0:0: Attached scsi CD-ROM sr0
    [ 2.959493] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.003984] udevd[255]: starting version 171
    [ 4.140765] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 4.140858] ACPI: Power Button [PWRB]
    [ 4.140981] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 4.141058] ACPI: Power Button [PWRF]
    [ 4.154881] Linux agpgart interface v0.103
    [ 4.157785] ACPI: Fan [FAN] (on)
    [ 4.158635] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    [ 4.161972] ACPI: acpi_idle registered with cpuidle
    [ 4.162457] SP5100 TCO timer: mmio address 0xfec000f0 already in use
    [ 4.228336] sky2: driver version 1.28
    [ 4.228452] sky2 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 4.228527] sky2 0000:02:00.0: setting latency timer to 64
    [ 4.228555] sky2 0000:02:00.0: Yukon-2 EC Ultra chip revision 5
    [ 4.228709] sky2 0000:02:00.0: irq 42 for MSI/MSI-X
    [ 4.228991] sky2 0000:02:00.0: eth0: addr 00:50:8d:ba:48:da
    [ 4.232113] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 4.250935] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
    [ 4.302867] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 4.356767] ACPI Warning: For \_TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20110316/nspredef-1059)
    [ 4.356967] ACPI: Expecting a [Reference] package element, found type 0
    [ 4.357033] ACPI: Invalid passive threshold
    [ 4.363965] sd 2:0:0:0: Attached scsi generic sg0 type 0
    [ 4.364111] sr 3:0:0:0: Attached scsi generic sg1 type 5
    [ 4.476288] nvidia: module license 'NVIDIA' taints kernel.
    [ 4.476360] Disabling lock debugging due to kernel taint
    [ 4.556743] thermal LNXTHERM:00: registered as thermal_zone0
    [ 4.556813] ACPI: Thermal Zone [THRM] (44 C)
    [ 4.691172] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 4.775620] hda_codec: ALC888: BIOS auto-probing.
    [ 4.777062] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5
    [ 4.781547] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
    [ 5.638691] nvidia 0000:01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 5.638769] nvidia 0000:01:00.0: setting latency timer to 64
    [ 5.638774] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 5.639105] NVRM: loading NVIDIA UNIX x86 Kernel Module 275.21 Mon Jul 18 14:37:03 PDT 2011
    [ 5.886530] EXT4-fs (sda5): re-mounted. Opts: (null)
    [ 5.965890] Adding 996024k swap on /dev/sda2. Priority:-1 extents:1 across:996024k
    Last edited by Fuentes (2011-08-16 22:44:13)

    the contents of /home/user/.xsession-errors
    startkde: Starting up...
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    kbuildsycoca4 running...
    kded(920) LayoutMemoryPersister::restoreFromFile: Failed to open layout memory xml file for reading "/home/alvaro/.kde4/share/apps/kded/session/keyboard/layout_memory.xml" error: 5
    kded(920)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    No outputs have backlight property
    QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.5'
    kded(920) PowerDevilUPowerBackend::brightness: org.kde.powerdevil.backlighthelper.brightness failed
    Object::connect: No such signal QDBusAbstractInterface::Changed()
    Invalid D-BUS member name 'idle-hint' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'is-local' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'x11-display-device' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'x11-display' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'display-device' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'remote-host-name' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'session-type' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'unix-user' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    QDBusObjectPath: invalid path ""
    QDBusObjectPath: invalid path ""
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00141
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0x8bf31cc
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00141
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00143
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00143
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00145
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00145
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00147
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00147
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00149
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00149
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e0014b
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e0014b
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e0014d
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e0014d
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e0014f
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e0014f
    Object::connect: No such signal QDBusAbstractInterface::Changed()
    Object::connect: No such signal KWindowSystem::windowChanged(WId,unsigned long*)
    kwin(977): Compositing is not possible
    kwin(977): Compositing is not possible
    kwin(977): Compositing is not possible
    kded(920) PowerDevilUPowerBackend::brightness: org.kde.powerdevil.backlighthelper.brightness failed
    kded(920) PowerDevilUPowerBackend::brightness: org.kde.powerdevil.backlighthelper.brightness failed
    kded(920) PowerDevilUPowerBackend::setBrightness: org.kde.powerdevil.backlighthelper.setbrightness failed
    kded(920) PowerDevilUPowerBackend::setBrightness: org.kde.powerdevil.backlighthelper.setbrightness failed
    QProcess: Destroyed while process is still running.
    plasma-desktop(1001): Communication problem with "plasma-desktop" , it probably crashed.
    Error message was: "org.freedesktop.DBus.Error.Disconnected" : " "Connection was disconnected before a reply was received" "
    kdeinit4: Fatal IO error: client killed
    kdeinit4: sending SIGHUP to children.
    klauncher: Exiting on signal 1
    kglobalaccel: Fatal IO error: client killed
    kdeinit4: Fatal IO error: client killed
    kdeinit4: sending SIGHUP to children.
    ksmserver: Fatal IO error: client killed
    kdeinit4: sending SIGTERM to children.
    kdeinit4: Exit.
    kded4: Fatal IO error: client killed
    kdeinit4: sending SIGTERM to children.
    kdeinit4: Exit.

  • Is there way to set thicker font for Clock widget?

    Is there way to set thicker font for Clock widget (including Home and Unlock screens) ?
    Solved!
    Go to Solution.

    As I understand, not by default.
    Check on Google Play store if you can find any clock widgets that may suit your needs.
     - Community Manager Sony Xperia Support Forum
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

Maybe you are looking for