Suspend in jdb

Does the "suspend" command of "jdb" use the deprecated "Thread.suspend()" method? I hope not!!!
When a breakpoint is hit in jdb, are all threads suspended? If not, how can that be arranged?
TIA,
Reggie

Does the "suspend" command of "jdb" use the deprecated
"Thread.suspend()" method? I hope not!!!The debug interface does not use the deprecated java.lang.Thread
methods. Take a look at:
http://java.sun.com/j2se/1.4.1/docs/guide/jpda/jdi/com/sun/jdi/VirtualMachine.html#suspend()
When a breakpoint is hit in jdb, are all threads
suspended? If not, how can that be arranged?This is controlled by a parameter on the EventRequest
(A BreakpointRequest is a kind of EventRequest). For
more information, refer to:
http://java.sun.com/j2se/1.4.1/docs/guide/jpda/jdi/com/sun/jdi/request/BreakpointRequest.html
The default behavior in jdb is SUSPEND_ALL when a breakpoint
is hit.

Similar Messages

  • Jdb fails to connect to running java application over sockets

    I'm trying to use jdb to connect to a running instance of a java program.
    If I use dt_shmem:
    java -agentlib:jdwp=transport=dt_shmem,address=shmem,server=y,suspend=n JDBTest
    jdb -attach shmemSet uncaught java.lang.Throwable
    Set deferred uncaught java.lang.Throwable
    Initializing jdb ...
    quitworks fine.
    If I use dt_socket, jdb crashes:
    java -agentlib:jdwp=transport=dt_socket,address=9000,server=y,suspend=n JDBTestP:\workspace\JDBTest>jdb -attach 9000
    java.io.IOException: shmemBase_attach failed: The system cannot find the file specified
    at com.sun.tools.jdi.SharedMemoryTransportService.attach0(Native Method)
    at com.sun.tools.jdi.SharedMemoryTransportService.attach(SharedMemoryTra
    nsportService.java:90)
    at com.sun.tools.jdi.GenericAttachingConnector.attach(GenericAttachingCo
    nnector.java:98)
    at com.sun.tools.jdi.SharedMemoryAttachingConnector.attach(SharedMemoryA
    ttachingConnector.java:45)
    at com.sun.tools.example.debug.tty.VMConnection.attachTarget(VMConnectio
    n.java:358)
    at com.sun.tools.example.debug.tty.VMConnection.open(VMConnection.java:1
    68)
    at com.sun.tools.example.debug.tty.Env.init(Env.java:63)
    at com.sun.tools.example.debug.tty.TTY.main(TTY.java:964)
    Fatal error:
    Unable to attach to target VM.
    It looks like jdb is trying to connect over shared memory instead of using sockets.
    Trying jdb -attach localhost:9000 has the same effect.
    I can however connect to the running Java program using the Eclipse debugger using a remote configuration.
    What can I do that jdb will use sockets?
    I'm using Windows 2000 SP4 and Java 1.5.0_07.
    Many thanks in advance
    Thomas

    jdb -help says:
    -attach <address>
    attach to a running VM at the specified address using standard connector
    On Windows the 'standard', ie. default, connector uses the shared memory transport.
    To connect to a socket, you need to tell jdb to use the socket attaching connector, ie
    jdb -connect com.sun.jdi.SocketAttach:port=9000
    It is hard to remember the names and params of all the connectors. You can do
    jdb -listconnectors
    to refresh your memory.
    HTH.

  • How to debug Java adventure with jdb

    Hi,
    I'm learning J2ee and I'd like to use and debug
    Java adventure. I tried to find some information but found nothing.
    What I tried to debug , is to start the j2ee server by adding the following options into the bin/asadmin.bat file:
    -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
    This it doesn't work because the j2ee server is started with the javaw.exe virtual machine. So I'm stuck here.
    My first question: 1- what visual debugger is great to debug J2ee apps ??
    I'd like to known what are the steps to:
    2- how to start the j2ee server in order to attach the jdb or a visual
    debugger ?
    3- when starting the j2ee server, what do i have to do in order to step
    into the code source of Java adventure and follow function calls ?
    4- how do I have to start the jdb to attach to the J2ee server ?
    5- Any useful tip to debug J2ee apps ! :-)
    Thanks in advance !
    Waltereo

    Hi,Hello
    I'm learning J2ee and I'd like to use and debug
    Java adventure. I tried to find some information but
    found nothing.
    What I tried to debug , is to start the j2ee server by
    adding the following options into the bin/asadmin.bat
    file:
    -Xdebug
    ug
    -Xrunjdwp:transport=dt_socket,address=8000,server=y,sus
    end=nThat looks OK.
    This it doesn't work because the j2ee server is
    started with the javaw.exe virtual machine. So I'm
    stuck here.javaw.exe implies you are on a win32 machine. The default
    debugging transport on win32 is shared memory... but you specify
    a socket connection on the debugee command line above. This
    means you need to specify sockets on the debugger side as well.
    For example:
    jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=8000
    Note the port number (8000) matches the value you specified
    when starting the debugee.
    >
    My first question: 1- what visual debugger is great
    to debug J2ee apps ??For a list of debugging tools, check this web page:
    http://java.sun.com/products/jpda/using.html
    Many of these products work well in a J2EE environment.
    Most of them are either free, or come with an introductory
    "try before you buy" offer.
    I'd like to known what are the steps to:
    2- how to start the j2ee server in order to attach
    the jdb or a visual
    debugger ?You are on the right track with the flags/options you
    mentioned.
    3- when starting the j2ee server, what do i have to
    do in order to step
    into the code source of Java adventure and follow
    low function calls ?The code you want to examine needs to be compiled
    with the "-g" flag added to the javac command line.
    When -g is specified, javac will save information
    in the .class files that is used later during debugging.
    4- how do I have to start the jdb to attach to the
    J2ee server ?See above...
    For more coverage on this topic, refer to:
    JPDA Connection and Invocation Details
    http://java.sun.com/j2se/1.4.2/docs/guide/jpda/conninv.html
    5- Any useful tip to debug J2ee apps ! :-)That is a bit outside the scope of this forum... sorry.
    Any useful tips will depend on what J2EE app server you
    are using. Most of the well-known servers come with
    a debugging guide. For example, take a look at:
    Debugging J2EE Applications in the SunOne Application Server
    documentation:
    http://docs.sun.com/source/817-2171-10/dgdebug.html
    Thanks in advance !Best Regards...

  • How to use jdb for debugging a servlet?

    I'm using Apache/JServ with jdk 1.4 (via Textpad on win2K SP 3).
    The 'gospel' I'm trying to follow is:
    'Start the server manually and record the password for remote debugging
    (this is displayed on the console).'
    'Start the Java debugger:'
    'jdb -host your_host -password the_password'
    'You should be able to debug your Java classes now using the jdb
    command.'
    My problem is that I can't find the password from Apache.
    I normally start/restart apache as a windows Service.
    If I start it from DOS I get:
    'C:\orant9i\Apache\Apache>apache -k start'
    'Oracle HTTP Server Powered by Apache/1.3.12 (Win32) ApacheJServ/1.1
    mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.24 running...'
    I've searched the log, conf & property files but can't find any password.
    I've also searched the Apache website for 'jdb' without luck.
    I've printed out (and read!) the 'Using Apache with MS Windows' manual.
    I did a Google:
    --Someone suggested starting Apache using using the -X flag, but I don't
    seem to have this option.
    --Someone else suggested changing jvm12.conf, but I don't have one.
    I have tried the following, just-in-case I don't really need a password,
    but it doesn't tell me a lot, and I would appreciate some help:
    JDB -sourcepath E:\javaPackages org.apache.jserv.JServServletManager
    C:\orant9i\Apache\Apache>JDB org.apache.jserv.JServServletManager
    Initializing jdb ...
    > run
    run org.apache.jserv.JServServletManager
    Set uncaught java.lang.Throwable
    Set deferred uncaught java.lang.Throwable
    >
    VM Started:
    Exception occurred: java.lang.ClassNotFoundException (uncaught)"thread=main", java.net.URLClassLoader$1.run(), line=199 bci=72
    main[1] list
    Source file not found: URLClassLoader.java
    main[1]
    Thanks,
    Peter.
    Posted to alt.apache.configuration, comp.lang.java, http://groups.yahoo.com/group/win-apache and
    comp.infosystems.www.servers.misc with no response

    Hello
    You wrote:
    I added the following to jserv.properties:
    wrapper.bin.parameters=-Xdebug
    wrapper.bin.parameters=-Xrunjdwp:transport=dt_socket,address=2930,suspend=n,server=y
    and it ran the servlet okay.Fine so far. This means your debugee VM is started and running. The "suspend=n" means it
    will start running without waiting for a debugger to attach... so you can attach later whenever you
    decide to debug. Note that 'later' could be weeks later, or possibly never.
    Now: Time to attach jdb to the victim/debugee process you started above.
    You wrote:
    But I get the following when I try to start jdb:
    jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=2930 org.apache.jserv.JServServletManager
    gives:
    Cannot specify command line with connector:
    com.sun.jdi.SocketAttach:hostname=localhost,port=2930,
    and
    jdb -attach localhost:2930 org.apache.jserv.JServServletManager
    gives:
    Cannot specify command line with connector: com.sun.jdi.SharedMemoryAttach:name=localhost:2930,The problem here is that you are trying to supply too much information to jdb.
    When you are using the attach connectors, all you need to supply is the
    host name and socket (for the socket connectors), or the name of the shared memory
    area (for the shared memory connector). The connectors you tried above are throwing
    an error because you are trying to supply something extra (the class name).
    When doing an attach, the debugee VM is already launched. The debugger will
    attach to it and inspect the classes loaded.
    If you are still running with the wrapper.bin.parameters you listed above,
    then all you need to connect with jdb is:
      jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=2930 You should get a jdb prompt, and you will be able to inspect the debugee
    VM by entering commands such as threads and classes. Typically
    the next thing would be to set some breakpoints (stop in package.class.method,
    or stop at package.class:line. Then restart the debugee with a resume.

  • How to debug j2ee with jdb or any visual debugger

    Hi,
    I'm learning J2ee and I'd like to use and debug
    Java adventure. I tried to find some information but found nothing.
    What I tried to debug , is to start the j2ee server by adding the following options into the bin/asadmin.bat file:
    -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
    This it doesn't work because the j2ee server is started with the javaw.exe virtual machine. So I'm stuck here.
    My first question: 1- what visual debugger is great to debug J2ee apps ??
    I'd like to known what are the steps to:
    2- how to start the j2ee server in order to attach the jdb or a visual
    debugger ?
    3- when starting the j2ee server, what do i have to do in order to step
    into the code source of Java adventure and follow function calls ?
    4- how do I have to start the jdb to attach to the J2ee server ?
    5- Any useful tip to debug J2ee apps ! :-)
    Thanks in advance !
    Waltereo

    Modify the domain.xml file and enable debugging. Look for the element containing the debug options. It will have an "enabled" attribute set to false. Also check that the address option is included.
    Also, you should bake sure that the server is not running when you do changes, and copy the modified file to the backup directory. I'm not 100% sure that it is necessary, but with Sun ONE AS 7 it is if you don't want it to complain about manual configuration changes.

  • I'm having trouble using standard input inside JDB

    Hello Java(R) community
    The problem is:
    I cannot read a stream of characters from the keyboard inside JDB. Just to set context I'm using:
    jdk 1.3.1_01 with jdb version 99/06/11 under RedHat(R) Linux(R) 7.1
    I've written the following code:
    1:import java.io.*;
    2:
    3:public class Test {
    4:
    5: Reader reader = new InputStreamReader(System.in);
    6: char[] buffer = new char[256];
    7:
    8: public void myRead() {
    9:
    10: System.out.print("Insert some text: ");
    11: try {
    12: reader.read(buffer);
    13: }
    14: catch (IOException e) {
    15: System.out.println(e.getMessage());
    16: }
    17: System.out.println("You've inserted the following text: " + new String(buffer));
    18: }
    19:
    20: public static void main(String[] args) {
    21:
    22: Test ref = new Test();
    23: ref.myRead();
    24: }
    25:}
    The above is compiled with javac -g Test.java
    At the shell you run ' java Test ' and it just echoes the input you give to it
    Inside jdb you set a breakpoint with ' stop in Test.myRead()'. When there, it stops at line 10; you invoke the 'next' command and it just don't print the message (just becuse it's not a println it just don't flush I suppose); after that the next line to execute is 12; so you invoke 'next' again and the real problem happens! Nothing can be read from the standard input. If you try to run the 'list' command jdb says "Current thread isn't suspended".
    Does anyone knows what's going on?
    Thanks in advance for a reply.

    If you use the launching connector to start the debugee,
    (this is the default used when you start jdb)
    then jdb cannot tell the difference between jdb commands
    that you are typing, and other text you want sent to the
    debugee program. You will have the same problem with
    output going the other way. The debugee program output
    will be mixed in with any jdb output that comes along.
    This is because the controlling window has only one stdin,
    stdout, stderr that both processes (as well as anything else
    you are running in that window) are forced to share.
    You need to separate the debugger and debugee, as follows:
    1) Start the debugee program (HelloWorld in this example)
    in one command window:
    % java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=4571 HelloWorld
    2) In another window, attach your debugger (jdb in this example)
    to the debugee via a socket:
    % jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=4571
    You may also use the shared memory transport if you are
    on a win32 platform, as follows:
    1) In one command window:
    % java -Xdebug -Xrunjdwp:transport=dt_shmem,server=y,address=mine HelloWorld
    2) In a second command window (again using jdb as an example):
    % jdb -connect com.sun.jdi.SharedMemoryAttach:name=mine
    For more information, refer to "Connection and Invocation Details"
    at this URL:
    http://java.sun.com/j2se/1.4/docs/guide/jpda/conninv.html

  • JDB Is Flat Broken

    I'm a novice java programer learning to use jdb. No matter what program i throw into jdb I get the same error; be it as root or my regular user "pat" and with or without breaks set via the "stop at" command I always get this> run
    run students
    VM start exception: VM initialization failed for: /opt/sun-jdk-1.5.0.01/jre/bin/java -Xdebug -Xrunjdwp:transport=dt_socket,address=gentoo:32781,suspend=y students
    ERROR: transport error 202: connect failed: Connection refused ["transport.c",L41]
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510) ["debugInit.c",L497]
    JDWP exit error JVMTI_ERROR_INTERNAL(113): No transports initializedFATAL ERROR in native method: JDWP No transports initialized, jvmtiError=JVMTI_ERROR_INTERNAL(113)
    Fatal error:
    Target VM failed to initialize.It seams to be an issue with the VM, any input would be much apreiciated; and yes... I've compiled all programs which I've tried to put through jdb with "javac -g".

    Hello,
    I got the same error under Eclipse 3.2.2 - but Windows OS.
    However, just modifying the +/etc/hosts+ (under Windows this should
    be +%WINDIR%\system32\drivers\etc\hosts+) in the proposed way did not help.
    I guess there is an additional mysterical relationship between using the remote debugger and setting of the PATH variable in Eclipse under "Run - Debug - Environment:" for a designated project:
    When setting the PATH variable to the directory where my native layers (the JNI using code)
    and setting the Radio Button "replace native environment with specified environment" I got the
    error:
    FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=JVMTI_ERROR_INTERNAL(113)
    +{color:#ff0000}
    ERROR: transport error 202: gethostbyname: unknown host ["transport.c",L41]+
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510) ["debugInit.c",L497]
    +JDWP exit error JVMTI_ERROR_INTERNAL(113): No transports initialized{color}+
    However, wenn selecting the Radio Button to "append environment to native environment" then the debugger works!
    So, I guess there are required some additional helper programs which need to be found by the debugger.
    Therefore, replacing the complete PATH variable may remove the required path in the environment.
    Additional information may be found also under :
    http://wiki.eclipse.org/Debug_FAQ
    Thanx
    Peter

  • JDB hangs on startup

    When I try to attach jdb to a running jvm, it sometimes hangs. In fact, this being the universe we all know and love, it always hangs on the program instance I care about, although I can do this just fine on many other programs, and even other instances of the same program. Anyone know what this means, or (more to the point) what I can do about it?
    Just to set context:
    The platform is Solaris 7.0
    The JVM is Solaris VM (build Solaris_JDK_1.2.2_05a, native threads, sunwjit)
    The JVM is launched with
    java \
            -Xdebug -Djava.compiler=NONE -Xbootclasspath/a:/usr/java/lib/tools.jar \
            -Djava.security.policy=rmi.policy \
            classname \ 
            some argsThere is ample evidence that the program is running and doing stuff (mostly the right stuff, and that little bit of wrong stuff that makes me want to debug it).
    Upon startup, the JVM announces:
    Agent password=3b75paI have tried launching jdb in all these ways, with the same result:
    jdb -password 3b75pa
    jdb -host localhost -password 3b75pa
    jdb -host hostname -password 3b75paThe result is simply this:
    //aloha/.../jackr> jdb -password 3b75pa
    Initializing jdb...
    ... whereas, normally, I would also get a ">" prompt, and I could type commands an' stuff.
    The program is in fact an RMI server (with JNI extensions, even). At the moment I try to attach, one thread should be sitting awaiting a new RMI request, and the others should be hanging around in whatever wait state or billiards parlour they hang in when they have nothing to do (of course, I can't actually confirm that, 'cause I can't get the debugger onto the bugger!).
    The very same program can be jdb'ed just fine sometimes, but I can't get the "right" one attached. [I start several of them, in a pool (yes, I know RMI pools server threads, it's a long story we needn't go into just here); the one actually used under test circumstances is predictable by start sequence, command line args, and bound Name, but otherwise identical to all others -- oh, except for that one other difference, I can't debug it....]

    Just to set context:
    The platform is Solaris 7.0
    The JVM is Solaris VM (build Solaris_JDK_1.2.2_05a,
    native threads, sunwjit)
    The JVM is launched with
    java \
    -Xdebug -Djava.compiler=NONE
    er=NONE -Xbootclasspath/a:/usr/java/lib/tools.jar \
    -Djava.security.policy=rmi.policy \
    classname \ 
    some args
    Thank you. That makes the question easier to answer.
    This is a big gotcha when using Solaris 1.2.x releases.
    1) First of all (if you can), upgrade to the most recent J2SE release you
    can use (either 1.3.x or 1.4.x). JPDA support is much improved in
    recent releases. If you can upgrade, download from this URL:
    http://java.sun.com/j2se/downloads.html
    and then skip to step 3) below.
    Upon startup, the JVM announces:
    Agent password=3b75pa
    You are running into the old sun.tools.debug interface,
    which is broken in 1.2.x.
    2) If you are required to stay with 1.2.2 for some reason, the bad news
    is that you must use the Reference implementation to debug.
    The Production implementation did not implement JPDA for performance
    reasons.
    2a) Download the 1.2 Reference kits from this web page:
    http://java.sun.com/products/jdk/1.2/download.html
    Make sure you select the J2SE Solaris (SPARC or x86)
    (Reference) SDK bundle.
    2b) After you have installed 1.2.2, you will need to add the JPDA
    implementation, available here:
    http://java.sun.com/products/jpda/download.html
    http://java.sun.com/products/jpda/installinst.html
    Note that this step is only required for 1.2.2
    If you can use a more recent J2SE release, JPDA is rolled into the SDK.
    3) To use the new JPDA interface and the new jdb, you need
    to add "-Xnoagent" to your debugee command line.
    You can launch your application (the debugee) like this:
    java -Xdebug -Xnoagent -Djava.compiler=NONE \
    -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=4571 HelloWorld
    Then, later on (if the debugee runs for a long time, it could
    be several days later), you can decide to attach the debugger
    to it, like this:
    jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=4571
    Or, if nothing interesting happens, you may never decide to attach the
    debugger. That's fine. As long as you start the debugee using
    "-Xdebug -Xnoagent -Xrunjdwp[...],server=y,suspend=n[...]", you will
    be able to attach later if you decide to.
    Details on these debug options and suboptions can be found here:
    "Connection and Invocation Details"
    http://java.sun.com/j2se/1.4.1/docs/guide/jpda/conninv.html
    "Java Platform Debugger Architecture"
    http://java.sun.com/products/jpda/

  • Using JDB in a multithreaded gui environment

    Hi there all I am currently working in a multithreaded gui environment, I would like to use jdb, I manged to launch my project using the jdb in place of the java command ( I did the javac -g thing), I then type run it all launches fine and I am prompted with main[]
    then I type cont abd then it starts I get prompted with > and I am stuck here no code list works I resume try everything but stuck in the treads is there a way of igmoring this and seleting the classes I want to debug I also tried setting breakpoints but htese nere get hit when I type clear I can seee the break point but dont hit thwem even thow those breakpointed sections of code is executed the break point dose not halt the code can anyone help regards Michael

    Hi there all I am currently working in a multithreaded
    gui environment, I would like to use jdb, I manged to
    launch my project using the jdb in place of the java
    command ( I did the javac -g thing), I then type run
    it all launches fine and I am prompted with main[]
    then I type cont abd then it starts I get prompted
    with >At this point your application is running. The ">"
    prompt means jdb has no current thread setting.
    Enter threads to see a list of the threads in
    your application.
    Enter classes to see the classes that are loaded.
    Enter fields className to see the fields of a class.
    Enter suspend to stop the debugee, and then enter where all
    to see the thread stacks, or use the thread command to set
    the current thread, then use the where command.
    A thread must be suspended (or at a breakpoint) and jdb must be set
    to the thread you want to examine (via the thread command,
    or automatically when you hit a breakpoint) before you can display
    the stack, do a list to see the source at that point, or
    use locals to see the local variables for that stack frame.
    Enter resume so the debugee threads will continue.
    and I am stuck here no code list works I resume
    try everything but stuck in the treads is there a way
    of igmoring this and seleting the classes I want to
    debug I also tried setting breakpoints but htese nere
    get hit when I type clear I can seee the break point
    but dont hit thwem even thow those breakpointed
    sections of code is executed the break point dose not
    halt the code can anyone help regards MichaelAre you using the full name of the class (including any
    package names) when setting breakpoints?

  • Suspend to RAM no longer works, even in a console

    I've recently installed Arch on an SSD (OCZ Vertex 2) and I have testing repo enabled.  I can get the laptop to suspend outside of KDE using pm-suspend, but the system never comes back after pressing a key.  The cursor just stays there.  The caps lock key still toggles, but I can't shutdown using the power button.
    In KDE when I close the lid it doesn't do anything. 
    When I first set up KDE suspend worked....I'm not sure what package broke it, but could anyone have any ideas?
    Here are my installed packages:
    a52dec 0.7.4-4
    aalib 1.4rc5-7
    acl 2.2.49-1
    acpi 1.4-2
    acpid 1.0.10-3
    akonadi 1.4.1-1
    akonadi-googledata 1.2.0-1
    alsa-lib 1.0.23-2
    alsa-utils 1.0.23-2
    antlr 2.7.7-8
    apr 1.4.2-1
    apr-util 1.3.10-1
    aria2 1.10.3-1
    aspell 0.60.6-4
    atk 1.32.0-1
    attica 0.1.4-1
    attr 2.4.44-1
    autoconf 2.68-1
    automake 1.11.1-1
    automoc4 0.9.88-1
    avahi 0.6.27-7
    avogadro 1.0.1-1
    babl 0.1.2-1
    bash 4.1.007-1
    beautiful-soup 3.1.0.1-4
    binutils 2.20.1-4
    bison 2.4.3-1
    blas 3.2.2-2
    boost 1.43.0-2
    boost-libs 1.43.0-2
    bzip2 1.0.6-1
    c-ares 1.7.3-1
    ca-certificates 20090814+nmu2-1
    ca-certificates-java 20100412-1
    cabextract 1.3-1
    cairo 1.10.0-2
    cdparanoia 10.2-2
    cfitsio 3.250-2
    cherrypy 3.1.2-3
    chmlib 0.40-1
    chromium 7.0.517.43-1
    cln 1.2.2-3
    cloog-ppl 0.15.9-2
    clucene 0.9.21b-1
    clyde-git 20101027-1
    cmake 2.8.2-3
    compositeproto 0.4.1-1
    consolekit 0.4.2-1
    coreutils 8.6-1
    cracklib 2.8.16-1
    cryptsetup 1.1.3-1
    curl 7.21.2-2
    damageproto 1.2.0-1
    dash 0.5.6.1-1
    db 4.8.26-2
    dbus 1.4.0-1
    dbus-core 1.4.0-1
    dbus-glib 0.86-1
    dbus-python 0.83.1-2
    dcron 4.4-2
    desktop-file-utils 0.16-1
    device-mapper 2.02.74-1
    dhcpcd 5.2.8-1
    dialog 1.1_20100428-2
    diffutils 3.0-1
    dirmngr 1.1.0-1
    djvulibre 3.5.23-1
    dmidecode 2.10-1
    dmxproto 2.3-1
    dnsutils 9.7.1.P2-1
    dri2proto 2.3-1
    e2fsprogs 1.41.12-1
    ebook-tools 0.2.1-1
    eigen 2.0.15-1
    eject 2.1.5-4
    elfutils 0.149-2
    enca 1.13-1
    enchant 1.6.0-1
    ethtool 6-2
    eventlog 0.2.12-1
    exiv2 0.20-1
    expat 2.0.1-5
    faac 1.28-2
    faad2 2.7-1
    fakeroot 1.14.4-2
    farsight2 0.0.21-2
    ffmpeg 25472-1
    fftw 3.2.2-1
    file 5.04-2
    filesystem 2010.10-1
    findutils 4.4.2-2
    fixesproto 4.1.1-1
    flac 1.2.1-2
    flashplugin-prerelease 10.2.161.23-1
    flex 2.5.35-4
    fluidsynth 1.1.3-1
    fontconfig 2.8.0-1
    fontsproto 2.1.0-1
    freeglut 2.6.0-1
    freetype2 2.4.3-1
    fribidi 0.19.2-1
    gawk 3.1.8-1
    gcc 4.5.1-1
    gcc-libs 4.5.1-1
    gconf 2.32.0-1
    gdbm 1.8.3-7
    gdk-pixbuf2 2.22.0-2
    gegl 0.1.2-1
    gen-init-cpio 2.6.32-1
    gettext 0.18.1.1-1
    ggz-client-libs 0.0.14.1-1
    ghostscript 9.00-1
    giflib 4.1.6-3
    gimp 2.6.11-1
    git 1.7.3.2-1
    glew 1.5.6-1
    glib2 2.26.0-2
    glibc 2.12.1-4
    glproto 1.4.12-1
    gmp 5.0.1-1
    gnugo 3.8-1
    gnupg 1.4.11-1
    gnupg2 2.0.16-2
    gnutls 2.8.6-1
    gobject-introspection 0.9.12-1
    gpgme 1.3.0-1
    gpm 1.20.6-5
    gpsd 2.95-4
    grep 2.7-1
    groff 1.20.1-4
    grub 0.97-17
    gsfonts 1.0.7pre44-2
    gsl 1.14-1
    gstreamer0.10 0.10.30-1
    gstreamer0.10-base 0.10.30-1
    gstreamer0.10-base-plugins 0.10.30-1
    gstreamer0.10-python 0.10.18-3
    gtk2 2.22.0-5
    gzip 1.4-1
    hal 0.5.14-4
    hal-info 0.20091130-1
    heimdal 1.3.3-1
    hicolor-icon-theme 0.12-1
    htop 0.8.3-1
    huludesktop 0.9.8-3
    hunspell 1.2.12-1
    iana-etc 2.30-1
    ilmbase 1.0.1-1
    imagemagick 6.6.4.10-1
    imlib2 1.4.4-1
    initscripts 2010.07-1
    inputproto 2.0-1
    intel-dri 7.9-1
    iputils 20100214-2
    iso-codes 3.14-1
    jack 0.118.0-4
    jasper 1.900.1-6
    jfsutils 1.1.14-1
    kbd 1.15.2-1
    kbproto 1.0.5-1
    kde-agent 20090801-2
    kdeaccessibility-colorschemes 4.5.2-1
    kdeaccessibility-iconthemes 4.5.2-1
    kdeaccessibility-kmag 4.5.2-1
    kdeaccessibility-kmousetool 4.5.2-1
    kdeaccessibility-kmouth 4.5.2-1
    kdeadmin-kcron 4.5.2-1
    kdeadmin-ksystemlog 4.5.2-1
    kdeadmin-kuser 4.5.2-1
    kdeadmin-system-config-printer-kde 4.5.2-1
    kdeartwork-aurorae 4.5.2-1
    kdeartwork-colorschemes 4.5.2-1
    kdeartwork-desktopthemes 4.5.2-1
    kdeartwork-emoticons 4.5.2-1
    kdeartwork-iconthemes 4.5.2-1
    kdeartwork-kscreensaver 4.5.2-1
    kdeartwork-sounds 4.5.2-1
    kdeartwork-styles 4.5.2-1
    kdeartwork-wallpapers 4.5.2-1
    kdeartwork-weatherwallpapers 4.5.2-1
    kdebase-dolphin 4.5.2-1
    kdebase-kdepasswd 4.5.2-1
    kdebase-kdialog 4.5.2-1
    kdebase-kfind 4.5.2-1
    kdebase-konqueror 4.5.2-1
    kdebase-konsole 4.5.2-1
    kdebase-kwrite 4.5.2-1
    kdebase-lib 4.5.2-1
    kdebase-plasma 4.5.2-1
    kdebase-runtime 4.5.2-2
    kdebase-workspace 4.5.2-2
    kdebindings-python 4.5.2-8
    kdeedu-blinken 4.5.2-2
    kdeedu-cantor 4.5.2-2
    kdeedu-data 4.5.2-2
    kdeedu-kalgebra 4.5.2-2
    kdeedu-kalzium 4.5.2-2
    kdeedu-kanagram 4.5.2-2
    kdeedu-kbruch 4.5.2-2
    kdeedu-kgeography 4.5.2-2
    kdeedu-khangman 4.5.2-2
    kdeedu-kig 4.5.2-2
    kdeedu-kiten 4.5.2-2
    kdeedu-klettres 4.5.2-2
    kdeedu-kmplot 4.5.2-2
    kdeedu-kstars 4.5.2-2
    kdeedu-ktouch 4.5.2-2
    kdeedu-kturtle 4.5.2-2
    kdeedu-kwordquiz 4.5.2-2
    kdeedu-libkdeedu 4.5.2-2
    kdeedu-marble 4.5.2-2
    kdeedu-parley 4.5.2-2
    kdeedu-rocs 4.5.2-2
    kdeedu-step 4.5.2-2
    kdegames-bomber 4.5.2-1
    kdegames-bovo 4.5.2-1
    kdegames-granatier 4.5.2-1
    kdegames-kajongg 4.5.2-1
    kdegames-kapman 4.5.2-1
    kdegames-katomic 4.5.2-1
    kdegames-kbattleship 4.5.2-1
    kdegames-kblackbox 4.5.2-1
    kdegames-kblocks 4.5.2-1
    kdegames-kbounce 4.5.2-1
    kdegames-kbreakout 4.5.2-1
    kdegames-kdiamond 4.5.2-1
    kdegames-kfourinline 4.5.2-1
    kdegames-kgoldrunner 4.5.2-1
    kdegames-kigo 4.5.2-1
    kdegames-killbots 4.5.2-1
    kdegames-kiriki 4.5.2-1
    kdegames-kjumpingcube 4.5.2-1
    kdegames-klines 4.5.2-1
    kdegames-kmahjongg 4.5.2-1
    kdegames-kmines 4.5.2-1
    kdegames-knetwalk 4.5.2-1
    kdegames-kolf 4.5.2-1
    kdegames-kollision 4.5.2-1
    kdegames-konquest 4.5.2-1
    kdegames-kpatience 4.5.2-1
    kdegames-kreversi 4.5.2-1
    kdegames-ksame 4.5.2-1
    kdegames-kshisen 4.5.2-1
    kdegames-ksirk 4.5.2-1
    kdegames-kspaceduel 4.5.2-1
    kdegames-ksquares 4.5.2-1
    kdegames-ksudoku 4.5.2-1
    kdegames-ktron 4.5.2-1
    kdegames-ktuberling 4.5.2-1
    kdegames-kubrick 4.5.2-1
    kdegames-libkdegames 4.5.2-1
    kdegames-libkmahjongg 4.5.2-1
    kdegames-lskat 4.5.2-1
    kdegames-palapeli 4.5.2-1
    kdegraphics-gwenview 4.5.2-2
    kdegraphics-kamera 4.5.2-2
    kdegraphics-kcolorchooser 4.5.2-2
    kdegraphics-kgamma 4.5.2-2
    kdegraphics-kolourpaint 4.5.2-2
    kdegraphics-kruler 4.5.2-2
    kdegraphics-ksnapshot 4.5.2-2
    kdegraphics-libs 4.5.2-2
    kdegraphics-okular 4.5.2-2
    kdelibs 4.5.2-2
    kdemultimedia-dragonplayer 4.5.2-1
    kdemultimedia-ffmpegthumbs 4.5.2-1
    kdemultimedia-juk 4.5.2-1
    kdemultimedia-kioslave 4.5.2-1
    kdemultimedia-kmix 4.5.2-1
    kdemultimedia-kscd 4.5.2-1
    kdemultimedia-mplayerthumbs 4.5.2-1
    kdenetwork-filesharing 4.5.2-1
    kdenetwork-kdnssd 4.5.2-1
    kdenetwork-kget 4.5.2-1
    kdenetwork-kopete 4.5.2-1
    kdenetwork-kppp 4.5.2-1
    kdenetwork-krdc 4.5.2-1
    kdenetwork-krfb 4.5.2-1
    kdepim-akonadiconsole 4.4.7-1
    kdepim-akregator 4.4.7-1
    kdepim-blogilo 4.4.7-1
    kdepim-console 4.4.7-1
    kdepim-kaddressbook 4.4.7-1
    kdepim-kalarm 4.4.7-1
    kdepim-kjots 4.4.7-1
    kdepim-kleopatra 4.4.7-1
    kdepim-kmail 4.4.7-1
    kdepim-knode 4.4.7-1
    kdepim-knotes 4.4.7-1
    kdepim-kontact 4.4.7-1
    kdepim-korganizer 4.4.7-1
    kdepim-kresources 4.4.7-1
    kdepim-ktimetracker 4.4.7-1
    kdepim-libkdepim 4.4.7-1
    kdepim-runtime 4.4.7-1
    kdepim-wizards 4.4.7-1
    kdepimlibs 4.5.2-1
    kdeplasma-addons-applets-bball 4.5.2-1
    kdeplasma-addons-applets-binary-clock 4.5.2-1
    kdeplasma-addons-applets-blackboard 4.5.2-1
    kdeplasma-addons-applets-bookmarks 4.5.2-1
    kdeplasma-addons-applets-bubblemon 4.5.2-1
    kdeplasma-addons-applets-calculator 4.5.2-1
    kdeplasma-addons-applets-charselect 4.5.2-1
    kdeplasma-addons-applets-comic 4.5.2-1
    kdeplasma-addons-applets-community 4.5.2-1
    kdeplasma-addons-applets-dict 4.5.2-1
    kdeplasma-addons-applets-eyes 4.5.2-1
    kdeplasma-addons-applets-fifteenpuzzle 4.5.2-1
    kdeplasma-addons-applets-filewatcher 4.5.2-1
    kdeplasma-addons-applets-frame 4.5.2-1
    kdeplasma-addons-applets-fuzzy-clock 4.5.2-1
    kdeplasma-addons-applets-incomingmsg 4.5.2-1
    kdeplasma-addons-applets-kdeobservatory 4.5.2-1
    kdeplasma-addons-applets-kimpanel 4.5.2-1
    kdeplasma-addons-applets-knowledgebase 4.5.2-1
    kdeplasma-addons-applets-kolourpicker 4.5.2-1
    kdeplasma-addons-applets-konqprofiles 4.5.2-1
    kdeplasma-addons-applets-konsoleprofiles 4.5.2-1
    kdeplasma-addons-applets-lancelot 4.5.2-1
    kdeplasma-addons-applets-leavenote 4.5.2-1
    kdeplasma-addons-applets-life 4.5.2-1
    kdeplasma-addons-applets-luna 4.5.2-1
    kdeplasma-addons-applets-magnifique 4.5.2-1
    kdeplasma-addons-applets-mediaplayer 4.5.2-1
    kdeplasma-addons-applets-microblog 4.5.2-1
    kdeplasma-addons-applets-news 4.5.2-1
    kdeplasma-addons-applets-notes 4.5.2-1
    kdeplasma-addons-applets-nowplaying 4.5.2-1
    kdeplasma-addons-applets-paste 4.5.2-1
    kdeplasma-addons-applets-pastebin 4.5.2-1
    kdeplasma-addons-applets-plasmaboard 4.5.2-1
    kdeplasma-addons-applets-previewer 4.5.2-1
    kdeplasma-addons-applets-qalculate 4.5.2-1
    kdeplasma-addons-applets-rememberthemilk 4.5.2-1
    kdeplasma-addons-applets-rssnow 4.5.2-1
    kdeplasma-addons-applets-showdashboard 4.5.2-1
    kdeplasma-addons-applets-showdesktop 4.5.2-1
    kdeplasma-addons-applets-social-news 4.5.2-1
    kdeplasma-addons-applets-spellcheck 4.5.2-1
    kdeplasma-addons-applets-systemloadviewer 4.5.2-1
    kdeplasma-addons-applets-timer 4.5.2-1
    kdeplasma-addons-applets-unitconverter 4.5.2-1
    kdeplasma-addons-applets-weather 4.5.2-1
    kdeplasma-addons-applets-weatherstation 4.5.2-1
    kdeplasma-addons-applets-webslice 4.5.2-1
    kdeplasma-addons-libs 4.5.2-1
    kdeplasma-addons-runners-audioplayercontrol 4.5.2-1
    kdeplasma-addons-runners-browserhistory 4.5.2-1
    kdeplasma-addons-runners-characters 4.5.2-1
    kdeplasma-addons-runners-contacts 4.5.2-1
    kdeplasma-addons-runners-converter 4.5.2-1
    kdeplasma-addons-runners-datetime 4.5.2-1
    kdeplasma-addons-runners-katesessions 4.5.2-1
    kdeplasma-addons-runners-konquerorsessions 4.5.2-1
    kdeplasma-addons-runners-konsolesessions 4.5.2-1
    kdeplasma-addons-runners-kopete 4.5.2-1
    kdeplasma-addons-runners-mediawiki 4.5.2-1
    kdeplasma-addons-runners-spellchecker 4.5.2-1
    kdeplasma-addons-wallpapers-mandelbrot 4.5.2-1
    kdeplasma-addons-wallpapers-marble 4.5.2-1
    kdeplasma-addons-wallpapers-pattern 4.5.2-1
    kdeplasma-addons-wallpapers-virus 4.5.2-1
    kdeplasma-addons-wallpapers-weather 4.5.2-1
    kdesdk-cervisia 4.5.2-1
    kdesdk-dolphin-plugins 4.5.2-1
    kdesdk-kapptemplate 4.5.2-1
    kdesdk-kate 4.5.2-1
    kdesdk-kbugbuster 4.5.2-1
    kdesdk-kcachegrind 4.5.2-1
    kdesdk-kdeaccounts-plugin 4.5.2-1
    kdesdk-kdepalettes 4.5.2-1
    kdesdk-kioslave 4.5.2-1
    kdesdk-kmtrace 4.5.2-1
    kdesdk-kompare 4.5.2-1
    kdesdk-kpartloader 4.5.2-1
    kdesdk-kprofilemethod 4.5.2-1
    kdesdk-kstartperf 4.5.2-1
    kdesdk-kuiviewer 4.5.2-1
    kdesdk-lokalize 4.5.2-1
    kdesdk-poxml 4.5.2-1
    kdesdk-scripts 4.5.2-1
    kdesdk-strigi-analyzer 4.5.2-1
    kdesdk-umbrello 4.5.2-1
    kdetoys-amor 4.5.2-1
    kdetoys-kteatime 4.5.2-1
    kdetoys-ktux 4.5.2-1
    kdeutils-ark 4.5.2-2
    kdeutils-kcalc 4.5.2-2
    kdeutils-kcharselect 4.5.2-2
    kdeutils-kdf 4.5.2-2
    kdeutils-kfloppy 4.5.2-2
    kdeutils-kgpg 4.5.2-2
    kdeutils-kremotecontrol 4.5.2-2
    kdeutils-ktimer 4.5.2-2
    kdeutils-kwallet 4.5.2-2
    kdeutils-okteta 4.5.2-2
    kdeutils-printer-applet 4.5.2-2
    kdeutils-superkaramba 4.5.2-2
    kdeutils-sweeper 4.5.2-2
    kdewebdev-kfilereplace 4.5.2-1
    kdewebdev-kimagemapeditor 4.5.2-1
    kdewebdev-klinkstatus 4.5.2-1
    kdewebdev-kommander 4.5.2-1
    kernel26 2.6.35.7-1
    kernel26-headers 2.6.35.7-1
    ksplash-theme-generator 0.4-1
    kwebkitpart 0.9.6-1
    lame 3.98.4-1
    lapack 3.2.2-2
    lcms 1.19-1
    less 436-1
    lesstif 0.95.2-2
    lib32-alsa-lib 1.0.23-4
    lib32-expat 2.0.1-7
    lib32-fontconfig 2.8.0-3
    lib32-freetype2 2.4.3-1
    lib32-gcc-libs 4.5.1-7
    lib32-glibc 2.12.1-7
    lib32-libdrm 2.4.21-4
    lib32-libgl 7.8.2-5
    lib32-libice 1.0.6-3
    lib32-libsm 1.1.1-3
    lib32-libx11 1.3.5-2
    lib32-libxau 1.0.6-2
    lib32-libxcb 1.7-2
    lib32-libxcursor 1.1.10-3
    lib32-libxdamage 1.1.3-3
    lib32-libxdmcp 1.0.3-4
    lib32-libxext 1.1.2-3
    lib32-libxfixes 4.0.5-3
    lib32-libxrandr 1.3.0-3
    lib32-libxrender 0.9.6-4
    lib32-libxt 1.0.8-3
    lib32-libxxf86dga 1.1.1-3
    lib32-libxxf86vm 1.1.0-3
    lib32-mesa 7.8.2-5
    lib32-util-linux-ng 2.18-3
    lib32-zlib 1.2.5-5
    libao 1.0.0-2
    libarchive 2.8.4-2
    libass 0.9.11-1
    libassuan 2.0.1-1
    libcaca 0.99.beta17-1
    libcap 2.19-1
    libcddb 1.3.2-2
    libcdio 0.82-1
    libcroco 0.6.2-1
    libcups 1.4.4-3
    libdaemon 0.14-1
    libdatrie 0.2.4-1
    libdbusmenu-qt 0.6.4-1
    libdca 0.0.5-2
    libdmx 1.1.0-1
    libdrm 2.4.22-1
    libdvbpsi 0.1.7-1
    libdvdnav 4.1.3-2
    libdvdread 4.1.3-2
    libebml 1.0.0-1
    libevent 1.4.14b-2
    libexif 0.6.19-1
    libfetch 2.33-1
    libffi 3.0.9-1
    libfontenc 1.1.0-1
    libftdi 0.18-1
    libgadu 1.9.1-1
    libgcal 0.9.6-1
    libgcrypt 1.4.6-1
    libggz 0.0.14.1-1
    libgl 7.9-1
    libglade 2.6.4-2
    libgpg-error 1.9-2
    libgphoto2 2.4.9-1
    libgssglue 0.1-2
    libical 0.46-1
    libice 1.0.7-1
    libid3tag 0.15.1b-6
    libidl2 0.8.14-1
    libidn 1.19-1
    libieee1284 0.2.11-3
    libindi 0.6.2-1
    libiodbc 3.52.7-4
    libjpeg 8.0.2-1
    libksba 1.0.8-1
    libktorrent 1.0.4-1
    libldap 2.4.23-1
    libmad 0.15.1b-4
    libmatroska 1.0.0-1
    libmng 1.0.10-3
    libmodplug 0.8.8.1-1
    libmp4v2 1.9.1-1
    libmpc 0.8.2-2
    libmpcdec 1.2.6-2
    libmpeg2 0.5.1-1
    libmsn 4.1-2
    libmtp 1.0.2-1
    libmysqlclient 5.1.51-1
    libnice 0.0.13-3
    libnl 1.1-2
    libnova 0.13.0-1
    libofa 0.9.3-2
    libogg 1.2.0-1
    libotr 3.2.0-1
    libpcap 1.1.1-1
    libpciaccess 0.12.0-1
    libpng 1.4.4-1
    libproxy 0.4.6-2
    libqalculate 0.9.7-1
    libraw1394 2.0.5-1
    librpcsecgss 0.19-3
    librsvg 2.32.0-2
    libsamplerate 0.1.7-1
    libsasl 2.1.23-4
    libshout 2.2.2-3
    libsm 1.1.1-1
    libsndfile 1.0.23-1
    libspectre 0.2.6-2
    libssh 0.4.6-1
    libtasn1 2.6-1
    libthai 0.1.14-1
    libtheora 1.1.1-1
    libtiff 3.9.4-1
    libtirpc 0.2.1-1
    libtool 2.4-1
    libusb 0.1.12-4
    libusb1 1.0.8-1
    libva 1.0.5-2
    libvdpau 0.4-1
    libvisual 0.4.0-3
    libvncserver 0.9.7-3
    libvorbis 1.3.1-1
    libvpx 0.9.2-1
    libwmf 0.2.8.4-8
    libx11 1.3.5-1
    libx86 1.1-2
    libxau 1.0.6-1
    libxaw 1.0.8-1
    libxcb 1.7-1
    libxcomposite 0.4.2-1
    libxcursor 1.1.10-1
    libxdamage 1.1.3-1
    libxdmcp 1.0.3-1
    libxext 1.1.2-1
    libxfixes 4.0.5-1
    libxfont 1.4.2-2
    libxft 2.1.14-1
    libxi 1.3.2-1
    libxinerama 1.1-1
    libxkbfile 1.0.6-1
    libxklavier 5.0-1
    libxml2 2.7.7-2
    libxmu 1.0.5-1
    libxp 1.0.0-3
    libxpm 3.5.8-1
    libxrandr 1.3.0-1
    libxrender 0.9.6-1
    libxslt 1.1.26-2
    libxss 1.2.0-1
    libxt 1.0.8-1
    libxtst 1.1.0-1
    libxv 1.0.5-1
    libxvmc 1.0.6-1
    libxxf86dga 1.1.1-1
    libxxf86vm 1.1.0-1
    libzip 0.9.3-1
    licenses 2.6-1
    linux-api-headers 2.6.34-1
    linux-firmware 20100911-1
    lirc-utils 0.8.6-5
    lm_sensors 3.2.0-1
    logrotate 3.7.9-1
    lua 5.1.4-6
    lua-lzlib 0.4_work2-4
    lua-yajl-git 20100308-1
    luafilesystem 1.5.0-1
    luasec 0.4-2
    luasocket 2.0.2-3
    lvm2 2.02.74-1
    lzo2 2.03-1
    m4 1.4.15-1
    mailx 8.1.1-7
    make 3.82-2
    man-db 2.5.7-1
    man-pages 3.29-1
    mcpp 2.7.2-2
    mdadm 3.1.4-1
    mesa-demos 8.0.1-1
    mkinitcpio 0.6.7-1
    mkinitcpio-busybox 1.17.2-1
    mlocate 0.23.1-2
    module-init-tools 3.12-1
    mozilla-common 1.4-1
    mpfr 3.0.0.p4-1
    mplayer 32492-2
    musicbrainz 2.1.5-4
    mysql 5.1.51-1
    mysql-clients 5.1.51-1
    nano 2.2.5-1
    ncurses 5.7-3
    neon 0.29.3-2
    net-tools 1.60-14
    nfs-utils 1.2.2-3
    nfsidmap 0.23-3
    nickle 2.70-1
    nspr 4.8.6-1
    nss 3.12.8-1
    openbabel 2.2.3-1
    opencore-amr 0.1.2-1
    openexr 1.6.1-1
    openjdk6 6.b20_1.9.1-1
    openjpeg 1.3-3
    openssh 5.6p1-1
    openssl 1.0.0.a-3
    openvpn 2.1.3-1
    orbit2 2.14.19-1
    orc 0.4.7-1
    oss 4.2_2003-1
    oxygen-icons 4.5.2-1
    package-query 0.4-1
    pacman 3.4.1-1
    pacman-mirrorlist 20100825-1
    pam 1.1.1-1
    pango 1.28.3-1
    patch 2.6.1-1
    pciutils 3.1.7-1
    pcmciautils 017-1
    pcre 8.10-1
    perl 5.12.1-2
    perl-error 0.17016-1
    perl-html-parser 3.66-1
    perl-html-tagset 3.20-1
    perl-libwww 5.836-1
    perl-uri 1.54-1
    perl-xyne-arch 2010.10.09.1-1
    perl-xyne-common 2010.10.09.1-1
    phonon 4.4.2-2
    phonon-gstreamer 4.4.2-2
    phoronix-test-suite 2.8.1-1
    php 5.3.3-2
    pinentry 0.8.0-2
    pixman 0.18.4-1
    pkg-config 0.25-2
    pm-quirks 0.20100619-1
    pm-utils 1.4.0-1
    podofo 0.8.4-1
    polkit 0.98-1
    polkit-kde 0.95.1-2
    polkit-qt 0.96.1-3
    poppler 0.14.4-1
    poppler-data 0.4.3-1
    poppler-qt 0.14.4-1
    popt 1.16-2
    postgresql-libs 9.0.1-2
    powerpill 2010.08.24.1-1
    ppl 0.11-1
    ppp 2.4.5-1
    printproto 1.0.4-2
    procps 3.2.8-1
    psmisc 22.13-1
    pth 2.0.7-3
    pycairo 1.8.10-2
    pycrypto 2.3-1
    pycups 1.9.51-2
    pygobject 2.26.0-2
    pygtk 2.22.0-3
    pyqt 4.8.0-1
    pysmbc 1.0.9-1
    python-dateutil 1.5-2
    python-dnspython 1.8.0-2
    python-imaging 1.1.7-2
    python-lxml 2.2.8-2
    python-mechanize 0.2.2-2
    python-numpy 1.5.0-2
    python-pypdf 1.12-5
    python-urwid 0.9.9.1-2
    python2 2.7-2
    qca 2.0.2-2
    qca-ossl 2.0.0-3
    qimageblitz 0.0.6-1
    qscintilla 2.4.5-4
    qt 4.7.0-4
    qwt 5.2.1-1
    randrproto 1.3.1-1
    raptor 1.4.21-1
    rarian 0.8.1-1
    rasqal 0.9.20-1
    rdesktop 1.6.0-5
    readline 6.1.002-1
    recode 3.6-5
    recordproto 1.14-1
    redland 1.0.12-1
    reiserfsprogs 3.6.21-2
    renderproto 0.11.1-1
    rp-pppoe 3.10-5
    rpcbind 0.2.0-2
    rrdtool 1.4.4-2
    run-parts 3.4.1-1
    sane 1.0.21-3
    schroedinger 1.0.9-1
    scrnsaverproto 1.2.0-1
    sdl 1.2.14-5
    sdl_image 1.2.10-2
    sed 4.2.1-2
    shadow 4.1.4.2-3
    shared-desktop-ontologies 0.5-1
    shared-mime-info 0.80-1
    sip 4.11.2-1
    smbclient 3.5.6-1
    soprano 2.5.2-1
    speex 1.2rc1-1
    sqlite3 3.7.3-1
    stdin-plasmoid-svn 0.2r32-1
    strigi 0.7.2-3
    subversion 1.6.9-6
    sudo 1.7.4.p4-1
    sysfsutils 2.1.0-5
    syslog-ng 3.1.2-1
    system-config-printer-common 1.2.5-3
    sysvinit 2.88-2
    taglib 1.6.3-1
    talloc 2.0.1-1
    tar 1.23-3
    tcp_wrappers 7.6-12
    tdb 1.2.1-2
    telepathy-farsight 0.0.15-2
    telepathy-glib 0.12.2-1
    telepathy-qt4 0.3.5-1
    texinfo 4.13a-4
    tidyhtml 1.46-1
    ttf-dejavu 2.30-2
    ttf-freefont 20090104-2
    ttf-ms-fonts 2.0-3
    tunepimp 0.5.3-8
    twisted 10.1.0-1
    tzdata 2010n-1
    udev 163-1
    unixodbc 2.3.0-1
    unrar 3.9.10-1
    unzip 6.0-5
    usbutils 0.90-1
    util-linux-ng 2.18-3
    v4l-utils 0.8.1-1
    vbetool 1.1-1
    vi 050325-3
    videoproto 2.3.1-1
    vim 7.3.3-2
    vim-colorsamplerpack 8.03-2
    vim-runtime 7.3.3-2
    virtualbox_bin 3.2.10-2
    virtuoso 6.1.2-1
    vlc 1.1.4.1-2
    wget 1.12-2
    which 2.20-3
    wicd 1.7.0-6
    wine 1.3.5-1
    wireless_tools 29-3
    wpa_supplicant 0.7.3-1
    x264 20101013-1
    xbitmaps 1.1.0-1
    xcb-proto 1.6-2
    xcb-util 0.3.6-1
    xdg-utils 1.0.2.20100618-1
    xextproto 7.1.2-1
    xf86-input-evdev 2.5.0-1
    xf86-input-keyboard 1.4.0-3
    xf86-input-mouse 1.6.0-1
    xf86-input-synaptics 1.3.0-1
    xf86-video-intel 2.13.0-4
    xf86-video-vesa 2.3.0-3
    xf86dgaproto 2.1-1
    xf86vidmodeproto 2.3-1
    xfsprogs 3.1.3-1
    xineramaproto 1.2-1
    xkeyboard-config 2.0-1
    xorg-docs 1.5-1
    xorg-font-utils 7.5-2
    xorg-fonts-100dpi 1.0.1-3
    xorg-fonts-75dpi 1.0.1-3
    xorg-fonts-alias 1.0.2-1
    xorg-fonts-encodings 1.0.3-1
    xorg-fonts-misc 1.0.1-1
    xorg-iceauth 1.0.3-1
    xorg-luit 1.1.0-1
    xorg-res-utils 1.0.3-3
    xorg-server 1.9.0.901-2
    xorg-server-common 1.9.0.901-2
    xorg-server-utils 7.6-1
    xorg-sessreg 1.0.6-1
    xorg-twm 1.0.4-3
    xorg-utils 7.6-5
    xorg-xauth 1.0.4-1
    xorg-xbacklight 1.1.1-1
    xorg-xcmsdb 1.0.3-1
    xorg-xgamma 1.0.3-1
    xorg-xhost 1.0.3-1
    xorg-xinit 1.2.1-1
    xorg-xinput 1.5.2-1
    xorg-xkb-utils 7.5-2
    xorg-xmodmap 1.0.5-1
    xorg-xrandr 1.3.3-1
    xorg-xrdb 1.0.6-1
    xorg-xrefresh 1.0.3-1
    xorg-xset 1.2.0-1
    xorg-xsetroot 1.0.3-1
    xproto 7.0.18-1
    xterm 266-1
    xvidcore 1.2.2-1
    xz 5.0.0-1
    yajl 1.0.9-3
    yaourt 0.9.5-1
    zlib 1.2.5-2
    zope-interface 3.5.3-2
    zvbi 0.2.33-2
    Last edited by DarksideEE7 (2010-10-28 16:29:14)

    Could it be that I don't have a swap file?  Surely not....I have 4GB of memory and I've never had problems with suspend in the past. 
    I was able to get it to suspend while in KDE using pm-suspend while in konsole and all of the console screens were black, with the exception of tty7, which had konsole up (without any window decoration).  I wasn't able to execute any commands (including shutdown), nor could I su - to root. 
    This happened a second time, and it mentioned that it was enable to mount  sda2 (which is my route partition)  Any ideas on how to fix this?  I NEED suspend. 
    Other than that I'm getting great performance, especially with my fstab options set in place.
    Last edited by DarksideEE7 (2010-10-28 23:40:08)

  • Laptop screen does not turn on after resume from suspend/hibernate

    I use systemctl suspend/hibernate to resume,  but the screen does not turn on from resume. everything else still functions just fine, meaning i can type in reboot and reboot, but a "turned off" black screen.
    00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h Processor Root Complex
    00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] BeaverCreek [Radeon HD 6520G]
    00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] BeaverCreek HDMI Audio [Radeon HD 6500D and 6400G-6600G series]
    00:02.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Family 12h Processor Root Port
    00:11.0 SATA controller: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode]
    00:12.0 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller (rev 11)
    00:12.2 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller (rev 11)
    00:13.0 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller (rev 11)
    00:13.2 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller (rev 11)
    00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller (rev 13)
    00:14.1 IDE interface: Advanced Micro Devices, Inc. [AMD] FCH IDE Controller
    00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD] FCH Azalia Controller (rev 01)
    00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge (rev 11)
    00:14.4 PCI bridge: Advanced Micro Devices, Inc. [AMD] FCH PCI Bridge (rev 40)
    00:15.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Hudson PCI to PCI bridge (PCIE port 0)
    00:15.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Hudson PCI to PCI bridge (PCIE port 1)
    00:15.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Hudson PCI to PCI bridge (PCIE port 2)
    00:16.0 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller (rev 11)
    00:16.2 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller (rev 11)
    00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 0 (rev 43)
    00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 1
    00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 2
    00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 3
    00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 4
    00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 6
    00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 5
    00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 7
    04:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)
    05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.19.0-1-ARCH (builduser@tobias) (gcc version 4.9.2 20150204 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Feb 9 07:08:20 CET 2015
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=70f3d39a-cd3c-4127-84d2-9af3430201ab rw quiet rootfstype=xfs i8042.nomux=1 i8042.reset
    [ 0.000000] tseg: 009ff00000
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009f8f4fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009f8f5000-0x000000009f939fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f93a000-0x000000009f951fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009f952000-0x000000009f954fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f955000-0x000000009f955fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009f956000-0x000000009f96cfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009f96d000-0x000000009f974fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f975000-0x000000009f9a4fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009f9a5000-0x000000009f9a5fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f9a6000-0x000000009f9b5fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009f9b6000-0x000000009f9c3fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f9c4000-0x000000009f9c5fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009f9c6000-0x000000009f9ccfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f9cd000-0x000000009fa02fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009fa03000-0x000000009fc05fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009fc06000-0x000000009fd78fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009fd79000-0x000000009fef5fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009fef6000-0x000000009fefffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000023effffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: TOSHIBA Satellite L775D/TKBSS, BIOS 1.40 07/22/2011
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x23f000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF write-through
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask FF00000000 write-back
    [ 0.000000] 1 base 009FF00000 mask FFFFF00000 uncachable
    [ 0.000000] 2 base 00A0000000 mask FFE0000000 uncachable
    [ 0.000000] 3 base 00C0000000 mask FFC0000000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 000000023f000000 aka 9200M
    [ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
    [ 0.000000] e820: update [mem 0x9ff00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0x9ff00 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fcf30-0x000fcf3f] mapped at [ffff8800000fcf30]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23ee00000-0x23effffff]
    [ 0.000000] [mem 0x23ee00000-0x23effffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x220000000-0x23edfffff]
    [ 0.000000] [mem 0x220000000-0x23edfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x21fffffff]
    [ 0.000000] [mem 0x200000000-0x21fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x9f8f4fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x9f7fffff] page 2M
    [ 0.000000] [mem 0x9f800000-0x9f8f4fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9f955000-0x9f955fff]
    [ 0.000000] [mem 0x9f955000-0x9f955fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9f9a6000-0x9f9b5fff]
    [ 0.000000] [mem 0x9f9a6000-0x9f9b5fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9fc06000-0x9fd78fff]
    [ 0.000000] [mem 0x9fc06000-0x9fd78fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9fef6000-0x9fefffff]
    [ 0.000000] [mem 0x9fef6000-0x9fefffff] page 4k
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x100001000-0x1ffffffff]
    [ 0.000000] [mem 0x100001000-0x1001fffff] page 4k
    [ 0.000000] [mem 0x100200000-0x13fffffff] page 2M
    [ 0.000000] [mem 0x140000000-0x1ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x37652000-0x37b20fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000F0450 000024 (v02 TOSASU)
    [ 0.000000] ACPI: XSDT 0x000000009F93A070 000064 (v01 TOSASU TOSASU00 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x000000009F94E438 0000F4 (v04 TOSASU TOSASU00 01072009 AMI 00010013)
    [ 0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20141107/tbfadt-649)
    [ 0.000000] ACPI: DSDT 0x000000009F93A168 0142CF (v02 TOSASU TOSASU00 00000140 INTL 20051117)
    [ 0.000000] ACPI: FACS 0x000000009F9C6F80 000040
    [ 0.000000] ACPI: APIC 0x000000009F94E530 000072 (v03 TOSASU TOSASU00 01072009 AMI 00010013)
    [ 0.000000] ACPI: ECDT 0x000000009F94E5A8 0000C1 (v01 TOSASU TOSASU00 01072009 AMI. 00000004)
    [ 0.000000] ACPI: SLIC 0x000000009F94E670 000176 (v01 TOSASU TOSASU00 01072009 MSFT 00000001)
    [ 0.000000] ACPI: MCFG 0x000000009F94E7E8 00003C (v01 A M I GMCH945. 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x000000009F94E828 000038 (v01 TOSASU TOSASU00 01072009 AMI 00000004)
    [ 0.000000] ACPI: SSDT 0x000000009F94E860 000E34 (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 0x000000009F94F698 00193D (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000023effffff]
    [ 0.000000] NODE_DATA(0) allocated [mem 0x23eff8000-0x23effbfff]
    [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236e00000-ffff88023e5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x23effffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x9f8f4fff]
    [ 0.000000] node 0: [mem 0x9f955000-0x9f955fff]
    [ 0.000000] node 0: [mem 0x9f9a6000-0x9f9b5fff]
    [ 0.000000] node 0: [mem 0x9fc06000-0x9fd78fff]
    [ 0.000000] node 0: [mem 0x9fef6000-0x9fefffff]
    [ 0.000000] node 0: [mem 0x100001000-0x23effffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x23effffff]
    [ 0.000000] On node 0 totalpages: 1960479
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 10155 pages used for memmap
    [ 0.000000] DMA32 zone: 649859 pages, LIFO batch:31
    [ 0.000000] Normal zone: 20416 pages used for memmap
    [ 0.000000] Normal zone: 1306623 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x05] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 5, 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: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f8f5000-0x9f939fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f93a000-0x9f951fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f952000-0x9f954fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f956000-0x9f96cfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f96d000-0x9f974fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f975000-0x9f9a4fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9a5000-0x9f9a5fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9b6000-0x9f9c3fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9c4000-0x9f9c5fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9c6000-0x9f9ccfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9cd000-0x9fa02fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9fa03000-0x9fc05fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9fd79000-0x9fef5fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9ff00000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed60fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed61000-0xfed70fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed71000-0xfed7ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
    [ 0.000000] e820: [mem 0x9ff00000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 31 pages/cpu @ffff88023ec00000 s86336 r8192 d32448 u524288
    [ 0.000000] pcpu-alloc: s86336 r8192 d32448 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1929823
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=70f3d39a-cd3c-4127-84d2-9af3430201ab rw quiet rootfstype=xfs i8042.nomux=1 i8042.reset
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 7635708K/7841916K available (5531K kernel code, 917K rwdata, 1744K rodata, 1164K init, 1156K bss, 206208K reserved, 0K cma-reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:8448 nr_irqs:456 16
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 1397.380 MHz processor
    [ 0.000043] Calibrating delay loop (skipped), value calculated using timer frequency.. 2795.20 BogoMIPS (lpj=4657933)
    [ 0.000046] pid_max: default: 32768 minimum: 301
    [ 0.000053] ACPI: Core revision 20141107
    [ 0.000055] TOSHIBA Satellite detected - force copy of DSDT to local memory
    [ 0.000123] ACPI: Forced DSDT copy: length 0x142CF copied locally, original unmapped
    [ 0.015021] ACPI: All ACPI Tables successfully acquired
    [ 0.016280] Security Framework initialized
    [ 0.016286] Yama: becoming mindful.
    [ 0.016907] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.019182] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.020189] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.020201] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.020472] Initializing cgroup subsys memory
    [ 0.020479] Initializing cgroup subsys devices
    [ 0.020482] Initializing cgroup subsys freezer
    [ 0.020484] Initializing cgroup subsys net_cls
    [ 0.020487] Initializing cgroup subsys blkio
    [ 0.020510] CPU: Physical Processor ID: 0
    [ 0.020511] CPU: Processor Core ID: 0
    [ 0.020513] mce: CPU supports 6 MCE banks
    [ 0.020522] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Last level dTLB entries: 4KB 1024, 2MB 128, 4MB 64, 1GB 0
    [ 0.020644] Freeing SMP alternatives memory: 20K (ffffffff81a0a000 - ffffffff81a0f000)
    [ 0.021880] ftrace: allocating 21166 entries in 83 pages
    [ 0.035456] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.068473] smpboot: CPU0: AMD A6-3400M APU with Radeon(tm) HD Graphics (fam: 12, model: 01, stepping: 00)
    [ 0.174081] Performance Events: AMD PMU driver.
    [ 0.174086] ... version: 0
    [ 0.174087] ... bit width: 48
    [ 0.174088] ... generic registers: 4
    [ 0.174089] ... value mask: 0000ffffffffffff
    [ 0.174090] ... max period: 00007fffffffffff
    [ 0.174091] ... fixed-purpose events: 0
    [ 0.174092] ... event mask: 000000000000000f
    [ 0.191034] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.197738] x86: Booting SMP configuration:
    [ 0.197744] .... node #0, CPUs: #1 #2 #3
    [ 0.250891] x86: Booted up 1 node, 4 CPUs
    [ 0.250896] smpboot: Total of 4 processors activated (11183.83 BogoMIPS)
    [ 0.252264] devtmpfs: initialized
    [ 0.257696] PM: Registering ACPI NVS region [mem 0x9f8f5000-0x9f939fff] (282624 bytes)
    [ 0.257715] PM: Registering ACPI NVS region [mem 0x9f952000-0x9f954fff] (12288 bytes)
    [ 0.257718] PM: Registering ACPI NVS region [mem 0x9f96d000-0x9f974fff] (32768 bytes)
    [ 0.257721] PM: Registering ACPI NVS region [mem 0x9f9a5000-0x9f9a5fff] (4096 bytes)
    [ 0.257724] PM: Registering ACPI NVS region [mem 0x9f9b6000-0x9f9c3fff] (57344 bytes)
    [ 0.257727] PM: Registering ACPI NVS region [mem 0x9f9c6000-0x9f9ccfff] (28672 bytes)
    [ 0.257729] PM: Registering ACPI NVS region [mem 0x9fa03000-0x9fc05fff] (2109440 bytes)
    [ 0.258125] pinctrl core: initialized pinctrl subsystem
    [ 0.258173] RTC time: 18:50:52, date: 02/22/15
    [ 0.258343] NET: Registered protocol family 16
    [ 0.270952] cpuidle: using governor ladder
    [ 0.284279] cpuidle: using governor menu
    [ 0.284490] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.284493] ACPI: bus type PCI registered
    [ 0.284495] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.284605] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.284608] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.285035] PCI: Using configuration type 1 for base access
    [ 0.299021] ACPI: Added _OSI(Module Device)
    [ 0.299025] ACPI: Added _OSI(Processor Device)
    [ 0.299027] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.299029] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.300870] ACPI : EC: EC description table is found, configuring boot EC
    [ 0.302900] ACPI: Executed 2 blocks of module-level executable AML code
    [ 0.831121] ACPI: Interpreter enabled
    [ 0.831132] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20141107/hwxface-580)
    [ 0.831140] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
    [ 0.831167] ACPI: (supports S0 S3 S4 S5)
    [ 0.831169] ACPI: Using IOAPIC for interrupt routing
    [ 0.831382] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.842727] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.842738] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.843157] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
    [ 0.843782] PCI host bridge to bus 0000:00
    [ 0.843788] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.843792] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.843796] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.843800] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.843803] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.843806] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.843810] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.843813] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff]
    [ 0.843825] pci 0000:00:00.0: [1022:1705] type 00 class 0x060000
    [ 0.843978] pci 0000:00:01.0: [1002:9647] type 00 class 0x030000
    [ 0.843993] pci 0000:00:01.0: reg 0x10: [mem 0xc0000000-0xcfffffff pref]
    [ 0.844002] pci 0000:00:01.0: reg 0x14: [io 0xf000-0xf0ff]
    [ 0.844011] pci 0000:00:01.0: reg 0x18: [mem 0xfeb00000-0xfeb3ffff]
    [ 0.844070] pci 0000:00:01.0: supports D1 D2
    [ 0.844185] pci 0000:00:01.1: [1002:1714] type 00 class 0x040300
    [ 0.844197] pci 0000:00:01.1: reg 0x10: [mem 0xfeb44000-0xfeb47fff]
    [ 0.844272] pci 0000:00:01.1: supports D1 D2
    [ 0.844388] pci 0000:00:02.0: [1022:1707] type 01 class 0x060400
    [ 0.844483] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.844641] pci 0000:00:11.0: [1022:7801] type 00 class 0x010601
    [ 0.844665] pci 0000:00:11.0: reg 0x10: [io 0xf190-0xf197]
    [ 0.844678] pci 0000:00:11.0: reg 0x14: [io 0xf180-0xf183]
    [ 0.844690] pci 0000:00:11.0: reg 0x18: [io 0xf170-0xf177]
    [ 0.844703] pci 0000:00:11.0: reg 0x1c: [io 0xf160-0xf163]
    [ 0.844715] pci 0000:00:11.0: reg 0x20: [io 0xf150-0xf15f]
    [ 0.844728] pci 0000:00:11.0: reg 0x24: [mem 0xfeb4e000-0xfeb4e7ff]
    [ 0.844896] pci 0000:00:12.0: [1022:7807] type 00 class 0x0c0310
    [ 0.844914] pci 0000:00:12.0: reg 0x10: [mem 0xfeb4d000-0xfeb4dfff]
    [ 0.845044] pci 0000:00:12.0: System wakeup disabled by ACPI
    [ 0.845114] pci 0000:00:12.2: [1022:7808] type 00 class 0x0c0320
    [ 0.845138] pci 0000:00:12.2: reg 0x10: [mem 0xfeb4c000-0xfeb4c0ff]
    [ 0.845242] pci 0000:00:12.2: supports D1 D2
    [ 0.845245] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.845313] pci 0000:00:12.2: System wakeup disabled by ACPI
    [ 0.845383] pci 0000:00:13.0: [1022:7807] type 00 class 0x0c0310
    [ 0.845400] pci 0000:00:13.0: reg 0x10: [mem 0xfeb4b000-0xfeb4bfff]
    [ 0.845529] pci 0000:00:13.0: System wakeup disabled by ACPI
    [ 0.845599] pci 0000:00:13.2: [1022:7808] type 00 class 0x0c0320
    [ 0.845623] pci 0000:00:13.2: reg 0x10: [mem 0xfeb4a000-0xfeb4a0ff]
    [ 0.845727] pci 0000:00:13.2: supports D1 D2
    [ 0.845730] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.845799] pci 0000:00:13.2: System wakeup disabled by ACPI
    [ 0.845867] pci 0000:00:14.0: [1022:780b] type 00 class 0x0c0500
    [ 0.846051] pci 0000:00:14.1: [1022:780c] type 00 class 0x01018a
    [ 0.846069] pci 0000:00:14.1: reg 0x10: [io 0xf140-0xf147]
    [ 0.846081] pci 0000:00:14.1: reg 0x14: [io 0xf130-0xf133]
    [ 0.846094] pci 0000:00:14.1: reg 0x18: [io 0xf120-0xf127]
    [ 0.846107] pci 0000:00:14.1: reg 0x1c: [io 0xf110-0xf113]
    [ 0.846119] pci 0000:00:14.1: reg 0x20: [io 0xf100-0xf10f]
    [ 0.846145] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    [ 0.846148] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
    [ 0.846151] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    [ 0.846154] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
    [ 0.846275] pci 0000:00:14.2: [1022:780d] type 00 class 0x040300
    [ 0.846303] pci 0000:00:14.2: reg 0x10: [mem 0xfeb40000-0xfeb43fff 64bit]
    [ 0.846387] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.846454] pci 0000:00:14.2: System wakeup disabled by ACPI
    [ 0.846515] pci 0000:00:14.3: [1022:780e] type 00 class 0x060100
    [ 0.846704] pci 0000:00:14.4: [1022:780f] type 01 class 0x060401
    [ 0.846806] pci 0000:00:14.4: System wakeup disabled by ACPI
    [ 0.846879] pci 0000:00:15.0: [1022:43a0] type 01 class 0x060400
    [ 0.846982] pci 0000:00:15.0: supports D1 D2
    [ 0.847053] pci 0000:00:15.0: System wakeup disabled by ACPI
    [ 0.847122] pci 0000:00:15.1: [1022:43a1] type 01 class 0x060400
    [ 0.847225] pci 0000:00:15.1: supports D1 D2
    [ 0.847296] pci 0000:00:15.1: System wakeup disabled by ACPI
    [ 0.847363] pci 0000:00:15.2: [1022:43a2] type 01 class 0x060400
    [ 0.847466] pci 0000:00:15.2: supports D1 D2
    [ 0.847537] pci 0000:00:15.2: System wakeup disabled by ACPI
    [ 0.847610] pci 0000:00:16.0: [1022:7807] type 00 class 0x0c0310
    [ 0.847628] pci 0000:00:16.0: reg 0x10: [mem 0xfeb49000-0xfeb49fff]
    [ 0.847757] pci 0000:00:16.0: System wakeup disabled by ACPI
    [ 0.847827] pci 0000:00:16.2: [1022:7808] type 00 class 0x0c0320
    [ 0.847851] pci 0000:00:16.2: reg 0x10: [mem 0xfeb48000-0xfeb480ff]
    [ 0.847956] pci 0000:00:16.2: supports D1 D2
    [ 0.847959] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.848026] pci 0000:00:16.2: System wakeup disabled by ACPI
    [ 0.848093] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
    [ 0.848228] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
    [ 0.848359] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
    [ 0.848490] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
    [ 0.848632] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
    [ 0.848762] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
    [ 0.848892] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
    [ 0.849021] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
    [ 0.849252] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.849360] pci 0000:00:14.4: PCI bridge to [bus 02] (subtractive decode)
    [ 0.849372] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 0.849376] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 0.849379] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 0.849383] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.849387] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.849390] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.849394] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 0.849483] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.849617] pci 0000:04:00.0: [10ec:8176] type 00 class 0x028000
    [ 0.849646] pci 0000:04:00.0: reg 0x10: [io 0xe000-0xe0ff]
    [ 0.849687] pci 0000:04:00.0: reg 0x18: [mem 0xfea00000-0xfea03fff 64bit]
    [ 0.849834] pci 0000:04:00.0: supports D1 D2
    [ 0.849837] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.849878] pci 0000:04:00.0: System wakeup disabled by ACPI
    [ 0.854467] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.854488] pci 0000:00:15.1: bridge window [io 0xe000-0xefff]
    [ 0.854499] pci 0000:00:15.1: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.854661] pci 0000:05:00.0: [10ec:8136] type 00 class 0x020000
    [ 0.854688] pci 0000:05:00.0: reg 0x10: [io 0xd000-0xd0ff]
    [ 0.854722] pci 0000:05:00.0: reg 0x18: [mem 0xd0004000-0xd0004fff 64bit pref]
    [ 0.854743] pci 0000:05:00.0: reg 0x20: [mem 0xd0000000-0xd0003fff 64bit pref]
    [ 0.854860] pci 0000:05:00.0: supports D1 D2
    [ 0.854863] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.854907] pci 0000:05:00.0: System wakeup disabled by ACPI
    [ 0.861144] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.861165] pci 0000:00:15.2: bridge window [io 0xd000-0xdfff]
    [ 0.861180] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.861237] acpi PNP0A03:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.861791] ACPI: PCI Interrupt Link [LN24] (IRQs *24)
    [ 0.861823] ACPI: PCI Interrupt Link [LN25] (IRQs *25)
    [ 0.861855] ACPI: PCI Interrupt Link [LN26] (IRQs *26)
    [ 0.861887] ACPI: PCI Interrupt Link [LN27] (IRQs *27)
    [ 0.861918] ACPI: PCI Interrupt Link [LN28] (IRQs *28)
    [ 0.861951] ACPI: PCI Interrupt Link [LN29] (IRQs *29)
    [ 0.861981] ACPI: PCI Interrupt Link [LN30] (IRQs *30)
    [ 0.862011] ACPI: PCI Interrupt Link [LN31] (IRQs *31)
    [ 0.862041] ACPI: PCI Interrupt Link [LN32] (IRQs *32)
    [ 0.862071] ACPI: PCI Interrupt Link [LN33] (IRQs *33)
    [ 0.862101] ACPI: PCI Interrupt Link [LN34] (IRQs *34)
    [ 0.862130] ACPI: PCI Interrupt Link [LN35] (IRQs *35)
    [ 0.862160] ACPI: PCI Interrupt Link [LN36] (IRQs *36)
    [ 0.862190] ACPI: PCI Interrupt Link [LN37] (IRQs *37)
    [ 0.862219] ACPI: PCI Interrupt Link [LN38] (IRQs *38)
    [ 0.862249] ACPI: PCI Interrupt Link [LN39] (IRQs *39)
    [ 0.862279] ACPI: PCI Interrupt Link [LN40] (IRQs *40)
    [ 0.862309] ACPI: PCI Interrupt Link [LN41] (IRQs *41)
    [ 0.862338] ACPI: PCI Interrupt Link [LN42] (IRQs *42)
    [ 0.862368] ACPI: PCI Interrupt Link [LN43] (IRQs *43)
    [ 0.862398] ACPI: PCI Interrupt Link [LN44] (IRQs *44)
    [ 0.862428] ACPI: PCI Interrupt Link [LN45] (IRQs *45)
    [ 0.862457] ACPI: PCI Interrupt Link [LN46] (IRQs *46)
    [ 0.862487] ACPI: PCI Interrupt Link [LN47] (IRQs *47)
    [ 0.862517] ACPI: PCI Interrupt Link [LN48] (IRQs *48)
    [ 0.862546] ACPI: PCI Interrupt Link [LN49] (IRQs *49)
    [ 0.862576] ACPI: PCI Interrupt Link [LN50] (IRQs *50)
    [ 0.862606] ACPI: PCI Interrupt Link [LN51] (IRQs *51)
    [ 0.862635] ACPI: PCI Interrupt Link [LN52] (IRQs *52)
    [ 0.862665] ACPI: PCI Interrupt Link [LN53] (IRQs *53)
    [ 0.862695] ACPI: PCI Interrupt Link [LN54] (IRQs *54)
    [ 0.862726] ACPI: PCI Interrupt Link [LN55] (IRQs *55)
    [ 0.862781] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.862883] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.862986] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863084] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863164] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863228] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863292] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863356] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.864141] ACPI : EC: GPE = 0xc, I/O: command/status = 0x66, data = 0x62
    [ 0.864446] vgaarb: setting as boot device: PCI:0000:00:01.0
    [ 0.864452] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.864464] vgaarb: loaded
    [ 0.864466] vgaarb: bridge control possible 0000:00:01.0
    [ 0.864788] PCI: Using ACPI for IRQ routing
    [ 0.874741] PCI: pci_cache_line_size set to 64 bytes
    [ 0.874840] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.874844] e820: reserve RAM buffer [mem 0x9f8f5000-0x9fffffff]
    [ 0.874848] e820: reserve RAM buffer [mem 0x9f956000-0x9fffffff]
    [ 0.874851] e820: reserve RAM buffer [mem 0x9f9b6000-0x9fffffff]
    [ 0.874854] e820: reserve RAM buffer [mem 0x9fd79000-0x9fffffff]
    [ 0.874856] e820: reserve RAM buffer [mem 0x9ff00000-0x9fffffff]
    [ 0.874859] e820: reserve RAM buffer [mem 0x23f000000-0x23fffffff]
    [ 0.875079] NetLabel: Initializing
    [ 0.875081] NetLabel: domain hash size = 128
    [ 0.875083] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.875101] NetLabel: unlabeled traffic allowed by default
    [ 0.875143] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.875149] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.877246] Switched to clocksource hpet
    [ 0.884868] pnp: PnP ACPI init
    [ 0.885072] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.885079] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.886017] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.886021] system 00:01: [io 0x040b] has been reserved
    [ 0.886025] system 00:01: [io 0x04d6] has been reserved
    [ 0.886029] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.886032] system 00:01: [io 0x0c14] has been reserved
    [ 0.886036] system 00:01: [io 0x0c50-0x0c51] has been reserved
    [ 0.886039] system 00:01: [io 0x0c52] has been reserved
    [ 0.886042] system 00:01: [io 0x0c6c] has been reserved
    [ 0.886046] system 00:01: [io 0x0c6f] has been reserved
    [ 0.886049] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.886052] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.886056] system 00:01: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.886059] system 00:01: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.886063] system 00:01: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.886067] system 00:01: [io 0x0800-0x089f] could not be reserved
    [ 0.886070] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    [ 0.886074] system 00:01: [io 0x0900-0x090f] has been reserved
    [ 0.886082] system 00:01: [io 0x0910-0x091f] has been reserved
    [ 0.886086] system 00:01: [io 0xfe00-0xfefe] has been reserved
    [ 0.886091] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.886096] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.886100] system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.886104] system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.886107] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.886112] system 00:01: [mem 0xfed00000-0xfed00fff] could not be reserved
    [ 0.886116] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.886120] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.886180] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.886279] system 00:03: [io 0x04d0-0x04d1] has been reserved
    [ 0.886283] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.886353] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.886420] system 00:05: [io 0x0240-0x0259] has been reserved
    [ 0.886424] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.886523] pnp 00:06: Plug and Play ACPI device, IDs TOS0220 SYN1d00 SYN0002 PNP0f13 (active)
    [ 0.886596] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.886784] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.887277] pnp: PnP ACPI: found 9 devices
    [ 0.895955] pci 0000:00:02.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    [ 0.895964] pci 0000:00:02.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.895969] pci 0000:00:02.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
    [ 0.896008] pci 0000:00:02.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.896012] pci 0000:00:02.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.896016] pci 0000:00:02.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.896026] pci 0000:00:02.0: BAR 14: assigned [mem 0xd0100000-0xd02fffff]
    [ 0.896039] pci 0000:00:02.0: BAR 15: assigned [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.896046] pci 0000:00:02.0: BAR 13: assigned [io 0x1000-0x1fff]
    [ 0.896051] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.896056] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff]
    [ 0.896061] pci 0000:00:02.0: bridge window [mem 0xd0100000-0xd02fffff]
    [ 0.896067] pci 0000:00:02.0: bridge window [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.896073] pci 0000:00:14.4: PCI bridge to [bus 02]
    [ 0.896089] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.896103] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.896107] pci 0000:00:15.1: bridge window [io 0xe000-0xefff]
    [ 0.896114] pci 0000:00:15.1: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.896124] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.896129] pci 0000:00:15.2: bridge window [io 0xd000-0xdfff]
    [ 0.896138] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.896147] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.896151] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.896154] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.896157] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.896160] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.896164] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.896167] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.896171] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
    [ 0.896174] pci_bus 0000:01: resource 1 [mem 0xd0100000-0xd02fffff]
    [ 0.896178] pci_bus 0000:01: resource 2 [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.896182] pci_bus 0000:02: resource 4 [io 0x0000-0x03af]
    [ 0.896185] pci_bus 0000:02: resource 5 [io 0x03e0-0x0cf7]
    [ 0.896188] pci_bus 0000:02: resource 6 [io 0x03b0-0x03df]
    [ 0.896191] pci_bus 0000:02: resource 7 [io 0x0d00-0xffff]
    [ 0.896194] pci_bus 0000:02: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.896198] pci_bus 0000:02: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.896201] pci_bus 0000:02: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.896205] pci_bus 0000:04: resource 0 [io 0xe000-0xefff]
    [ 0.896208] pci_bus 0000:04: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.896212] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff]
    [ 0.896215] pci_bus 0000:05: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.896259] NET: Registered protocol family 2
    [ 0.896597] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.896863] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.897301] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.897360] TCP: reno registered
    [ 0.897379] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.897467] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.897618] NET: Registered protocol family 1
    [ 0.897646] pci 0000:00:01.0: Video device with shadowed ROM
    [ 1.838171] PCI: CLS 64 bytes, default 64
    [ 1.838242] Unpacking initramfs...
    [ 1.934095] Freeing initrd memory: 4924K (ffff880037652000 - ffff880037b21000)
    [ 1.934107] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.934110] software IO TLB [mem 0x9b8f5000-0x9f8f5000] (64MB) mapped at [ffff88009b8f5000-ffff88009f8f4fff]
    [ 1.934495] microcode: CPU0: patch_level=0x03000014
    [ 1.934537] microcode: CPU1: patch_level=0x03000014
    [ 1.934580] microcode: CPU2: patch_level=0x03000014
    [ 1.934625] microcode: CPU3: patch_level=0x03000014
    [ 1.934758] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 1.934766] LVT offset 0 assigned for vector 0x400
    [ 1.934817] perf: AMD IBS detected (0x000000ff)
    [ 1.934854] Scanning for low memory corruption every 60 seconds
    [ 1.935293] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 1.935315] Initialise system trusted keyring
    [ 1.935789] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.937285] zpool: loaded
    [ 1.937288] zbud: loaded
    [ 1.937658] VFS: Disk quotas dquot_6.5.2
    [ 1.937709] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.937948] Key type big_key registered
    [ 1.938436] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.938508] io scheduler noop registered
    [ 1.938511] io scheduler deadline registered
    [ 1.938546] io scheduler cfq registered (default)
    [ 1.939375] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
    [ 1.939380] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
    [ 1.939399] pcieport 0000:00:15.0: Signaling PME through PCIe PME interrupt
    [ 1.939403] pcie_pme 0000:00:15.0:pcie01: service driver pcie_pme loaded
    [ 1.939421] pcieport 0000:00:15.1: Signaling PME through PCIe PME interrupt
    [ 1.939423] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
    [ 1.939428] pcie_pme 0000:00:15.1:pcie01: service driver pcie_pme loaded
    [ 1.939447] pcieport 0000:00:15.2: Signaling PME through PCIe PME interrupt
    [ 1.939449] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
    [ 1.939453] pcie_pme 0000:00:15.2:pcie01: service driver pcie_pme loaded
    [ 1.939461] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.939494] pciehp 0000:00:02.0:pcie04: Slot #2 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
    [ 1.939528] pciehp 0000:00:02.0:pcie04: service driver pciehp loaded
    [ 1.939533] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.939550] vesafb: mode is 1152x864x32, linelength=4608, pages=0
    [ 1.939552] vesafb: scrolling: redraw
    [ 1.939554] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 1.939576] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 3904k, total 3904k
    [ 1.955978] Console: switching to colour frame buffer device 144x54
    [ 1.972261] fb0: VESA VGA frame buffer device
    [ 1.972328] GHES: HEST is not enabled!
    [ 1.972535] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.973720] Linux agpgart interface v0.103
    [ 1.973797] rtc_cmos 00:02: RTC can wake from S4
    [ 1.973936] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.973964] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 1.973983] ledtrig-cpu: registered to indicate activity on CPUs
    [ 1.974434] TCP: cubic registered
    [ 1.974593] NET: Registered protocol family 10
    [ 1.975020] NET: Registered protocol family 17
    [ 1.975476] Loading compiled-in X.509 certificates
    [ 1.975502] registered taskstats version 1
    [ 1.976231] Magic number: 3:326:848
    [ 1.976341] rtc_cmos 00:02: setting system clock to 2015-02-22 18:50:54 UTC (1424631054)
    [ 1.976444] PM: Hibernation image not present or could not be loaded.
    [ 1.977023] Freeing unused kernel memory: 1164K (ffffffff818e7000 - ffffffff81a0a000)
    [ 1.977027] Write protecting the kernel read-only data: 8192k
    [ 1.977495] Freeing unused kernel memory: 600K (ffff88000156a000 - ffff880001600000)
    [ 1.977718] Freeing unused kernel memory: 304K (ffff8800017b4000 - ffff880001800000)
    [ 1.979659] random: systemd urandom read with 1 bits of entropy available
    [ 1.980307] systemd[1]: systemd 219 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    [ 1.980576] systemd[1]: Detected architecture 'x86-64'.
    [ 1.980581] systemd[1]: Running in initial RAM disk.
    [ 1.980590] systemd[1]: Running with unpopulated /etc.
    [ 1.980603] systemd[1]: No hostname configured.
    [ 1.980609] systemd[1]: Set hostname to <localhost>.
    [ 1.980655] systemd[1]: Initializing machine ID from random generator.
    [ 1.996373] systemd[1]: Populated /etc with preset unit settings.
    [ 1.999327] systemd[1]: Unit type .busname is not supported on this system.
    [ 2.003390] systemd[1]: Created slice -.slice.
    [ 2.003412] systemd[1]: Starting -.slice.
    [ 2.005054] systemd[1]: Listening on Journal Audit Socket.
    [ 2.005188] systemd[1]: Created slice system.slice.
    [ 2.005200] systemd[1]: Starting system.slice.
    [ 2.005218] systemd[1]: Reached target Swap.
    [ 2.005226] systemd[1]: Starting Swap.
    [ 2.005288] systemd[1]: Listening on udev Control Socket.
    [ 2.005296] systemd[1]: Starting udev Control Socket.
    [ 2.005312] systemd[1]: Reached target Slices.
    [ 2.005320] systemd[1]: Starting Slices.
    [ 2.005335] systemd[1]: Reached target Local File Systems.
    [ 2.005342] systemd[1]: Starting Local File Systems.
    [ 2.005358] systemd[1]: Reached target Timers.
    [ 2.005366] systemd[1]: Starting Timers.
    [ 2.005398] systemd[1]: Listening on udev Kernel Socket.
    [ 2.005409] systemd[1]: Starting udev Kernel Socket.
    [ 2.005430] systemd[1]: Reached target Paths.
    [ 2.005441] systemd[1]: Starting Paths.
    [ 2.005497] systemd[1]: Listening on Journal Socket.
    [ 2.005510] systemd[1]: Starting Journal Socket.
    [ 2.006097] systemd[1]: Starting udev Coldplug all Devices...
    [ 2.006689] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 2.006801] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 2.006811] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 2.006860] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 2.006870] systemd[1]: Starting Journal Socket (/dev/log).
    [ 2.007428] systemd[1]: Starting Journal Service...
    [ 2.007472] systemd[1]: Reached target Sockets.
    [ 2.007494] systemd[1]: Starting Sockets.
    [ 2.011399] systemd[1]: Started Create list of required static device nodes for the current kernel.
    [ 2.012026] systemd[1]: Starting Create Static Device Nodes in /dev...
    [ 2.012842] systemd-journald[63]: Failed to set file attributes: Inappropriate ioctl for device
    [ 2.016230] systemd[1]: Started Create Static Device Nodes in /dev.
    [ 2.016999] systemd[1]: Starting udev Kernel Device Manager...
    [ 2.021212] systemd[1]: Started udev Kernel Device Manager.
    [ 2.024169] systemd[1]: Started udev Coldplug all Devices.
    [ 2.029792] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 2.032026] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 2.032044] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 2.041719] SCSI subsystem initialized
    [ 2.042505] ACPI: bus type USB registered
    [ 2.042538] usbcore: registered new interface driver usbfs
    [ 2.042552] usbcore: registered new interface driver hub
    [ 2.042588] usbcore: registered new device driver usb
    [ 2.044174] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.045154] systemd[1]: Started Journal Service.
    [ 2.045633] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 2.045840] ohci-pci: OHCI PCI platform driver
    [ 2.045993] QUIRK: Enable AMD PLL fix
    [ 2.046022] ohci-pci 0000:00:12.0: OHCI PCI host controller
    [ 2.046033] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
    [ 2.046079] ohci-pci 0000:00:12.0: irq 18, io mem 0xfeb4d000
    [ 2.046697] ehci-pci: EHCI PCI platform driver
    [ 2.047833] libata version 3.00 loaded.
    [ 2.084196] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 2.102273] hub 1-0:1.0: USB hub found
    [ 2.102287] hub 1-0:1.0: 5 ports detected
    [ 2.102593] ohci-pci 0000:00:13.0: OHCI PCI host controller
    [ 2.102600] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 2
    [ 2.102631] ohci-pci 0000:00:13.0: irq 18, io mem 0xfeb4b000
    [ 2.159071] hub 2-0:1.0: USB hub found
    [ 2.159085] hub 2-0:1.0: 5 ports detected
    [ 2.160195] ohci-pci 0000:00:16.0: OHCI PCI host controller
    [ 2.160202] ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 3
    [ 2.160235] ohci-pci 0000:00:16.0: irq 18, io mem 0xfeb49000
    [ 2.215699] hub 3-0:1.0: USB hub found
    [ 2.215713] hub 3-0:1.0: 4 ports detected
    [ 2.271489] ehci-pci 0000:00:12.2: EHCI Host Controller
    [ 2.271502] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 4
    [ 2.271509] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.271523] ehci-pci 0000:00:12.2: debug port 1
    [ 2.271574] ehci-pci 0000:00:12.2: irq 17, io mem 0xfeb4c000
    [ 2.281276] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 2.281694] hub 4-0:1.0: USB hub found
    [ 2.281705] hub 4-0:1.0: 5 ports detected
    [ 2.338086] hub 1-0:1.0: USB hub found
    [ 2.338100] hub 1-0:1.0: 5 ports detected
    [ 2.338571] ehci-pci 0000:00:13.2: EHCI Host Controller
    [ 2.338579] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 5
    [ 2.338584] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.338596] ehci-pci 0000:00:13.2: debug port 1
    [ 2.338634] ehci-pci 0000:00:13.2: irq 17, io mem 0xfeb4a000
    [ 2.347963] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 2.348396] hub 5-0:1.0: USB hub found
    [ 2.348414] hub 5-0:1.0: 5 ports detected
    [ 2.404806] hub 2-0:1.0: USB hub found
    [ 2.404820] hub 2-0:1.0: 5 ports detected
    [ 2.461536] ehci-pci 0000:00:16.2: EHCI Host Controller
    [ 2.461550] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 6
    [ 2.461557] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.461571] ehci-pci 0000:00:16.2: debug port 1
    [ 2.461611] ehci-pci 0000:00:16.2: irq 17, io mem 0xfeb48000
    [ 2.471331] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 2.471768] hub 6-0:1.0: USB hub found
    [ 2.471780] hub 6-0:1.0: 4 ports detected
    [ 2.528139] hub 3-0:1.0: USB hub found
    [ 2.528154] hub 3-0:1.0: 4 ports detected
    [ 2.528415] ahci 0000:00:11.0: version 3.0
    [ 2.528689] ahci 0000:00:11.0: AHCI 0001.0300 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
    [ 2.528693] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    [ 2.529180] scsi host0: ahci
    [ 2.529664] scsi host1: ahci
    [ 2.529777] ata1: SATA max UDMA/133 abar m2048@0xfeb4e000 port 0xfeb4e100 irq 28
    [ 2.529781] ata2: SATA max UDMA/133 abar m2048@0xfeb4e000 port 0xfeb4e180 irq 28
    [ 2.530551] scsi host2: pata_atiixp
    [ 2.530815] scsi host3: pata_atiixp
    [ 2.530912] ata3: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf100 irq 14
    [ 2.530914] ata4: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf108 irq 15
    [ 2.654798] usb 5-4: new high-speed USB device number 2 using ehci-pci
    [ 2.934859] tsc: Refined TSC clocksource calibration: 1397.458 MHz
    [ 3.014908] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 3.014947] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 3.016183] ata1.00: ATA-8: Hitachi HTS547550A9E384, JE3OA60B, max UDMA/133
    [ 3.016190] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 3.016972] ata2.00: ATAPI: TSSTcorp CDDVDW TS-L633F, TF01, max UDMA/100
    [ 3.017307] ata1.00: configured for UDMA/133
    [ 3.017807] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54755 A60B PQ: 0 ANSI: 5
    [ 3.019278] ata2.00: configured for UDMA/100
    [ 3.025787] scsi 1:0:0:0: CD-ROM TSSTcorp CDDVDW TS-L633F TF01 PQ: 0 ANSI: 5
    [ 3.044649] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 3.044654] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 3.044859] sd 0:0:0:0: [sda] Write Protect is off
    [ 3.044865] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.044918] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.061859] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.061874] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 3.062232] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 3.084075] sda: sda1 sda2 sda3
    [ 3.085567] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.414041] SGI XFS with ACLs, security attributes, realtime, no debug enabled
    [ 3.528901] XFS (sda1): Mounting V4 Filesystem
    [ 3.710527] XFS (sda1): Ending clean mount
    [ 3.935255] Switched to clocksource tsc
    [ 3.999076] systemd-journald[63]: Received SIGTERM from PID 1 (systemd).
    [ 4.799287] random: nonblocking pool is initialized
    [ 6.377516] systemd-journald[187]: Failed to set file attributes: Inappropriate ioctl for device
    [ 7.417234] ACPI: acpi_idle registered with cpuidle
    [ 7.464892] acpi-cpufreq: overriding BIOS provided _PSD data
    [ 7.544509] wmi: Mapper loaded
    [ 7.612504] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 7.626522] acpi device:2b: registered as cooling_device4
    [ 7.626631] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:01/input/input2
    [ 7.700708] ACPI Warning: SystemIO range 0x0000000000000b00-0x0000000000000b07 conflicts with OpRegion 0x0000000000000b00-0x0000000000000b0f (\SMBX) (20141107/utaddress-258)
    [ 7.700729] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.734642] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    [ 7.737166] thermal LNXTHERM:00: registered as thermal_zone0
    [ 7.737173] ACPI: Thermal Zone [THRM] (50 C)
    [ 7.746486] ACPI: Lid Switch [LID]
    [ 7.746714] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
    [ 7.746725] ACPI: Power Button [SLPB]
    [ 7.746874] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 7.746880] ACPI: Power Button [PWRF]
    [ 7.749494] ACPI: Battery Slot [BAT0] (battery present)
    [ 7.749951] ACPI: AC Adapter [AC0] (on-line)
    [ 7.755509] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 7.961538] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 8.061752] [drm] Initialized drm 1.1.0 20060810
    [ 8.296521] cfg80211: Calling CRDA to update world regulatory domain
    [ 8.319199] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 8.319231] r8169 0000:05:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 8.320035] r8169 0000:05:00.0 eth0: RTL8105e at 0xffffc90000032000, 38:60:77:69:8f:16, XID 00a00000 IRQ 29
    [ 8.363138] kvm: Nested Virtualization enabled
    [ 8.363151] kvm: Nested Paging enabled
    [ 8.704039] [drm] radeon kernel modesetting enabled.
    [ 8.794078] r8169 0000:05:00.0 enp5s0: renamed from eth0
    [ 8.832358] AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    [ 8.832364] AMD IOMMUv2 functionality not available on this system
    [ 8.959092] rtl8192ce: Using firmware rtlwifi/rtl8192cfw.bin
    [ 8.961187] snd_hda_codec_hdmi: unknown parameter 'index' ignored
    [ 8.965010] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card1/input8
    [ 9.031523] media: Linux media interface: v0.10
    [ 9.102014] CRAT table not found
    [ 9.102024] Finished initializing topology ret=0
    [ 9.102177] kfd kfd: Initialized module
    [ 9.102941] checking generic (c0000000 3d0000) vs hw (c0000000 10000000)
    [ 9.102951] fb: switching to radeondrmfb from VESA VGA
    [ 9.103002] Console: switching to colour dummy device 80x25
    [ 9.104030] [drm] initializing kernel modesetting (SUMO 0x1002:0x9647 0x1179:0xFC62).
    [ 9.104059] [drm] register mmio base: 0xFEB00000
    [ 9.104063] [drm] register mmio size: 262144
    [ 9.104144] ATOM BIOS: Toshiba
    [ 9.104219] radeon 0000:00:01.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
    [ 9.104227] radeon 0000:00:01.0: GTT: 1024M 0x0000000020000000 - 0x000000005FFFFFFF
    [ 9.104231] [drm] Detected VRAM RAM=512M, BAR=256M
    [ 9.104235] [drm] RAM width 32bits DDR
    [ 9.104379] [TTM] Zone kernel: Available graphics memory: 3821360 kiB
    [ 9.104390] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
    [ 9.104394] [TTM] Initializing pool allocator
    [ 9.104407] [TTM] Initializing DMA pool allocator
    [ 9.104455] [drm] radeon: 512M of VRAM memory ready
    [ 9.104459] [drm] radeon: 1024M of GTT memory ready.
    [ 9.104497] [drm] Loading SUMO Microcode
    [ 9.124664] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000, board id: 3655, fw id: 582762
    [ 9.124685] psmouse serio1: synaptics: Toshiba Satellite L775D detected, limiting rate to 40pps.
    [ 9.160285] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
    [ 9.170455] Linux video capture interface: v2.00
    [ 9.179293] mousedev: PS/2 mouse device common for all mice
    [ 9.223473] [drm] Internal thermal controller without fan control
    [ 9.223622] [drm] Found smc ucode version: 0x00011200
    [ 9.223730] [drm] radeon: dpm initialized
    [ 9.266919] [drm] GART: num cpu pages 262144, num gpu pages 262144
    [ 9.282200] [drm] PCIE GART of 1024M enabled (table at 0x0000000000274000).
    [ 9.282345] radeon 0000:00:01.0: WB enabled
    [ 9.282349] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000020000c00 and cpu addr 0xffff88009b70ac00
    [ 9.282351] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c and cpu addr 0xffff88009b70ac0c
    [ 9.283078] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xffffc90010f32118
    [ 9.283081] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 9.283082] [drm] Driver supports precise vblank timestamp query.
    [ 9.283084] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
    [ 9.283121] radeon 0000:00:01.0: radeon: using MSI.
    [ 9.283145] [drm] radeon: irq initialized.
    [ 9.298245] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
    [ 9.298931] rtlwifi: rtlwifi: wireless switch is on
    [ 9.299718] [drm] ring test on 0 succeeded in 1 usecs
    [ 9.299728] [drm] ring test on 3 succeeded in 3 usecs
    [ 9.307045] sound hdaudioC0D2: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 9.307049] sound hdaudioC0D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 9.307053] sound hdaudioC0D2: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
    [ 9.307055] sound hdaudioC0D2: mono: mono_out=0x0
    [ 9.307058] sound hdaudioC0D2: inputs:
    [ 9.307061] sound hdaudioC0D2: Mic=0x18
    [ 9.307065] sound hdaudioC0D2: Internal Mic=0x12
    [ 9.315899] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/sound/card0/hdaudioC0D2/input9
    [ 9.316387] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 9.316507] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 9.349814] [drm] ring test on 5 succeeded in 1 usecs
    [ 9.369840] [drm] UVD initialized successfully.
    [ 9.370279] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 9.370314] [drm] ib test on ring 3 succeeded in 0 usecs
    [ 9.524205] rtl8192ce 0000:04:00.0 wlp4s0: renamed from wlan0
    [ 9.769931] uvcvideo: Found UVC 1.00 device TOSHIBA Web Camera - MP (04f2:b289)
    [ 9.788893] input: TOSHIBA Web Camera - MP as /devices/pci0000:00/0000:00:13.2/usb5/5-4/5-4:1.0/input/input12
    [ 9.789309] usbcore: registered new interface driver uvcvideo
    [ 9.789319] USB Video Class driver (1.1.1)
    [ 9.871399] cfg80211: World regulatory domain updated:
    [ 9.871412] cfg80211: DFS Master region: unset
    [ 9.871417] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 9.871425] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9.871431] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9.871436] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9.871441] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    [ 9.871447] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
    [ 9.871453] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    [ 9.871457] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9.871463] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
    [ 9.890507] [drm] ib test on ring 5 succeeded
    [ 9.911771] [drm] radeon atom DIG backlight initialized
    [ 9.911776] [drm] Radeon Display Connectors
    [ 9.911777] [drm] Connector 0:
    [ 9.911779] [drm] VGA-1
    [ 9.911780] [drm] HPD2
    [ 9.911782] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
    [ 9.911783] [drm] Encoders:
    [ 9.911784] [drm] CRT1: INTERNAL_UNIPHY2
    [ 9.911786] [drm] CRT1: NUTMEG
    [ 9.911787] [drm] Connector 1:
    [ 9.911788] [drm] LVDS-1
    [ 9.911789] [drm] HPD1
    [ 9.911790] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
    [ 9.911791] [drm] Encoders:
    [ 9.911792] [drm] LCD1: INTERNAL_UNIPHY2
    [ 9.911793] [drm] LCD1: TRAVIS
    [ 9.911794] [drm] Connector 2:
    [ 9.911795] [drm] HDMI-A-1
    [ 9.911796] [drm] HPD5
    [ 9.911798] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
    [ 9.911799] [drm] Encoders:
    [ 9.911800] [drm] DFP1: INTERNAL_UNIPHY1
    [ 10.016569] [drm] fb mappable at 0xC0478000
    [ 10.016576] [drm] vram apper at 0xC0000000
    [ 10.016578] [drm] size 5787648
    [ 10.016580] [drm] fb depth is 24
    [ 10.016582] [drm] pitch is 6400
    [ 10.016970] fbcon: radeondrmfb (fb0) is primary device
    [ 10.078763] Adding 8388604k swap on /dev/sda2. Priority:-1 extents:1 across:8388604k FS
    [ 10.143532] Console: switching to colour frame buffer device 200x56
    [ 10.150308] radeon 0000:00:01.0: fb0: radeondrmfb frame buffer device
    [ 10.150312] radeon 0000:00:01.0: registered panic notifier
    [ 10.164191] [drm] Initialized radeon 2.40.0 20080528 for 0000:00:01.0 on minor 0
    [ 10.194853] cfg80211: Calling CRDA for country: US
    [ 10.231380] cfg80211: Regulatory domain changed to country: US
    [ 10.231393] cfg80211: DFS Master region: FCC
    [ 10.231397] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 10.231406] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A)
    [ 10.231413] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 1700 mBm), (N/A)
    [ 10.231419] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2300 mBm), (0 s)
    [ 10.231425] cfg80211: (5490000 KHz - 5600000 KHz @ 80000 KHz), (N/A, 2300 mBm), (0 s)
    [ 10.231429] cfg80211: (5650000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2300 mBm), (0 s)
    [ 10.231434] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm), (N/A)
    [ 10.231439] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
    [ 10.422003] XFS (sda3): Mounting V5 Filesystem
    [ 10.837256] XFS (sda3): Ending clean mount
    [ 10.899226] systemd-journald[187]: Received request to flush runtime journal from PID 1
    [ 11.195453] microcode: CPU0: new patch_level=0x03000027
    [ 11.195496] microcode: CPU1: new patch_level=0x03000027
    [ 11.195601] microcode: CPU2: new patch_level=0x03000027
    [ 11.195693] microcode: CPU3: new patch_level=0x03000027
    [ 12.465476] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
    [ 13.726328] wlp4s0: authenticate with 00:1e:2a:6f:46:f8
    [ 13.745730] wlp4s0: send auth to 00:1e:2a:6f:46:f8 (try 1/3)
    [ 13.753012] wlp4s0: authenticated
    [ 13.755130] wlp4s0: associate with 00:1e:2a:6f:46:f8 (try 1/3)
    [ 13.758031] wlp4s0: RX AssocResp from 00:1e:2a:6f:46:f8 (capab=0x411 status=0 aid=3)
    [ 13.758283] wlp4s0: associated
    [ 13.758302] IPv6: ADDRCONF(NETDEV_CHANGE): wlp4s0: link becomes ready
    [ 23.961417] PM: Syncing filesystems ... done.
    [ 24.305227] PM: Preparing system for mem sleep
    [ 24.310243] Freezing user space processes ... (elapsed 0.001 seconds) done.
    [ 24.311535] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
    [ 24.311542] PM: Entering mem sleep
    [ 24.311898] Suspending console(s) (use no_console_suspend to debug)
    [ 24.320753] wlp4s0: deauthenticating f

    Suspend has always been problematic under Linux. It seems to be hit or miss for the most part, but here are some things you can try:
    Use an LTS kernel, tuxonice, pm-utils, etc. See Suspend and Hibernate
    Try a different graphics driver
    Tweak the driver module parameters or build your own driver.
    Unfortunately I don't have experience with the radeon driver, so I can only give you ideas.

  • Lenovo SL510 suspend (S3 sleep) is not working

    Hi all,
    I bought a new Lenovo SL510 with T5870 2GHz CPU, 250GB HDD, no OS, (part No. NSLQ7MC). Installation of Ubuntu Karmic 32bit was without any problems, but I didn't get the suspend working. Hibernation works fine.
    When I click sleep button (or echo -n mem > /sys/power/state), the screen backlight goes off, but graphics on LCD is still visible, after 10s fan goes to max and sleep LED is blinking wild. No further reaction to power button. Of course, poweroff works, when I hold for more then 2 sec. I suppose the sleep routine somehow hangs forever.
    btw. I also tried with 32bit Suse Live CD, BIOS upgrade and 2.6.32 kernel, all with the same result.
    Did someone get the sleep mode working on SL510?
    Do you have 32 or 64bit Linux?
    What is your SL510 hardware model?
    Many thanks for your help, regards Petr

    Bump
    Any news on that issue??? I still haven't find any information on how to solve that

  • Suspending UI in automation plugin

    Is there a way to suspend UI during execution of automation plugin (C++ Windows, Photoshop cs5-cc). I mean updating display when plugin opens closes docs, add or remove layers.
    Cna i suspend that and resume it after execution of the plugin.
    I think that i have seen this somewhere long time a go but i can not find it now. 
    Regards,
    Momir Zecevic

    HI, I want create a dialog as your "wrong state", which i can still interact with the document when it show.
    How you create this dialog? Can you give me your code ?
    My hotmail is: [email protected]
    Thanks.

  • [SOLVED] New slim, can't shutdown|reboot|suspend anymore

    Hi!
    I just upgraded slim, and i notice that i cannot suspend, shutdown and reboot anymore.
    And to mount usb drive, i am asked for my password.
    After the upgrade i changed /etc/slim.conf,pacnew to suit my needs and then sudo mv /etc/slim.conf.pacnew /etc/slim.conf .
    My .xinitrc is the same, so, where is the problem?
    here there are my slim.conf:
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path /bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    # numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    login_cmd exec /bin/bash -login ~/.xinitrc %session
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    # sessionstart_cmd some command
    # sessionstop_cmd some command
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Available sessions (first one is the default).
    # The current chosen session name is replaced in the login_cmd
    # above, so your login command can handle different sessions.
    # see the xinitrc.sample file shipped with slim sources
    sessions xfce4,icewm-session,wmaker,blackbox
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    default_user federico
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    #focus_password no
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    auto_login yes
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    current_theme default
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    and my .xinitrc:
    #!/bin/bash
    export BROWSER=chromium
    export DE=xfce
    exec ck-launch-session dbus-launch startxfce4
    Thanks!
    Last edited by nierro (2012-05-08 18:42:44)

    From later in this thread:
    Solution
    Ok, do:
    ck-list-sessions
    There were two sessions for myself.  So, the new slim is starting your exec line already with a console kit session.  This is new behavior.  It didn't before.
    So, I modified my exec line to remove "ck-launch-session" in .xinitrc to:
    exec dbus-launch --exit-with-session startxfce4
    Reverted the changes I made to the shutdown/restart policy and rebooted.  Shutdown, restart, mounting USB drive: they all work again now.
    Edit: from even later on in this thread, just:
    exec startxfce4
    As your .xinitrc exec line should be sufficient for practically anyone.  "startxfce4" does the dbus-launch itself.
    Original post here:
    Changed in my /etc/slim.conf:
    default_path        /bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
    Same issue, in Action buttons Shutdown and Restart grayed out.
    in .xinitrc, launch line:
    exec ck-launch-session startxfce4
    Launch line was:
    exec ck-launch-session dbus-launch --exit-with-session startxfce4
    But, same issue with that launch line.  Was googling and I found results saying dbus-launch is contained within startxfce4.
    Last edited by headkase (2012-05-09 02:23:48)

  • [systemd] No shutdown/reboot/suspend anymore from XBMC

    Migrated my HTPC to systemd last night. So far so good, lirc still works, I found some Fedora xbmc service script that launches XBMC neatly. It looks good.
    XBMC runs as my own user. However, whereas before I could suspend/shutdown/reboot just fine (through upower), that now does not work anymore. I have enabled (and started) the upower service:
    $ systemctl list-units|grep -i upower
    cpupower.service loaded active exited Apply cpupower configuration
    upower.service loaded active running Daemon for power management
    However, even with the upower service enabled all XBMC shows in the shutdown menu is a timer option and hibernate/suspend. The two last options definitely don't work. I have hit that button enough to know. Before, there were also restart/shutdown options visible. Those are gone. So all that's left is pushing the button on my HTPC to make it shut down.
    XBMC service file:
    [Unit]
    Description = Starts instance of XBMC using xinit
    After = syslog.target
    [Service]
    User = $user
    Group = users
    Type = simple
    ExecStart = /usr/bin/xinit /usr/bin/xbmc-standalone -- :0
    [Install]
    WantedBy = multi-user.target
    Any pointers?
    Edit: NFS problem solved by enabling rpc-idmapd.service.
    Last edited by .:B:. (2012-08-27 15:10:43)

    Thanks Elfo, I'll have a look at those. Further inspection showed that the polkit service was actually failing. I just bumped the release from 105 and 107, built from ABS and installed 107. Turns out polkit needs its own user now (polkitd) and needs access to the root:root owned rules dirs as well. Fixed that one, but not getting any further.
    Edit: there's a user-session-units package in the AUR (with deps) so I built and installed those. It works (XBMC autolaunches), and it seems like it's communicating with D-Bus, but no luck there (no suspend, no shutdown etc. and shutdown/reboot buttons are still gone):
    23:12:09 T:140643986409344 DEBUG: DBus: Creating message to org.freedesktop.ConsoleKit on /org/freedesktop/ConsoleKit/Manager with interface org.freedesktop.ConsoleKit.Manager and method CanStop
    23:12:09 T:140643986409344 DEBUG: DBus: Creating message to org.freedesktop.UPower on /org/freedesktop/UPower with interface org.freedesktop.UPower and method EnumerateDevices
    23:12:10 T:140643986409344 INFO: Selected UPower and ConsoleKit as PowerSyscall
    23:12:10 T:140643986409344 DEBUG: DBus: Creating message to org.freedesktop.ConsoleKit on /org/freedesktop/ConsoleKit/Manager with interface org.freedesktop.ConsoleKit.Manager and method CanStop
    23:12:10 T:140643986409344 DEBUG: DBus: Creating message to org.freedesktop.ConsoleKit on /org/freedesktop/ConsoleKit/Manager with interface org.freedesktop.ConsoleKit.Manager and method CanRestart
    23:12:10 T:140643986409344 DEBUG: DBus: Creating message to org.freedesktop.UPower on /org/freedesktop/UPower with interface org.freedesktop.DBus.Properties and method Get
    23:12:10 T:140643986409344 DEBUG: Previous line repeats 1 times.
    23:12:10 T:140643986409344 DEBUG: DBus: Creating message to org.freedesktop.UPower on /org/freedesktop/UPower with interface org.freedesktop.UPower and method EnumerateDevices
    Edit: now it's not even starting anymore at boot, apparently it's waiting for some stuff to finish and bails out. God what an ordeal this is.
    Last edited by .:B:. (2012-08-28 21:44:41)

Maybe you are looking for

  • Returning HTTPResults from .as file

    Hello, I'm trying to make a public function that will allow the return of my HTTPService results to the component that made the call. My main problem right now is the EventListener doesnt trip until after the return is already attempted. Basically wi

  • UCCX 9 - Too many transfer failures

    Hello guys, Need some help here as I get "Too many transfer failures" message when Im running the select resource step in my script. I am sure that it's not the problem with the script as it works previously. Attach also the MIVR logs and I'm highlig

  • Junk Mail Core Issue

    I have an IMAP account with fastmail. The good part: When I manually label any mail that mail.app does not recognize as junk, it is always labeled as junk and then moved to the junk mailbox. The troublesome part: I am increasingly noticing that when

  • Netgear DG834G and time capsule

    I've ordered a Netgear DG834G and a Time Capsule. Since the Netgear has only G capability while the TC has N, I wonder if it will be possible to use the Netgear connected to the TC at its full bandwidth for HD sharing. I've seen similar posts on this

  • Selecting values for query where clause

    hi guys, this is possibly a silly question but not sure if i am approaching the solution in the correct mannor. At the top of my form i have text box which the user fills in various values. These values are then used to refine the query results in th