Unable to use Page clause in EQL Endeca 3.0

Hello All,
I am trying to map Top 25 most visited locations from the data I have. I wrote following query which has correct syntax but I am unable to get the Top 25 results. When the query get processed I am getting following warning:
Query: RETURN Test AS
SELECT COUNT(RecordNumber) as Times_Visited,
LONGLAT as LATLONG
GROUP BY LATLONG
Order By Times_Visited Desc
Page(0,10)
Result:
Query processed successfully (with warnings).
Warnings encountered while processing the EQL query:
This implementation manages sorting based on user input. Any ORDER BY clauses in the EQL query will be discarded and ignored.
This implementation manages paging and page size based on user input. Any PAGE clauses in the EQL query will be discarded and ignored.
I have disabled the End user sort options End User Controls, any hint will be helpful.
Thanks,
Edited by: 950330 on Jun 4, 2013 4:25 PM

I have seen in Apple Support Forum that you have the same problems with Audiosuite Plug Ins like me. Allways crashes with Autotune, Vocal align and Speed and others in Audio Suite. Logic is a terrible program.
Do you have a solution for me. The only solution I have is to change to MOTUs digital performer. I had to use Logic cause I need Real Guitar. Realguitar doesn't work with my Protools HD2 under PT 6.9. and 7.1. I tried to use FXpansions VST to RTAS wrapper, but this hack doesn't work with complicated plugIns only with simple ones.
Since Apple bought Emagic I have problems. I was friend with the main programmer of Logic in Hamburg. Since Apple is the owner there is no personal contact anymore, no good support, nothing. I don't need the logic synthesizers, samplers and plugins. They are all terrible in sound. I have all importend plug ins in TDM, RTAS, AS - so why logic? For Scores I use Finale.
And if someone like me or you will have a solution for the AS problem there is no one to help you anymore.
Yours
Horst
(nickname "mindmusic" - in apple support forum)

Similar Messages

  • Unable to use page protection in smartform

    I am working on a smartform but i am unable to use the checkbox page protection anywhere in the po form.  What do I have to change so I can use this option?

    Hi
    check the parent nodes of the objects, do they hv page protection checked.remove them and try.
    OR
    U can create a FOLDER node and check the page protection.
    If u want to protect a particular line type then in table click DETAILS and click the line types which u want to protect.
    Regards
    Hareesh

  • Unable to use Pages

    IMac 24" OSX 10.9.5   Pages 08 V 3.0.3
    Cannot use pages today.  Haven't used for awhile, but it should work as I have not installed Yosemite yet.  Cannot download the newest version because of that.  Any one know the solution?
    Thanks for your help.

    Correction  I am using Mavericks 10.9.5

  • Unable to use IN clause with omniportlet

    I am attempting to use a stored procedure with omniportlet. I have put together an IN clause in my sql statement that will not work. I think it is because of the way omniportlet handles tics, or something.
    I had a similar post on using an ORDER BY with omniportlet that I suspect is a related error.
    I am trying to use omniportlet, but I must confess that I am not very impressed. The SQL part of omniportlet leaves a lot to be desired.
    Does anyone know when there will be a new version?

    Thanks for your response. Do you know if the new portaltools/omniportlet contains the fix for the problem in this thread? I have an open tar and I know there is a bug report on it, just don't know status.
    need help using stored procedure with omniportlet
    I try to use an IN clause like this ('item1','item2','item3'). If I type it in, it works. I am feeding it via a picklist from a dynamic page. If I choose 1 item, it works. If I pass more than one item and try to build my string in the stored procedure for the IN to use, I can't get it to work. I have tried creating a list with the tics and commas, leaving off the first and last tics and just using the ones in the rest of the string.
    NOTHING WORKS. I have an insert inside my stored procedure that puts the string I am building inside a test table, so I know what I am using works in SQL/PLUS. Just not omniportlet. I suspect it is the same kind of problem referenced in the above url.
    There is a bug with using omniportlet when your IN clause is a variable.

  • Unable to use IN clause with SQLJ

    Hi,
    i need to use the IN clause in my SQLJ sql. for example: #sql
    { select p.customer_name from customers p where p.state IN ('IL','MI','CA') };
    The above works, but when i try to pass in an array param
    #sql
    { select p.customer_name from customers p where p.state IN (:arr) }; - where arr is an array, this does not work. Later i understood that since IN is a keyword, this will not work. Is there any fix or workaround for this ? i dont want to embed SQL as a string in my java code ? Any suggestions will be greatly appreciated.
    Thanks in advance,
    Geetha

    Geetha,
    This question is asked with incredible frequency on JDBC/SQLJ related newsgroups, forums and similar Web sites (even on Ask Tom).
    As far as I know, what you wish to do is not possible. The best you can do is something like this:
    select p.customer_name from customers p where p.state IN (?,?,?)But please, don't take my word for it, search the Internet for other possibilities.
    Good Luck,
    Avi.

  • Unable to use the with clause in oracle 9.0.2

    Hi,
    I need to use oracle SQL with clause in oracle 9.0.2 database. Its a 9i feature but i am unable to use it.
    It is giving internal error, when i try to execute it.
    Even for simple query:
    WITH acct_summary as ( select TOT_COLL_AMT from tdc_acct)
    select TOT_COLL_AMT from acct_summary WHERE TOT_COLL_AMT>100;
    Error message while using 8.0.5 sql plus client:
    SP2-0642: SQL*Plus internal error state 2091, context 0:0:0
    Unsafe to proceed
    Please help to find out why i am not able to use the sql with clause in oracle 9.0.2 database.
    Thanks and regards,
    Raajkathir

    Hi Jens Petersen,
    Yes, You are correct. Thank you very much.
    Regards,
    Raja

  • HttpURLConnection : unable to use cookie to go to next page

    Hi,
    I'm trying to login a form by using java application. I'm successfully login in and http return 200 response code for me. i had set the cookie for the page.
    Now, i try to access the another page of the web and it seems like unable to use the cookie to access the page and the http return 500 response code to me. The code is like below :-
    URL login = new URL(loginPageURL+"?id=" + wbUser + "&passwd=" + wbPassword+ "&login=Login");
                HttpURLConnection loginConn = (HttpURLConnection)login.openConnection();
                loginConn.setFollowRedirects(false);
                loginConn.setInstanceFollowRedirects(false);
                loginCookie = loginConn.getHeaderField("Set-Cookie");
                if (loginCookie == null) {
                    System.out.println("Web Page Login Fail --- COOKIE NOT FOUND");
                    log.writeLog("Web Page Login Fail --- COOKIE NOT FOUND");
                } else {
                    System.out.println("Web Page Login (login_cookie: " + loginCookie+")");
                    log.writeLog("Web Page Login (login_cookie: " + loginCookie+")");
                System.out.println("response code : " + loginConn.getResponseCode());
                //use the login cookie to go to other page
                URL url = new URL(wbIndex);
                HttpURLConnection urlConn = (HttpURLConnection)url.openConnection();
                urlConn.setRequestMethod("POST");
                urlConn.setRequestProperty("Cookie", loginCookie);
                urlConn.setRequestProperty( "Content-Encoding", "big5" );
                urlConn.setRequestProperty( "Content-Type", "text/html" );
                urlConn.setDoInput(true);
                urlConn.setDoOutput(true);
                urlConn.setUseCaches(false);
                urlConn.setDefaultUseCaches(false);The http return this error code : -
    java.io.IOException: Server returned HTTP response code: 500
    Can anyone please help me on this??
    Thanks a lot..........

    Hello, wnnsiau
    Thank you for visiting Apple Support Communities.
    If your account is disabled, see the steps in the article below.
    Apple ID: 'This Apple ID has been disabled for security reasons' alert appears
    http://support.apple.com/kb/ts2446
    If you have tried the steps above and this issue persists, see the article below.
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Cheers,
    Jason H.

  • Bookmark page frozen and unable to use Safari

    When I launch Safari the bookmarks page is frozen on the screen. I am unable to use Safari to browse.
    Everytime I select the Done option nothing happens. The multiple pages icon at the bottom right of the screen is highlighed in white. It appears to be stuck on that option. Any suggestions would be greatly appreciated.
    Thanks, Jessie

    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • Unable to display data no entry in the table without using Model clause

    Hi,
    I've an urgent requirement described below :
    The previously posted Question has been answerted using Model Clause:
    Is there any way out to solve it without using Model clause:
    I've a table named as "sale" consisting of three columns : empno, sale_amt and sale_date.
    (Please ref. The table script with data as given below)
    Now if I execute the query :
    "select trunc(sale_date) sale_date, sum(sale_amt) total_sale from sale group by trunc(sale_date) order by 1"
    then it displays the data for the dates of which there is an entry in that table. But it does not display data for the
    date of which there is no entry in that table.
    If you run the Table script with data in your schema, then u'll see that there is no entry for 28th. Nov. 2009 in
    sale table. Now the above query displays data for rest of the dates as its are in sale table except for 28th. Nov. 2009.
    But I need its presence in the query output with a value of "sale_date" as "28th. Nov. 2009" and that of "total_sale" as
    "0".
    Is there any means to get the result as I require?
    Please help ASAP.
    Thanks in advance.
    Create table script with data:
    CREATE TABLE SALE
    EMPNO NUMBER,
    SALE_AMT NUMBER,
    SALE_DATE DATE
    SET DEFINE OFF;
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('12/01/2009 10:20:10', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('11/30/2009 10:21:04', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('11/29/2009 10:21:05', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('11/26/2009 10:21:06', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('11/25/2009 10:21:07', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 5000, TO_DATE('11/27/2009 10:23:06', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 4000, TO_DATE('11/29/2009 10:23:08', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 3000, TO_DATE('11/24/2009 10:23:09', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 2000, TO_DATE('11/30/2009 10:23:10', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 7000, TO_DATE('11/24/2009 10:24:19', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 5000, TO_DATE('11/25/2009 10:24:20', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 3000, TO_DATE('11/27/2009 10:24:21', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 2000, TO_DATE('11/29/2009 10:24:22', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 1000, TO_DATE('11/30/2009 10:24:22', 'MM/DD/YYYY HH24:MI:SS'));
    COMMIT;
    Any help will be needful for me
    Regards,

    select sale_date,sum(sale_amt) total_sale
    from
    select empno,0 sale_amt,(sale_date + ao.rn) sale_date
    from
    select empno,sale_amt,sale_date ,(t.nxt_dt - t.sale_date) diff
    from
    select empno
    ,sale_amt,trunc(sale_date) sale_date
    ,trunc(nvl(lead(sale_date) over (partition by 1 order by sale_date),sale_date)) nxt_dt
    from sale
    ) t
    where (t.nxt_dt - t.sale_date) >1
    ) rec,(select rownum rn from user_objects where rownum<=200) ao
    where ao.rn <=(rec.diff-1)
    union all
    select empno,sale_amt,trunc(sale_date) sale_date
    from sale
    group by sale_date
    order by 1;
    ~~~~Guess this will serve the purpose...
    Cheers Arpan

  • Why am I unable to use some fonts in Pages '09 since upgrading to Pages 5?

    I upgraded to the new Pages and regretted it immediately because it doesn't have a lot of features I am used to and which I need. (The marketing blurb only mentioned what it could do, and omitted to mention how many functions had been removed, otherwise I wouldn't have upgraded.) As a result I decided I wouldn't use Pages 5 until it (hopefully) catches up with the functionality of the older version.
    However, the upgrade appears to have done something to corrupt some of my fonts in Pages '09. This means that files I created in Pages '09 cannot now be printed because I get 'gobbledegook' instead of the font I chose (Academy Engraved for one).
    I can set a new document in Pages 5 in Academy Engraved but if I then export it into Pages '09 it reverts to gobbledegook. I cannot simply replicate my old Pages '09 files in Pages 5 because the functionality I need isn't there. So I have a lot of files in Pages '09 that I can't print, and I am very frustrated.
    I have validated the Academy Engraved font in Font Book and it was fine. Can anyone suggest anything else I can try please?
    Many thanks.

    Thank you for that, but I'm afraid I muddied the waters by mentioning that alert. I am aware of Gatekeeper, but the point was it was a Pages document not an app so I shouldn't have got that message at all. If anything, I should have got the "You need a newer version of Pages" message. However, I'll live with that one for the time being.
    It's the font problem that I'm really concerned with. If I open a new document in Pages '09 I can no longer use Academy Engraved font, it just looks like gobbledegook. Neither can I read Academy Engraved font in any of my old Pages '09 documents. However, Academy Engraved font works fine in Pages 5. So by upgrading needlessly to Pages 5 I can no longer use Academy Engraved in Pages '09. That's my main problem.

  • Unable to get the media from the Endeca Experience manager version 11.0.0

    Hi.,
    Iam unable to get the media from the Endeca Experience Manager for my endeca app 'CRS'.
    I have created the endeca app named 'CRS' using the reference app discover-data-catalog-integration and successfully initialized and indexed.Iam able to see the Indexed data in my endeca_jspref and the configurations in my Experience Manager.
    I want to import the media from my experience manager(this is my actual requirement) and for this iam executing the get_media.bat cmd from my application's control folder,the cmd was executing successfully without any errors, but the media folder was not populating with any images that i can see in the Experience manager .Please do the needful to resolve this issue.
    ThankYou!!!
    C:\>cd Endeca\apps\CRS\control
    C:\Endeca\apps\CRS\control>get_media.bat
    [07.04.14 11:48:08] INFO: Checking definition from AppConfig.xml against existing EAC provisioning.
    [07.04.14 11:48:09] INFO: Updating provisioning for component 'DailyReportGenerator'.
    [07.04.14 11:48:09] INFO: Updating definition for component 'DailyReportGenerator'.
    [07.04.14 11:48:10] INFO: Definition updated.
    [07.04.14 11:48:10] INFO: Exporting resource 'http://localhost:8006/ifcr/sites/CRS/media' to 'C:\Endeca\apps\CRS\control\..\config\media'
    [07.04.14 11:48:11] INFO: Finished exporting resource.

    What media are you trying to import?  There won't be any media returned with get_media unless you but media in to begin with using the set_media cmd.  However, it's preferable to use the media MDEX rather than storing media in the ECR.

  • Why do I get the error message "unable to load page (HTTP 502) when I try to open Mobile Web?

    I have an LG Octane 3 basic phone.   Does everything I need, phone and text, and I never was interested in web or e-mail capabilities until I recently upgraded our plan to the "More Everything" and was able to use data and check e-mail and access the internet.   Whenever I try to open Mobile Web, I get the error message "unable to load page (HTTP 502)".    As of March 31, 2015, all of us basic phone users lose the "Mobile Email" app on our phones, and will have to access web versions of our e-mail via the web.  Which is currently unavailable and doesn't work.
    Over a week ago, did a chat session with a tech support rep, and she indicated that either she or an engineer would contact me with how to fix the problem.   Have not heard anything from anybody, and the deadline is approaching quickly.   Have no need of all the excess features of a smart phone, nor do I wish to be forced to jettison a perfectly working phone for my needs and buy something I don't want to be able to do 2 simple things.............check e-mail to see if there's something that needs to be answered right away, and to check traffic reports when I'm on the road, or find something in an area with which I'm not familiar.     Not really too much to ask, you would think....   )
    Has anyone else had this same problem, and if so, how do we fix it....???  My next move is a phone call, but those haven't always been very productive.
    If any of you have any ideas why this error keeps coming up and the web can't load, and some on how to fix it, I would really appreciate some advice.
    Thanks in advance.
    Karen

    Since the chat session got no reply, I contacted Verizon by phone and a very nice level 2 tech created a trouble ticket and sent it up the food chain.  Got a call back, maybe 2 days later, and had a nice, although very long session with a higher level tech.  They had determined that the browser for the LG Octane is an old one and no longer supported by Verizon.    We tried everything we could to download the Opera browser, but since I was totally unable to get Mobile Web to work, couldn't do it.   The only other possible "fix" was to totally reset the phone to factory specs and try it again.   That would mean a lot of work on my part to move anything I didn't want to disappear off the phone, and find a place to forward texts that had to be saved.   Caught our tenants lying about why the rent was late (again), and need that for when I put them back on a lease....  
    Long story short is that unless we try this total reset, which isn't a sure fix, either, anyone who isn't able to access the Mobile Web with the LG Octane will have to change their plan to avoid paying for data that you can't access using any method. 
    I ran a test with an app that I knew was no longer valid.....that was sending photos to PixPlace.   Got the exact same error message as when trying to access Mobile Web to get the web version of my e-mail.   That just verified that the 502 error is, at least in the LG Octane, for an app that no longer works.   After today, we'll get the same thing when we try to access Mobile E-Mail.
    Have to admit, it's a real ****-off, but this shouldn't surprise me, since Verizon won't repair older copper phone lines if you are in an area where FIOS is offered. 
    I am going to immediately change my husband's and my cell phone plan to one without data, and see what I can find that will still give unlimited calls and text.  The way my luck runs, they won't offer one for a decent price.  The other half has some very long-winded friends and he was always running over minutes, and some months are very text-heavy and I'd go over my limit.   Absolutely HATE touch screens, and am not looking forward to having to get a new phone.  

  • I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    OS is Windows7. I'm using the latest version of Mozilla Firefox
    I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • [SOLVED] Gnome 3.8: Unable to use Nokia N9 as a Bluetooth modem

    Hi,
    I'm unable to use my Nokia N9 mobile phone as a bluetooth modem. Phone and Gnome get paired OK, and I have even managed to get my phone recognized as a modem. However, Networkmanager complains that it can't find the modem.
    Any ideas on how to fix this?
    Here are some log files:
    Bluetooth startup from everything.log:
    Jun 17 00:44:26 localhost bluetoothd[382]: Bluetooth daemon 4.101
    Jun 17 00:44:30 localhost bluetoothd[382]: Starting SDP server
    Jun 17 00:44:31 localhost bluetoothd[382]: DIS cannot start: GATT is disabled
    Jun 17 00:44:31 localhost bluetoothd[382]: Failed to init deviceinfo plugin
    Jun 17 00:44:32 localhost bluetoothd[382]: Failed to init gatt_example plugin
    Jun 17 00:44:32 localhost bluetoothd[382]: Bluetooth Management interface initialized
    Jun 17 00:44:32 localhost bluetoothd[382]: bluetoothd[382]: Bluetooth Management interface initialized
    Jun 17 00:44:32 localhost bluetoothd[382]: bluetoothd[382]: Unknown command complete for opcode 1J
    Jun 17 00:44:32 localhost bluetoothd[382]: Unknown command complete for opcode 19
    Jun 17 00:44:933 localhost bluetoothd[382]: bluetoothd[382]: Adapter /org/bluez/382/hci0 has been enabled
    Jun 17 00:44:33 localhost bluetoothd[382]: Adapter /org/bluez/382/hci0 has been enabled
    Bluetooth modem fails, log entries from everything.log:
    Jun 17 01:03:38 localhost /etc/gdm/Xsession[612]: Ikkunointiohjelman varoitus:Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2800003 (Uuden Blue)
    Jun 17 01:03:38 localhost /etc/gdm/Xsession[612]: Ikkunointiohjelman varoitus:meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Jun 17 01:03:38 localhost bluetoothd[382]: bluetoothd[382]: Discovery session 0x7f5d47491d10 with :1.58 activated
    Jun 17 01:03:38 localhost bluetoothd[382]: Discovery session 0x7f5d47491d10 with :1.58 activated
    Jun 17 01:03:50 localhost bluetoothd[382]: bluetoothd[382]: Stopping discovery
    Jun 17 01:03:50 localhost bluetoothd[382]: Stopping discovery
    Jun 17 01:03:54 localhost kernel: [ 1179.820342] usb 2-1: reset high-speed USB device number 2 using ehci-pci
    Jun 17 01:04:00 localhost dbus-daemon[396]: dbus[396]: [system] Rejected send message, 3 matched rules; type="method_return", sender=":1.58" (uid=1000 pid=1082 comm="bluetooth-wizard ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.4" (uid=0 pid=382 comm="/usr/lib/bluetooth/bluetoothd -n ")
    Jun 17 01:04:01 localhost bluetoothd[382]: bluetoothd[382]: input-headset driver probe failed for device 40:98:4E:65:A1:00
    Jun 17 01:04:01 localhost bluetoothd[382]: input-headset driver probe failed for device 40:98:4E:65:A1:00
    Jun 17 01:04:01 localhost pulseaudio[678]: [pulseaudio] bluetooth-util.c: org.bluez.AudioSource.GetProperties() failed: org.freedesktop.DBus.Error.UnknownMethod: Method "GetProperties" with signature "" on interface "org.bluez.AudioSource" doesn't exist
    Jun 17 01:04:01 localhost pulseaudio[678]: [pulseaudio] bluetooth-util.c: org.bluez.HandsfreeGateway.GetProperties() failed: org.freedesktop.DBus.Error.UnknownMethod: Method "GetProperties" with signature "" on interface "org.bluez.HandsfreeGateway" doesn't exist
    Jun 17 01:04:01 localhost pulseaudio[678]: [pulseaudio] bluetooth-util.c: org.bluez.HandsfreeGateway.GetProperties() failed: org.freedesktop.DBus.Error.UnknownMethod: Method "GetProperties" with signature "" on interface "org.bluez.HandsfreeGateway" doesn't exist
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 SyncMLClient
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 DialupNetworking
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 OBEXObjectPush
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 OBEXFileTransfer
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 AudioSource
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 A/V_RemoteControlTarget
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 A/V_RemoteControl
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 Headset_-_AG
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 HandsfreeAudioGateway
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 Phonebook_Access_-_PSE
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 SyncMLClient
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 DialupNetworking
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 OBEXObjectPush
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 OBEXFileTransfer
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 AudioSource
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 A/V_RemoteControlTarget
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 A/V_RemoteControl
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 Headset_-_AG
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 HandsfreeAudioGateway
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 Phonebook_Access_-_PSE
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: Default Bluetooth adapter is powered
    Jun 17 01:04:25 localhost /etc/gdm/Xsession[612]: ** Message: dun_start: starting DUN device discovery...
    Jun 17 01:04:25 localhost /etc/gdm/Xsession[612]: ** Message: Tutkitaan puhelimen asetuksia…
    Jun 17 01:04:25 localhost /etc/gdm/Xsession[612]: ** Message: dun_start: calling Connect...
    Jun 17 01:04:25 localhost /etc/gdm/Xsession[612]: ** Message: dun_start: waiting for Connect success...
    Jun 17 01:04:27 localhost /etc/gdm/Xsession[612]: ** Message: dun_connect_cb: processing Connect reply
    Jun 17 01:04:27 localhost /etc/gdm/Xsession[612]: ** Message: dun_connect_cb: new rfcomm interface '/dev/rfcomm0'
    Jun 17 01:04:27 localhost /etc/gdm/Xsession[612]: ** Message: dun_connect_cb: finished
    Jun 17 01:04:27 localhost upowerd[506]: (upowerd:506): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.0/bluetooth/hci0/hci0:21/rfcomm0
    Jun 17 01:04:27 localhost kernel: [ 1212.925984] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:29 localhost kernel: [ 1214.790844] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:29 localhost kernel: [ 1214.791357] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:30 localhost ModemManager[457]: <info> Creating modem with plugin 'Nokia' and '1' ports
    Jun 17 01:04:30 localhost kernel: [ 1215.816882] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:30 localhost ModemManager[457]: <info> Modem for device at '/sys/devices/pci0000:00/0000:00:13.1/usb6/6-3' successfully created
    Jun 17 01:04:30 localhost kernel: [ 1215.820679] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:31 localhost ModemManager[457]: <info> Modem: state changed (unknown -> disabled)
    Jun 17 01:04:31 localhost kernel: [ 1216.873341] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:31 localhost /etc/gdm/Xsession[612]: ** Message: modem_object_added: (/org/freedesktop/ModemManager1/Modem/0) modem found
    Jun 17 01:04:31 localhost /etc/gdm/Xsession[612]: ** Message: start_wizard: (/org/freedesktop/ModemManager1/Modem/0) starting the mobile wizard
    Jun 17 01:04:31 localhost NetworkManager[387]: <info> ignoring modem 'rfcomm0' (no associated Bluetooth device)
    Jun 17 01:06:17 localhost /etc/gdm/Xsession[612]: ** Message: wizard_done_cb: mobile wizard done
    Jun 17 01:06:17 localhost /etc/gdm/Xsession[612]: ** Message: wizard_done_cb: adding new setting
    Jun 17 01:06:17 localhost /etc/gdm/Xsession[612]: ** Message: wizard_done_cb: waiting for add connection result...
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> BT device Nokia N9 (40:98:4E:65:A1:00) added (DUN)
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): new Bluetooth device (driver: 'bluez' ifindex: 0)
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): exported as /org/freedesktop/NetworkManager/Devices/1
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): deactivating device (reason 'managed') [2]
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: unavailable -> disconnected (reason 'none') [20 30 0]
    Jun 17 01:06:17 localhost /etc/gdm/Xsession[612]: ** Message: Puhelimesi on nyt valmis käyttöön.
    Jun 17 01:06:17 localhost upowerd[506]: (upowerd:506): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/virtual/tty/rfcomm0
    Jun 17 01:06:17 localhost dbus-daemon[396]: dbus[396]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.4" (uid=0 pid=382 comm="/usr/lib/bluetooth/bluetoothd -n ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.59" (uid=1000 pid=1082 comm="bluetooth-wizard ")
    Jun 17 01:12:24 localhost NetworkManager[387]: <info> (eth0): device state change: activated -> disconnected (reason 'user-requested') [100 30 39]
    Jun 17 01:12:24 localhost NetworkManager[387]: <info> (eth0): deactivating device (reason 'user-requested') [39]
    Jun 17 01:12:24 localhost avahi-daemon[392]: Withdrawing address record for 192.168.0.222 on eth0.
    Jun 17 01:12:24 localhost avahi-daemon[392]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.0.222.
    Jun 17 01:12:24 localhost avahi-daemon[392]: Interface eth0.IPv4 no longer relevant for mDNS.
    Jun 17 01:12:24 localhost dbus-daemon[396]: dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Jun 17 01:12:24 localhost dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Jun 17 01:12:24 localhost systemd[1]: Starting Network Manager Script Dispatcher Service...
    Jun 17 01:12:24 localhost dbus-daemon[396]: dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    Jun 17 01:12:24 localhost dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    Jun 17 01:12:24 localhost systemd[1]: Started Network Manager Script Dispatcher Service.
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) starting connection 'Dna connection'
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) scheduled...
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) started...
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) scheduled...
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) complete.
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) starting...
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: prepare -> config (reason 'none') [40 50 0]
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) complete.
    Jun 17 01:12:35 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00 40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) successful. Will connect via DUN.
    Jun 17 01:12:35 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) waiting for modem to appear.
    Jun 17 01:12:35 localhost upowerd[506]: (upowerd:506): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.0/bluetooth/hci0/hci0:21/rfcomm0
    Jun 17 01:13:05 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: config -> failed (reason 'modem-not-found') [50 120 43]
    Jun 17 01:13:05 localhost NetworkManager[387]: <warn> Activation (40:98:4E:65:A1:00) failed for connection 'Dna connection'
    Jun 17 01:13:05 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: failed -> disconnected (reason 'none') [120 30 0]
    Jun 17 01:13:05 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): deactivating device (reason 'none') [0]
    Jun 17 01:13:05 localhost upowerd[506]: (upowerd:506): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/virtual/tty/rfcomm0
    Jun 17 01:13:05 localhost dbus-daemon[396]: dbus[396]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.4" (uid=0 pid=382 comm="/usr/lib/bluetooth/bluetoothd -n ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.8" (uid=0 pid=387 comm="/usr/bin/NetworkManager --no-daemon ")
    And finally a complete everything.log
    Jun 17 00:44:20 localhost systemd[1]: Mounting Arbitrary Executable File Formats File System...
    Jun 17 00:44:20 localhost systemd-sysctl[132]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    Jun 17 00:44:20 localhost systemd[1]: Started Apply Kernel Variables.
    Jun 17 00:44:20 localhost systemd[1]: Started udev Coldplug all Devices.
    Jun 17 00:44:20 localhost systemd-modules-load[138]: Inserted module 'fuse'
    Jun 17 00:44:20 localhost systemd[1]: Started Create static device nodes in /dev.
    Jun 17 00:44:20 localhost systemd[1]: Starting udev Kernel Device Manager...
    Jun 17 00:44:20 localhost systemd[1]: Started udev Kernel Device Manager.
    Jun 17 00:44:20 localhost systemd[1]: Mounted Arbitrary Executable File Formats File System.
    Jun 17 00:44:20 localhost systemd[1]: Mounted Debug File System.
    Jun 17 00:44:29 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Jun 17 00:44:29 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Jun 17 00:44:29 localhost kernel: [ 0.000000] Linux version 3.9.5-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.1 (GCC) ) #1 SMP PREEMPT Sat Jun 8 09:22:45 CEST 2013
    Jun 17 00:44:29 localhost kernel: [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=90b0c2df-9b19-4c19-91ce-5479b086da4d ro quiet
    Jun 17 00:44:29 localhost kernel: [ 0.000000] e820: BIOS-provided physical RAM map:
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfdeffff] usable
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000cfdf0000-0x00000000cfdf2fff] ACPI NVS
    Jun 17 00:44:29 localhost syslog-ng[390]: syslog-ng starting up; version='3.4.1'
    Jun 17 00:44:20 localhost systemd[1]: Mounted Huge Pages File System.
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000cfdf3000-0x00000000cfdfffff] ACPI data
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000cfe00000-0x00000000cfefffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000032fffffff] usable
    Jun 17 00:44:29 localhost kernel: [ 0.000000] NX (Execute Disable) protection: active
    Jun 17 00:44:29 localhost kernel: [ 0.000000] SMBIOS 2.4 present.
    Jun 17 00:44:29 localhost kernel: [ 0.000000] DMI: Gigabyte Technology Co., Ltd. GA-MA790XT-UD4P/GA-MA790XT-UD4P, BIOS F8g 07/12/2010
    Jun 17 00:44:29 localhost kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] No AGP bridge found
    Jun 17 00:44:30 localhost kernel: [ 0.000000] e820: last_pfn = 0x330000 max_arch_pfn = 0x400000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] MTRR default type: uncachable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] MTRR fixed ranges enabled:
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 00000-9FFFF write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] A0000-BFFFF uncachable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] C0000-C7FFF write-protect
    Jun 17 00:44:30 localhost kernel: [ 0.000000] C8000-FFFFF uncachable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] MTRR variable ranges enabled:
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 2 base 0000C0000000 mask FFFFF0000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 3 base 0000CFE00000 mask FFFFFFE00000 uncachable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 4 base 000100000000 mask FFFF00000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 5 base 000200000000 mask FFFF00000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 6 base 000300000000 mask FFFFE0000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 7 base 000320000000 mask FFFFF0000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] TOM2: 0000000330000000 aka 13056M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jun 17 00:44:30 localhost kernel: [ 0.000000] e820: update [mem 0xcfe00000-0xffffffff] usable ==> reserved
    Jun 17 00:44:30 localhost kernel: [ 0.000000] e820: last_pfn = 0xcfdf0 max_arch_pfn = 0x400000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] found SMP MP-table at [mem 0x000f5440-0x000f544f] mapped at [ffff8800000f5440]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Scanning 1 areas for low memory corruption
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Using GB pages for direct mapping
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    Jun 17 00:44:30 localhost kernel: [ 0.000000] BRK [0x01b30000, 0x01b30fff] PGTABLE
    Jun 17 00:44:30 localhost kernel: [ 0.000000] BRK [0x01b31000, 0x01b31fff] PGTABLE
    Jun 17 00:44:30 localhost kernel: [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x32fe00000-0x32fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x32fe00000-0x32fffffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x32c000000-0x32fdfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x32c000000-0x32fdfffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x300000000-0x32bffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x300000000-0x32bffffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x00100000-0xcfdeffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x40000000-0xbfffffff] page 1G
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0xc0000000-0xcfbfffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0xcfc00000-0xcfdeffff] page 4k
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x100000000-0x2ffffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x100000000-0x2ffffffff] page 1G
    Jun 17 00:44:30 localhost kernel: [ 0.000000] RAMDISK: [mem 0x378a4000-0x37c49fff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: RSDP 00000000000f6e70 00014 (v00 GBT )
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: RSDT 00000000cfdf3000 00038 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: FACP 00000000cfdf3040 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: DSDT 00000000cfdf30c0 0725F (v01 GBT GBTUACPI 00001000 MSFT 03000000)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: FACS 00000000cfdf0000 00040
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: SSDT 00000000cfdfa400 008F5 (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: HPET 00000000cfdfad00 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: MCFG 00000000cfdfad40 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: APIC 00000000cfdfa340 000BC (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Scanning NUMA topology in Northbridge 24
    Jun 17 00:44:30 localhost kernel: [ 0.000000] No NUMA configuration found
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000032fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x32fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] NODE_DATA [mem 0x32fff9000-0x32fffdfff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [ffffea0000000000-ffffea000cbfffff] PMD -> [ffff880323600000-ffff88032f5fffff] on node 0
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Zone ranges:
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Normal [mem 0x100000000-0x32fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Movable zone start for each node
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Early memory node ranges
    Jun 17 00:44:30 localhost kernel: [ 0.000000] node 0: [mem 0x00001000-0x0009efff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] node 0: [mem 0x00100000-0xcfdeffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] node 0: [mem 0x100000000-0x32fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] On node 0 totalpages: 3145102
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA zone: 64 pages used for memmap
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA zone: 21 pages reserved
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA32 zone: 13240 pages used for memmap
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA32 zone: 847344 pages, LIFO batch:31
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Normal zone: 35840 pages used for memmap
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Normal zone: 2293760 pages, LIFO batch:31
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: IRQ0 used by override.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: IRQ2 used by override.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: IRQ9 used by override.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] smpboot: Allowing 8 CPUs, 5 hotplug CPUs
    Jun 17 00:44:30 localhost kernel: [ 0.000000] nr_irqs_gsi: 40
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cfdf0000 - 00000000cfdf3000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cfdf3000 - 00000000cfe00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cfe00000 - 00000000cff00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] e820: [mem 0xcff00000-0xdfffffff] available for PCI devices
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Jun 17 00:44:30 localhost kernel: [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88032fc00000 s85824 r8192 d20672 u262144
    Jun 17 00:44:30 localhost kernel: [ 0.000000] pcpu-alloc: s85824 r8192 d20672 u262144 alloc=1*2097152
    Jun 17 00:44:30 localhost kernel: [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 3095937
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Policy zone: Normal
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=90b0c2df-9b19-4c19-91ce-5479b086da4d ro quiet
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] __ex_table already sorted, skipping sort
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Checking aperture...
    Jun 17 00:44:30 localhost kernel: [ 0.000000] No AGP bridge found
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Node 0: aperture @ c4000000 size 32 MB
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Aperture pointing to e820 RAM. Ignoring.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Please enable the IOMMU option in the BIOS setup
    Jun 17 00:44:30 localhost kernel: [ 0.000000] This costs you 64 MB of RAM
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Mapping aperture over 65536 KB of RAM @ c4000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000c4000000 - 00000000c8000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Memory: 12235744k/13369344k available (4984k kernel code, 788936k absent, 344664k reserved, 3966k data, 1092k init)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] NR_IRQS:4352 nr_irqs:744 16
    Jun 17 00:44:30 localhost kernel: [ 0.000000] spurious 8259A interrupt: IRQ7.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Console: colour dummy device 80x25
    Jun 17 00:44:30 localhost kernel: [ 0.000000] console [tty0] enabled
    Jun 17 00:44:30 localhost kernel: [ 0.000000] allocated 50331648 bytes of page_cgroup
    Jun 17 00:44:30 localhost kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jun 17 00:44:30 localhost kernel: [ 0.000000] hpet clockevent registered
    Jun 17 00:44:30 localhost kernel: [ 0.003333] tsc: Fast TSC calibration using PIT
    Jun 17 00:44:30 localhost kernel: [ 0.006666] tsc: Detected 2812.672 MHz processor
    Jun 17 00:44:30 localhost kernel: [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5627.73 BogoMIPS (lpj=9375573)
    Jun 17 00:44:30 localhost kernel: [ 0.000006] pid_max: default: 32768 minimum: 301
    Jun 17 00:44:30 localhost kernel: [ 0.000035] Security Framework initialized
    Jun 17 00:44:30 localhost kernel: [ 0.000041] AppArmor: AppArmor disabled by boot time parameter
    Jun 17 00:44:30 localhost kernel: [ 0.000892] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    Jun 17 00:44:30 localhost kernel: [ 0.005505] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Jun 17 00:44:30 localhost kernel: [ 0.007582] Mount-cache hash table entries: 256
    Jun 17 00:44:30 localhost kernel: [ 0.007774] Initializing cgroup subsys cpuacct
    Jun 17 00:44:30 localhost kernel: [ 0.007776] Initializing cgroup subsys memory
    Jun 17 00:44:30 localhost kernel: [ 0.007786] Initializing cgroup subsys devices
    Jun 17 00:44:30 localhost kernel: [ 0.007787] Initializing cgroup subsys freezer
    Jun 17 00:44:30 localhost kernel: [ 0.007789] Initializing cgroup subsys net_cls
    Jun 17 00:44:30 localhost kernel: [ 0.007790] Initializing cgroup subsys blkio
    Jun 17 00:44:30 localhost kernel: [ 0.007813] tseg: 00cff00000
    Jun 17 00:44:30 localhost kernel: [ 0.007816] CPU: Physical Processor ID: 0
    Jun 17 00:44:30 localhost kernel: [ 0.007817] CPU: Processor Core ID: 0
    Jun 17 00:44:30 localhost kernel: [ 0.007818] mce: CPU supports 6 MCE banks
    Jun 17 00:44:30 localhost kernel: [ 0.007823] LVT offset 0 assigned for vector 0xf9
    Jun 17 00:44:30 localhost kernel: [ 0.007828] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Jun 17 00:44:30 localhost kernel: [ 0.007828] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64
    Jun 17 00:44:30 localhost kernel: [ 0.007828] tlb_flushall_shift: 4
    Jun 17 00:44:30 localhost kernel: [ 0.007908] Freeing SMP alternatives: 20k freed
    Jun 17 00:44:30 localhost kernel: [ 0.008523] ACPI: Core revision 20130117
    Jun 17 00:44:30 localhost kernel: [ 0.010353] ACPI: All ACPI Tables successfully acquired
    Jun 17 00:44:30 localhost kernel: [ 0.042664] ftrace: allocating 19546 entries in 77 pages
    Jun 17 00:44:30 localhost kernel: [ 0.399338] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jun 17 00:44:30 localhost kernel: [ 0.432338] smpboot: CPU0: AMD Phenom(tm) II X3 720 Processor (fam: 10, model: 04, stepping: 02)
    Jun 17 00:44:30 localhost kernel: [ 0.535738] Performance Events: AMD PMU driver.
    Jun 17 00:44:30 localhost kernel: [ 0.535742] ... version: 0
    Jun 17 00:44:30 localhost kernel: [ 0.535743] ... bit width: 48
    Jun 17 00:44:30 localhost kernel: [ 0.535744] ... generic registers: 4
    Jun 17 00:44:30 localhost kernel: [ 0.535745] ... value mask: 0000ffffffffffff
    Jun 17 00:44:30 localhost kernel: [ 0.535746] ... max period: 00007fffffffffff
    Jun 17 00:44:30 localhost kernel: [ 0.535746] ... fixed-purpose events: 0
    Jun 17 00:44:30 localhost kernel: [ 0.535747] ... event mask: 000000000000000f
    Jun 17 00:44:30 localhost kernel: [ 0.565797] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jun 17 00:44:30 localhost kernel: [ 0.572465] smpboot: Booting Node 0, Processors #1 #2
    Jun 17 00:44:30 localhost kernel: [ 0.602275] Brought up 3 CPUs
    Jun 17 00:44:30 localhost kernel: [ 0.602279] smpboot: Total of 3 processors activated (16882.19 BogoMIPS)
    Jun 17 00:44:30 localhost kernel: [ 0.605948] devtmpfs: initialized
    Jun 17 00:44:30 localhost kernel: [ 0.608503] PM: Registering ACPI NVS region [mem 0xcfdf0000-0xcfdf2fff] (12288 bytes)
    Jun 17 00:44:30 localhost kernel: [ 0.609303] RTC time: 21:44:15, date: 06/16/13
    Jun 17 00:44:30 localhost kernel: [ 0.609349] NET: Registered protocol family 16
    Jun 17 00:44:30 localhost kernel: [ 0.609448] node 0 link 0: io port [b000, ffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609451] TOM: 00000000d0000000 aka 3328M
    Jun 17 00:44:30 localhost kernel: [ 0.609453] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609455] node 0 link 0: mmio [a0000, bffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609457] node 0 link 0: mmio [d0000000, dfffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609459] node 0 link 0: mmio [f0000000, fe02ffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609460] node 0 link 0: mmio [e0000000, e04fffff] ==> [e0100000, e04fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609462] TOM2: 0000000330000000 aka 13056M
    Jun 17 00:44:30 localhost kernel: [ 0.609464] bus: [bus 00-04] on node 0 link 0
    Jun 17 00:44:30 localhost kernel: [ 0.609466] bus: 00 [io 0x0000-0xffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609467] bus: 00 [mem 0x000a0000-0x000bffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609468] bus: 00 [mem 0xd0000000-0xdfffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609469] bus: 00 [mem 0xe0500000-0xffffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609470] bus: 00 [mem 0xe0100000-0xe04fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609471] bus: 00 [mem 0x330000000-0xfcffffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609498] ACPI: bus type PCI registered
    Jun 17 00:44:30 localhost kernel: [ 0.609552] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jun 17 00:44:30 localhost kernel: [ 0.609554] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Jun 17 00:44:30 localhost kernel: [ 0.617921] PCI: Using configuration type 1 for base access
    Jun 17 00:44:30 localhost kernel: [ 0.618123] mtrr: your CPUs had inconsistent variable MTRR settings
    Jun 17 00:44:30 localhost kernel: [ 0.618124] mtrr: probably your BIOS does not setup all CPUs.
    Jun 17 00:44:30 localhost kernel: [ 0.618125] mtrr: corrected configuration.
    Jun 17 00:44:30 localhost kernel: [ 0.618516] bio: create slab <bio-0> at 0
    Jun 17 00:44:30 localhost kernel: [ 0.618576] ACPI: Added _OSI(Module Device)
    Jun 17 00:44:30 localhost kernel: [ 0.618577] ACPI: Added _OSI(Processor Device)
    Jun 17 00:44:30 localhost kernel: [ 0.618578] ACPI: Added _OSI(3.0 _SCP Extensions)
    Jun 17 00:44:30 localhost kernel: [ 0.618580] ACPI: Added _OSI(Processor Aggregator Device)
    Jun 17 00:44:30 localhost kernel: [ 0.619096] ACPI: EC: Look up EC in DSDT
    Jun 17 00:44:30 localhost kernel: [ 0.623380] ACPI: Interpreter enabled
    Jun 17 00:44:30 localhost kernel: [ 0.623389] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130117/hwxface-568)
    Jun 17 00:44:30 localhost kernel: [ 0.623394] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568)
    Jun 17 00:44:30 localhost kernel: [ 0.623403] ACPI: (supports S0 S3 S4 S5)
    Jun 17 00:44:30 localhost kernel: [ 0.623405] ACPI: Using IOAPIC for interrupt routing
    Jun 17 00:44:30 localhost kernel: [ 0.623473] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jun 17 00:44:30 localhost kernel: [ 0.637118] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jun 17 00:44:30 localhost kernel: [ 0.637201] PCI host bridge to bus 0000:00
    Jun 17 00:44:30 localhost kernel: [ 0.637204] pci_bus 0000:00: root bus resource [bus 00-ff]
    Jun 17 00:44:30 localhost kernel: [ 0.637207] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jun 17 00:44:30 localhost kernel: [ 0.637209] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jun 17 00:44:30 localhost kernel: [ 0.637210] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jun 17 00:44:30 localhost kernel: [ 0.637212] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    Jun 17 00:44:30 localhost kernel: [ 0.637214] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.637223] pci 0000:00:00.0: [1002:5958] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.637234] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.637312] pci 0000:00:02.0: [1002:5978] type 01 class 0x060400
    Jun 17 00:44:30 localhost kernel: [ 0.637342] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.637366] pci 0000:00:02.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637399] pci 0000:00:04.0: [1002:597a] type 01 class 0x060400
    Jun 17 00:44:30 localhost kernel: [ 0.637428] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.637453] pci 0000:00:04.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637485] pci 0000:00:0a.0: [1002:597f] type 01 class 0x060400
    Jun 17 00:44:30 localhost kernel: [ 0.637514] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.637542] pci 0000:00:0a.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637581] pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    Jun 17 00:44:30 localhost kernel: [ 0.637600] pci 0000:00:11.0: reg 10: [io 0xff00-0xff07]
    Jun 17 00:44:30 localhost kernel: [ 0.637609] pci 0000:00:11.0: reg 14: [io 0xfe00-0xfe03]
    Jun 17 00:44:30 localhost kernel: [ 0.637618] pci 0000:00:11.0: reg 18: [io 0xfd00-0xfd07]
    Jun 17 00:44:30 localhost kernel: [ 0.637627] pci 0000:00:11.0: reg 1c: [io 0xfc00-0xfc03]
    Jun 17 00:44:30 localhost kernel: [ 0.637636] pci 0000:00:11.0: reg 20: [io 0xfb00-0xfb0f]
    Jun 17 00:44:30 localhost kernel: [ 0.637645] pci 0000:00:11.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
    Jun 17 00:44:30 localhost kernel: [ 0.637664] pci 0000:00:11.0: set SATA to AHCI mode
    Jun 17 00:44:30 localhost kernel: [ 0.637736] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.637749] pci 0000:00:12.0: reg 10: [mem 0xfe02e000-0xfe02efff]
    Jun 17 00:44:30 localhost kernel: [ 0.637811] pci 0000:00:12.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637840] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.637853] pci 0000:00:12.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
    Jun 17 00:44:30 localhost kernel: [ 0.637916] pci 0000:00:12.1: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637948] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    Jun 17 00:44:30 localhost kernel: [ 0.637966] pci 0000:00:12.2: reg 10: [mem 0xfe02c000-0xfe02c0ff]
    Jun 17 00:44:30 localhost kernel: [ 0.638046] pci 0000:00:12.2: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.638047] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Jun 17 00:44:30 localhost kernel: [ 0.638065] pci 0000:00:12.2: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638099] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.638112] pci 0000:00:13.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
    Jun 17 00:44:30 localhost kernel: [ 0.638178] pci 0000:00:13.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638205] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.638217] pci 0000:00:13.1: reg 10: [mem 0xfe02a000-0xfe02afff]
    Jun 17 00:44:30 localhost kernel: [ 0.638282] pci 0000:00:13.1: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638316] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    Jun 17 00:44:30 localhost kernel: [ 0.638334] pci 0000:00:13.2: reg 10: [mem 0xfe029000-0xfe0290ff]
    Jun 17 00:44:30 localhost kernel: [ 0.638414] pci 0000:00:13.2: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.638415] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    Jun 17 00:44:30 localhost kernel: [ 0.638436] pci 0000:00:13.2: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638472] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    Jun 17 00:44:30 localhost kernel: [ 0.638587] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    Jun 17 00:44:30 localhost kernel: [ 0.638602] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    Jun 17 00:44:30 localhost kernel: [ 0.638611] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    Jun 17 00:44:30 localhost kernel: [ 0.638620] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    Jun 17 00:44:30 localhost kernel: [ 0.638629] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    Jun 17 00:44:30 localhost kernel: [ 0.638638] pci 0000:00:14.1: reg 20: [io 0xfa00-0xfa0f]
    Jun 17 00:44:30 localhost kernel: [ 0.638722] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    Jun 17 00:44:30 localhost kernel: [ 0.638743] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.638806] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.638830] pci 0000:00:14.2: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638857] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    Jun 17 00:44:30 localhost kernel: [ 0.638963] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    Jun 17 00:44:30 localhost kernel: [ 0.639012] pci 0000:00:14.4: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.639040] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.639053] pci 0000:00:14.5: reg 10: [mem 0xfe028000-0xfe028fff]
    Jun 17 00:44:30 localhost kernel: [ 0.639119] pci 0000:00:14.5: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.639151] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639203] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639254] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639305] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639358] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639454] pci 0000:01:00.0: [1002:94b3] type 00 class 0x030000
    Jun 17 00:44:30 localhost kernel: [ 0.639466] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.639475] pci 0000:01:00.0: reg 18: [mem 0xfdee0000-0xfdeeffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.639482] pci 0000:01:00.0: reg 20: [io 0xee00-0xeeff]
    Jun 17 00:44:30 localhost kernel: [ 0.639493] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.639520] pci 0000:01:00.0: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.639554] pci 0000:01:00.1: [1002:aa38] type 00 class 0x040300
    Jun 17 00:44:30 localhost kernel: [ 0.639566] pci 0000:01:00.1: reg 10: [mem 0xfdefc000-0xfdefffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.639616] pci 0000:01:00.1: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.648955] pci 0000:00:02.0: PCI bridge to [bus 01]
    Jun 17 00:44:30 localhost kernel: [ 0.648960] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Jun 17 00:44:30 localhost kernel: [ 0.648963] pci 0000:00:02.0: bridge window [mem 0xfde00000-0xfdefffff]
    Jun 17 00:44:30 localhost kernel: [ 0.648966] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649016] pci 0000:02:00.0: [197b:2363] type 00 class 0x010185
    Jun 17 00:44:30 localhost kernel: [ 0.649081] pci 0000:02:00.0: reg 24: [mem 0xfddfe000-0xfddfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.649130] pci 0000:02:00.0: PME# supported from D3hot
    Jun 17 00:44:30 localhost kernel: [ 0.649179] pci 0000:02:00.1: [197b:2363] type 00 class 0x010185
    Jun 17 00:44:30 localhost kernel: [ 0.649197] pci 0000:02:00.1: reg 10: [io 0xdf00-0xdf07]
    Jun 17 00:44:30 localhost kernel: [ 0.649207] pci 0000:02:00.1: reg 14: [io 0xde00-0xde03]
    Jun 17 00:44:30 localhost kernel: [ 0.649217] pci 0000:02:00.1: reg 18: [io 0xdd00-0xdd07]
    Jun 17 00:44:30 localhost kernel: [ 0.649227] pci 0000:02:00.1: reg 1c: [io 0xdc00-0xdc03]
    Jun 17 00:44:30 localhost kernel: [ 0.649237] pci 0000:02:00.1: reg 20: [io 0xdb00-0xdb0f]
    Jun 17 00:44:30 localhost kernel: [ 0.649319] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Jun 17 00:44:30 localhost kernel: [ 0.649326] pci 0000:00:04.0: PCI bridge to [bus 02]
    Jun 17 00:44:30 localhost kernel: [ 0.649329] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Jun 17 00:44:30 localhost kernel: [ 0.649331] pci 0000:00:04.0: bridge window [mem 0xfdd00000-0xfddfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.649334] pci 0000:00:04.0: bridge window [mem 0xfdc00000-0xfdcfffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649377] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    Jun 17 00:44:30 localhost kernel: [ 0.649389] pci 0000:03:00.0: reg 10: [io 0xce00-0xceff]
    Jun 17 00:44:30 localhost kernel: [ 0.649408] pci 0000:03:00.0: reg 18: [mem 0xfdfff000-0xfdffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649421] pci 0000:03:00.0: reg 20: [mem 0xfdfe0000-0xfdfeffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649430] pci 0000:03:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649474] pci 0000:03:00.0: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.649475] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.658954] pci 0000:00:0a.0: PCI bridge to [bus 03]
    Jun 17 00:44:30 localhost kernel: [ 0.658959] pci 0000:00:0a.0: bridge window [io 0xc000-0xcfff]
    Jun 17 00:44:30 localhost kernel: [ 0.658961] pci 0000:00:0a.0: bridge window [mem 0xfd900000-0xfd9fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.658964] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.659008] pci 0000:04:06.0: [1131:7146] type 00 class 0x048000
    Jun 17 00:44:30 localhost kernel: [ 0.659025] pci 0000:04:06.0: reg 10: [mem 0xfdbff000-0xfdbff1ff]
    Jun 17 00:44:30 localhost kernel: [ 0.659127] pci 0000:04:07.0: [9710:9805] type 00 class 0x078000
    Jun 17 00:44:30 localhost kernel: [ 0.659143] pci 0000:04:07.0: reg 10: [io 0xbf00-0xbf07]
    Jun 17 00:44:30 localhost kernel: [ 0.659155] pci 0000:04:07.0: reg 14: [io 0xbe00-0xbe07]
    Jun 17 00:44:30 localhost kernel: [ 0.659167] pci 0000:04:07.0: reg 18: [io 0xbd00-0xbd07]
    Jun 17 00:44:30 localhost kernel: [ 0.659179] pci 0000:04:07.0: reg 1c: [io 0xbc00-0xbc07]
    Jun 17 00:44:30 localhost kernel: [ 0.659190] pci 0000:04:07.0: reg 20: [io 0xbb00-0xbb07]
    Jun 17 00:44:30 localhost kernel: [ 0.659202] pci 0000:04:07.0: reg 24: [io 0xba00-0xba0f]
    Jun 17 00:44:30 localhost kernel: [ 0.659264] pci 0000:04:0e.0: [104c:8024] type 00 class 0x0c0010
    Jun 17 00:44:30 localhost kernel: [ 0.659286] pci 0000:04:0e.0: reg 10: [mem 0xfdbfe000-0xfdbfe7ff]
    Jun 17 00:44:30 localhost kernel: [ 0.659298] pci 0000:04:0e.0: reg 14: [mem 0xfdbf8000-0xfdbfbfff]
    Jun 17 00:44:30 localhost kernel: [ 0.659387] pci 0000:04:0e.0: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.659389] pci 0000:04:0e.0: PME# supported from D0 D1 D2 D3hot
    Jun 17 00:44:30 localhost kernel: [ 0.659445] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659449] pci 0000:00:14.4: bridge window [io 0xb000-0xbfff]
    Jun 17 00:44:30 localhost kernel: [ 0.659453] pci 0000:00:14.4: bridge window [mem 0xfdb00000-0xfdbfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.659457] pci 0000:00:14.4: bridge window [mem 0xfda00000-0xfdafffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.659458] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659460] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659462] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659463] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659465] pci 0000:00:14.4: bridge window [mem 0xd0000000-0xfebfffff] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659479] acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jun 17 00:44:30 localhost kernel: [ 0.659481] acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jun 17 00:44:30 localhost kernel: [ 0.659908] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.659945] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.659979] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660012] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660045] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660078] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660111] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660144] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660468] acpi root: \_SB_.PCI0 notify handler is installed
    Jun 17 00:44:30 localhost kernel: [ 0.660494] Found 1 acpi root devices
    Jun 17 00:44:30 localhost kernel: [ 0.660564] ACPI: No dock devices found.
    Jun 17 00:44:30 localhost kernel: [ 0.660640] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jun 17 00:44:30 localhost kernel: [ 0.660643] vgaarb: loaded
    Jun 17 00:44:30 localhost kernel: [ 0.660644] vgaarb: bridge control possible 0000:01:00.0
    Jun 17 00:44:30 localhost kernel: [ 0.660676] PCI: Using ACPI for IRQ routing
    Jun 17 00:44:30 localhost kernel: [ 0.668997] PCI: pci_cache_line_size set to 64 bytes
    Jun 17 00:44:30 localhost kernel: [ 0.669004] pci 0000:00:00.0: no compatible bridge window for [mem 0xe0000000-0xffffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.669070] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
    Jun 17 00:44:30 localhost kernel: [ 0.669071] e820: reserve RAM buffer [mem 0xcfdf0000-0xcfffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.669150] NetLabel: Initializing
    Jun 17 00:44:30 localhost kernel: [ 0.669151] NetLabel: domain hash size = 128
    Jun 17 00:44:30 localhost kernel: [ 0.669152] NetLabel: protocols = UNLABELED CIPSOv4
    Jun 17 00:44:30 localhost kernel: [ 0.669161] NetLabel: unlabeled traffic allowed by default
    Jun 17 00:44:30 localhost kernel: [ 0.669177] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Jun 17 00:44:30 localhost kernel: [ 0.669180] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
    Jun 17 00:44:30 localhost kernel: [ 0.671205] Switching to clocksource hpet
    Jun 17 00:44:30 localhost kernel: [ 0.674983] pnp: PnP ACPI init
    Jun 17 00:44:30 localhost kernel: [ 0.674994] ACPI: bus type PNP registered
    Jun 17 00:44:30 localhost kernel: [ 0.675058] system 00:00: [io 0x04d0-0x04d1] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675060] system 00:00: [io 0x0220-0x0225] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675062] system 00:00: [io 0x0290-0x0294] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675065] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675512] pnp 00:01: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.675535] pnp 00:01: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:01:00.0 BAR 6 [mem 0x00000000-0x0001ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.675543] pnp 00:01: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:03:00.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.675575] system 00:01: [io 0x4100-0x411f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675578] system 00:01: [io 0x0228-0x022f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675580] system 00:01: [io 0x040b] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675581] system 00:01: [io 0x04d6] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675583] system 00:01: [io 0x0c00-0x0c01] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675585] system 00:01: [io 0x0c14] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675586] system 00:01: [io 0x0c50-0x0c52] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675588] system 00:01: [io 0x0c6c-0x0c6d] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675589] system 00:01: [io 0x0c6f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675591] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675593] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675594] system 00:01: [io 0x0cd4-0x0cdf] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675596] system 00:01: [io 0x4000-0x40fe] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675597] system 00:01: [io 0x4210-0x4217] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675599] system 00:01: [io 0x0b00-0x0b0f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675601] system 00:01: [io 0x0b10-0x0b1f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675602] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675604] system 00:01: [mem 0xfee00400-0xfee00fff window] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675608] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675676] pnp 00:02: [dma 4]
    Jun 17 00:44:30 localhost kernel: [ 0.675693] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675740] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675772] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675791] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675815] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.676004] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676006] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.676106] pnp 00:08: disabling [mem 0x000cfe00-0x000cffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676108] pnp 00:08: disabling [mem 0x000f0000-0x000f7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676110] pnp 00:08: disabling [mem 0x000f8000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676112] pnp 00:08: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676114] pnp 00:08: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676117] pnp 00:08: disabling [mem 0x00100000-0xcfdeffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676153] system 00:08: [mem 0xcfdf0000-0xcfdfffff] could not be reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676155] system 00:08: [mem 0xffff0000-0xffffffff] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676157] system 00:08: [mem 0xcfe00000-0xcfefffff] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676159] system 00:08: [mem 0xcff00000-0xcfffffff] could not be reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676161] system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676162] system 00:08: [mem 0xfee00000-0xfee00fff] could not be reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676164] system 00:08: [mem 0xfff80000-0xfffeffff] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676166] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.676180] pnp: PnP ACPI: found 9 devices
    Jun 17 00:44:30 localhost kernel: [ 0.676182] ACPI: bus type PNP unregistered
    Jun 17 00:44:30 localhost kernel: [ 0.682550] pci 0000:01:00.0: BAR 6: assigned [mem 0xfde00000-0xfde1ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682553] pci 0000:00:02.0: PCI bridge to [bus 01]
    Jun 17 00:44:30 localhost kernel: [ 0.682556] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Jun 17 00:44:30 localhost kernel: [ 0.682558] pci 0000:00:02.0: bridge window [mem 0xfde00000-0xfdefffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682561] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682564] pci 0000:00:04.0: PCI bridge to [bus 02]
    Jun 17 00:44:30 localhost kernel: [ 0.682566] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682568] pci 0000:00:04.0: bridge window [mem 0xfdd00000-0xfddfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682570] pci 0000:00:04.0: bridge window [mem 0xfdc00000-0xfdcfffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682574] pci 0000:03:00.0: BAR 6: assigned [mem 0xfdf00000-0xfdf0ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682575] pci 0000:00:0a.0: PCI bridge to [bus 03]
    Jun 17 00:44:30 localhost kernel: [ 0.682577] pci 0000:00:0a.0: bridge window [io 0xc000-0xcfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682579] pci 0000:00:0a.0: bridge window [mem 0xfd900000-0xfd9fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682582] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682585] pci 0000:00:14.4: PCI bridge to [bus 04]
    Jun 17 00:44:30 localhost kernel: [ 0.682587] pci 0000:00:14.4: bridge window [io 0xb000-0xbfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682592] pci 0000:00:14.4: bridge window [mem 0xfdb00000-0xfdbfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682595] pci 0000:00:14.4: bridge window [mem 0xfda00000-0xfdafffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682771] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jun 17 00:44:30 localhost kernel: [ 0.682772] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682774] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682775] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682777] pci_bus 0000:00: resource 8 [mem 0xd0000000-0xfebfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682779] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    Jun 17 00:44:30 localhost kernel: [ 0.682780] pci_bus 0000:01: resource 1 [mem 0xfde00000-0xfdefffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682782] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682784] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682785] pci_bus 0000:02: resource 1 [mem 0xfdd00000-0xfddfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682787] pci_bus 0000:02: resource 2 [mem 0xfdc00000-0xfdcfffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682788] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682790] pci_bus 0000:03: resource 1 [mem 0xfd900000-0xfd9fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682791] pci_bus 0000:03: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682793] pci_bus 0000:04: resource 0 [io 0xb000-0xbfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682795] pci_bus 0000:04: resource 1 [mem 0xfdb00000-0xfdbfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682796] pci_bus 0000:04: resource 2 [mem 0xfda00000-0xfdafffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682798] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Jun 17 00:44:30 localhost kernel: [ 0.682799] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Jun 17 00:44:30 localhost kernel: [

    I managed to get my wired connection back and updated my system. After that (and a reboot), NetworkManager started to mysteriously work.
    Here are the relevant parts from journald's log:
    kesä 17 17:47:40 sunnydale dbus-daemon[396]: dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    kesä 17 17:47:40 sunnydale dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    kesä 17 17:47:40 sunnydale systemd[1]: Starting Network Manager Script Dispatcher Service...
    kesä 17 17:47:40 sunnydale dbus-daemon[396]: dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    kesä 17 17:47:40 sunnydale dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    kesä 17 17:47:40 sunnydale systemd[1]: Started Network Manager Script Dispatcher Service.
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) starting connection 'dna internet connection'
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <debug> [1371480469.388835] [nm-manager.c:596] manager_device_state_changed(): stopping connectivity checks
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) scheduled...
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) started...
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) scheduled...
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) complete.
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) starting...
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: prepare -> config (reason 'none') [40 50 0]
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <debug> [1371480469.390823] [nm-manager.c:596] manager_device_state_changed(): stopping connectivity checks
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <debug> [1371480469.398034] [nm-device-bt.c:947] act_stage2_config(): (40:98:4E:65:A1:00): requesting connection to the device
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) complete.
    kesä 17 17:47:52 sunnydale NetworkManager[387]: <debug> [1371480472.813677] [nm-device-bt.c:836] bluez_property_changed(): (40:98:4E:65:A1:00): bluez property 'Connected' changed to 'true'
    kesä 17 17:47:52 sunnydale NetworkManager[387]: <debug> [1371480472.813775] [nm-device-bt.c:846] bluez_property_changed(): (40:98:4E:65:A1:00): connected to the device
    kesä 17 17:47:53 sunnydale NetworkManager[387]: <debug> [1371480473.67585] [nm-device-bt.c:808] bluez_connect_cb(): (40:98:4E:65:A1:00): connect request successful
    kesä 17 17:47:53 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00 40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) successful. Will connect via DUN.
    kesä 17 17:47:53 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) waiting for modem to appear.
    kesä 17 17:47:53 sunnydale upowerd[518]: (upowerd:518): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/pci0000:00/0000:00:13.1/usb4/4-3/4-3:1.0/bluetooth/hci0/hci0:21/rfcomm0
    kesä 17 17:47:53 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:54 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:54 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:56 sunnydale ModemManager[390]: <info> Creating modem with plugin 'Nokia' and '1' ports
    kesä 17 17:47:56 sunnydale ModemManager[390]: <info> Modem for device at '/sys/devices/pci0000:00/0000:00:13.1/usb4/4-3' successfully created
    kesä 17 17:47:56 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:56 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem: state changed (unknown -> disabled)
    kesä 17 17:47:57 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) modem found.
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect started...
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (3/8): Enable
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (disabled -> enabling)
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (rfcomm0) modem state changed, 'disabled' --> 'enabling' (reason: user-requested)
    kesä 17 17:47:57 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (unknown -> registering)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabling -> enabled)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (4/8): Wait to get fully enabled
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (5/8): Register
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (6/8): Bearer
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (rfcomm0) modem state changed, 'enabling' --> 'enabled' (reason: user-requested)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (7/8): Connect
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabled -> connecting)
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (rfcomm0) modem state changed, 'enabled' --> 'connecting' (reason: user-requested)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <warn> Couldn't load Operator Name: 'Unknown error'
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (registering -> home)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP location updated (MCC: '0', MNC: '0', Location area code: 'A1', Cell ID: '10C654')
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (connecting -> connected)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (8/8): All done
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (rfcomm0) modem state changed, 'connecting' --> 'connected' (reason: user-requested)
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <warn> (rfcomm0): failed to look up interface index
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <debug> [1371480477.987235] [nm-device.c:3066] nm_device_activate_schedule_stage3_ip_config_start(): Activation (40:98:4E:65:A1:00) setting firewall zone 'default'
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <debug> [1371480477.987260] [nm-firewall-manager.c:107] nm_firewall_manager_add_or_change_zone(): (rfcomm0) firewall zone add/change skipped (not running)
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 3 of 5 (IP Configure Start) scheduled.
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 3 of 5 (IP Configure Start) started...
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: config -> ip-config (reason 'none') [50 70 0]
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <debug> [1371480477.987628] [nm-manager.c:596] manager_device_state_changed(): stopping connectivity checks
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> using modem-specified IP timeout: 20 seconds
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> starting PPP connection
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <debug> [1371480477.988323] [nm-ppp-manager.c:1068] nm_ppp_manager_start(): command line: /usr/sbin/pppd nodetach lock nodefaultroute ipv6 , debug rfcomm0 noipdefault noauth usepeerdns lcp-echo-failure 0 lcp-echo-interval 0 ipparam /org/freedesktop/NetworkManager/PPP/0 plugin /usr/lib/pppd/2.4.5/nm-pppd-plugin.so
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> pppd started with pid 914
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 3 of 5 (IP Configure Start) complete.
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 4 of 5 (IPv6 Configure Timeout) started...
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 4 of 5 (IPv6 Configure Timeout) complete.
    kesä 17 17:47:58 sunnydale pppd[914]: Plugin /usr/lib/pppd/2.4.5/nm-pppd-plugin.so loaded.
    kesä 17 17:47:58 sunnydale NetworkManager[387]: Plugin /usr/lib/pppd/2.4.5/nm-pppd-plugin.so loaded.
    kesä 17 17:47:58 sunnydale kernel: PPP generic driver version 2.4.2
    kesä 17 17:47:58 sunnydale pppd[914]: pppd 2.4.5 started by root, uid 0
    kesä 17 17:47:58 sunnydale pppd[914]: using channel 1
    kesä 17 17:47:58 sunnydale pppd[914]: Using interface ppp0
    kesä 17 17:47:58 sunnydale pppd[914]: Connect: ppp0 <--> /dev/rfcomm0
    kesä 17 17:47:58 sunnydale pppd[914]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x2ae21925> <pcomp> <accomp>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <debug> [1371480478.113258] [nm-netlink-monitor.c:164] link_msg_handler(): netlink link message: iface idx 3 flags 0x1090
    kesä 17 17:47:58 sunnydale NetworkManager[387]: using channel 1
    kesä 17 17:47:58 sunnydale NetworkManager[387]: Using interface ppp0
    kesä 17 17:47:58 sunnydale NetworkManager[387]: Connect: ppp0 <--> /dev/rfcomm0
    kesä 17 17:47:58 sunnydale NetworkManager[387]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x2ae21925> <pcomp> <accomp>]
    kesä 17 17:47:58 sunnydale systemd-sysctl[922]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <debug> [1371480478.116359] [nm-udev-manager.c:568] handle_uevent(): UDEV event: action 'add' subsys 'net' device 'ppp0'
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <warn> /sys/devices/virtual/net/ppp0: couldn't determine device driver; ignoring...
    kesä 17 17:47:58 sunnydale pppd[914]: rcvd [LCP ConfRej id=0x1 <magic 0x2ae21925> <pcomp> <accomp>]
    kesä 17 17:47:58 sunnydale pppd[914]: sent [LCP ConfReq id=0x2 <asyncmap 0x0>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: rcvd [LCP ConfRej id=0x1 <magic 0x2ae21925> <pcomp> <accomp>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: sent [LCP ConfReq id=0x2 <asyncmap 0x0>]
    kesä 17 17:47:58 sunnydale pppd[914]: rcvd [LCP ConfAck id=0x2 <asyncmap 0x0>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: rcvd [LCP ConfAck id=0x2 <asyncmap 0x0>]
    kesä 17 17:47:58 sunnydale pppd[914]: rcvd [LCP ConfReq id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    kesä 17 17:47:58 sunnydale pppd[914]: sent [LCP ConfAck id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: rcvd [LCP ConfReq id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: sent [LCP ConfAck id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    kesä 17 17:47:58 sunnydale pppd[914]: sent [PAP AuthReq id=0x1 user="" password=<hidden>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: sent [PAP AuthReq id=0x1 user="" password=<hidden>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [PAP AuthReq id=0x2 user="" password=<hidden>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [PAP AuthReq id=0x2 user="" password=<hidden>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [PAP AuthAck id=0x2 ""]
    kesä 17 17:48:01 sunnydale pppd[914]: PAP authentication succeeded
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [PAP AuthAck id=0x2 ""]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: PAP authentication succeeded
    kesä 17 17:48:01 sunnydale kernel: PPP BSD Compression module registered
    kesä 17 17:48:01 sunnydale pppd[914]: sent [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPCP ConfReq id=0x1 <compress VJ 0f 01> <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns2 0.0.0.0>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPCP ConfReq id=0x1 <compress VJ 0f 01> <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns2 0.0.0.0>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:01 sunnydale kernel: PPP Deflate Compression module registered
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [LCP ProtRej id=0x0 80 fd 01 01 00 0f 1a 04 78 00 18 04 78 00 15 03 2f]
    kesä 17 17:48:01 sunnydale pppd[914]: Protocol-Reject for 'Compression Control Protocol' (0x80fd) received
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [LCP ProtRej id=0x0 80 fd 01 01 00 0f 1a 04 78 00 18 04 78 00 15 03 2f]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: Protocol-Reject for 'Compression Control Protocol' (0x80fd) received
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x0 <addr fe80::0000:0000:0000:0000>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfNak id=0x0 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x0 <addr fe80::0000:0000:0000:0000>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfNak id=0x0 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:02 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:02 sunnydale pppd[914]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:02 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:02 sunnydale NetworkManager[387]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:03 sunnydale pppd[914]: rcvd [IPCP ConfRej id=0x1 <compress VJ 0f 01>]
    kesä 17 17:48:03 sunnydale pppd[914]: sent [IPCP ConfReq id=0x2 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns2 0.0.0.0>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: rcvd [IPCP ConfRej id=0x1 <compress VJ 0f 01>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: sent [IPCP ConfReq id=0x2 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns2 0.0.0.0>]
    kesä 17 17:48:03 sunnydale pppd[914]: rcvd [IPCP ConfNak id=0x2 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale pppd[914]: sent [IPCP ConfReq id=0x3 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: rcvd [IPCP ConfNak id=0x2 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: sent [IPCP ConfReq id=0x3 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale pppd[914]: rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:03 sunnydale pppd[914]: sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:03 sunnydale pppd[914]: rcvd [IPCP ConfAck id=0x3 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale pppd[914]: Cannot determine ethernet address for proxy ARP
    kesä 17 17:48:03 sunnydale pppd[914]: local IP address 10.241.96.30
    kesä 17 17:48:03 sunnydale pppd[914]: remote IP address 10.6.6.6
    kesä 17 17:48:03 sunnydale pppd[914]: primary DNS address 62.241.198.245
    kesä 17 17:48:03 sunnydale pppd[914]: secondary DNS address 62.241.198.246
    kesä 17 17:48:03 sunnydale pppd[914]: Script /etc/ppp/ip-up started (pid 928)
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <debug> [1371480483.851617] [nm-netlink-monitor.c:164] link_msg_handler(): netlink link message: iface idx 3 flags 0x110D1
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <info> PPP manager(IP Config Get) reply received.
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 5 of 5 (IPv4 Commit) started...
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <debug> [1371480483.852986] [nm-system.c:194] sync_addresses(): (ppp0): syncing addresses (family 2)
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <debug> [1371480483.853021] [nm-system.c:247] sync_addresses(): (ppp0): removing address '10.241.96.30/32'
    kesä 17 17:48:03 sunnydale NetworkManager[387]: rcvd [IPCP ConfAck id=0x3 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: Cannot determine ethernet address for proxy ARP
    kesä 17 17:48:03 sunnydale NetworkManager[387]: local IP address 10.241.96.30
    kesä 17 17:48:03 sunnydale NetworkManager[387]: remote IP address 10.6.6.6
    kesä 17 17:48:03 sunnydale NetworkManager[387]: primary DNS address 62.241.198.245
    kesä 17 17:48:03 sunnydale NetworkManager[387]: secondary DNS address 62.241.198.246
    kesä 17 17:48:03 sunnydale NetworkManager[387]: Script /etc/ppp/ip-up started (pid 928)
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <debug> [1371480483.853775] [nm-system.c:280] sync_addresses(): (ppp0): adding address '10.241.96.30/0'
    kesä 17 17:48:03 sunnydale pppd[914]: Script /etc/ppp/ip-up finished (pid 928), status = 0x2
    kesä 17 17:48:03 sunnydale NetworkManager[387]: Script /etc/ppp/ip-up finished (pid 928), status = 0x2
    kesä 17 17:48:04 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:04 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855173] [nm-netlink-utils.c:356] dump_route(): route idx 3 family INET (2) addr 10.6.6.6/32
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855250] [nm-netlink-utils.c:356] dump_route(): route idx 3 family INET (2) addr 10.241.96.30/32
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855608] [nm-dns-manager.c:995] nm_dns_manager_begin_updates(): (device_ip4_config_changed): queueing DNS updates (1)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855649] [nm-dns-manager.c:1013] nm_dns_manager_end_updates(): (nm_dns_manager_end_updates): DNS configuration did not change
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855666] [nm-dns-manager.c:1017] nm_dns_manager_end_updates(): (device_ip4_config_changed): no DNS changes to commit (0)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855795] [nm-manager.c:596] manager_device_state_changed(): stopping connectivity checks
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.858147] [nm-device.c:5244] nm_device_queue_state(): (40:98:4E:65:A1:00): queued state change to activated (id 252)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.858200] [nm-device.c:5174] nm_device_state_changed(): (40:98:4E:65:A1:00): device entered SECONDARIES state
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 5 of 5 (IPv4 Commit) complete.
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.870449] [nm-device.c:5202] queued_set_state(): (40:98:4E:65:A1:00): running queued state change to activated (id 252)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: secondaries -> activated (reason 'none') [90 100 0]
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.872130] [nm-manager.c:591] manager_device_state_changed(): (40:98:4E:65:A1:00): triggered connectivity check due to state change
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.873625] [nm-dns-manager.c:995] nm_dns_manager_begin_updates(): (device_state_changed): queueing DNS updates (1)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.873683] [nm-dns-manager.c:995] nm_dns_manager_begin_updates(): (update_routing_and_dns): queueing DNS updates (2)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> Policy set 'dna internet connection' (ppp0) as default for IPv4 routing and DNS.
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874320] [nm-dns-manager.c:1013] nm_dns_manager_end_updates(): (nm_dns_manager_end_updates): DNS configuration changed
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874341] [nm-dns-manager.c:1017] nm_dns_manager_end_updates(): (update_routing_and_dns): no DNS changes to commit (1)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874368] [nm-dns-manager.c:1013] nm_dns_manager_end_updates(): (nm_dns_manager_end_updates): DNS configuration changed
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874383] [nm-dns-manager.c:1022] nm_dns_manager_end_updates(): (device_state_changed): committing DNS changes (0)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874399] [nm-dns-manager.c:591] update_dns(): updating resolv.conf
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) successful, device activated.
    kesä 17 17:48:04 sunnydale dbus-daemon[396]: dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    kesä 17 17:48:04 sunnydale dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    kesä 17 17:48:04 sunnydale systemd[1]: Starting Network Manager Script Dispatcher Service...
    kesä 17 17:48:04 sunnydale dbus-daemon[396]: dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    kesä 17 17:48:04 sunnydale dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    kesä 17 17:48:04 sunnydale systemd[1]: Started Network Manager Script Dispatcher Service.
    kesä 17 17:48:07 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:07 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:10 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:10 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:13 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:13 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:16 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:16 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:19 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:19 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:21 sunnydale /etc/gdm/Xsession[622]: (process:953): GLib-CRITICAL **: g_slice_set_config: assertion `sys_page_size == 0' failed
    kesä 17 17:48:22 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:22 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:25 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:CurrentTime used to choose focus window; focus window may not be correct.
    kesä 17 17:48:25 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:Got a request to focus 0x2200006 (jussi@sunn) with a timestamp of 0. This shouldn't happen!
    kesä 17 17:48:25 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:CurrentTime used to choose focus window; focus window may not be correct.
    kesä 17 17:48:25 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    kesä 17 17:48:25 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:25 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:28 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:28 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:31 sunnydale pppd[914]: IPV6CP: timeout sending Config-Requests
    kesä 17 17:48:31 sunnydale NetworkManager[387]: IPV6CP: timeout sending Config-Requests
    kesä 17 17:49:41 sunnydale dbus-daemon[396]: dbus[396]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
    kesä 17 17:49:41 sunnydale dbus[396]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
    kesä 17 17:49:41 sunnydale systemd[1]: Starting Hostname Service...
    kesä 17 17:49:41 sunnydale dbus-daemon[396]: dbus[396]: [system] Successfully activated service 'org.freedesktop.hostname1'
    kesä 17 17:49:41 sunnydale dbus[396]: [system] Successfully activated service 'org.freedesktop.hostname1'
    kesä 17 17:49:41 sunnydale systemd[1]: Started Hostname Service.
    kesä 17 17:49:43 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:Log level 8: meta_window_raise: assertion `!window->override_redirect' failed
    kesä 17 17:49:44 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:Log level 8: meta_window_lower: assertion `!window->override_redirect' failed
    And here is log about the updates I made:
    [2013-06-17 17:01] [PACMAN] Running 'pacman -Syu'
    [2013-06-17 17:01] [PACMAN] synchronizing package lists
    [2013-06-17 17:01] [PACMAN] starting full system upgrade
    [2013-06-17 17:04] [PACMAN] Running 'pacman -S --asdeps polkit'
    [2013-06-17 17:04] [PACMAN] upgraded polkit (0.110-2 -> 0.111-1)
    [2013-06-17 17:24] [PACMAN] Running 'pacman -U --asdeps lib32-polkit-0.111-1-x86_64.pkg.tar.xz'
    [2013-06-17 17:24] [PACMAN] upgraded lib32-polkit (0.110-2 -> 0.111-1)
    [2013-06-17 17:27] [PACMAN] Running 'pacman -S --asdeps libxkbcommon'
    [2013-06-17 17:27] [PACMAN] upgraded libxkbcommon (0.3.0-1 -> 0.3.1-1)
    [2013-06-17 17:28] [PACMAN] Running 'pacman -U --asdeps lib32-libxkbcommon-0.3.1-1-x86_64.pkg.tar.xz'
    [2013-06-17 17:28] [PACMAN] upgraded lib32-libxkbcommon (0.3.0-1 -> 0.3.1-1)
    [2013-06-17 17:28] [PACMAN] Running 'pacman -Syu'
    [2013-06-17 17:28] [PACMAN] synchronizing package lists
    [2013-06-17 17:28] [PACMAN] starting full system upgrade
    [2013-06-17 17:33] [PACMAN] removed lib32-dbus-core (1.6.10-1)
    [2013-06-17 17:33] [PACMAN] upgraded attr (2.4.46-2 -> 2.4.47-1)
    [2013-06-17 17:33] [PACMAN] upgraded acl (2.2.51-3 -> 2.2.52-1)
    [2013-06-17 17:33] [PACMAN] upgraded attica (0.4.1-2 -> 0.4.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded cups-pk-helper (0.2.4-1 -> 0.2.5-1)
    [2013-06-17 17:33] [PACMAN] upgraded dbus (1.6.10-1 -> 1.6.12-1)
    [2013-06-17 17:33] [PACMAN] upgraded dosfstools (3.0.17-1 -> 3.0.20-1)
    [2013-06-17 17:33] [PACMAN] upgraded gtk-update-icon-cache (2.24.18-1 -> 2.24.19-1)
    [2013-06-17 17:33] [PACMAN] upgraded gtk2 (2.24.18-1 -> 2.24.19-1)
    [2013-06-17 17:33] [PACMAN] upgraded flashplugin (11.2.202.285-1 -> 11.2.202.291-1)
    [2013-06-17 17:33] [PACMAN] upgraded libgdm (3.8.1.1-2 -> 3.8.3-1)
    [2013-06-17 17:33] [ALPM] warning: directory permissions differ on /var/log/gdm/
    filesystem: 711 package: 1770
    [2013-06-17 17:33] [PACMAN] upgraded gdm (3.8.1.1-2 -> 3.8.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded geoip-database (20130514-1 -> 20130607-1)
    [2013-06-17 17:33] [PACMAN] upgraded git (1.8.3-1 -> 1.8.3.1-1)
    [2013-06-17 17:33] [PACMAN] upgraded glib2 (2.36.2-1 -> 2.36.3-2)
    [2013-06-17 17:33] [PACMAN] upgraded xkeyboard-config (2.9-1 -> 2.9-2)
    [2013-06-17 17:33] [PACMAN] upgraded iso-codes (3.41-1 -> 3.43-1)
    [2013-06-17 17:33] [PACMAN] upgraded gnome-desktop (1:3.8.3-1 -> 1:3.8.3-2)
    [2013-06-17 17:33] [PACMAN] upgraded gnome-user-docs (3.8.1-1 -> 3.8.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded graphite (1:1.2.2-1 -> 1:1.2.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-afc (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-goa (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [ALPM-SCRIPTLET] Users no longer need to be in the 'camera' group to use camera devices
    [2013-06-17 17:33] [PACMAN] upgraded libgphoto2 (2.5.1-1 -> 2.5.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-gphoto2 (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-mtp (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-obexftp (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-smb (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded hwids (20130512-1 -> 20130607-1)
    [2013-06-17 17:33] [PACMAN] upgraded jre7-openjdk-headless (7.u21_2.3.9-4 -> 7.u40_2.4.0-1)
    [2013-06-17 17:33] [PACMAN] upgraded jre7-openjdk (7.u21_2.3.9-4 -> 7.u40_2.4.0-1)
    [2013-06-17 17:33] [PACMAN] upgraded jdk7-openjdk (7.u21_2.3.9-4 -> 7.u40_2.4.0-1)
    [2013-06-17 17:33] [PACMAN] upgraded json-c (0.10-2 -> 0.11-1)
    [2013-06-17 17:33] [PACMAN] upgraded krb5 (1.11.2-4 -> 1.11.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-attr (2.4.46-2 -> 2.4.47-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-acl (2.2.51-2 -> 2.2.52-1)
    [2013-06-17 17:33] [PACMAN] installed lib32-dbus (1.6.12-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-gtk2 (2.24.18-1 -> 2.24.19-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-json-c (0.10-2 -> 0.11-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-krb5 (1.11.2-1 -> 1.11.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded libpulse (4.0-1 -> 4.0-2)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-libpulse (4.0-1 -> 4.0-2)
    [2013-06-17 17:33] [PACMAN] upgraded libxrender (0.9.7-1 -> 0.9.8-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-libxrender (0.9.7-1 -> 0.9.8-1)
    [2013-06-17 17:33] [PACMAN] upgraded libbsd (0.4.2-1 -> 0.5.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded libmbim (1.0.0-1 -> 1.2.0-1)
    [2013-06-17 17:33] [PACMAN] upgraded libnautilus-extension (3.8.1-1 -> 3.8.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded libpipeline (1.2.3-1 -> 1.2.4-1)
    [2013-06-17 17:33] [PACMAN] upgraded libquvi-scripts (0.4.14-1 -> 0.4.15-1)
    [2013-06-17 17:33] [PACMAN] upgraded libusb-compat (0.1.4-2 -> 0.1.5-1)
    [2013-06-17 17:33] [PACMAN] upgraded libxvmc (1.0.7-1 -> 1.0.8-1)
    [2013-06-17 17:33] [PACMAN] upgraded link-grammar (4.7.11-1 -> 4.7.12-1)
    [2013-06-17 17:33] [PACMAN] upgraded linux-firmware (20130528-1 -> 20130610-1)
    [2013-06-17 17:33] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2013-06-17 17:33] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Starting build: 3.9.6-1-ARCH
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Starting build: 3.9.6-1-ARCH
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-06-17 17:33] [PACMAN] upgraded linux (3.9.5-1 -> 3.9.6-1)
    [2013-06-17 17:33] [PACMAN] upgraded linux-headers (3.9.5-1 -> 3.9.6-1)
    [2013-06-17 17:33] [PACMAN] upgraded lirc-utils (1:0.9.0-46 -> 1:0.9.0-47)
    [2013-06-17 17:33] [PACMAN] upgraded mime-types (8-1 -> 9-1)
    [2013-06-17 17:33] [ALPM] warning: extracting /usr/share/applications/nautilus.desktop as /usr/share/applications/nautilus.desktop.pacnew
    [2013-06-17 17:33] [ALPM] warning: extracting /usr/share/applications/nautilus-autorun-software.desktop as /usr/share/applications/nautilus-autorun-software.desktop.pacnew
    [2013-06-17 17:34] [PACMAN] upgraded nautilus (3.8.1-1 -> 3.8.2-1)
    [2013-06-17 17:34] [PACMAN] upgraded p7zip (9.20.1-6 -> 9.20.1-7)
    [2013-06-17 17:34] [ALPM] warning: /etc/ppp/ip-down.d/00-dns.sh installed as /etc/ppp/ip-down.d/00-dns.sh.pacnew
    [2013-06-17 17:34] [ALPM] warning: /etc/ppp/ip-up.d/00-dns.sh installed as /etc/ppp/ip-up.d/00-dns.sh.pacnew
    [2013-06-17 17:34] [PACMAN] upgraded ppp (2.4.5-6 -> 2.4.5-7)
    [2013-06-17 17:34] [ALPM-SCRIPTLET] >>> If you have per-user copies of configuration files (such as client.conf,
    [2013-06-17 17:34] [ALPM-SCRIPTLET] daemon.conf or default.pa) in ~/.pulse/, make sure you keep them in sync
    [2013-06-17 17:34] [ALPM-SCRIPTLET] with changes to the packaged files in /etc/pulse/. Otherwise, PulseAudio
    [2013-06-17 17:34] [ALPM-SCRIPTLET] may refuse to start due to configuration errors.
    [2013-06-17 17:34] [PACMAN] upgraded pulseaudio (4.0-1 -> 4.0-2)
    [2013-06-17 17:34] [PACMAN] upgraded python-dbus-common (1.1.1-2 -> 1.2.0-1)
    [2013-06-17 17:34] [PACMAN] upgraded python-dbus (1.1.1-2 -> 1.2.0-1)
    [2013-06-17 17:34] [PACMAN] upgraded python2-dbus (1.1.1-2 -> 1.2.0-1)
    [2013-06-17 17:34] [PACMAN] upgraded sdparm (1.07-1 -> 1.08-1)
    [2013-06-17 17:34] [PACMAN] upgraded sg3_utils (1.35-1 -> 1.36-1)
    [2013-06-17 17:34] [PACMAN] upgraded shared-desktop-ontologies (0.10.0-1 -> 0.11.0-1)
    [2013-06-17 17:34] [PACMAN] upgraded subversion (1.7.9-6 -> 1.7.10-1)
    [2013-06-17 17:34] [PACMAN] upgraded sudo (1.8.6.p8-2 -> 1.8.7-1)
    [2013-06-17 17:34] [PACMAN] upgraded syslog-ng (3.4.1-3 -> 3.4.2-1)
    [2013-06-17 17:34] [PACMAN] upgraded usbutils (006-1 -> 007-1)
    [2013-06-17 17:34] [PACMAN] upgraded webkitgtk (2.0.2-3 -> 2.0.3-1)
    [2013-06-17 17:34] [PACMAN] upgraded wine (1.6rc1-1 -> 1.6rc2-1)
    I'm marking this thread solved for now. If the problem arises again, I'll reopen it.

  • After the last Yosemite update on my MacBook pro I turned the FileVault on, now my Mac is freezing all the time and encrypting the drive looks like going to last forever and I am unable to use my MacBook pro what must I do???!!!

    after the last Yosemite update on my MacBook pro I turned the FileVault on, now my Mac is freezing all the time and encrypting the drive looks like going to last forever and I am unable to use my MacBook pro what must I do???!!!

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*genieo\* \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB ' com.adobe.AAM.Updater-1.0 com.adobe.AAM.Updater-1.0 com.adobe.AdobeCreativeCloud com.adobe.CS4ServiceManager com.adobe.CS5ServiceManager com.adobe.fpsaud com.adobe.SwitchBoard com.adobe.SwitchBoard com.apple.aelwriter com.apple.AirPortBaseStationAgent com.apple.FolderActions.enabled com.apple.installer.osmessagetracing com.apple.mrt.uiagent com.apple.ReportCrash.Self com.apple.rpmuxd com.apple.SafariNotificationAgent com.apple.usbmuxd com.citrixonline.GoToMeeting.G2MUpdate com.google.keystone.agent com.google.keystone.daemon com.microsoft.office.licensing.helper com.oracle.java.Helper-Tool com.oracle.java.JavaUpdateHelper com.oracle.java.JavaUpdateHelper org.macosforge.xquartz.privileged_startx org.macosforge.xquartz.startx ' ' 879294308 4071182229 461455494 3627668074 1083382502 1274181950 1855907737 2758863019 1848501757 464843899 3694147963 1233118628 2456546649 2806998573 2778718105 2636415542 842973933 2051385900 3301885676 891055588 998894468 695903914 1443423563 4136085286 523110921 3873345487 ' 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/faceb/s/(at\.)[^.]+/\1NAME/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: (E[^m]|[^EO])|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<10) print "com.apple.";} ' ' { sub(/ :/,"");print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { split("'"${p[41]}"'",b);split("'"${p[42]}"'",c);for(i in b) print b[i]".plist\t"c[i];if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"cksum "F|getline C;split(C, A);C="checksum "A[1];"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text(, with v.+)?$|(Bo|PO).+ sh.+ text ex|XM)/) F=F" ("T", "C")";else F=F" ("C")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9|"sort|uniq";} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */   /;' ' s/^.+ |\(.+\)$//g;p ' '/\.(appex|pluginkit)\/Contents\/Info\.plist$/p' ' /2/{print "WARN"};/4/{print "CRITICAL"};' ' /EVHF|MACR/d;s/^.+: //p;' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps crontab iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl smcDiagnose sysctl\ -n defaults\ read stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' pluginkit scutil dtrace profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil lsof test osascript\ -e );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$(RefProc): \$Message' -k Sender Req 'fsev|kern|launchd' -k RefProc Rne 'Aq|WebK' -k Message Rne 'Goog|ksadm|probe|Roame|SMC:|smcD|sserti|suhel| VALI|ver-r|xpma' -k Message Req 'abn|bad |Beac|caug|corru|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|NVDA\(|pagin|proc: t|Roamed|rror|SL|TCON|Throttli|tim(ed? ?|ing )o|WARN' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '/S*/*/Ca*/*xpc* >&- ||echo No' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,Ex}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,In{p,ter},iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" -m 'L*/{Con*/*/Data/L*/,}Pref* -type f -size 0c -name *.plist.???????|wc -l' kern.memorystatus_vm_pressure_level '3>&1 >&- 2>&3' " -F '\$Time \$Message' -k Sender kernel -k Message CSeq 'n Cause: -' " );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents XPC\ cache Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors App\ extensions Lockfiles Memory\ pressure SMC Shutdowns );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};A'$((7+i))'() { v=` eval sudo "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};';done;A9(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "${s[63]}"<<<"$v"`&&C1 1 $1;};for i in 1 2 7 8;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;B1&&D73 19 53 67 55;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 54 12 56;D23 5 14 12 14;D22 6 36 13 15;D22 20 52 66 54;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D82 35 49 61 51;D82 11 17 17 20;for i in 0 1;do D82 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A8 18 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;B3 4 0 65;A3 14 6 32 0;B4 0 16 11;A1 26 50 64;B7 16;C3 52;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D73 21 0 32 19;D73 10 42 32 40;D82 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 20 32 25;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 21 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D83 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 10 42 32 41;D13 37 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 21 48 49 49;B3 4 22 57;A1 21 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D12 4 51 32 53;D23 22 9 37 7;A9;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

Maybe you are looking for

  • Register help

    when i register my ipod shuffle it tells me to give a three digit # area code and a phone number i dont know my area code and it tells me to give it a 7 digit phone number when i have a 10 digit number what can i do????

  • Laser printer for Mac OS X 10.7.3 airprint

    Need a laser printer for iMac and Macbook Air enable airprint. Thank you

  • In plain english please...

    Can anybody explain to me the logic behind this sort algorithm using a comparator? I don't understand the usage of "o1" and "o2", and I also don't understand why 1, -1, and 0 are returned and what is done with those values if they are returned. Thank

  • Pricing in Sweden vs the US

    Hello! I'm a swede, living in Sweden. Can I still download a point upgrade to Creative Suite 5 Production Premium from the "Adobe Store North America" at the price of $799, or do I have to use the "Adobe Store Sweden" where same upgrade is available

  • Clone HD and OneKey

    If I clone the 160 GB S10 HD to a external 160 GB HD will I loose the OneKey restore on the clone drive?  Thanks Frank Kenmore, WA USA