Problem to record website user session in db

I want to record user session of my website in database. I created the following table,sequence and trigger.
when the user will be connected after verification it will be inserted into db till here its ok but problem is logout when the user will logged out then what query I can make? I want that my query get the last s_id of the last co_id and insert value in end_date
Oracle 9i
create table co_session(
s_id number(14) primary key,
co_id number (9) constraint session_fk1 references company(co_id),
start_date timestamp(0) default sysdate,
end_date timestamp(0));
create sequence session_pk_seq
start with 1 increment by 1;
create or replace trigger session_pk_trig
before insert on co_session
referencing new as new
for each row
begin
select session_pk_seq.nextval into :new.s_id from dual;
end;
/

That depends... many web servers/application servers make use of a database connection pool.
They open a pool of connections to Oracle. One such pooled connection can be used and re-used many times. And for different web front-end users.
Generally speaking, it makes very little sense to create any type of logon/logoff triggers for web sessions.
As the application server deals with user authentication and user state and user sessions, the application server should deal with "recording" these sessions against the database.
And this is as true of APEX as of JBoss or Weblogic. APEX is a PL/SQL Application Server running inside the Oracle database. It too does not use database triggers to "record sessions" - it does this "recording" itself in the application (PL/SQL) layer and not the SQL/database layer.
What you describes sounds to me like a flawed approach dealing with stateless clients in a 3 tier architecture.

Similar Messages

  • [SOLVED] Question about systemd-user-session

    Hi!
    I'm trying to setup a systemd --user session (using user-session-units and xorg-launch-helper from aur).
    I have a couple of questions; this is my .xinitrc now:
    #!/bin/bash
    export BROWSER=chromium
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    spacefm --desktop &
    compton -cGCf -m 0.9 -i 0.8 -D 5 --shadow-exclude 'g:e:Conky' &
    volumeicon &
    /home/federico/Script/touchpadoff_onboot.sh &
    #connman-ui-gtk &
    /home/federico/Script/calised-script &
    dimdaemon &
    tint2 -c .config/tint2/dragonauta.tint2rc &
    conky -p 5 -c Script/conky.conf &
    exec openbox
    1) is "if" statement required when using systemd-user-session? And if yes, how can I reproduce it?
    2) "conky -p 5 " will wait 5 seconds doing nothing. Will this mean that other .service will wait for it to finish? (i guess no, since they're executed in parallel).
    3) how can I export "chromium" as my default browser?
    Thank you very much!
    Last edited by nierro (2013-04-06 17:56:17)

    I followed everything in that wiki, and in KaiSforza and sofar github page.
    I finally managed to get my old method (autologin to vt and autostart x) to work together with systemd --user: i put in .xinitrc "systemd --user" and deleted everything else.
    So, my .config/systemd/user/ works. The problem is in the [email protected], i guess. I configured it like wiki says, mind to post here your /etc/systemd/system/[email protected]?
    Thanks.
    EDIT: here it is my [email protected]:
    # This file is part of systemd.
    # systemd is free software; you can redistribute it and/or modify it
    # under the terms of the GNU General Public License as published by
    # the Free Software Foundation; either version 2 of the License, or
    # (at your option) any later version.
    [Unit]
    Description=User Manager for %I
    After=systemd-user-sessions.service
    # This is needed for folks running Xorg on vt/1
    Conflicts=[email protected]
    [Service]
    User=%I
    PAMName=login
    # Note memory:/ required kernel memory CGroups support
    ControlGroup=%R/user/%I/shared cpu:/ memory:/
    ControlGroupModify=yes
    Type=notify
    TTYPath=/dev/tty1
    ExecStart=-/usr/lib/systemd/systemd --user
    Environment=DISPLAY=:0
    Environment=XDG_RUNTIME_DIR=/run/user/%U
    Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/%U/dbus/user_bus_socket
    [Install]
    WantedBy=getty.target
    and loginctl says my user has "1000" as UID.
    Last edited by nierro (2013-04-05 16:13:14)

  • Problem with transfered user sessions from a 10.4 system

    On my new MacBook pro with ML, I tranfered the user sessions of my previous mac (power book G4 working with OS 10.4).
    With these "old" users accounts,  part of the trackpad features (like scroling up and down with 2 fingers) does not work, whereas it is working with new users.
    Any idea on how to solve this?
    Thanks in advance

    That was a good idea, I tried to delete the com.apple.finder.plist and the com.apple.systempreferences.plist but that did not work.
    Eventually to solve the problem, I transferred all the files I needed to a session created with the new system. I'm waiting a week or two just to see if I have not forgotten something important and then I will delete the "old session".
    Thanks anyway for your help.

  • Problem in implements ADF Faces: Detecting and handling user session expiry

    Hello everybody
    I´m trying to implement a method to handle user session expiry as explained by frank nimphius in his blog.
    http://thepeninsulasedge.com/frank_nimphius/2007/08/22/adf-faces-detecting-and-handling-user-session-expiry/
    I have implemented the class bellow and add the filters in web.xml. However when I add the JavaServer Faces Servlet to sign the filter, my hole application get nuts. I try to publish the applicatoin in the OAS and it seems that it already starts expired.
    Someone konw what I´m doing wrong?
    I use the filter
    <filter>
    <filter-name>ApplicationSessionExpiryFilter</filter-name>
    <filter-class>adf.sample.ApplicationSessionExpiryFilter</filter-class>
    <init-param>
    <param-name>SessionTimeoutRedirect</param-name>
    <param-value>SessionExpired.jspx</param-value>
    </init-param>
    </filter>
    then I add
    XML:
    <filter-mapping>
    <filter-name>ApplicationSessionExpiryFilter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    package adf.sample;
    import java.io.IOException;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    this is the class
    public class ApplicationSessionExpiryFilter implements Filter {
    private FilterConfig _filterConfig = null;
    public void init(FilterConfig filterConfig) throws ServletException {
    _filterConfig = filterConfig;
    public void destroy() {
    _filterConfig = null;
    public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain) throws IOException, ServletException {
    String requestedSession = ((HttpServletRequest)request).getRequestedSessionId();
    String currentWebSession = ((HttpServletRequest)request).getSession().getId();
    boolean sessionOk = currentWebSession.equalsIgnoreCase(requestedSession);
    // if the requested session is null then this is the first application
    // request and "false" is acceptable
    if (!sessionOk && requestedSession != null){
    // the session has expired or renewed. Redirect request
    ((HttpServletResponse) response).sendRedirect(_filterConfig.getInitParameter("SessionTimeoutRedirect"));
    else{
    chain.doFilter(request, response);
    I'm really having trouble controlling user sessions. if someone know where I can get materials to learn how to implements session in Jdev ADF + BC, I´m very grateful.
    Thank you Marnie

    The class works fine.. the issue is when I add the this code into web.xml
    <filter-mapping>
    <filter-name>ApplicationSessionExpiryFilter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    bellow the web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app>
    <description>Empty web.xml file for Web Application</description>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>userinterface.DataBindings</param-value>
    </context-param>
    <filter>
    <filter-name>ApplicationSessionExpiryFilter</filter-name>
    <filter-class>view.managedBean.ApplicationSessionExpiryFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>ApplicationSessionExpiryFilter</filter-name> ==> the problem occurs when I try to add this code
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>1</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/pain</mime-type>
    </mime-mapping>
    </web-app>
    By the way, how can I post code on the forum properly?

  • SA520 web access problem, all admin users sessions appears active when it is not true

    Hi, all the users for the management access to my SA520 are blocked via web, all the admin users sessions aparently they seem active, and when i do click on the "continue" button these sessions does not terminate. I guess i have to reset the firewall, but my question is if anybody has the same problem with this device.

    Hi Luis,
    What firmware version are you running? How frequent do you see this occurrence?
    If  possible, when you start to see this issue before all the admin sessions are reporting active,can you provide us the debug logs from your SA  520 so that I can forward to the development  team to investigate?  We are tracking an issue with a customer, but his device takes 3-4 months to show the symptoms you describe.
    To get the dbglog from SA520, login through web UI and in the browser enter the following URL:
    https://LAN_IP_address_of_SA520/scgi-bin/dbglog.cgi        
    These logs will store password, so please remove any sensitive information and passwords. Also if you are not comfortable posting the dbglog on the    community, you can send it directly to me through private message.
    Best regards,
    Julio

  • How to know if user (session) is authenticated in other application (SSO)

    Hi folks!
    We've deployed various J2EE applications in some OC4J instances. So far the applications used SSO Authentication against OiD (LDAP), but we need a public access application.
    The problem is the following: we need a different behaviour in this last application (without authentication characteristics) depending on one user is authenticated within other application that required SSO login.
    How could check if current user (session) si authenticated against SSO, for example, in ADF-STRUTS DataAction class?
    We tested the gerRemoteUser() method but is only works within the applications requering login.
    Please, anyone could guide me?
    Mike
    Thanks!

    Hi,
    Oracle AS Single Sign ON stores some of the attributes of an authenticated user in a browser cookie - the name of the Cookie is SSO_ID.
    You cannot get any information from this Cookie. The Cookie is avaliable only to the Oracle AS Single Sign ON and is meant to be used only by it. You cannot read any useful information from the Cookie as it is higly encrypted.
    If you need to know the name of the currently logged in user, your application should be a Partner Application or an External Applciation to Oracle AS Single Sign On.
    The reason is simple - you can use your browser to connect to many Websites protected by Oracle AS Single Sign ON. Thus, if your application isn't a Partner or an External Application registered with SSO, your application can't establish a context.
    Hence, your application needs to be registered as a Partner Application or an External Application with SSO.
    An application which is nto registered with SSO cannot get the User information from SSO. The getRemoteUser() method would always return a null in such cases.
    Regards,
    Sandeep

  • JBO-26030 Failed to lockthe record, another user holds the lock.

    I have a web application using Bc4j + Bc4J JSPs .
    the web app , reads/writes to some tables.
    from time to time , I get this error:
    JBO-26030 Failed to lock the record, another user holds the lock.
    no other user is holding the record.
    appreciate your help
    regards
    RT

    Stopping the embedded OC4J should solve the problem.
    If you can reproduce the problem within one session (no browser sessions closed) then the problem is within your application.
    As Ric pointed out, it is always good practice to use read-only view objects unless you need to transact with the database apart from selecting data.
    If you have navigated away from some pages without committing changes, then you could consider committing as part of the page navigation, in order to release any locks and close off the transaction.
    regards,
    Brenden

  • JRE on Terminal Server 2008 won't work in User Sessions

    I have a problem with Java 6 Update 14 on a Windows 2008 Terminal Server.
    Java Applications (from normal websites) are starting in Administrator account without any problems.
    When i start several website with a normal User Account (Internet Explorer 8.0 installed), the Java-Console puts out the following error:
    JNLPException[category: Systemkonfiguration : Exception: null : LaunchDesc: null ]
    Then the Java tray icon is restarting for 1 or 2 times, and then the java-field on the websites stays emtpy.
    Any idea which problem this could be? I think it would be a permission problem, but where i have to search?
    Best Regards
    Wolfgang Bauer

    Now I've tried to install Firefox on the terminal server. Now in user sessions Java is working with Firefox, but not with Internet Explorer, so:
    At Administrator account, Java Applets are working with IE and Firefox.
    At user accounts, Java Applets work only with Firefox.
    So where could be the problem with IE 8.0? When a Java page is loading, the Java tray icon appears for a few seconds, and goes away, 2 or 3 times.
    I've already tried to reinstall Java 6
    We need to open the Websites with Internet Explorer 8
    Best Regards Wolfgang

  • When I enter a website, FireFox used to auto login and password. Now is does NOT. If I choose remember me check box, the website remembers me but I still have to enter a password. I think this is a problem created with website programming.

    The problem is with most websites but not all. When I try to login to this website to ask this question, I have recorded 3 logins. Only one works, but that is a different problem. The websites used to automatically login and suddenly don't. I believe the problem is a change in programming for the website programmers. I found a solution (not a viable one) previously here that is supposed to remember login and password through a laborious process, but that is really cumbersome and doesn't always work either. Today I cannot find that process to try it. I am trying to login to ATT website which was just changed.

    Here are two screen shots to show you what I am seeing.  The first screen shot shows it allowing me to select (highlighted in blue) my admin user (which is what I am locced in as).  The second screen shot shows it allowing me to select the "Guest" user (highlighted in blue).  However when I click on the user "Orion" nothing happens.  It will not change to highlight that user.

  • How do I read uncommitted records of another session

    HI
    How do I read uncommitted records from another session in Oracle
    Thanks
    Ashwin

    Ashwin,
    Oh I might as well add my thoughts on this as it is kinda an important subject. I'm sort of a different kind of programmer where there have been several times I have wanted to see the changed results that another session is doing. I agree that the rest of the sessions should not be able to SEE the changes until they are committed. HOWEVER, as some examples show below, I don't see why a custom package can't be developed to allow a different session to be able to query the changed data for a particular SID, or even begin issuing DML commands of their own on this changed data to help change it further.
    In reality, there is no reason why a single (and I emphasize single) session is the only one who can see the changed data. It's the other user sessions that really should wait until all the necessary changes are complete before others can see the changed information. There isn't much point in me trying to explain this in great detail, but overall YES other users should wait until the changes are committed, but NO I do think I should be able to connect to another SIDs sessions and be able to view/perform operations on this changed data.
    There are more than enough examples of why others should wait before changes are committed (which I agree), but as some of these real life examples point out, there is a need to let more than a single session perform such changes, each of which need to see each other's changed data.
    No I am no expert on transaction processing (Andrew knows more for sure), but I've done enough to know as a developer I have a number of times wanted to be able to access/monitor another sessions uncommitted data. I think some records might be viewable using committed AUTONOMOUS_TRANSACTION records, but I've yet to really try it out much.
    Examples where one wants to see others uncommitted data
    (+) Say I want to change a hundred / thousand / million tables for a task. Each of these tables require joins/lookups to see each others data (including the changed records). I'm not going to want to do this with one session. Why can't 10 or a 100 sessions be created to allow complex DML operations to be performed to accomplish a given task. It's like thinking of there is 1 session doing this task, but on the oracle side, there are a unlimited number of SIDs processing (100 sqlplus scripts running), all being able to see the uncommitted data. Once everything is done, then the rest of the sessions can see this information.
    (+) A process is running and is changing records, and I want to monitor its progress or even assist it it's getting behind.
    (+) A real life example I just remembered was a soccer game done overseas where a time zone problem allowed people to still be able to place bets even after the game was over (they still paid people even though they knew the final score which was nice of them). In this case yes a process should have been stopped from allowing bets/inserts to continued, but having a second (or more) processes being able to KNOW for certain that another session is inserting data when it shouldn't be, this is can be stopped. And yes once again you can say one can monitor the sga for the appearance of inserts and stop it and yes remove the insert privs from that user after a certain time (come to think of it that wouldn't have worked since the time was off). But yes a whole slue of other things could have been done to stop this process from recording this information. However, NOT being able to select data from that table where the inserts were going into, until its toooooooooo late, is a real problem. Being able to see uncommitted information is very important if it needs to be stopped.
    Overall I do think there should be something considered to allow to a session to be able to see what data another session is doing, but it's more on the side from administration of the data and the performance required to get a task done, even if it means sharing uncommitted changes between sessions.
    Tyler D.

  • Problem with Frameset and page session

    All,
    I am having a problem with Framesets and page session attributes. I
    have a client who's application uses a three frame frameset. They
    have a requirement on several pages that when a button is pushed two
    different pages load into the right and left frames. The way they
    are accomplishing this is that on the pages were this is required,
    they are adding target="_top" to the form declaration in their JSP.
    Then they store the page names they want to display in session,
    forward the request to the frameset, the frameset then determines
    which pages to display based on the session variables. This works
    exactly how they want it to.
    Here is our problem. We need to store some information in page
    session attributes. We have tried to get a handle to the desired
    view bean and call the setPageSessionAttribute method. However,
    since we are forwarding to the frame and the frame handles displaying
    the desired JSP, that view bean we had the handle to is not the one
    that is created to hand the display of the JSP.
    The next thing I tried was to use the request object. In the
    handleBtnRequest method, I set an attribute in the request object. I
    then query the request object in the beginDisplay event of the view
    bean. When the frame is reset the request object does not contain
    the attribute that I have set. I'm confused by this because I
    thought the request object would be available to me throughout the
    life of the request.
    Given the above information, does anyone have any suggestions? Also,
    am I going about this in the wrong manner.
    The client had been storing this information in user session, which
    seemed to work. However, since the data being stored dealt
    specifically with data for the requested page, we felt that storing
    it as page session was more appropriate.
    Thanks,

    The script on your page web page has some obvious bugs.. Best
    fix those
    first before looking to blame Flash.
    Jeckyl

  • User session stops completely and restarts (GNOME 3.10)

    Since last week I have experienced suddenly closing all applications closing and sending me to the log-in screen.
    Using journalctl I can see that all applications exited with a "Fatal IO error 11 (Resource temporarily unavailable) on X server :0". It all ends with the user session stopping and then being started again.
    Here is a journald log from yesterday at 13:10.
    Jan 16 13:10:35 archvision dbus[358]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service failed to load: No such fil
    Jan 16 13:10:35 archvision dbus-daemon[358]: dbus[358]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service failed to
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Pictures/Screenshot%20from%202014-01-04%2000:45
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Pictures/Screenshot%20from%202014-01-04%2000:45
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Videos/sound_styling_table_of_contents.wav" was
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Pictures/Screenshot%20from%202013-12-28%2002:13
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Pictures/Screenshot%20from%202013-12-28%2002:08
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Git/p1-report/out.png" was not found, exec: eog
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Git/gitgraph/out.png" was not found, exec: eog,
    Jan 16 13:12:08 archvision gnome-session[512]: (gnome-settings-daemon:569): Gdk-WARNING **: gnome-settings-daemon: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: (deja-dup:1993): Gdk-WARNING **: deja-dup: Fatal IO error 104 (Connection reset by peer) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: (transmission-gtk:731): Gdk-WARNING **: transmission-gtk: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: CopyAgent: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: skype: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: xcb_connection_has_error() returned true
    Jan 16 13:12:08 archvision gnome-session[512]: Window manager warning: Log level 16: gnome-shell: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: SparkleShare: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: dropbox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision colord[420]: Automatic remove of icc-faf837061e668d9b052248618ab54c15 from xrandr-Chi Mei Optoelectronics corp.
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-faf837061e668d9b052248618ab54c15
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-d81d4c735fbeec9cb2338b26b884af5d
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-e01a3aa966ec476f6f7f10befcaf4a93
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-46fc44daad94d12a6b26c88f7d89e032
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-4fe850f70957b4b2d6afcbdf852b8027
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-46965f5505458ec64e8697211a352322
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-23de2f0eaffd00e9354ff9c155d0b8a1
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-b464ec762f975aa10134c2892d60657e
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-92e63b59caa77681fe1f11e64cb069e7
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-10bb2bcfa705d9b655d32bf92f4d65e9
    Jan 16 13:12:08 archvision colord[420]: device removed: xrandr-Chi Mei Optoelectronics corp.
    Jan 16 13:12:08 archvision gnome-session[512]: (evolution-alarm-notify:722): Gdk-WARNING **: evolution-alarm-notify: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: (nm-applet:721): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision systemd[1]: Stopping Session 2 of user bastian.
    Jan 16 13:12:08 archvision systemd[1]: Stopped Session 2 of user bastian.
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision systemd-logind[356]: Removed session 2.
    Jan 16 13:12:08 archvision systemd[1]: Stopping User Manager for 1000...
    Jan 16 13:12:08 archvision systemd[506]: Stopping Default.
    Jan 16 13:12:08 archvision systemd[506]: Stopped target Default.
    Jan 16 13:12:08 archvision systemd[506]: Starting Shutdown.
    Jan 16 13:12:08 archvision systemd[506]: Reached target Shutdown.
    Jan 16 13:12:08 archvision systemd[506]: Starting Exit the Session...
    Jan 16 13:12:08 archvision gnome-session[512]: (deja-dup-monitor:750): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor org.gtk.Private.UDisks2VolumeMonitor disconnected from the bus; removing dr
    Jan 16 13:12:08 archvision gnome-session[512]: (deja-dup-monitor:750): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor org.gtk.Private.MTPVolumeMonitor disconnected from the bus; removing drives
    Jan 16 13:12:08 archvision gnome-session[512]: (deja-dup-monitor:750): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor org.gtk.Private.GoaVolumeMonitor disconnected from the bus; removing drives
    Jan 16 13:12:08 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: zeitgeist-datahub.vala:226: Unable to get name "org.gnome.zeitgeist.datahub" on the bus!
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision gnome-session[512]: Received signal:15->'Terminated'
    Jan 16 13:12:08 archvision systemd[1]: Stopped User Manager for 1000.
    Three minutes later it happened again. (journald log again)
    Jan 16 13:14:35 archvision dbus-daemon[358]: dbus[358]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service failed to
    Jan 16 13:15:18 archvision gnome-session[2416]: [228B blob data]
    Jan 16 13:15:26 archvision systemd[1]: Starting Cleanup of Temporary Directories...
    Jan 16 13:15:26 archvision systemd-tmpfiles[3286]: stat(/run/user/1000/gvfs) failed: Permission denied
    Jan 16 13:15:26 archvision systemd[1]: Started Cleanup of Temporary Directories.
    Jan 16 13:15:43 archvision gnome-session[2416]: Window manager warning: Received a NET_CURRENT_DESKTOP message from a broken (outdated) client who sent a 0 timestamp
    Jan 16 13:15:43 archvision gnome-session[2416]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x1600003 (#archlinux)
    Jan 16 13:15:43 archvision gnome-session[2416]: Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Jan 16 13:16:12 archvision gnome-session[2416]: (gnome-settings-daemon:2471): Gdk-WARNING **: gnome-settings-daemon: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: dropbox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: CopyAgent: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: SparkleShare: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: gnome-session[2416]: WARNING: App 'gnome-settings-daemon.desktop' exited with code 1
    Jan 16 13:16:12 archvision gnome-session[2416]: WARNING: App 'gnome-settings-daemon.desktop' exited with code 1
    Jan 16 13:16:12 archvision colord[420]: Automatic remove of icc-faf837061e668d9b052248618ab54c15 from xrandr-Chi Mei Optoelectronics corp.
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-faf837061e668d9b052248618ab54c15
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-d81d4c735fbeec9cb2338b26b884af5d
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-e01a3aa966ec476f6f7f10befcaf4a93
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-46fc44daad94d12a6b26c88f7d89e032
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-4fe850f70957b4b2d6afcbdf852b8027
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-46965f5505458ec64e8697211a352322
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-23de2f0eaffd00e9354ff9c155d0b8a1
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-b464ec762f975aa10134c2892d60657e
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-92e63b59caa77681fe1f11e64cb069e7
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-10bb2bcfa705d9b655d32bf92f4d65e9
    Jan 16 13:16:12 archvision colord[420]: device removed: xrandr-Chi Mei Optoelectronics corp.
    Jan 16 13:16:12 archvision gnome-session[2416]: Window manager warning: Log level 16: gnome-shell: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: (nm-applet:2622): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: (transmission-gtk:2632): Gdk-WARNING **: transmission-gtk: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: xcb_connection_has_error() returned true
    Jan 16 13:16:12 archvision sudo[3108]: pam_unix(sudo:session): session closed for user root
    Jan 16 13:16:12 archvision gnome-session[2416]: (evolution-alarm-notify:2623): Gdk-WARNING **: evolution-alarm-notify: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: (empathy:3185): Gdk-WARNING **: empathy: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision systemd[1]: Stopping Session 5 of user bastian.
    Jan 16 13:16:12 archvision systemd[1]: Stopped Session 5 of user bastian.
    Jan 16 13:16:12 archvision systemd-logind[356]: Removed session 5.
    Jan 16 13:16:12 archvision systemd[1]: Stopping User Manager for 1000...
    Jan 16 13:16:12 archvision gnome-session[2416]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    The dmesg log doesn't seem to have much in it, though.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.7-2-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 20131219 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Jan 12 13:09:09 CET 2014
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=61f8c7e3-2df0-4a94-9a43-23f12a9c7334 rw resume=/dev/sda2 resume_offset=12656640 quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000c96e6fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c96e7000-0x00000000ca08efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ca08f000-0x00000000ca115fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca116000-0x00000000ca1e8fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ca1e9000-0x00000000ca621fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ca622000-0x00000000ca622fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca623000-0x00000000ca665fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ca666000-0x00000000cade0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cade1000-0x00000000caff2fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000caff3000-0x00000000caffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cb800000-0x00000000cf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: CLEVO CO. W35_37ET/W35_37ET, BIOS 4.6.5 12/14/2012
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x22f600 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 uncachable
    [ 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 000000000 mask E00000000 write-back
    [ 0.000000] 1 base 200000000 mask FE0000000 write-back
    [ 0.000000] 2 base 220000000 mask FF0000000 write-back
    [ 0.000000] 3 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 4 base 0D0000000 mask FF0000000 uncachable
    [ 0.000000] 5 base 0CC000000 mask FFC000000 uncachable
    [ 0.000000] 6 base 0CB800000 mask FFF800000 uncachable
    [ 0.000000] 7 base 22F800000 mask FFF800000 uncachable
    [ 0.000000] 8 base 22F600000 mask FFFE00000 uncachable
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xcb800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xcb000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd860-0x000fd86f] mapped at [ffff8800000fd860]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 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 0x22f400000-0x22f5fffff]
    [ 0.000000] [mem 0x22f400000-0x22f5fffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22c000000-0x22f3fffff]
    [ 0.000000] [mem 0x22c000000-0x22f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x22bffffff]
    [ 0.000000] [mem 0x200000000-0x22bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x40003fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x40005000-0xc96e6fff]
    [ 0.000000] [mem 0x40005000-0x401fffff] page 4k
    [ 0.000000] [mem 0x40200000-0xc95fffff] page 2M
    [ 0.000000] [mem 0xc9600000-0xc96e6fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xca08f000-0xca115fff]
    [ 0.000000] [mem 0xca08f000-0xca115fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xca622000-0xca622fff]
    [ 0.000000] [mem 0xca622000-0xca622fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xca666000-0xcade0fff]
    [ 0.000000] [mem 0xca666000-0xca7fffff] page 4k
    [ 0.000000] [mem 0xca800000-0xcabfffff] page 2M
    [ 0.000000] [mem 0xcac00000-0xcade0fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xcaff3000-0xcaffffff]
    [ 0.000000] [mem 0xcaff3000-0xcaffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x37978000-0x37cb3fff]
    [ 0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 00000000ca19e080 0007C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000ca1a72d8 0010C (v05 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000ca19e190 09148 (v02 ALASKA A M I 00000021 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000ca1e7080 00040
    [ 0.000000] ACPI: APIC 00000000ca1a73e8 00092 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 00000000ca1a7480 00044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000ca1a74c8 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000ca1a7508 00EA5 (v01 TrmRef PtidDevc 00001000 INTL 20091112)
    [ 0.000000] ACPI: HPET 00000000ca1a83b0 00038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 00000000ca1a83e8 00315 (v01 SataRe SataTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000ca1a8700 00926 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000ca1a9028 00A92 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000ca1a9ac0 00574 (v01 SgRef SgTabl 00001000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000ca1aa038 00FAC (v01 OptRef OptTabl 00001000 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000022f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x22f5fffff]
    [ 0.000000] NODE_DATA [mem 0x22f5f0000-0x22f5f4fff]
    [ 0.000000] [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880226c00000-ffff88022ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x22f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xc96e6fff]
    [ 0.000000] node 0: [mem 0xca08f000-0xca115fff]
    [ 0.000000] node 0: [mem 0xca622000-0xca622fff]
    [ 0.000000] node 0: [mem 0xca666000-0xcade0fff]
    [ 0.000000] node 0: [mem 0xcaff3000-0xcaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x22f5fffff]
    [ 0.000000] On node 0 totalpages: 2069138
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12852 pages used for memmap
    [ 0.000000] DMA32 zone: 822518 pages, LIFO batch:31
    [ 0.000000] Normal zone: 19416 pages used for memmap
    [ 0.000000] Normal zone: 1242624 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 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[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, 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 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-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 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc96e7000-0xca08efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca116000-0xca1e8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca1e9000-0xca621fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca623000-0xca665fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcade1000-0xcaff2fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb000000-0xcb7fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb800000-0xcf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcfa00000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xcfa00000-0xf7ffffff] 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:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88022f200000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2036785
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=61f8c7e3-2df0-4a94-9a43-23f12a9c7334 rw resume=/dev/sda2 resume_offset=12656640 quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] 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: 8063300K/8276552K available (5115K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 213252K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2394.611 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4791.77 BogoMIPS (lpj=7982036)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000030] Security Framework initialized
    [ 0.000037] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000038] Yama: becoming mindful.
    [ 0.000541] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002566] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003470] Mount-cache hash table entries: 256
    [ 0.003632] Initializing cgroup subsys memory
    [ 0.003640] Initializing cgroup subsys devices
    [ 0.003642] Initializing cgroup subsys freezer
    [ 0.003643] Initializing cgroup subsys net_cls
    [ 0.003645] Initializing cgroup subsys blkio
    [ 0.003665] CPU: Physical Processor ID: 0
    [ 0.003666] CPU: Processor Core ID: 0
    [ 0.003671] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.004041] mce: CPU supports 9 MCE banks
    [ 0.004054] CPU0: Thermal monitoring enabled (TM1)
    [ 0.004065] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.004173] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.005132] ACPI: Core revision 20130725
    [ 0.011088] ACPI: All ACPI Tables successfully acquired
    [ 0.012488] ftrace: allocating 20316 entries in 80 pages
    [ 0.022278] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.055311] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.055317] TSC deadline timer enabled
    [ 0.055324] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.055330] ... version: 3
    [ 0.055331] ... bit width: 48
    [ 0.055332] ... generic registers: 4
    [ 0.055333] ... value mask: 0000ffffffffffff
    [ 0.055334] ... max period: 0000ffffffffffff
    [ 0.055334] ... fixed-purpose events: 3
    [ 0.055335] ... event mask: 000000070000000f
    [ 0.095724] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.082109] smpboot: Booting Node 0, Processors # 1 # 2 # 3 # 4 # 5 # 6 # 7 OK
    [ 0.218035] Brought up 8 CPUs
    [ 0.218039] smpboot: Total of 8 processors activated (38329.18 BogoMIPS)
    [ 0.225368] devtmpfs: initialized
    [ 0.228016] PM: Registering ACPI NVS region [mem 0xca116000-0xca1e8fff] (864256 bytes)
    [ 0.228030] PM: Registering ACPI NVS region [mem 0xca623000-0xca665fff] (274432 bytes)
    [ 0.228771] RTC time: 10:58:11, date: 01/16/14
    [ 0.228806] NET: Registered protocol family 16
    [ 0.228897] cpuidle: using governor ladder
    [ 0.228898] cpuidle: using governor menu
    [ 0.228925] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.228926] ACPI: bus type PCI registered
    [ 0.228928] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.228974] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.228976] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.236206] PCI: Using configuration type 1 for base access
    [ 0.236847] bio: create slab <bio-0> at 0
    [ 0.236959] ACPI: Added _OSI(Module Device)
    [ 0.236960] ACPI: Added _OSI(Processor Device)
    [ 0.236961] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.236962] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.238281] ACPI: EC: Look up EC in DSDT
    [ 0.239565] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.288607] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.288988] ACPI: SSDT 00000000ca03c018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.289328] ACPI: Dynamic OEM Table Load:
    [ 0.289330] ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.302166] ACPI: SSDT 00000000ca03da98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.302528] ACPI: Dynamic OEM Table Load:
    [ 0.302530] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.318721] ACPI: SSDT 00000000ca03ec18 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.319055] ACPI: Dynamic OEM Table Load:
    [ 0.319056] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.334857] ACPI: Interpreter enabled
    [ 0.334865] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.334868] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.334881] ACPI: (supports S0 S3 S4 S5)
    [ 0.334882] ACPI: Using IOAPIC for interrupt routing
    [ 0.334905] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.335040] ACPI: No dock devices found.
    [ 0.345033] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.345229] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.345415] acpi PNP0A08:00: ACPI _OSC control (0x18) granted
    [ 0.345984] PCI host bridge to bus 0000:00
    [ 0.345987] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.345989] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.345990] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.345992] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.345993] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.345995] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.345996] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.345998] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.345999] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.346001] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.346002] pci_bus 0000:00: root bus resource [mem 0xcfa00000-0xfeafffff]
    [ 0.346009] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.346096] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.346125] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.346170] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.346203] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.346213] pci 0000:00:02.0: reg 0x10: [mem 0xf7400000-0xf77fffff 64bit]
    [ 0.346219] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.346223] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.347124] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.347146] pci 0000:00:14.0: reg 0x10: [mem 0xf7a00000-0xf7a0ffff 64bit]
    [ 0.347218] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.347265] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.347299] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.347322] pci 0000:00:16.0: reg 0x10: [mem 0xf7a1b000-0xf7a1b00f 64bit]
    [ 0.347399] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.347484] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.347505] pci 0000:00:1a.0: reg 0x10: [mem 0xf7a18000-0xf7a183ff]
    [ 0.347596] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.347658] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.347692] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.347707] pci 0000:00:1b.0: reg 0x10: [mem 0xf7a10000-0xf7a13fff 64bit]
    [ 0.347775] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.347824] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.347854] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.347933] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.347984] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.348014] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
    [ 0.348093] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.348144] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.348174] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
    [ 0.348253] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.348305] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.348342] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.348363] pci 0000:00:1d.0: reg 0x10: [mem 0xf7a17000-0xf7a173ff]
    [ 0.348454] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.348513] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.348545] pci 0000:00:1f.0: [8086:1e57] type 00 class 0x060100
    [ 0.348724] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.348743] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    [ 0.348750] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    [ 0.348757] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    [ 0.348765] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    [ 0.348772] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    [ 0.348780] pci 0000:00:1f.2: reg 0x24: [mem 0xf7a16000-0xf7a167ff]
    [ 0.348825] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.348896] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.348911] pci 0000:00:1f.3: reg 0x10: [mem 0xf7a15000-0xf7a150ff 64bit]
    [ 0.348932] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.349064] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
    [ 0.349075] pci 0000:01:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
    [ 0.349086] pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.349096] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.349104] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.349112] pci 0000:01:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
    [ 0.349163] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.355360] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.355365] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.355380] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
    [ 0.355383] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.355452] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.355555] pci 0000:03:00.0: [8086:088e] type 00 class 0x028000
    [ 0.355593] pci 0000:03:00.0: reg 0x10: [mem 0xf7900000-0xf7901fff 64bit]
    [ 0.355775] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.355814] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.362045] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.362061] pci 0000:00:1c.2: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.362207] pci 0000:04:00.0: [10ec:5289] type 00 class 0xff0000
    [ 0.362270] pci 0000:04:00.0: reg 0x10: [mem 0xf7800000-0xf780ffff]
    [ 0.362784] pci 0000:04:00.0: supports D1 D2
    [ 0.362786] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.362879] pci 0000:04:00.0: System wakeup disabled by ACPI
    [ 0.362979] pci 0000:04:00.2: [10ec:8168] type 00 class 0x020000
    [ 0.363037] pci 0000:04:00.2: reg 0x10: [io 0xd000-0xd0ff]
    [ 0.363148] pci 0000:04:00.2: reg 0x18: [mem 0xf2104000-0xf2104fff 64bit pref]
    [ 0.363217] pci 0000:04:00.2: reg 0x20: [mem 0xf2100000-0xf2103fff 64bit pref]
    [ 0.363519] pci 0000:04:00.2: supports D1 D2
    [ 0.363520] pci 0000:04:00.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.368781] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.368785] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.368789] pci 0000:00:1c.3: bridge window [mem 0xf7800000-0xf78fffff]
    [ 0.368795] pci 0000:00:1c.3: bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
    [ 0.368823] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.369733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.369781] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.369827] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.369872] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.369915] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.369960] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.370004] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.370048] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 10 11 12 14 15)
    [ 0.370236] ACPI: Enabled 5 GPEs in block 00 to 3F
    [ 0.370243] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.370294] Found 1 acpi root devices
    [ 0.370323] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.370389] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.370393] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.370394] vgaarb: loaded
    [ 0.370395] vgaarb: bridge control possible 0000:01:00.0
    [ 0.370396] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.370422] PCI: Using ACPI for IRQ routing
    [ 0.371982] PCI: pci_cache_line_size set to 64 bytes
    [ 0.372033] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.372038] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.372039] e820: reserve RAM buffer [mem 0xc96e7000-0xcbffffff]
    [ 0.372041] e820: reserve RAM buffer [mem 0xca116000-0xcbffffff]
    [ 0.372043] e820: reserve RAM buffer [mem 0xca623000-0xcbffffff]
    [ 0.372044] e820: reserve RAM buffer [mem 0xcade1000-0xcbffffff]
    [ 0.372045] e820: reserve RAM buffer [mem 0xcb000000-0xcbffffff]
    [ 0.372047] e820: reserve RAM buffer [mem 0x22f600000-0x22fffffff]
    [ 0.372123] NetLabel: Initializing
    [ 0.372124] NetLabel: domain hash size = 128
    [ 0.372125] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.372136] NetLabel: unlabeled traffic allowed by default
    [ 0.372156] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.372160] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.374183] Switched to clocksource hpet
    [ 0.377767] pnp: PnP ACPI init
    [ 0.377776] ACPI: bus type PNP registered
    [ 0.377837] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.377840] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.377850] pnp 00:01: [dma 4]
    [ 0.377862] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.377880] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.377956] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.377992] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.377994] system 00:04: [io 0x1000-0x100f] has been reserved
    [ 0.377995] system 00:04: [io 0xffff] has been reserved
    [ 0.377997] system 00:04: [io 0xffff] has been reserved
    [ 0.377999] system 00:04: [io 0x0400-0x0453] could not be reserved
    [ 0.378001] system 00:04: [io 0x0458-0x047f] has been reserved
    [ 0.378002] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 0.378005] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.378007] system 00:04: [io 0x3322-0x3323] has been reserved
    [ 0.378009] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.378032] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.378073] system 00:06: [io 0x0454-0x0457] has been reserved
    [ 0.378076] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.378116] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 0.378119] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.378140] pnp 00:08: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.378164] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.378207] pnp 00:0a: Plug and Play ACPI device, IDs ETD0403 PNP0f13 (active)
    [ 0.378833] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.378835] system 00:0b: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.378837] system 00:0b: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.378839] system 00:0b: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.378841] system 00:0b: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.378842] system 00:0b: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.378844] system 00:0b: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.378846] system 00:0b: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.378848] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.378849] system 00:0b: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.378851] system 00:0b: [mem 0xcfa00000-0xcfa00fff] has been reserved
    [ 0.378853] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.378985] system 00:0c: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.378987] system 00:0c: [mem 0x40000000-0x401fffff] could not be reserved
    [ 0.378989] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.379002] pnp: PnP ACPI: found 13 devices
    [ 0.379003] ACPI: bus type PNP unregistered
    [ 0.385141] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.385144] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.385147] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
    [ 0.385149] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.385153] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.385163] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.385168] pci 0000:00:1c.2: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.385176] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.385178] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.385183] pci 0000:00:1c.3: bridge window [mem 0xf7800000-0xf78fffff]
    [ 0.385187] pci 0000:00:1c.3: bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
    [ 0.385193] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.385194] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.385196] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.385198] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.385199] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.385201] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.385202] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.385204] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.385205] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.385207] pci_bus 0000:00: resource 13 [mem 0xcfa00000-0xfeafffff]
    [ 0.385208] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.385210] pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
    [ 0.385212] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.385213] pci_bus 0000:03: resource 1 [mem 0xf7900000-0xf79fffff]
    [ 0.385215] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
    [ 0.385216] pci_bus 0000:04: resource 1 [mem 0xf7800000-0xf78fffff]
    [ 0.385218] pci_bus 0000:04: resource 2 [mem 0xf2100000-0xf21fffff 64bit pref]
    [ 0.385242] NET: Registered protocol family 2
    [ 0.385406] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.385585] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.385695] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.385709] TCP: reno registered
    [ 0.385721] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.385747] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.385806] NET: Registered protocol family 1
    [ 0.385816] pci 0000:00:02.0: Boot video device
    [ 0.421017] PCI: CLS 64 bytes, default 64
    [ 0.421049] Unpacking initramfs...
    [ 0.476133] Freeing initrd memory: 3312K (ffff880037978000 - ffff880037cb4000)
    [ 0.476137] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.476140] software IO TLB [mem 0xc56e7000-0xc96e7000] (64MB) mapped at [ffff8800c56e7000-ffff8800c96e6fff]
    [ 0.476405] Scanning for low memory corruption every 60 seconds
    [ 0.476648] audit: initializing netlink socket (disabled)
    [ 0.476657] type=2000 audit(1389869891.466:1): initialized
    [ 0.488246] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.489340] zbud: loaded
    [ 0.489487] VFS: Disk quotas dquot_6.5.2
    [ 0.489519] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.489651] msgmni has been set to 15755
    [ 0.489888] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.489932] io scheduler noop registered
    [ 0.489933] io scheduler deadline registered
    [ 0.489954] io scheduler cfq registered (default)
    [ 0.490106] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.490450] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.490462] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.490496] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 0.490497] vesafb: scrolling: redraw
    [ 0.490499] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.491479] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90004f00000, using 8128k, total 8128k
    [ 0.636131] Console: switching to colour frame buffer device 240x67
    [ 0.780205] fb0: VESA VGA frame buffer device
    [ 0.780223] intel_idle: MWAIT substates: 0x21120
    [ 0.780225] intel_idle: v0.4 model 0x3A
    [ 0.780226] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.780420] GHES: HEST is not enabled!
    [ 0.780463] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.780820] Linux agpgart interface v0.103
    [ 0.780890] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:ELNM] at 0x60,0x64 irq 1,12
    [ 0.784163] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.785597] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.785607] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.785609] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.785610] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.785612] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.785735] mousedev: PS/2 mouse device common for all mice
    [ 0.785878] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.785904] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.785912] Intel P-state driver initializing.
    [ 0.785920] Intel pstate controlling: cpu 0
    [ 0.785931] Intel pstate controlling: cpu 1
    [ 0.785941] Intel pstate controlling: cpu 2
    [ 0.785949] Intel pstate controlling: cpu 3
    [ 0.785957] Intel pstate controlling: cpu 4
    [ 0.785972] Intel pstate controlling: cpu 5
    [ 0.785981] Intel pstate controlling: cpu 6
    [ 0.785990] Intel pstate controlling: cpu 7
    [ 0.786051] drop_monitor: Initializing network drop monitor service
    [ 0.786109] TCP: cubic registered
    [ 0.786182] NET: Registered protocol family 10
    [ 0.786325] NET: Registered protocol family 17
    [ 0.786334] Key type dns_resolver registered
    [ 0.786578] registered taskstats version 1
    [ 0.787128] Magic number: 14:671:982
    [ 0.787215] rtc_cmos 00:05: setting system clock to 2014-01-16 10:58:12 UTC (1389869892)
    [ 0.787265] PM: Checking hibernation image partition /dev/sda2
    [ 0.788167] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.917532] PM: Hibernation image not present or could not be loaded.
    [ 0.918293] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 0.918295] Write protecting the kernel read-only data: 8192k
    [ 0.921673] Freeing unused kernel memory: 1016K (ffff880001502000 - ffff880001600000)
    [ 0.922590] Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    [ 0.930285] systemd-udevd[78]: starting version 208
    [ 0.946773] pcieport 0000:00:1c.3: driver skip pci_set_master, fix it!
    [ 0.946873] ACPI: bus type USB registered
    [ 0.946876] rtsx_pci 0000:04:00.0: irq 41 for MSI/MSI-X
    [ 0.946891] rtsx_pci 0000:04:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 41
    [ 0.946903] usbcore: registered new interface driver usbfs
    [ 0.946913] usbcore: registered new interface driver hub
    [ 0.946973] usbcore: registered new device driver usb
    [ 0.947532] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.947546] SCSI subsystem initialized
    [ 0.947733] ehci-pci: EHCI PCI platform driver
    [ 0.947815] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 0.947818] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.947822] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.947912] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.947929] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
    [ 0.948102] hub 1-0:1.0: USB hub found
    [ 0.948109] hub 1-0:1.0: 4 ports detected
    [ 0.948401] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.948403] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.948552] libata version 3.00 loaded.
    [ 0.948642] hub 2-0:1.0: USB hub found
    [ 0.948650] hub 2-0:1.0: 4 ports detected
    [ 0.958134] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 0.958140] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.958144] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 0.958158] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.962052] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.962064] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7a18000
    [ 0.971372] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.971521] hub 3-0:1.0: USB hub found
    [ 0.971526] hub 3-0:1.0: 2 ports detected
    [ 0.971698] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.971702] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.971705] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 0.971715] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.975613] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.975623] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7a17000
    [ 0.984789] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.985103] hub 4-0:1.0: USB hub found
    [ 0.985111] hub 4-0:1.0: 2 ports detected
    [ 0.985259] ahci 0000:00:1f.2: version 3.0
    [ 0.985433] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 0.985471] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.998181] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x17 impl SATA mode
    [ 0.998189] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems sxs apst
    [ 0.998204] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.018886] scsi0 : ahci
    [ 1.019098] scsi1 : ahci
    [ 1.019311] scsi2 : ahci
    [ 1.019494] scsi3 : ahci
    [ 1.019689] scsi4 : ahci
    [ 1.019866] scsi5 : ahci
    [ 1.019956] ata1: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16100 irq 43
    [ 1.019960] ata2: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16180 irq 43
    [ 1.019962] ata3: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16200 irq 43
    [ 1.019964] ata4: DUMMY
    [ 1.019966] ata5: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16300 irq 43
    [ 1.019968] ata6: DUMMY
    [ 1.308506] usb 1-3: new low-speed USB device number 2 using xhci_hcd
    [ 1.327890] usb 1-3: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.329720] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.333161] usbcore: registered new interface driver usbhid
    [ 1.333165] usbhid: USB HID core driver
    [ 1.334114] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/input/input7
    [ 1.334423] hid-generic 0003:046D:C051.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:14.0-3/input0
    [ 1.338456] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.339420] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 1.339425] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.339428] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 1.349868] ata1.00: ATA-9: INTEL SSDSC2CT180A3, 300i, max UDMA/133
    [ 1.349884] ata1.00: 351651888 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.359418] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 1.359434] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.359436] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 1.369892] ata1.00: configured for UDMA/133
    [ 1.370166] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSC2CT18 300i PQ: 0 ANSI: 5
    [ 1.435266] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.478575] tsc: Refined TSC clocksource calibration: 2394.560 MHz
    [ 1.559838] hub 3-1:1.0: USB hub found
    [ 1.560024] hub 3-1:1.0: 6 ports detected
    [ 1.668796] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 1.688767] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.792889] hub 4-1:1.0: USB hub found
    [ 1.793095] hub 4-1:1.0: 8 ports detected
    [ 1.908729] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 1.908736] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.908739] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 2.062606] usb 4-1.6: new high-speed USB device number 3 using ehci-pci
    [ 2.319022] ata2.00: ATA-8: TOSHIBA MK3252GSX, LV010A, max UDMA/100
    [ 2.319029] ata2.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 2.320366] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 2.320373] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 2.320377] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 2.321451] ata2.00: configured for UDMA/100
    [ 2.321618] scsi 1:0:0:0: Direct-Access ATA TOSHIBA MK3252GS LV01 PQ: 0 ANSI: 5
    [ 2.479612] Switched to clocksource tsc
    [ 2.639562] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.643607] ata3.00: ATAPI: TSSTcorp CDDVDW SN-208DB, TC01, max UDMA/100
    [ 2.653637] ata3.00: configured for UDMA/100
    [ 2.662862] scsi 2:0:0:0: CD-ROM TSSTcorp CDDVDW SN-208DB TC01 PQ: 0 ANSI: 5
    [ 2.983186] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.988352] sd 0:0:0:0: [sda] 351651888 512-byte logical blocks: (180 GB/167 GiB)
    [ 2.988411] sd 1:0:0:0: [sdb] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 2.988487] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.988493] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.988494] sd 1:0:0:0: [sdb] Write Protect is off
    [ 2.988497] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.988529] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.988537] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.989966] sda: sda1 sda2
    [ 2.990254] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.993241] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.993244] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.993378] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 3.069540] sdb: sdb1 sdb2
    [ 3.070543] sd 1:0:0:0: [sdb] Attached SCSI disk
    [ 3.418979] PM: Starting manual resume from disk
    [ 3.418984] PM: Hibernation image partition 8:2 present
    [ 3.418986] PM: Looking for hibernation image.
    [ 3.419700] PM: Image not found (code -22)
    [ 3.419705] PM: Hibernation image not present or could not be loaded.
    [ 3.444138] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.499597] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.500097] systemd[1]: Set hostname to <archvision>.
    [ 3.559092] systemd[1]: Starting Collect Read-Ahead Data...
    [ 3.560163] systemd[1]: Starting Replay Read-Ahead Data...
    [ 3.560463] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.560524] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.560551] systemd[1]: Starting Login Prompts.
    [ 3.560567] systemd[1]: Reached target Login Prompts.
    [ 3.560588] systemd[1]: Starting Remote File Systems.
    [ 3.560603] systemd[1]: Reached target Remote File Systems.
    [ 3.560622] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.560664] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.560678] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.560719] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.560730] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.560749] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.560759] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.560779] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.560811] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.560941] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.560960] systemd[1]: Starting Journal Socket.
    [ 3.561026] systemd[1]: Listening on Journal Socket.
    [ 3.561056] systemd[1]: Mounting Huge Pages File System...
    [ 3.561370] systemd[1]: Starting Journal Service...
    [ 3.561773] systemd-readahead[160]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    [ 3.561816] systemd[1]: Started Journal Service.
    [ 3.576539] systemd-journald[162]: Vacuuming done, freed 0 bytes
    [ 3.607183] EXT4-fs (sda1): re-mounted. Opts: data=ordered,discard
    [ 3.610857] systemd-udevd[197]: starting version 208
    [ 3.611093] scsi6 : vhba
    [ 3.647675] ACPI: Requesting acpi_cpufreq
    [ 3.648443] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input8
    [ 3.648448] ACPI: Power Button [PWRB]
    [ 3.648507] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input9
    [ 3.648511] ACPI: Sleep Button [SLPB]
    [ 3.649258] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input10
    [ 3.663330] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 3.666930] mei_me 0000:00:16.0: setting latency timer to 64
    [ 3.666967] mei_me 0000:00:16.0: irq 44 for MSI/MSI-X
    [ 3.668677] ACPI: Lid Switch [LID0]
    [ 3.668720] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input11
    [ 3.668723] ACPI: Power Button [PWRF]
    [ 3.669670] ACPI: Battery Slot [BAT] (battery present)
    [ 3.670212] thermal LNXTHERM:00: registered as thermal_zone0
    [ 3.670214] ACPI: Thermal Zone [TZ0] (35 C)
    [ 3.670260] [drm] Initialized drm 1.1.0 20060810
    [ 3.671009] ACPI: AC Adapter [AC] (off-line)
    [ 3.671841] wmi: Mapper loaded
    [ 3.673496] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 3.673503] r8169 0000:04:00.2: can't disable ASPM; OS doesn't have ASPM control
    [ 3.673726] r8169 0000:04:00.2: irq 45 for MSI/MSI-X
    [ 3.673936] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130725/utaddress-251)
    [ 3.673942] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.674142] r8169 0000:04:00.2 eth0: RTL8411 at 0xffffc90005f5a000, 00:90:f5:e4:9c:92, XID 08800800 IRQ 45
    [ 3.674145] r8169 0000:04:00.2 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 3.674610] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130725/utaddress-251)
    [ 3.674614] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.674616] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 3.674618] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130725/utaddress-251)
    [ 3.674620] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.674621] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 3.674623] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130725/utaddress-251)
    [ 3.674625] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.674625] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 3.676500] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 3.680556] cfg80211: Calling CRDA to update world regulatory domain
    [ 3.684359] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 3.684362] Copyright(c) 2003-2013 Intel Corporation
    [ 3.687182] pcieport 0000:00:1c.2: driver skip pci_set_master, fix it!
    [ 3.687240] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.687319] iwlwifi 0000:03:00.0: irq 47 for MSI/MSI-X
    [ 3.689230] input: PC Speaker as /devices/platform/pcspkr/input/input13
    [ 3.689318] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input14
    [ 3.691653] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
    [ 3.694703] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
    [ 3.699874] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
    [ 3.700326] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
    [ 3.700721] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
    [ 3.700968] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 3.700970] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 3.700971] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 3.700972] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6235 AGN, REV=0xB0
    [ 3.701019] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3.707821] [drm] Memory usable by graphics device = 2048M
    [ 3.707823] iwlwifi 0000:03:00.0: RF_KILL bit toggled to disable radio.
    [ 3.707824] checking generic (d0000000 7f0000) vs hw (d0000000 10000000)
    [ 3.707825] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 3.707842] Console: switching to colour dummy device 80x25
    [ 3.708353] i915 0000:00:02.0: setting latency timer to 64
    [ 3.719419] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 3.731545] iTCO_vendor_support: vendor-support=0
    [ 3.731802] iTCO_wdt: Intel TCO WatchDog Timer Dri

    zozi56 wrote:Can you reproduce the problem without Skype, Bastian?
    From what I remember I have also had this issue when Skype wasn't open.
    Yesterday my computer started up beeping - I took the harddisk out and it started normally (initramfs tho). Then I put it back in and the laptop have been running fine so far. I suspect it might just have been a bad connection, but I am giving it time..
    EDIT: Still experiencing the issue..
    Last edited by Bastian (2014-01-19 18:09:08)

  • Problems Setting Up Developer Users

    I am having a problem setting up developer users and I am trying to determine if I am missing a step or if there is a configuration problem on my staging and production systems.
    What I want to do should be very simple. I want to create a user that can create an application and see the information under the "Application" tab in the Navigator.
    I have created the user using the following steps on 3.0.9.82 for Unix:
    1. Create the user
    2. Make the user a full administrator (rather than end user)
    3. Make the user a member of the portal_developers group
    4. Make the user's default group the portal_developers group
    However, when I do this the user does not see the information under the
    "Application" tab. The only way I can get the user to see the info under the
    "Application" tab is to make him a member of the Portal_administrators
    and/or DBA group. Both my staging and production boxes have the same result.
    Does anyone have any thoughts or suggestions on what might be happening?

    Thank you- I have read through that thread and can see some resonance with my issue.
    My AOL emails work VERY fast with BB, in fact almost simultaneously received on PC & Torch " ping ping!"
    This issue only raised its ugly head when I had 2 Torches replaced by my insurers. 
    Whilst the claim was in process I used a new Curve, loaded from backup on PC to keep emails going and of course phone & web facilities. ( I use the BB to power internet via bluetooth to my PC / laptop when living on a remote island with no phone lines or power supplies)  All was fine. Swapping email accounts took a few minutes with the usual password confirmations for each AOL screenname etc. 
    Then the new Torches came back from insurers, and I tried to swap devices. Phoning & texting is fine. Al data and contacts swap over fine.
    SETUP email accounts.............stymied every time. It says repeatedly that my user name/password is invalid etc etc etc
    Have tried security wipes. Have tried setting up new BB ID & passwords on PC website. All is OK until I try to setup emails on the Torches.  This has used up ridiculous amounts of time- all wasted.
    I love the BB phones and the fast email push......in fact I recently bought a new Sony Xperia Z1 but sent it back because of wifi coverage meant no emails on that superb phone for lots of the time.
    Good old BB I said..........I always get emails wherever I am. ( Rural Scotland has very patchy radio & wifi coverage)  
    Was about to purchase new Z10s just to get a bigger screen, but now I am averse to buying ANY BB phone again because this present mess means I may never get emails set up again.  How nuts is that?
    Many thanks for all help & suggestions..........boy do I need them!!
    Kind wishes from West of Scotland 
    Fair winds and kind landfalls

  • How to check whether a user session is null or not

    Hi
    I am using Jdeveloper 11.1.2.2
    I have a use case of running some Junit test case, this is the problem I have :
    There are some Junit tests which are written for some VO's. While testing insert and update operation in Junit there is two mandatory columns Created by and Updated by to be entered for committing into the database.
    These values are taken from the UserName of the current UserSession .
    So for getting the these values for each user I thought of displaying a JPanel before the test is run, where the user enters the Username and password which is validated and the user is verified.
    First, I need to check whether there is a session present or not. For checking this, I wrote a createUserSession() and did like this inside it :
    if(fixture.getApplicationModule().getSession().getUserData().isEmpty())If so to show the Jpanel and get the user details and verify the user.
    But while running the test itself I found that the session is already present, now I just have to input the values based on who is the user.
    But Junit doesn't run the tests in the order in which the test are written. So I have to call this in all the test cases.
    The Question is :
    How can I check whether the session is already present or not, so that I don't have to ask the user every time while every test is running to enter the Username and Password ?
    Thanks,
    Nigel.
    Edited by: Nigel Thomas on Jul 30, 2012 10:26 AM

    Hi,
    wondering why don't you create test users and then automatically log them in as Jan Vervecken did on the threads I pointed you to. This way your test cases run without user interaction. To test if a session exists for a user, I would put a custom property into user data. If this property exists, the user session is an existing one. However, make sure the information you save into the user data survives passivation as otherwise the information you get out of this is not accurate. See: http://tompeez.wordpress.com/2011/07/08/jdev-always-test-your-app-with-applicationmodule-pooling-turned-off/
    Frank

  • Managing user sessions in RDS on Server 2012 R2

    I'm planning on deploying Server 2012 R2 Remote Desktop Services, and I'm finding I'm going to have to go to a training class!  Unfortunately, I don't have the time to do that before deploying. I've figured out how to use policy editor to configure
    what I used to accomplish in "Terminal Services Configuration". What tool do I use to manage Remote Apps, and what tool do I use to view session details? I know I can remote control user sessions from Task Manager, but that doesn't give visibility
    to view session idle time, logon time, etc.

    Is it on a Domain or Workgroup, if it is on a Domain (and you had previous experience with RDS 2008/R2) then you can simply read this guide
    http://social.technet.microsoft.com/wiki/contents/articles/20684.management-how-to-changes-for-rds-in-windows-server-2012-and-2012r2.aspx
    If it is on a workgroup you have to do a bit more to get it right. The only problem is if you are on a workgroup you can not have RemoteApps
    Hope this helps!

Maybe you are looking for

  • How do I make my iPhone stop automatically syncing duplicated Outlook contacts?

    My Outlook stores multiple contacts for the same person automatically (one with an email address only, one with a phone number only, etc.). When my iPhone syncs with the cloud it stores those multiple contacts and makes it frustrating to look up one

  • How to determine the organizational unit using activity category  ????????

    Hello All We are working on CRM 7.0 , we need to have the organizational determination based on the activity category , I have put the activity category in the attribute list then I created a determination rule type responsibility and it is working f

  • Dynamic IP allocation by Radius server

    Hi community, Can Cisco Radius server allocation different IP pools for requests from difference source IP addresses but having the same username/ password information? We have multiple GGSNs using dynamic IP allocation by Radius server. In Radius se

  • Skype can't connect with internet while the connection is fine

    I've installed Skype (version 7+) for my mac,  OS XYosemite 10.10.1. When I try to login with my microsoft account in the application, it says that there is no internet connecting, even if there is clearly is. At the same time I can login with my mic

  • Archive Employee for Info type 0008

    Hi Experts. I have a requirement liek, i need to archive the personal number for info type 008. We have an Object PA_LDOC. The write program is RPAR3W00. I need to modify the write program, which should accept the data from flat file to create the re