ubuntuusers.de

Unbenannt

Autor:
redknight
Datum:
15. Juni 2017 18:40
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
-- Logs begin at Tue 2017-06-06 21:30:00 CEST, end at Tue 2017-06-06 21:31:30 CEST. --
Jun 06 21:30:00 mac-desktop kernel: Linux version 4.10.0-21-generic (buildd@lgw01-12) (gcc version 6.3.0 20170406 (Ubuntu 6.3.0-12ubuntu2) ) #23-Ubuntu SMP Fri Apr 28 16:14:22 UTC 2017 (Ubuntu 4.10.0-21.23-generic 4.10.11)
Jun 06 21:30:00 mac-desktop kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-4.10.0-21-generic root=UUID=ee19b357-2138-4fd1-9697-e33ef929942b ro quiet splash vt.handoff=7
Jun 06 21:30:00 mac-desktop kernel: KERNEL supported cpus:
Jun 06 21:30:00 mac-desktop kernel:   Intel GenuineIntel
Jun 06 21:30:00 mac-desktop kernel:   AMD AuthenticAMD
Jun 06 21:30:00 mac-desktop kernel:   Centaur CentaurHauls
Jun 06 21:30:00 mac-desktop kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 06 21:30:00 mac-desktop kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 06 21:30:00 mac-desktop kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 06 21:30:00 mac-desktop kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 06 21:30:00 mac-desktop kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Jun 06 21:30:00 mac-desktop kernel: e820: BIOS-provided physical RAM map:
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000097fff] usable
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000cfdeffff] usable
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x00000000cfdf0000-0x00000000cfdf2fff] ACPI NVS
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x00000000cfdf3000-0x00000000cfdfffff] ACPI data
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x00000000cfe00000-0x00000000cfefffff] reserved
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
Jun 06 21:30:00 mac-desktop kernel: BIOS-e820: [mem 0x0000000100000000-0x000000042effffff] usable
Jun 06 21:30:00 mac-desktop kernel: NX (Execute Disable) protection: active
Jun 06 21:30:00 mac-desktop kernel: SMBIOS 2.4 present.
Jun 06 21:30:00 mac-desktop kernel: DMI: ECT  /GA-78LMT-USB3 6.0, BIOS F2 11/25/2014
Jun 06 21:30:00 mac-desktop kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 06 21:30:00 mac-desktop kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 06 21:30:00 mac-desktop kernel: AGP: No AGP bridge found
Jun 06 21:30:00 mac-desktop kernel: e820: last_pfn = 0x42f000 max_arch_pfn = 0x400000000
Jun 06 21:30:00 mac-desktop kernel: MTRR default type: uncachable
Jun 06 21:30:00 mac-desktop kernel: MTRR fixed ranges enabled:
Jun 06 21:30:00 mac-desktop kernel:   00000-9FFFF write-back
Jun 06 21:30:00 mac-desktop kernel:   A0000-BFFFF uncachable
Jun 06 21:30:00 mac-desktop kernel:   C0000-C7FFF write-protect
Jun 06 21:30:00 mac-desktop kernel:   C8000-FFFFF uncachable
Jun 06 21:30:00 mac-desktop kernel: MTRR variable ranges enabled:
Jun 06 21:30:00 mac-desktop kernel:   0 base 000000000000 mask FFFF80000000 write-back
Jun 06 21:30:00 mac-desktop kernel:   1 base 000080000000 mask FFFFC0000000 write-back
Jun 06 21:30:00 mac-desktop kernel:   2 base 0000C0000000 mask FFFFF0000000 write-back
Jun 06 21:30:00 mac-desktop kernel:   3 base 0000CFE00000 mask FFFFFFE00000 uncachable
Jun 06 21:30:00 mac-desktop kernel:   4 disabled
Jun 06 21:30:00 mac-desktop kernel:   5 disabled
Jun 06 21:30:00 mac-desktop kernel:   6 disabled
Jun 06 21:30:00 mac-desktop kernel:   7 disabled
Jun 06 21:30:00 mac-desktop kernel: TOM2: 000000042f000000 aka 17136M
Jun 06 21:30:00 mac-desktop kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
Jun 06 21:30:00 mac-desktop kernel: total RAM covered: 3326M
Jun 06 21:30:00 mac-desktop kernel: Found optimal setting for mtrr clean up
Jun 06 21:30:00 mac-desktop kernel:  gran_size: 64K         chunk_size: 4M         num_reg: 4          lose cover RAM: 0G
Jun 06 21:30:00 mac-desktop kernel: e820: update [mem 0xcfe00000-0xffffffff] usable ==> reserved
Jun 06 21:30:00 mac-desktop kernel: e820: last_pfn = 0xcfdf0 max_arch_pfn = 0x400000000
Jun 06 21:30:00 mac-desktop kernel: found SMP MP-table at [mem 0x000f5ed0-0x000f5edf] mapped at [ffff94aa400f5ed0]
Jun 06 21:30:00 mac-desktop kernel: Scanning 1 areas for low memory corruption
Jun 06 21:30:00 mac-desktop kernel: Base memory trampoline at [ffff94aa40092000] 92000 size 24576
Jun 06 21:30:00 mac-desktop kernel: Using GB pages for direct mapping
Jun 06 21:30:00 mac-desktop kernel: BRK [0x3c428000, 0x3c428fff] PGTABLE
Jun 06 21:30:00 mac-desktop kernel: BRK [0x3c429000, 0x3c429fff] PGTABLE
Jun 06 21:30:00 mac-desktop kernel: BRK [0x3c42a000, 0x3c42afff] PGTABLE
Jun 06 21:30:00 mac-desktop kernel: BRK [0x3c42b000, 0x3c42bfff] PGTABLE
Jun 06 21:30:00 mac-desktop kernel: BRK [0x3c42c000, 0x3c42cfff] PGTABLE
Jun 06 21:30:00 mac-desktop kernel: RAMDISK: [mem 0x32def000-0x356eefff]
Jun 06 21:30:00 mac-desktop kernel: ACPI: Early table checksum verification disabled
Jun 06 21:30:00 mac-desktop kernel: ACPI: RSDP 0x00000000000F78E0 000014 (v00 GBT   )
Jun 06 21:30:00 mac-desktop kernel: ACPI: RSDT 0x00000000CFDF3000 000040 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Jun 06 21:30:00 mac-desktop kernel: ACPI: FACP 0x00000000CFDF3080 000074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Jun 06 21:30:00 mac-desktop kernel: ACPI: DSDT 0x00000000CFDF3100 00683B (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
Jun 06 21:30:00 mac-desktop kernel: ACPI: FACS 0x00000000CFDF0000 000040
Jun 06 21:30:00 mac-desktop kernel: ACPI: MSDM 0x00000000CFDF9A00 000055 (v03 GBT    GBTUACPI 42302E31 GBTU 01010101)
Jun 06 21:30:00 mac-desktop kernel: ACPI: HPET 0x00000000CFDF9A80 000038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
Jun 06 21:30:00 mac-desktop kernel: ACPI: MCFG 0x00000000CFDF9AC0 00003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Jun 06 21:30:00 mac-desktop kernel: ACPI: TAMG 0x00000000CFDF9B00 000022 (v01 GBT    GBT   B0 5455312E BG?? 00000101)
Jun 06 21:30:00 mac-desktop kernel: ACPI: APIC 0x00000000CFDF9940 0000BC (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Jun 06 21:30:00 mac-desktop kernel: ACPI: SSDT 0x00000000CFDF9BA0 001714 (v01 AMD    POWERNOW 00000001 AMD  00000001)
Jun 06 21:30:00 mac-desktop kernel: ACPI: Local APIC address 0xfee00000
Jun 06 21:30:00 mac-desktop kernel: No NUMA configuration found
Jun 06 21:30:00 mac-desktop kernel: Faking a node at [mem 0x0000000000000000-0x000000042effffff]
Jun 06 21:30:00 mac-desktop kernel: NODE_DATA(0) allocated [mem 0x42efd3000-0x42effdfff]
Jun 06 21:30:00 mac-desktop kernel: Zone ranges:
Jun 06 21:30:00 mac-desktop kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 06 21:30:00 mac-desktop kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 06 21:30:00 mac-desktop kernel:   Normal   [mem 0x0000000100000000-0x000000042effffff]
Jun 06 21:30:00 mac-desktop kernel:   Device   empty
Jun 06 21:30:00 mac-desktop kernel: Movable zone start for each node
Jun 06 21:30:00 mac-desktop kernel: Early memory node ranges
Jun 06 21:30:00 mac-desktop kernel:   node   0: [mem 0x0000000000001000-0x0000000000097fff]
Jun 06 21:30:00 mac-desktop kernel:   node   0: [mem 0x0000000000100000-0x00000000cfdeffff]
Jun 06 21:30:00 mac-desktop kernel:   node   0: [mem 0x0000000100000000-0x000000042effffff]
Jun 06 21:30:00 mac-desktop kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000042effffff]
Jun 06 21:30:00 mac-desktop kernel: On node 0 totalpages: 4189575
Jun 06 21:30:00 mac-desktop kernel:   DMA zone: 64 pages used for memmap
Jun 06 21:30:00 mac-desktop kernel:   DMA zone: 21 pages reserved
Jun 06 21:30:00 mac-desktop kernel:   DMA zone: 3991 pages, LIFO batch:0
Jun 06 21:30:00 mac-desktop kernel:   DMA32 zone: 13240 pages used for memmap
Jun 06 21:30:00 mac-desktop kernel:   DMA32 zone: 847344 pages, LIFO batch:31
Jun 06 21:30:00 mac-desktop kernel:   Normal zone: 52160 pages used for memmap
Jun 06 21:30:00 mac-desktop kernel:   Normal zone: 3338240 pages, LIFO batch:31
Jun 06 21:30:00 mac-desktop kernel: ACPI: PM-Timer IO Port: 0x4008
Jun 06 21:30:00 mac-desktop kernel: ACPI: Local APIC address 0xfee00000
Jun 06 21:30:00 mac-desktop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
Jun 06 21:30:00 mac-desktop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
Jun 06 21:30:00 mac-desktop kernel: ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
Jun 06 21:30:00 mac-desktop kernel: ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
Jun 06 21:30:00 mac-desktop kernel: ACPI: LAPIC_NMI (acpi_id[0x04] dfl dfl lint[0x1])
Jun 06 21:30:00 mac-desktop kernel: ACPI: LAPIC_NMI (acpi_id[0x05] dfl dfl lint[0x1])
Jun 06 21:30:00 mac-desktop kernel: ACPI: LAPIC_NMI (acpi_id[0x06] dfl dfl lint[0x1])
Jun 06 21:30:00 mac-desktop kernel: ACPI: LAPIC_NMI (acpi_id[0x07] dfl dfl lint[0x1])
Jun 06 21:30:00 mac-desktop kernel: IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
Jun 06 21:30:00 mac-desktop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 06 21:30:00 mac-desktop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Jun 06 21:30:00 mac-desktop kernel: ACPI: IRQ0 used by override.
Jun 06 21:30:00 mac-desktop kernel: ACPI: IRQ9 used by override.
Jun 06 21:30:00 mac-desktop kernel: Using ACPI (MADT) for SMP configuration information
Jun 06 21:30:00 mac-desktop kernel: ACPI: HPET id: 0x10b9a201 base: 0xfed00000
Jun 06 21:30:00 mac-desktop kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0x00098000-0x0009ffff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0xcfdf0000-0xcfdf2fff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0xcfdf3000-0xcfdfffff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0xcfe00000-0xcfefffff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0xcff00000-0xdfffffff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0xfec00000-0xffffffff]
Jun 06 21:30:00 mac-desktop kernel: e820: [mem 0xcff00000-0xdfffffff] available for PCI devices
Jun 06 21:30:00 mac-desktop kernel: Booting paravirtualized kernel on bare hardware
Jun 06 21:30:00 mac-desktop kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jun 06 21:30:00 mac-desktop kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
Jun 06 21:30:00 mac-desktop kernel: percpu: Embedded 36 pages/cpu @ffff94ae6ec00000 s107992 r8192 d31272 u262144
Jun 06 21:30:00 mac-desktop kernel: pcpu-alloc: s107992 r8192 d31272 u262144 alloc=1*2097152
Jun 06 21:30:00 mac-desktop kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jun 06 21:30:00 mac-desktop kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4124090
Jun 06 21:30:00 mac-desktop kernel: Policy zone: Normal
Jun 06 21:30:00 mac-desktop kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.10.0-21-generic root=UUID=ee19b357-2138-4fd1-9697-e33ef929942b ro quiet splash vt.handoff=7
Jun 06 21:30:00 mac-desktop kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun 06 21:30:00 mac-desktop kernel: AGP: Checking aperture...
Jun 06 21:30:00 mac-desktop kernel: AGP: No AGP bridge found
Jun 06 21:30:00 mac-desktop kernel: AGP: Node 0: aperture [bus addr 0x9c8c000000-0x9c8dffffff] (32MB)
Jun 06 21:30:00 mac-desktop kernel: Aperture beyond 4GB. Ignoring.
Jun 06 21:30:00 mac-desktop kernel: AGP: Your BIOS doesn't leave an aperture memory hole
Jun 06 21:30:00 mac-desktop kernel: AGP: Please enable the IOMMU option in the BIOS setup
Jun 06 21:30:00 mac-desktop kernel: AGP: This costs you 64MB of RAM
Jun 06 21:30:00 mac-desktop kernel: AGP: Mapping aperture over RAM [mem 0xc4000000-0xc7ffffff] (65536KB)
Jun 06 21:30:00 mac-desktop kernel: PM: Registered nosave memory: [mem 0xc4000000-0xc7ffffff]
Jun 06 21:30:00 mac-desktop kernel: Memory: 16300520K/16758300K available (9081K kernel code, 1666K rwdata, 3816K rodata, 2228K init, 2364K bss, 457780K reserved, 0K cma-reserved)
Jun 06 21:30:00 mac-desktop kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jun 06 21:30:00 mac-desktop kernel: Hierarchical RCU implementation.
Jun 06 21:30:00 mac-desktop kernel:         Build-time adjustment of leaf fanout to 64.
Jun 06 21:30:00 mac-desktop kernel:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
Jun 06 21:30:00 mac-desktop kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
Jun 06 21:30:00 mac-desktop kernel: NR_IRQS:524544 nr_irqs:488 16
Jun 06 21:30:00 mac-desktop kernel: spurious 8259A interrupt: IRQ7.
Jun 06 21:30:00 mac-desktop kernel: vt handoff: transparent VT on vt#7
Jun 06 21:30:00 mac-desktop kernel: Console: colour dummy device 80x25
Jun 06 21:30:00 mac-desktop kernel: console [tty0] enabled
Jun 06 21:30:00 mac-desktop kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Jun 06 21:30:00 mac-desktop kernel: hpet clockevent registered
Jun 06 21:30:00 mac-desktop kernel: tsc: Fast TSC calibration using PIT
Jun 06 21:30:00 mac-desktop kernel: tsc: Detected 3515.496 MHz processor
Jun 06 21:30:00 mac-desktop kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7030.99 BogoMIPS (lpj=14061984)
Jun 06 21:30:00 mac-desktop kernel: pid_max: default: 32768 minimum: 301
Jun 06 21:30:00 mac-desktop kernel: ACPI: Core revision 20160930
Jun 06 21:30:00 mac-desktop kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded
Jun 06 21:30:00 mac-desktop kernel: Security Framework initialized
Jun 06 21:30:00 mac-desktop kernel: Yama: becoming mindful.
Jun 06 21:30:00 mac-desktop kernel: AppArmor: AppArmor initialized
Jun 06 21:30:00 mac-desktop kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Jun 06 21:30:00 mac-desktop kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun 06 21:30:00 mac-desktop kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
Jun 06 21:30:00 mac-desktop kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
Jun 06 21:30:00 mac-desktop kernel: CPU: Physical Processor ID: 0
Jun 06 21:30:00 mac-desktop kernel: CPU: Processor Core ID: 0
Jun 06 21:30:00 mac-desktop kernel: mce: CPU supports 7 MCE banks
Jun 06 21:30:00 mac-desktop kernel: LVT offset 1 assigned for vector 0xf9
Jun 06 21:30:00 mac-desktop kernel: Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
Jun 06 21:30:00 mac-desktop kernel: Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
Jun 06 21:30:00 mac-desktop kernel: Freeing SMP alternatives memory: 32K
Jun 06 21:30:00 mac-desktop kernel: ftrace: allocating 34172 entries in 134 pages
Jun 06 21:30:00 mac-desktop kernel: smpboot: Max logical packages: 1
Jun 06 21:30:00 mac-desktop kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 06 21:30:00 mac-desktop kernel: smpboot: CPU0: AMD FX(tm)-8320 Eight-Core Processor (family: 0x15, model: 0x2, stepping: 0x0)
Jun 06 21:30:00 mac-desktop kernel: Performance Events: Fam15h core perfctr, AMD PMU driver.
Jun 06 21:30:00 mac-desktop kernel: ... version:                0
Jun 06 21:30:00 mac-desktop kernel: ... bit width:              48
Jun 06 21:30:00 mac-desktop kernel: ... generic registers:      6
Jun 06 21:30:00 mac-desktop kernel: ... value mask:             0000ffffffffffff
Jun 06 21:30:00 mac-desktop kernel: ... max period:             00007fffffffffff
Jun 06 21:30:00 mac-desktop kernel: ... fixed-purpose events:   0
Jun 06 21:30:00 mac-desktop kernel: ... event mask:             000000000000003f
Jun 06 21:30:00 mac-desktop kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun 06 21:30:00 mac-desktop kernel: smp: Bringing up secondary CPUs ...
Jun 06 21:30:00 mac-desktop kernel: x86: Booting SMP configuration:
Jun 06 21:30:00 mac-desktop kernel: .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
Jun 06 21:30:00 mac-desktop kernel: smp: Brought up 1 node, 8 CPUs
Jun 06 21:30:00 mac-desktop kernel: smpboot: Total of 8 processors activated (56247.93 BogoMIPS)
Jun 06 21:30:00 mac-desktop kernel: devtmpfs: initialized
Jun 06 21:30:00 mac-desktop kernel: x86/mm: Memory block size: 128MB
Jun 06 21:30:00 mac-desktop kernel: evm: security.selinux
Jun 06 21:30:00 mac-desktop kernel: evm: security.SMACK64
Jun 06 21:30:00 mac-desktop kernel: evm: security.SMACK64EXEC
Jun 06 21:30:00 mac-desktop kernel: evm: security.SMACK64TRANSMUTE
Jun 06 21:30:00 mac-desktop kernel: evm: security.SMACK64MMAP
Jun 06 21:30:00 mac-desktop kernel: evm: security.ima
Jun 06 21:30:00 mac-desktop kernel: evm: security.capability
Jun 06 21:30:00 mac-desktop kernel: PM: Registering ACPI NVS region [mem 0xcfdf0000-0xcfdf2fff] (12288 bytes)
Jun 06 21:30:00 mac-desktop kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jun 06 21:30:00 mac-desktop kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
Jun 06 21:30:00 mac-desktop kernel: pinctrl core: initialized pinctrl subsystem
Jun 06 21:30:00 mac-desktop kernel: RTC time: 19:29:55, date: 06/06/17
Jun 06 21:30:00 mac-desktop kernel: NET: Registered protocol family 16
Jun 06 21:30:00 mac-desktop kernel: cpuidle: using governor ladder
Jun 06 21:30:00 mac-desktop kernel: cpuidle: using governor menu
Jun 06 21:30:00 mac-desktop kernel: PCCT header not found.
Jun 06 21:30:00 mac-desktop kernel: ACPI: bus type PCI registered
Jun 06 21:30:00 mac-desktop kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 06 21:30:00 mac-desktop kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun 06 21:30:00 mac-desktop kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun 06 21:30:00 mac-desktop kernel: PCI: Using configuration type 1 for base access
Jun 06 21:30:00 mac-desktop kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Jun 06 21:30:00 mac-desktop kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun 06 21:30:00 mac-desktop kernel: ACPI: Added _OSI(Module Device)
Jun 06 21:30:00 mac-desktop kernel: ACPI: Added _OSI(Processor Device)
Jun 06 21:30:00 mac-desktop kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 06 21:30:00 mac-desktop kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 06 21:30:00 mac-desktop kernel: ACPI: Interpreter enabled
Jun 06 21:30:00 mac-desktop kernel: ACPI: (supports S0 S3 S4 S5)
Jun 06 21:30:00 mac-desktop kernel: ACPI: Using IOAPIC for interrupt routing
Jun 06 21:30:00 mac-desktop kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jun 06 21:30:00 mac-desktop kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun 06 21:30:00 mac-desktop kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Jun 06 21:30:00 mac-desktop kernel: PCI host bridge to bus 0000:00
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:00.0: [Firmware Bug]: reg 0x1c: invalid BAR (can't size)
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0: [1022:9603] type 01 class 0x060400
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0: [1022:9604] type 01 class 0x060400
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0: [1022:9606] type 01 class 0x060400
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:11.0: reg 0x10: [io  0xff00-0xff07]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:11.0: reg 0x14: [io  0xfe00-0xfe03]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:11.0: reg 0x18: [io  0xfd00-0xfd07]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:11.0: reg 0x1c: [io  0xfc00-0xfc03]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:11.0: reg 0x20: [io  0xfb00-0xfb0f]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:11.0: reg 0x24: [mem 0xfe02f000-0xfe02f3ff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.0: reg 0x10: [mem 0xfe02e000-0xfe02efff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.0: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.1: reg 0x10: [mem 0xfe02d000-0xfe02dfff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.1: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.2: reg 0x10: [mem 0xfe02c000-0xfe02c0ff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.2: supports D1 D2
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:12.2: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.0: reg 0x10: [mem 0xfe02b000-0xfe02bfff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.0: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.1: reg 0x10: [mem 0xfe02a000-0xfe02afff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.1: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.2: reg 0x10: [mem 0xfe029000-0xfe0290ff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.2: supports D1 D2
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:13.2: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: reg 0x10: [io  0x0000-0x0007]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: reg 0x14: [io  0x0000-0x0003]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: reg 0x18: [io  0x0000-0x0007]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: reg 0x1c: [io  0x0000-0x0003]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: reg 0x20: [io  0xfa00-0xfa0f]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.2: reg 0x10: [mem 0xfe024000-0xfe027fff 64bit]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.2: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.5: reg 0x10: [mem 0xfe028000-0xfe028fff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.5: System wakeup disabled by ACPI
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:18.0: [1022:1600] type 00 class 0x060000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:18.1: [1022:1601] type 00 class 0x060000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:18.2: [1022:1602] type 00 class 0x060000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:18.3: [1022:1603] type 00 class 0x060000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:18.4: [1022:1604] type 00 class 0x060000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:18.5: [1022:1605] type 00 class 0x060000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: [1002:6779] type 00 class 0x030000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: reg 0x18: [mem 0xfdec0000-0xfdedffff 64bit]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: reg 0x20: [io  0xee00-0xeeff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: supports D1 D2
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.1: [1002:aa98] type 00 class 0x040300
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.1: reg 0x10: [mem 0xfdefc000-0xfdefffff 64bit]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.1: supports D1 D2
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0:   bridge window [io  0xe000-0xefff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0:   bridge window [mem 0xfde00000-0xfdefffff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:02:00.0: [1106:3483] type 00 class 0x0c0330
Jun 06 21:30:00 mac-desktop kernel: pci 0000:02:00.0: reg 0x10: [mem 0xfddff000-0xfddfffff 64bit]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0:   bridge window [mem 0xfdc00000-0xfdcfffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
Jun 06 21:30:00 mac-desktop kernel: pci 0000:03:00.0: reg 0x10: [io  0xce00-0xceff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:03:00.0: reg 0x18: [mem 0xfd9ff000-0xfd9fffff 64bit]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:03:00.0: reg 0x20: [mem 0xfdffc000-0xfdffffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:03:00.0: supports D1 D2
Jun 06 21:30:00 mac-desktop kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0: PCI bridge to [bus 03]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0:   bridge window [io  0xc000-0xcfff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0:   bridge window [mem 0xfd900000-0xfd9fffff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [io  0xb000-0xbfff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [mem 0xfdb00000-0xfdbfffff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [mem 0xfda00000-0xfdafffff pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [mem 0xd0000000-0xfebfffff window] (subtractive decode)
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
Jun 06 21:30:00 mac-desktop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
Jun 06 21:30:00 mac-desktop kernel: SCSI subsystem initialized
Jun 06 21:30:00 mac-desktop kernel: libata version 3.00 loaded.
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Jun 06 21:30:00 mac-desktop kernel: vgaarb: loaded
Jun 06 21:30:00 mac-desktop kernel: ACPI: bus type USB registered
Jun 06 21:30:00 mac-desktop kernel: usbcore: registered new interface driver usbfs
Jun 06 21:30:00 mac-desktop kernel: usbcore: registered new interface driver hub
Jun 06 21:30:00 mac-desktop kernel: usbcore: registered new device driver usb
Jun 06 21:30:00 mac-desktop kernel: PCI: Using ACPI for IRQ routing
Jun 06 21:30:00 mac-desktop kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 06 21:30:00 mac-desktop kernel: e820: reserve RAM buffer [mem 0x00098000-0x0009ffff]
Jun 06 21:30:00 mac-desktop kernel: e820: reserve RAM buffer [mem 0xcfdf0000-0xcfffffff]
Jun 06 21:30:00 mac-desktop kernel: e820: reserve RAM buffer [mem 0x42f000000-0x42fffffff]
Jun 06 21:30:00 mac-desktop kernel: NetLabel: Initializing
Jun 06 21:30:00 mac-desktop kernel: NetLabel:  domain hash size = 128
Jun 06 21:30:00 mac-desktop kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 06 21:30:00 mac-desktop kernel: NetLabel:  unlabeled traffic allowed by default
Jun 06 21:30:00 mac-desktop kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Jun 06 21:30:00 mac-desktop kernel: hpet0: 4 comparators, 32-bit 14.318180 MHz counter
Jun 06 21:30:00 mac-desktop kernel: clocksource: Switched to clocksource hpet
Jun 06 21:30:00 mac-desktop kernel: VFS: Disk quotas dquot_6.6.0
Jun 06 21:30:00 mac-desktop kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 06 21:30:00 mac-desktop kernel: AppArmor: AppArmor Filesystem Enabled
Jun 06 21:30:00 mac-desktop kernel: pnp: PnP ACPI init
Jun 06 21:30:00 mac-desktop kernel: system 00:00: [io  0x04d0-0x04d1] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:00: [io  0x0220-0x0225] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:00: [io  0x0290-0x0294] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 06 21:30:00 mac-desktop kernel: pnp 00:01: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:01:00.0 BAR 6 [mem 0x00000000-0x0001ffff pref]
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x4100-0x411f] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0228-0x022f] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x040b] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x04d6] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0c00-0x0c01] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0c14] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0c50-0x0c52] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0c6c-0x0c6d] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0c6f] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0cd0-0x0cd1] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0cd2-0x0cd3] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0cd4-0x0cdf] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x4000-0x40fe] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x4210-0x4217] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0b00-0x0b0f] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0b10-0x0b1f] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [io  0x0b20-0x0b3f] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: [mem 0xfee00400-0xfee00fff window] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 06 21:30:00 mac-desktop kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun 06 21:30:00 mac-desktop kernel: system 00:03: [mem 0xe0000000-0xefffffff] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0x000d5e00-0x000d7fff] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0x000f0000-0x000f7fff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0x000f8000-0x000fbfff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0x000fc000-0x000fffff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0xcfdf0000-0xcfdfffff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0xffff0000-0xffffffff] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0x00000000-0x0009ffff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0x00100000-0xcfdeffff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0xcfe00000-0xcfefffff] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0xcff00000-0xcfffffff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0xfee00000-0xfee00fff] could not be reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: [mem 0xfff80000-0xfffeffff] has been reserved
Jun 06 21:30:00 mac-desktop kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c01 (active)
Jun 06 21:30:00 mac-desktop kernel: pnp: PnP ACPI: found 5 devices
Jun 06 21:30:00 mac-desktop kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xfde00000-0xfde1ffff pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0:   bridge window [io  0xe000-0xefff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0:   bridge window [mem 0xfde00000-0xfdefffff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:02.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:04.0:   bridge window [mem 0xfdc00000-0xfdcfffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0: PCI bridge to [bus 03]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0:   bridge window [io  0xc000-0xcfff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0:   bridge window [mem 0xfd900000-0xfd9fffff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4: PCI bridge to [bus 04]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [io  0xb000-0xbfff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [mem 0xfdb00000-0xfdbfffff]
Jun 06 21:30:00 mac-desktop kernel: pci 0000:00:14.4:   bridge window [mem 0xfda00000-0xfdafffff pref]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:00: resource 8 [mem 0xd0000000-0xfebfffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:01: resource 1 [mem 0xfde00000-0xfdefffff]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:02: resource 0 [io  0xd000-0xdfff]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:02: resource 1 [mem 0xfdd00000-0xfddfffff]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:02: resource 2 [mem 0xfdc00000-0xfdcfffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:03: resource 1 [mem 0xfd900000-0xfd9fffff]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:03: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:04: resource 0 [io  0xb000-0xbfff]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:04: resource 1 [mem 0xfdb00000-0xfdbfffff]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:04: resource 2 [mem 0xfda00000-0xfdafffff pref]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:04: resource 7 [mem 0x000c0000-0x000dffff window]
Jun 06 21:30:00 mac-desktop kernel: pci_bus 0000:04: resource 8 [mem 0xd0000000-0xfebfffff window]
Jun 06 21:30:00 mac-desktop kernel: NET: Registered protocol family 2
Jun 06 21:30:00 mac-desktop kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Jun 06 21:30:00 mac-desktop kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun 06 21:30:00 mac-desktop kernel: TCP: Hash tables configured (established 131072 bind 65536)
Jun 06 21:30:00 mac-desktop kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes)
Jun 06 21:30:00 mac-desktop kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
Jun 06 21:30:00 mac-desktop kernel: NET: Registered protocol family 1
Jun 06 21:30:00 mac-desktop kernel: pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jun 06 21:30:00 mac-desktop kernel: PCI: CLS 64 bytes, default 64
Jun 06 21:30:00 mac-desktop kernel: Unpacking initramfs...
Jun 06 21:30:00 mac-desktop kernel: Freeing initrd memory: 41984K
Jun 06 21:30:00 mac-desktop kernel: PCI-DMA: Disabling AGP.
Jun 06 21:30:00 mac-desktop kernel: PCI-DMA: aperture base @ c4000000 size 65536 KB
Jun 06 21:30:00 mac-desktop kernel: PCI-DMA: using GART IOMMU.
Jun 06 21:30:00 mac-desktop kernel: PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
Jun 06 21:30:00 mac-desktop kernel: perf: AMD NB counters detected
Jun 06 21:30:00 mac-desktop kernel: LVT offset 0 assigned for vector 0x400
Jun 06 21:30:00 mac-desktop kernel: perf: AMD IBS detected (0x000000ff)
Jun 06 21:30:00 mac-desktop kernel: Scanning for low memory corruption every 60 seconds
Jun 06 21:30:00 mac-desktop kernel: audit: initializing netlink subsys (disabled)
Jun 06 21:30:00 mac-desktop kernel: audit: type=2000 audit(1496777394.228:1): initialized
Jun 06 21:30:00 mac-desktop kernel: Initialise system trusted keyrings
Jun 06 21:30:00 mac-desktop kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
Jun 06 21:30:00 mac-desktop kernel: zbud: loaded
Jun 06 21:30:00 mac-desktop kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jun 06 21:30:00 mac-desktop kernel: fuse init (API version 7.26)
Jun 06 21:30:00 mac-desktop kernel: Key type asymmetric registered
Jun 06 21:30:00 mac-desktop kernel: Asymmetric key parser 'x509' registered
Jun 06 21:30:00 mac-desktop kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
Jun 06 21:30:00 mac-desktop kernel: io scheduler noop registered
Jun 06 21:30:00 mac-desktop kernel: io scheduler deadline registered
Jun 06 21:30:00 mac-desktop kernel: io scheduler cfq registered (default)
Jun 06 21:30:00 mac-desktop kernel: vesafb: mode is 1400x1050x32, linelength=5632, pages=0
Jun 06 21:30:00 mac-desktop kernel: vesafb: scrolling: redraw
Jun 06 21:30:00 mac-desktop kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Jun 06 21:30:00 mac-desktop kernel: vesafb: framebuffer at 0xd0000000, mapped to 0xffffa60e02800000, using 5824k, total 5824k
Jun 06 21:30:00 mac-desktop kernel: Console: switching to colour frame buffer device 175x65
Jun 06 21:30:00 mac-desktop kernel: fb0: VESA VGA frame buffer device
Jun 06 21:30:00 mac-desktop kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun 06 21:30:00 mac-desktop kernel: ACPI: Power Button [PWRB]
Jun 06 21:30:00 mac-desktop kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Jun 06 21:30:00 mac-desktop kernel: ACPI: Power Button [PWRF]
Jun 06 21:30:00 mac-desktop kernel: GHES: HEST is not enabled!
Jun 06 21:30:00 mac-desktop kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun 06 21:30:00 mac-desktop kernel: Linux agpgart interface v0.103
Jun 06 21:30:00 mac-desktop kernel: loop: module loaded
Jun 06 21:30:00 mac-desktop kernel: libphy: Fixed MDIO Bus: probed
Jun 06 21:30:00 mac-desktop kernel: tun: Universal TUN/TAP device driver, 1.6
Jun 06 21:30:00 mac-desktop kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun 06 21:30:00 mac-desktop kernel: PPP generic driver version 2.4.2
Jun 06 21:30:00 mac-desktop kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun 06 21:30:00 mac-desktop kernel: ehci-pci: EHCI PCI platform driver
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:12.2: EHCI Host Controller
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:12.2: debug port 1
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:12.2: irq 17, io mem 0xfe02c000
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
Jun 06 21:30:00 mac-desktop kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun 06 21:30:00 mac-desktop kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb1: Product: EHCI Host Controller
Jun 06 21:30:00 mac-desktop kernel: usb usb1: Manufacturer: Linux 4.10.0-21-generic ehci_hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb1: SerialNumber: 0000:00:12.2
Jun 06 21:30:00 mac-desktop kernel: hub 1-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 1-0:1.0: 6 ports detected
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:13.2: EHCI Host Controller
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:13.2: debug port 1
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:13.2: irq 19, io mem 0xfe029000
Jun 06 21:30:00 mac-desktop kernel: ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
Jun 06 21:30:00 mac-desktop kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun 06 21:30:00 mac-desktop kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb2: Product: EHCI Host Controller
Jun 06 21:30:00 mac-desktop kernel: usb usb2: Manufacturer: Linux 4.10.0-21-generic ehci_hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb2: SerialNumber: 0000:00:13.2
Jun 06 21:30:00 mac-desktop kernel: hub 2-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 2-0:1.0: 6 ports detected
Jun 06 21:30:00 mac-desktop kernel: ehci-platform: EHCI generic platform driver
Jun 06 21:30:00 mac-desktop kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun 06 21:30:00 mac-desktop kernel: ohci-pci: OHCI PCI platform driver
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:12.0: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:12.0: irq 16, io mem 0xfe02e000
Jun 06 21:30:00 mac-desktop kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jun 06 21:30:00 mac-desktop kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb3: Product: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: usb usb3: Manufacturer: Linux 4.10.0-21-generic ohci_hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb3: SerialNumber: 0000:00:12.0
Jun 06 21:30:00 mac-desktop kernel: hub 3-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 3-0:1.0: 3 ports detected
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:12.1: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:12.1: irq 16, io mem 0xfe02d000
Jun 06 21:30:00 mac-desktop kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jun 06 21:30:00 mac-desktop kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb4: Product: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: usb usb4: Manufacturer: Linux 4.10.0-21-generic ohci_hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb4: SerialNumber: 0000:00:12.1
Jun 06 21:30:00 mac-desktop kernel: hub 4-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 4-0:1.0: 3 ports detected
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:13.0: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:13.0: irq 18, io mem 0xfe02b000
Jun 06 21:30:00 mac-desktop kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
Jun 06 21:30:00 mac-desktop kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb5: Product: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: usb usb5: Manufacturer: Linux 4.10.0-21-generic ohci_hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb5: SerialNumber: 0000:00:13.0
Jun 06 21:30:00 mac-desktop kernel: hub 5-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 5-0:1.0: 3 ports detected
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:13.1: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:13.1: irq 18, io mem 0xfe02a000
Jun 06 21:30:00 mac-desktop kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
Jun 06 21:30:00 mac-desktop kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb6: Product: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: usb usb6: Manufacturer: Linux 4.10.0-21-generic ohci_hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb6: SerialNumber: 0000:00:13.1
Jun 06 21:30:00 mac-desktop kernel: hub 6-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 6-0:1.0: 3 ports detected
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:14.5: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
Jun 06 21:30:00 mac-desktop kernel: ohci-pci 0000:00:14.5: irq 18, io mem 0xfe028000
Jun 06 21:30:00 mac-desktop kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
Jun 06 21:30:00 mac-desktop kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb7: Product: OHCI PCI host controller
Jun 06 21:30:00 mac-desktop kernel: usb usb7: Manufacturer: Linux 4.10.0-21-generic ohci_hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb7: SerialNumber: 0000:00:14.5
Jun 06 21:30:00 mac-desktop kernel: hub 7-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 7-0:1.0: 2 ports detected
Jun 06 21:30:00 mac-desktop kernel: ohci-platform: OHCI generic platform driver
Jun 06 21:30:00 mac-desktop kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jun 06 21:30:00 mac-desktop kernel: xhci_hcd 0000:02:00.0: xHCI Host Controller
Jun 06 21:30:00 mac-desktop kernel: xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 8
Jun 06 21:30:00 mac-desktop kernel: xhci_hcd 0000:02:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x00000090
Jun 06 21:30:00 mac-desktop kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0002
Jun 06 21:30:00 mac-desktop kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb8: Product: xHCI Host Controller
Jun 06 21:30:00 mac-desktop kernel: usb usb8: Manufacturer: Linux 4.10.0-21-generic xhci-hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb8: SerialNumber: 0000:02:00.0
Jun 06 21:30:00 mac-desktop kernel: hub 8-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 8-0:1.0: 1 port detected
Jun 06 21:30:00 mac-desktop kernel: xhci_hcd 0000:02:00.0: xHCI Host Controller
Jun 06 21:30:00 mac-desktop kernel: xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 9
Jun 06 21:30:00 mac-desktop kernel: usb usb9: We don't know the algorithms for LPM for this host, disabling LPM.
Jun 06 21:30:00 mac-desktop kernel: usb usb9: New USB device found, idVendor=1d6b, idProduct=0003
Jun 06 21:30:00 mac-desktop kernel: usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 06 21:30:00 mac-desktop kernel: usb usb9: Product: xHCI Host Controller
Jun 06 21:30:00 mac-desktop kernel: usb usb9: Manufacturer: Linux 4.10.0-21-generic xhci-hcd
Jun 06 21:30:00 mac-desktop kernel: usb usb9: SerialNumber: 0000:02:00.0
Jun 06 21:30:00 mac-desktop kernel: hub 9-0:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 9-0:1.0: 4 ports detected
Jun 06 21:30:00 mac-desktop kernel: i8042: PNP: No PS/2 controller found.
Jun 06 21:30:00 mac-desktop kernel: i8042: Probing ports directly.
Jun 06 21:30:00 mac-desktop kernel: i8042: Failed to disable AUX port, but continuing anyway... Is this a SiS?
Jun 06 21:30:00 mac-desktop kernel: i8042: If AUX port is really absent please use the 'i8042.noaux' option
Jun 06 21:30:00 mac-desktop kernel: usb 2-4: new high-speed USB device number 2 using ehci-pci
Jun 06 21:30:00 mac-desktop kernel: usb 2-4: New USB device found, idVendor=05e3, idProduct=0716
Jun 06 21:30:00 mac-desktop kernel: usb 2-4: New USB device strings: Mfr=0, Product=1, SerialNumber=2
Jun 06 21:30:00 mac-desktop kernel: usb 2-4: Product: USB Storage
Jun 06 21:30:00 mac-desktop kernel: usb 2-4: SerialNumber: 000000009744
Jun 06 21:30:00 mac-desktop kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 06 21:30:00 mac-desktop kernel: mousedev: PS/2 mouse device common for all mice
Jun 06 21:30:00 mac-desktop kernel: rtc_cmos 00:02: RTC can wake from S4
Jun 06 21:30:00 mac-desktop kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
Jun 06 21:30:00 mac-desktop kernel: rtc_cmos 00:02: alarms up to one month, 242 bytes nvram, hpet irqs
Jun 06 21:30:00 mac-desktop kernel: i2c /dev entries driver
Jun 06 21:30:00 mac-desktop kernel: device-mapper: uevent: version 1.0.3
Jun 06 21:30:00 mac-desktop kernel: device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
Jun 06 21:30:00 mac-desktop kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 06 21:30:00 mac-desktop kernel: NET: Registered protocol family 10
Jun 06 21:30:00 mac-desktop kernel: Segment Routing with IPv6
Jun 06 21:30:00 mac-desktop kernel: NET: Registered protocol family 17
Jun 06 21:30:00 mac-desktop kernel: Key type dns_resolver registered
Jun 06 21:30:00 mac-desktop kernel: microcode: microcode updated early to new patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: CPU0: patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: CPU1: patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: CPU2: patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: CPU3: patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: CPU4: patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: CPU5: patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: CPU6: patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: CPU7: patch_level=0x0600084f
Jun 06 21:30:00 mac-desktop kernel: microcode: Microcode Update Driver: v2.2.
Jun 06 21:30:00 mac-desktop kernel: registered taskstats version 1
Jun 06 21:30:00 mac-desktop kernel: Loading compiled-in X.509 certificates
Jun 06 21:30:00 mac-desktop kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 076916404334531687c024ac374ddee3531ea9b2'
Jun 06 21:30:00 mac-desktop kernel: zswap: loaded using pool lzo/zbud
Jun 06 21:30:00 mac-desktop kernel: usb 3-3: new full-speed USB device number 2 using ohci-pci
Jun 06 21:30:00 mac-desktop kernel: Key type big_key registered
Jun 06 21:30:00 mac-desktop kernel: Key type trusted registered
Jun 06 21:30:00 mac-desktop kernel: Key type encrypted registered
Jun 06 21:30:00 mac-desktop kernel: AppArmor: AppArmor sha1 policy hashing enabled
Jun 06 21:30:00 mac-desktop kernel: ima: No TPM chip found, activating TPM-bypass! (rc=-19)
Jun 06 21:30:00 mac-desktop kernel: evm: HMAC attrs: 0x1
Jun 06 21:30:00 mac-desktop kernel:   Magic number: 5:392:495
Jun 06 21:30:00 mac-desktop kernel: rtc_cmos 00:02: setting system clock to 2017-06-06 19:29:56 UTC (1496777396)
Jun 06 21:30:00 mac-desktop kernel: acpi_cpufreq: overriding BIOS provided _PSD data
Jun 06 21:30:00 mac-desktop kernel: BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jun 06 21:30:00 mac-desktop kernel: EDD information not available.
Jun 06 21:30:00 mac-desktop kernel: PM: Hibernation image not present or could not be loaded.
Jun 06 21:30:00 mac-desktop kernel: Freeing unused kernel memory: 2228K
Jun 06 21:30:00 mac-desktop kernel: Write protecting the kernel read-only data: 14336k
Jun 06 21:30:00 mac-desktop kernel: Freeing unused kernel memory: 1144K
Jun 06 21:30:00 mac-desktop kernel: Freeing unused kernel memory: 280K
Jun 06 21:30:00 mac-desktop kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 06 21:30:00 mac-desktop kernel: usb 8-1: new high-speed USB device number 2 using xhci_hcd
Jun 06 21:30:00 mac-desktop kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: udevadm: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: udevadm: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: udevadm: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: udevadm: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: udevadm: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: random: udevadm: uninitialized urandom read (16 bytes read)
Jun 06 21:30:00 mac-desktop kernel: FUJITSU Extended Socket Network Device Driver - version 1.2 - Copyright (c) 2015 FUJITSU LIMITED
Jun 06 21:30:00 mac-desktop kernel: wmi: Mapper loaded
Jun 06 21:30:00 mac-desktop kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Jun 06 21:30:00 mac-desktop kernel: r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
Jun 06 21:30:00 mac-desktop kernel: ahci 0000:00:11.0: version 3.0
Jun 06 21:30:00 mac-desktop kernel: ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
Jun 06 21:30:00 mac-desktop kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
Jun 06 21:30:00 mac-desktop kernel: scsi host0: ahci
Jun 06 21:30:00 mac-desktop kernel: scsi host1: ahci
Jun 06 21:30:00 mac-desktop kernel: [drm] Initialized
Jun 06 21:30:00 mac-desktop kernel: scsi host2: ahci
Jun 06 21:30:00 mac-desktop kernel: scsi host3: ahci
Jun 06 21:30:00 mac-desktop kernel: scsi host4: ahci
Jun 06 21:30:00 mac-desktop kernel: usb-storage 2-4:1.0: USB Mass Storage device detected
Jun 06 21:30:00 mac-desktop kernel: scsi host5: usb-storage 2-4:1.0
Jun 06 21:30:00 mac-desktop kernel: usbcore: registered new interface driver usb-storage
Jun 06 21:30:00 mac-desktop kernel: scsi host6: ahci
Jun 06 21:30:00 mac-desktop kernel: ata1: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
Jun 06 21:30:00 mac-desktop kernel: ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
Jun 06 21:30:00 mac-desktop kernel: ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
Jun 06 21:30:00 mac-desktop kernel: ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
Jun 06 21:30:00 mac-desktop kernel: ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
Jun 06 21:30:00 mac-desktop kernel: ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
Jun 06 21:30:00 mac-desktop kernel: scsi host7: pata_atiixp
Jun 06 21:30:00 mac-desktop kernel: scsi host8: pata_atiixp
Jun 06 21:30:00 mac-desktop kernel: ata7: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
Jun 06 21:30:00 mac-desktop kernel: ata8: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
Jun 06 21:30:00 mac-desktop kernel: usbcore: registered new interface driver uas
Jun 06 21:30:00 mac-desktop kernel: r8169 0000:03:00.0 eth0: RTL8168g/8111g at 0xffffa60e018b1000, 1c:1b:0d:a2:69:13, XID 0c000800 IRQ 28
Jun 06 21:30:00 mac-desktop kernel: r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jun 06 21:30:00 mac-desktop kernel: [drm] radeon kernel modesetting enabled.
Jun 06 21:30:00 mac-desktop kernel: r8169 0000:03:00.0 enp3s0: renamed from eth0
Jun 06 21:30:00 mac-desktop kernel: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Jun 06 21:30:00 mac-desktop kernel: AMD IOMMUv2 functionality not available on this system
Jun 06 21:30:00 mac-desktop kernel: CRAT table not found
Jun 06 21:30:00 mac-desktop kernel: Finished initializing topology ret=0
Jun 06 21:30:00 mac-desktop kernel: kfd kfd: Initialized module
Jun 06 21:30:00 mac-desktop kernel: checking generic (d0000000 5b0000) vs hw (d0000000 10000000)
Jun 06 21:30:00 mac-desktop kernel: fb: switching to radeondrmfb from VESA VGA
Jun 06 21:30:00 mac-desktop kernel: Console: switching to colour dummy device 80x25
Jun 06 21:30:00 mac-desktop kernel: [drm] initializing kernel modesetting (CAICOS 0x1002:0x6779 0x1787:0x3000 0x00).
Jun 06 21:30:00 mac-desktop kernel: [drm] register mmio base: 0xFDEC0000
Jun 06 21:30:00 mac-desktop kernel: [drm] register mmio size: 131072
Jun 06 21:30:00 mac-desktop kernel: ATOM BIOS: C26401
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
Jun 06 21:30:00 mac-desktop kernel: [drm] Detected VRAM RAM=1024M, BAR=256M
Jun 06 21:30:00 mac-desktop kernel: [drm] RAM width 64bits DDR
Jun 06 21:30:00 mac-desktop kernel: [TTM] Zone  kernel: Available graphics memory: 8206070 kiB
Jun 06 21:30:00 mac-desktop kernel: [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
Jun 06 21:30:00 mac-desktop kernel: [TTM] Initializing pool allocator
Jun 06 21:30:00 mac-desktop kernel: [TTM] Initializing DMA pool allocator
Jun 06 21:30:00 mac-desktop kernel: [drm] radeon: 1024M of VRAM memory ready
Jun 06 21:30:00 mac-desktop kernel: [drm] radeon: 1024M of GTT memory ready.
Jun 06 21:30:00 mac-desktop kernel: [drm] Loading CAICOS Microcode
Jun 06 21:30:00 mac-desktop kernel: [drm] Internal thermal controller with fan control
Jun 06 21:30:00 mac-desktop kernel: [drm] radeon: dpm initialized
Jun 06 21:30:00 mac-desktop kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
Jun 06 21:30:00 mac-desktop kernel: [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
Jun 06 21:30:00 mac-desktop kernel: [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: WB enabled
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff94ae52424c00
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff94ae52424c0c
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xffffa60e02632118
Jun 06 21:30:00 mac-desktop kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jun 06 21:30:00 mac-desktop kernel: [drm] Driver supports precise vblank timestamp query.
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: radeon: MSI limited to 32-bit
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: radeon: using MSI.
Jun 06 21:30:00 mac-desktop kernel: [drm] radeon: irq initialized.
Jun 06 21:30:00 mac-desktop kernel: [drm] ring test on 0 succeeded in 2 usecs
Jun 06 21:30:00 mac-desktop kernel: [drm] ring test on 3 succeeded in 7 usecs
Jun 06 21:30:00 mac-desktop kernel: usb 8-1: New USB device found, idVendor=2109, idProduct=3431
Jun 06 21:30:00 mac-desktop kernel: usb 8-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Jun 06 21:30:00 mac-desktop kernel: usb 8-1: Product: USB2.0 Hub
Jun 06 21:30:00 mac-desktop kernel: hub 8-1:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 8-1:1.0: 4 ports detected
Jun 06 21:30:00 mac-desktop kernel: usb 3-3: New USB device found, idVendor=046d, idProduct=c318
Jun 06 21:30:00 mac-desktop kernel: usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 06 21:30:00 mac-desktop kernel: usb 3-3: Product: Logitech Illuminated Keyboard
Jun 06 21:30:00 mac-desktop kernel: usb 3-3: Manufacturer: Logitech
Jun 06 21:30:00 mac-desktop kernel: hidraw: raw HID events driver (C) Jiri Kosina
Jun 06 21:30:00 mac-desktop kernel: usbcore: registered new interface driver usbhid
Jun 06 21:30:00 mac-desktop kernel: usbhid: USB HID core driver
Jun 06 21:30:00 mac-desktop kernel: input: Logitech Logitech Illuminated Keyboard as /devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.0/0003:046D:C318.0001/input/input3
Jun 06 21:30:00 mac-desktop kernel: hid-generic 0003:046D:C318.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech Logitech Illuminated Keyboard] on usb-0000:00:12.0-3/input0
Jun 06 21:30:00 mac-desktop kernel: input: Logitech Logitech Illuminated Keyboard as /devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.1/0003:046D:C318.0002/input/input4
Jun 06 21:30:00 mac-desktop kernel: [drm] ring test on 5 succeeded in 2 usecs
Jun 06 21:30:00 mac-desktop kernel: [drm] UVD initialized successfully.
Jun 06 21:30:00 mac-desktop kernel: [drm] ib test on ring 0 succeeded in 0 usecs
Jun 06 21:30:00 mac-desktop kernel: [drm] ib test on ring 3 succeeded in 0 usecs
Jun 06 21:30:00 mac-desktop kernel: hid-generic 0003:046D:C318.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech Logitech Illuminated Keyboard] on usb-0000:00:12.0-3/input1
Jun 06 21:30:00 mac-desktop kernel: tsc: Refined TSC clocksource calibration: 3515.550 MHz
Jun 06 21:30:00 mac-desktop kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x32acb271b6f, max_idle_ns: 440795329282 ns
Jun 06 21:30:00 mac-desktop kernel: ata3: SATA link down (SStatus 0 SControl 300)
Jun 06 21:30:00 mac-desktop kernel: ata5: SATA link down (SStatus 0 SControl 300)
Jun 06 21:30:00 mac-desktop kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun 06 21:30:00 mac-desktop kernel: ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun 06 21:30:00 mac-desktop kernel: ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun 06 21:30:00 mac-desktop kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun 06 21:30:00 mac-desktop kernel: ata1.00: ATA-11: TOSHIBA-TL100, SBFZ10.1, max UDMA/133
Jun 06 21:30:00 mac-desktop kernel: ata1.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
Jun 06 21:30:00 mac-desktop kernel: ata1.00: configured for UDMA/133
Jun 06 21:30:00 mac-desktop kernel: scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA-TL100    10.1 PQ: 0 ANSI: 5
Jun 06 21:30:00 mac-desktop kernel: ata2.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
Jun 06 21:30:00 mac-desktop kernel: ata2.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Jun 06 21:30:00 mac-desktop kernel: ata6.00: ATAPI: HL-DT-ST DVDRAM GH24NSD1, LB00, max UDMA/133
Jun 06 21:30:00 mac-desktop kernel: ata4.00: supports DRM functions and may not be fully accessible
Jun 06 21:30:00 mac-desktop kernel: ata2.00: configured for UDMA/133
Jun 06 21:30:00 mac-desktop kernel: ata4.00: disabling queued TRIM support
Jun 06 21:30:00 mac-desktop kernel: ata4.00: ATA-9: Samsung SSD 850 EVO 250GB, EMT02B6Q, max UDMA/133
Jun 06 21:30:00 mac-desktop kernel: ata4.00: 488397168 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
Jun 06 21:30:00 mac-desktop kernel: ata6.00: configured for UDMA/133
Jun 06 21:30:00 mac-desktop kernel: ata4.00: supports DRM functions and may not be fully accessible
Jun 06 21:30:00 mac-desktop kernel: ata4.00: disabling queued TRIM support
Jun 06 21:30:00 mac-desktop kernel: ata4.00: configured for UDMA/133
Jun 06 21:30:00 mac-desktop kernel: usb 1-4: new high-speed USB device number 3 using ehci-pci
Jun 06 21:30:00 mac-desktop kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun 06 21:30:00 mac-desktop kernel: sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
Jun 06 21:30:00 mac-desktop kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 06 21:30:00 mac-desktop kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 06 21:30:00 mac-desktop kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 06 21:30:00 mac-desktop kernel: scsi 1:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 A750 PQ: 0 ANSI: 5
Jun 06 21:30:00 mac-desktop kernel:  sda: sda1 sda2 sda3
Jun 06 21:30:00 mac-desktop kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 06 21:30:00 mac-desktop kernel: sd 1:0:0:0: Attached scsi generic sg1 type 0
Jun 06 21:30:00 mac-desktop kernel: sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Jun 06 21:30:00 mac-desktop kernel: sd 1:0:0:0: [sdb] 4096-byte physical blocks
Jun 06 21:30:00 mac-desktop kernel: sd 1:0:0:0: [sdb] Write Protect is off
Jun 06 21:30:00 mac-desktop kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Jun 06 21:30:00 mac-desktop kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 06 21:30:00 mac-desktop kernel: scsi 3:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
Jun 06 21:30:00 mac-desktop kernel: sd 3:0:0:0: Attached scsi generic sg2 type 0
Jun 06 21:30:00 mac-desktop kernel: sd 3:0:0:0: [sdc] 488397168 512-byte logical blocks: (250 GB/233 GiB)
Jun 06 21:30:00 mac-desktop kernel: sd 3:0:0:0: [sdc] Write Protect is off
Jun 06 21:30:00 mac-desktop kernel: sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
Jun 06 21:30:00 mac-desktop kernel: sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 06 21:30:00 mac-desktop kernel: scsi 6:0:0:0: CD-ROM            HL-DT-ST DVDRAM GH24NSD1  LB00 PQ: 0 ANSI: 5
Jun 06 21:30:00 mac-desktop kernel:  sdc: sdc1 sdc2
Jun 06 21:30:00 mac-desktop kernel: sd 3:0:0:0: [sdc] Attached SCSI disk
Jun 06 21:30:00 mac-desktop kernel:  sdb: sdb1
Jun 06 21:30:00 mac-desktop kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
Jun 06 21:30:00 mac-desktop kernel: sr 6:0:0:0: [sr0] scsi3-mmc drive: 48x/12x writer dvd-ram cd/rw xa/form2 cdda tray
Jun 06 21:30:00 mac-desktop kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jun 06 21:30:00 mac-desktop kernel: sr 6:0:0:0: Attached scsi CD-ROM sr0
Jun 06 21:30:00 mac-desktop kernel: sr 6:0:0:0: Attached scsi generic sg3 type 5
Jun 06 21:30:00 mac-desktop kernel: usb 1-4: New USB device found, idVendor=1a40, idProduct=0101
Jun 06 21:30:00 mac-desktop kernel: usb 1-4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Jun 06 21:30:00 mac-desktop kernel: usb 1-4: Product: USB 2.0 Hub [MTT]
Jun 06 21:30:00 mac-desktop kernel: hub 1-4:1.0: USB hub found
Jun 06 21:30:00 mac-desktop kernel: hub 1-4:1.0: 4 ports detected
Jun 06 21:30:00 mac-desktop kernel: [drm] ib test on ring 5 succeeded
Jun 06 21:30:00 mac-desktop kernel: [drm] Radeon Display Connectors
Jun 06 21:30:00 mac-desktop kernel: [drm] Connector 0:
Jun 06 21:30:00 mac-desktop kernel: [drm]   HDMI-A-1
Jun 06 21:30:00 mac-desktop kernel: [drm]   HPD2
Jun 06 21:30:00 mac-desktop kernel: [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
Jun 06 21:30:00 mac-desktop kernel: [drm]   Encoders:
Jun 06 21:30:00 mac-desktop kernel: [drm]     DFP1: INTERNAL_UNIPHY1
Jun 06 21:30:00 mac-desktop kernel: [drm] Connector 1:
Jun 06 21:30:00 mac-desktop kernel: [drm]   DVI-I-1
Jun 06 21:30:00 mac-desktop kernel: [drm]   HPD4
Jun 06 21:30:00 mac-desktop kernel: [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
Jun 06 21:30:00 mac-desktop kernel: [drm]   Encoders:
Jun 06 21:30:00 mac-desktop kernel: [drm]     DFP2: INTERNAL_UNIPHY
Jun 06 21:30:00 mac-desktop kernel: [drm] Connector 2:
Jun 06 21:30:00 mac-desktop kernel: [drm]   VGA-1
Jun 06 21:30:00 mac-desktop kernel: [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
Jun 06 21:30:00 mac-desktop kernel: [drm]   Encoders:
Jun 06 21:30:00 mac-desktop kernel: [drm]     CRT1: INTERNAL_KLDSCP_DAC1
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.3: new full-speed USB device number 4 using ehci-pci
Jun 06 21:30:00 mac-desktop kernel: scsi 5:0:0:0: Direct-Access     Generic  STORAGE DEVICE   9744 PQ: 0 ANSI: 0
Jun 06 21:30:00 mac-desktop kernel: scsi 5:0:0:1: Direct-Access     Generic  STORAGE DEVICE   9744 PQ: 0 ANSI: 0
Jun 06 21:30:00 mac-desktop kernel: scsi 5:0:0:2: Direct-Access     Generic  STORAGE DEVICE   9744 PQ: 0 ANSI: 0
Jun 06 21:30:00 mac-desktop kernel: scsi 5:0:0:3: Direct-Access     Generic  STORAGE DEVICE   9744 PQ: 0 ANSI: 0
Jun 06 21:30:00 mac-desktop kernel: scsi 5:0:0:4: Direct-Access     Generic  STORAGE DEVICE   9744 PQ: 0 ANSI: 0
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:0: Attached scsi generic sg4 type 0
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:1: Attached scsi generic sg5 type 0
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:2: Attached scsi generic sg6 type 0
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:3: Attached scsi generic sg7 type 0
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:4: Attached scsi generic sg8 type 0
Jun 06 21:30:00 mac-desktop kernel: [drm] fb mappable at 0xD0363000
Jun 06 21:30:00 mac-desktop kernel: [drm] vram apper at 0xD0000000
Jun 06 21:30:00 mac-desktop kernel: [drm] size 8294400
Jun 06 21:30:00 mac-desktop kernel: [drm] fb depth is 24
Jun 06 21:30:00 mac-desktop kernel: [drm]    pitch is 7680
Jun 06 21:30:00 mac-desktop kernel: fbcon: radeondrmfb (fb0) is primary device
Jun 06 21:30:00 mac-desktop kernel: Console: switching to colour frame buffer device 240x67
Jun 06 21:30:00 mac-desktop kernel: radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
Jun 06 21:30:00 mac-desktop kernel: random: fast init done
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:0: [sdd] Attached SCSI removable disk
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:1: [sde] Attached SCSI removable disk
Jun 06 21:30:00 mac-desktop kernel: [drm] Initialized radeon 2.49.0 20080528 for 0000:01:00.0 on minor 0
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:3: [sdg] Attached SCSI removable disk
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:2: [sdf] Attached SCSI removable disk
Jun 06 21:30:00 mac-desktop kernel: sd 5:0:0:4: [sdh] Attached SCSI removable disk
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.3: New USB device found, idVendor=046d, idProduct=c52b
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.3: Product: USB Receiver
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.3: Manufacturer: Logitech
Jun 06 21:30:00 mac-desktop kernel: logitech-djreceiver 0003:046D:C52B.0005: hiddev0,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:12.2-4.3/input2
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.4: new full-speed USB device number 5 using ehci-pci
Jun 06 21:30:00 mac-desktop kernel: input: Logitech M705 as /devices/pci0000:00/0000:00:12.2/usb1/1-4/1-4.3/1-4.3:1.2/0003:046D:C52B.0005/0003:046D:101B.0006/input/input5
Jun 06 21:30:00 mac-desktop kernel: logitech-hidpp-device 0003:046D:101B.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech M705] on usb-0000:00:12.2-4.3:1
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.4: New USB device found, idVendor=046d, idProduct=0a5b
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.4: New USB device strings: Mfr=3, Product=4, SerialNumber=0
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.4: Product: Logitech G933 Gaming Wireless Headset
Jun 06 21:30:00 mac-desktop kernel: usb 1-4.4: Manufacturer: Logitech
Jun 06 21:30:00 mac-desktop kernel: clocksource: Switched to clocksource tsc
Jun 06 21:30:00 mac-desktop kernel: input: Logitech Logitech G933 Gaming Wireless Headset as /devices/pci0000:00/0000:00:12.2/usb1/1-4/1-4.4/1-4.4:1.3/0003:046D:0A5B.0007/input/input6
Jun 06 21:30:00 mac-desktop kernel: hid-generic 0003:046D:0A5B.0007: input,hiddev0,hidraw4: USB HID v1.11 Device [Logitech Logitech G933 Gaming Wireless Headset] on usb-0000:00:12.2-4.4/input3
Jun 06 21:30:00 mac-desktop kernel: floppy0: no floppy controllers found
Jun 06 21:30:00 mac-desktop kernel: EXT4-fs (sdc2): mounted filesystem with ordered data mode. Opts: (null)
Jun 06 21:30:00 mac-desktop kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Jun 06 21:30:00 mac-desktop systemd[1]: systemd 232 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Jun 06 21:30:00 mac-desktop systemd[1]: Detected architecture x86-64.
Jun 06 21:30:00 mac-desktop systemd[1]: Set hostname to <mac-desktop>.
Jun 06 21:30:00 mac-desktop systemd[1]: Reached target User and Group Name Lookups.
Jun 06 21:30:00 mac-desktop systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Jun 06 21:30:00 mac-desktop systemd[1]: Listening on udev Control Socket.
Jun 06 21:30:00 mac-desktop systemd[1]: Listening on fsck to fsckd communication Socket.
Jun 06 21:30:00 mac-desktop systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jun 06 21:30:00 mac-desktop systemd[1]: Listening on Journal Socket.
Jun 06 21:30:00 mac-desktop systemd[1]: Listening on udev Kernel Socket.
Jun 06 21:30:00 mac-desktop kernel: lp: driver loaded but no devices found
Jun 06 21:30:00 mac-desktop kernel: ppdev: user-space parallel port driver
Jun 06 21:30:00 mac-desktop systemd-journald[382]: Journal started
-- Subject: The journal has been started
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- The system journal process has started up, opened the journal
-- files for writing and is now ready to process requests.
Jun 06 21:30:00 mac-desktop systemd-journald[382]: Runtime journal (/run/log/journal/03fd712555334ba3af7934d97058778c) is 8.0M, max 160.2M, 152.2M free.
-- Subject: Disk space used by the journal
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Runtime journal (/run/log/journal/03fd712555334ba3af7934d97058778c) is currently using 8.0M.
-- Maximum allowed usage is set to 160.2M.
-- Leaving at least 240.4M free (of currently available 1.5G of disk space).
-- Enforced usage limit is thus 160.2M, of which 152.2M are still available.
-- 
-- The limits controlling how much disk space is used by the journal may
-- be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
-- RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
-- /etc/systemd/journald.conf. See journald.conf(5) for details.
Jun 06 21:30:00 mac-desktop systemd-modules-load[374]: Inserted module 'lp'
Jun 06 21:30:00 mac-desktop systemd-modules-load[374]: Inserted module 'ppdev'
Jun 06 21:30:00 mac-desktop keyboard-setup.sh[372]:  * Setting up keyboard layout...
Jun 06 21:30:00 mac-desktop systemd-modules-load[374]: Inserted module 'parport_pc'
Jun 06 21:30:00 mac-desktop systemd[1]: Started udev Kernel Device Manager.
-- Subject: Unit systemd-udevd.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-udevd.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Starting Remount Root and Kernel File Systems...
-- Subject: Unit systemd-remount-fs.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-remount-fs.service has begun starting up.
Jun 06 21:30:00 mac-desktop kernel: EXT4-fs (sdc2): re-mounted. Opts: errors=remount-ro
Jun 06 21:30:00 mac-desktop systemd[1]: Started Remount Root and Kernel File Systems.
-- Subject: Unit systemd-remount-fs.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-remount-fs.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Starting Initial Check File System Quotas...
-- Subject: Unit quota.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit quota.service has begun starting up.
Jun 06 21:30:00 mac-desktop systemd[1]: Starting Flush Journal to Persistent Storage...
-- Subject: Unit systemd-journal-flush.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-journal-flush.service has begun starting up.
Jun 06 21:30:00 mac-desktop systemd[1]: Starting udev Coldplug all Devices...
-- Subject: Unit systemd-udev-trigger.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-udev-trigger.service has begun starting up.
Jun 06 21:30:00 mac-desktop systemd[1]: Starting Load/Save Random Seed...
-- Subject: Unit systemd-random-seed.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-random-seed.service has begun starting up.
Jun 06 21:30:00 mac-desktop systemd-journald[382]: Runtime journal (/run/log/journal/03fd712555334ba3af7934d97058778c) is 8.0M, max 160.2M, 152.2M free.
-- Subject: Disk space used by the journal
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Runtime journal (/run/log/journal/03fd712555334ba3af7934d97058778c) is currently using 8.0M.
-- Maximum allowed usage is set to 160.2M.
-- Leaving at least 240.4M free (of currently available 1.5G of disk space).
-- Enforced usage limit is thus 160.2M, of which 152.2M are still available.
-- 
-- The limits controlling how much disk space is used by the journal may
-- be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
-- RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
-- /etc/systemd/journald.conf. See journald.conf(5) for details.
Jun 06 21:30:00 mac-desktop systemd[1]: Started Load/Save Random Seed.
-- Subject: Unit systemd-random-seed.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-random-seed.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Started Flush Journal to Persistent Storage.
-- Subject: Unit systemd-journal-flush.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-journal-flush.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Reloading.
Jun 06 21:30:00 mac-desktop keyboard-setup.sh[372]:    ...done.
Jun 06 21:30:00 mac-desktop systemd[1]: Started Set the console keyboard layout.
-- Subject: Unit keyboard-setup.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit keyboard-setup.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Started udev Coldplug all Devices.
-- Subject: Unit systemd-udev-trigger.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-udev-trigger.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Reached target Local File Systems (Pre).
-- Subject: Unit local-fs-pre.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit local-fs-pre.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Starting Show Plymouth Boot Screen...
-- Subject: Unit plymouth-start.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit plymouth-start.service has begun starting up.
Jun 06 21:30:00 mac-desktop systemd[1]: Started Initial Check File System Quotas.
-- Subject: Unit quota.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit quota.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Started Show Plymouth Boot Screen.
-- Subject: Unit plymouth-start.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit plymouth-start.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Reached target Encrypted Volumes.
-- Subject: Unit cryptsetup.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit cryptsetup.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:00 mac-desktop systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
-- Subject: Unit systemd-ask-password-plymouth.path has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-ask-password-plymouth.path has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:30:26 mac-desktop kernel: random: crng init done
Jun 06 21:31:30 mac-desktop systemd[1]: dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.device: Job dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.device/start timed out.
Jun 06 21:31:30 mac-desktop systemd[1]: Timed out waiting for device dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.device.
-- Subject: Unit dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.device has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.device has failed.
-- 
-- The result is timeout.
Jun 06 21:31:30 mac-desktop systemd[1]: Dependency failed for /dev/disk/by-uuid/530e65e9-9a83-4107-8304-9e6cbf0cd993.
-- Subject: Unit dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.swap has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.swap has failed.
-- 
-- The result is dependency.
Jun 06 21:31:30 mac-desktop systemd[1]: Dependency failed for Swap.
-- Subject: Unit swap.target has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit swap.target has failed.
-- 
-- The result is dependency.
Jun 06 21:31:30 mac-desktop systemd[1]: swap.target: Job swap.target/start failed with result 'dependency'.
Jun 06 21:31:30 mac-desktop systemd[1]: dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.swap: Job dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.swap/start failed with result 'dependency'.
Jun 06 21:31:30 mac-desktop systemd[1]: dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.device: Job dev-disk-by\x2duuid-530e65e9\x2d9a83\x2d4107\x2d8304\x2d9e6cbf0cd993.device/start failed with result 'timeout'.
Jun 06 21:31:30 mac-desktop systemd[1]: dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.device: Job dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.device/start timed out.
Jun 06 21:31:30 mac-desktop systemd[1]: Timed out waiting for device dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.device.
-- Subject: Unit dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.device has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.device has failed.
-- 
-- The result is timeout.
Jun 06 21:31:30 mac-desktop systemd[1]: Dependency failed for /home/mac/datafiles.
-- Subject: Unit home-mac-datafiles.mount has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit home-mac-datafiles.mount has failed.
-- 
-- The result is dependency.
Jun 06 21:31:30 mac-desktop systemd[1]: Dependency failed for Local File Systems.
-- Subject: Unit local-fs.target has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit local-fs.target has failed.
-- 
-- The result is dependency.
Jun 06 21:31:30 mac-desktop systemd[1]: local-fs.target: Job local-fs.target/start failed with result 'dependency'.
Jun 06 21:31:30 mac-desktop systemd[1]: local-fs.target: Triggering OnFailure= dependencies.
Jun 06 21:31:30 mac-desktop systemd[1]: home-mac-datafiles.mount: Job home-mac-datafiles.mount/start failed with result 'dependency'.
Jun 06 21:31:30 mac-desktop systemd[1]: Dependency failed for File System Check on /dev/disk/by-uuid/5629d6c4-fa0c-4271-b324-285e2812cfb3.
-- Subject: Unit systemd-fsck@dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.service has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-fsck@dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.service has failed.
-- 
-- The result is dependency.
Jun 06 21:31:30 mac-desktop systemd[1]: systemd-fsck@dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.service: Job systemd-fsck@dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.service/start failed with result 'dependency'.
Jun 06 21:31:30 mac-desktop systemd[1]: dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.device: Job dev-disk-by\x2duuid-5629d6c4\x2dfa0c\x2d4271\x2db324\x2d285e2812cfb3.device/start failed with result 'timeout'.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Set console font and keymap...
-- Subject: Unit console-setup.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit console-setup.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Enable support for additional executable binary formats...
-- Subject: Unit binfmt-support.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit binfmt-support.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Reached target Timers.
-- Subject: Unit timers.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit timers.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Closed Syslog Socket.
-- Subject: Unit syslog.socket has finished shutting down
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit syslog.socket has finished shutting down.
Jun 06 21:31:30 mac-desktop systemd[1]: Reached target Login Prompts.
-- Subject: Unit getty.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit getty.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Stop ureadahead data collection 45s after completed startup.
-- Subject: Unit ureadahead-stop.timer has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit ureadahead-stop.timer has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Set console scheme...
-- Subject: Unit setvtrgb.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit setvtrgb.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Emergency Shell.
-- Subject: Unit emergency.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit emergency.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting AppArmor initialization...
-- Subject: Unit apparmor.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit apparmor.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Create Volatile Files and Directories...
-- Subject: Unit systemd-tmpfiles-setup.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-tmpfiles-setup.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
-- Subject: Unit plymouth-read-write.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit plymouth-read-write.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Reached target Emergency Mode.
-- Subject: Unit emergency.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit emergency.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Reached target Paths.
-- Subject: Unit paths.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit paths.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Reached target Sockets.
-- Subject: Unit sockets.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit sockets.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Set console font and keymap.
-- Subject: Unit console-setup.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit console-setup.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Set console scheme.
-- Subject: Unit setvtrgb.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit setvtrgb.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 514 (update-binfmts)
Jun 06 21:31:30 mac-desktop systemd[1]: Mounting Arbitrary Executable File Formats File System...
-- Subject: Unit proc-sys-fs-binfmt_misc.mount has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit proc-sys-fs-binfmt_misc.mount has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Created slice system-getty.slice.
-- Subject: Unit system-getty.slice has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit system-getty.slice has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd-tmpfiles[520]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Jun 06 21:31:30 mac-desktop systemd[1]: Mounted Arbitrary Executable File Formats File System.
-- Subject: Unit proc-sys-fs-binfmt_misc.mount has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit proc-sys-fs-binfmt_misc.mount has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Enable support for additional executable binary formats.
-- Subject: Unit binfmt-support.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit binfmt-support.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop apparmor[518]:  * Starting AppArmor profiles
Jun 06 21:31:30 mac-desktop systemd[1]: Started Create Volatile Files and Directories.
-- Subject: Unit systemd-tmpfiles-setup.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-tmpfiles-setup.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Update UTMP about System Boot/Shutdown...
-- Subject: Unit systemd-update-utmp.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-update-utmp.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Network Time Synchronization...
-- Subject: Unit systemd-timesyncd.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-timesyncd.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
-- Subject: Unit plymouth-read-write.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit plymouth-read-write.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Update UTMP about System Boot/Shutdown.
-- Subject: Unit systemd-update-utmp.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-update-utmp.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Update UTMP about System Runlevel Changes...
-- Subject: Unit systemd-update-utmp-runlevel.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-update-utmp-runlevel.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Update UTMP about System Runlevel Changes.
-- Subject: Unit systemd-update-utmp-runlevel.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-update-utmp-runlevel.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop apparmor[518]: Skipping profile in /etc/apparmor.d/disable: usr.bin.firefox
Jun 06 21:31:30 mac-desktop apparmor[518]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Jun 06 21:31:30 mac-desktop audit[592]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=592 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[590]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=590 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[588]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=588 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[588]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=588 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[595]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=595 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[586]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=586 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[586]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=586 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[586]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=586 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[586]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=586 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[593]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/mysqld-akonadi" pid=593 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[593]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/mysqld-akonadi///usr/sbin/mysqld" pid=593 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[591]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=591 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[591]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=591 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[591]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=591 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=592 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=590 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=588 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=588 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=595 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=586 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=586 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=586 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=586 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop kernel: audit: type=1400 audit(1496777490.373:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/mysqld-akonadi" pid=593 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[589]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/mission-control-5" pid=589 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[589]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/telepathy-*" pid=589 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[589]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/telepathy-*//pxgsettings" pid=589 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[589]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/telepathy-*//sanitized_helper" pid=589 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop audit[589]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/telepathy-ofono" pid=589 comm="apparmor_parser"
Jun 06 21:31:30 mac-desktop apparmor[518]:    ...done.
Jun 06 21:31:30 mac-desktop systemd[1]: Started AppArmor initialization.
-- Subject: Unit apparmor.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit apparmor.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Starting Raise network interfaces...
-- Subject: Unit networking.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit networking.service has begun starting up.
Jun 06 21:31:30 mac-desktop systemd[1]: Reloading.
Jun 06 21:31:30 mac-desktop systemd[1]: Reloading.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Network Time Synchronization.
-- Subject: Unit systemd-timesyncd.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit systemd-timesyncd.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Reached target System Time Synchronized.
-- Subject: Unit time-sync.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit time-sync.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Started Raise network interfaces.
-- Subject: Unit networking.service has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit networking.service has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Reached target Network.
-- Subject: Unit network.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit network.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Reached target Network is Online.
-- Subject: Unit network-online.target has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit network-online.target has finished starting up.
-- 
-- The start-up result is done.
Jun 06 21:31:30 mac-desktop systemd[1]: Startup finished in 5.488s (kernel) + 1min 30.399s (userspace) = 1min 35.887s.
-- Subject: System start-up is now complete
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- All system services necessary queued for starting at boot have been
-- successfully started. Note that this does not mean that the machine is
-- now idle as services might still be busy with completing start-up.
-- 
-- Kernel start-up required 5488764 microseconds.
-- 
-- Initial RAM disk start-up required INITRD_USEC microseconds.
-- 
-- Userspace start-up required 90399081 microseconds.
Jun 06 21:31:30 mac-desktop systemd[1]: Received SIGRTMIN+21 from PID 320 (plymouthd).