summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-dev/2012-April/016390.html
blob: 04edd4687edaa62640e0a2baee486276bd664ac8 (plain)
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
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
 <HEAD>
   <TITLE> [Mageia-dev] Broken database problem solved but not all well
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Broken%20database%20problem%20solved%20but%20not%20all%20well&In-Reply-To=%3C4F8D0C89.5080509%40kde.org%3E">
   <META NAME="robots" CONTENT="index,nofollow">
   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
   <LINK REL="Previous"  HREF="014352.html">
   <LINK REL="Next"  HREF="014441.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[Mageia-dev] Broken database problem solved but not all well</H1>
    <B>Anne Wilson</B> 
    <A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Broken%20database%20problem%20solved%20but%20not%20all%20well&In-Reply-To=%3C4F8D0C89.5080509%40kde.org%3E"
       TITLE="[Mageia-dev] Broken database problem solved but not all well">annew at kde.org
       </A><BR>
    <I>Tue Apr 17 08:24:55 CEST 2012</I>
    <P><UL>
        <LI>Previous message: <A HREF="014352.html">[Mageia-dev] Broken database problem solved but not all well
</A></li>
        <LI>Next message: <A HREF="014441.html">[Mageia-dev] Broken database problem
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#16390">[ date ]</a>
              <a href="thread.html#16390">[ thread ]</a>
              <a href="subject.html#16390">[ subject ]</a>
              <a href="author.html#16390">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>On 16/04/12 16:58, Colin Guthrie wrote:
&gt;<i> 'Twas brillig, and Anne Wilson at 16/04/12 14:57 did gyre and gimble:
</I>&gt;&gt;<i> On 16/04/12 14:27, Colin Guthrie wrote:
</I>&gt;&gt;&gt;<i> 'Twas brillig, and Anne Wilson at 16/04/12 13:28 did gyre and
</I>&gt;&gt;&gt;<i> gimble:
</I>&gt;&gt;&gt;&gt;<i> On 16/04/12 13:15, Anne Wilson wrote:
</I>&gt;&gt;&gt;&gt;&gt;<i> On 16/04/12 09:21, Colin Guthrie wrote:
</I>&gt;&gt;&gt;&gt;&gt;&gt;<i> 'Twas brillig, and Anne Wilson at 15/04/12 18:39 did gyre and
</I>&gt;&gt;&gt;&gt;&gt;&gt;<i>  gimble:
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> On 15/04/12 17:47, Anne Wilson wrote:
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> Attempting to install sound-scripts separately asks
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> whether I want to use systemd-sysvinit or
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> sysvinit-legacy.  I've tried both, but both fail due to
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> missing sound-scripts.
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> Found the package listed by rpmfind.net - but the link
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> there returns a 550 - Failed to change directory, so maybe
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> something is broken and I will have to wait for it to be
</I>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<i> fixed.
</I>&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;&gt;&gt;<i> This is just your media being out of date I think.
</I>&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;&gt;&gt;<i> I pushed an update to sound-scripts-0.62-3.mga2.noarch.rpm 
</I>&gt;&gt;&gt;&gt;&gt;&gt;<i> yesterday. Just wait for the mirror to get itself up to
</I>&gt;&gt;&gt;&gt;&gt;&gt;<i> date.
</I>&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;&gt;<i> Thanks - that helped a lot.  I've now done the big update,
</I>&gt;&gt;&gt;&gt;&gt;<i> choosing kernel-netbook (from memory) and rebooted.  All seemed
</I>&gt;&gt;&gt;&gt;&gt;<i> to be going well until -
</I>&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;&gt;<i> 'systemctl status plymouth-quit-wait.service' for details ]See
</I>&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;&gt;<i> (screen message not garbled before that one) - and it has
</I>&gt;&gt;&gt;&gt;&gt;<i> stopped. I thought someone said this was a known problem now
</I>&gt;&gt;&gt;&gt;&gt;<i> fixed, so what do I do now?
</I>&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;<i> A restart got it past that point.  Now it hangs after
</I>&gt;&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;<i> Started LSB: Network monitoring daemon [OK]
</I>&gt;&gt;<i>
</I>&gt;&gt;<i>
</I>&gt;&gt;&gt;<i> I strongly suspect it's not hanging. It's likely just stopped
</I>&gt;&gt;&gt;<i> doing things. Flip over to tty2 and you should have a text login.
</I>&gt;&gt;<i>
</I>&gt;&gt;&gt;&gt;<i> From there, can you get the output of &quot;systemctl status
</I>&gt;&gt;&gt;&gt;<i> prefdm.service&quot;
</I>&gt;&gt;&gt;<i> I suspect it has not even tried to start yet.
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> Loaded, active (running) and set to kdm -nodaemon
</I>&gt;<i> 
</I>&gt;<i> OK, so I'm wrong :D
</I>&gt;<i> 
</I>&gt;&gt;&gt;<i> Do a &quot;systemctl start prefdm.service&quot; and you should have your
</I>&gt;&gt;&gt;<i> normal logins.
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> 'Fraid not.  Reboot requires you to run the command again, so all you
</I>&gt;&gt;<i> have is the text login.  Then startx gives
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> &quot;Could not start D-Bus.  Can you call qdbus?&quot;
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> A forum thread suggested reinstalling xorg, so I did that - it called
</I>&gt;&gt;<i> up 10 packages, restarted urpmi then said it needed a further 471
</I>&gt;&gt;<i> packages.  That's running at the moment.
</I>&gt;<i> 
</I>&gt;<i> Hmm, that seems like something of a red herring.
</I>&gt;<i> 
</I>&gt;&gt;&gt;<i> I suspect strongly this is simply the legacy non-LSB initscripts
</I>&gt;&gt;&gt;<i> issue I mentioned last week that is preventing the prefdm.service
</I>&gt;&gt;&gt;<i> job from being executed on boot.
</I>&gt;<i> 
</I>&gt;<i> OK, so this is incorrect, (prefdm *is* started, but perhaps some other
</I>&gt;<i> jobs had to be cancelled instead.
</I>&gt;<i> 
</I>&gt;<i> Can you do this:
</I>&gt;<i> 
</I>&gt;<i> 
</I>&gt;<i> 1. Add the following the to kernel command line when booting normally:
</I>&gt;<i> &quot;systemd.log_level=debug systemd.log_target=kmsg&quot;
</I>&gt;<i> 
</I>&gt;<i> 2. When you boot and it gets stuck, simply go to tty2 copy
</I>&gt;<i> /var/log/dmesg to some file and then somehow give it to me :)
</I>&gt;<i> 
</I>Hope this helps :-)

Anne
-- 
Need KDE help? Try
<A HREF="http://userbase.kde.org">http://userbase.kde.org</A> or
<A HREF="http://forum.kde.org">http://forum.kde.org</A>
-------------- next part --------------
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.3.1-netbook-2.mga2 (<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">iurt at ecosse.mageia.org</A>) (gcc version 4.6.3 (GCC) ) #1 SMP Wed Apr 4 10:29:37 UTC 2012
[    0.000000] Disabled fast string operations
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007f495000 (usable)
[    0.000000]  BIOS-e820: 000000007f495000 - 000000007f4bf000 (reserved)
[    0.000000]  BIOS-e820: 000000007f4bf000 - 000000007f577000 (usable)
[    0.000000]  BIOS-e820: 000000007f577000 - 000000007f5bf000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007f5bf000 - 000000007f5ec000 (usable)
[    0.000000]  BIOS-e820: 000000007f5ec000 - 000000007f5ff000 (ACPI data)
[    0.000000]  BIOS-e820: 000000007f5ff000 - 000000007f600000 (usable)
[    0.000000]  BIOS-e820: 000000007f600000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] DMI 2.6 present.
[    0.000000] DMI: Acer AO533/AO533, BIOS V1.15 10/18/2010
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==&gt; (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x7f600 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-DFFFF write-through
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFF00000 mask 0FFF00000 write-protect
[    0.000000]   1 base 000000000 mask 0C0000000 write-back
[    0.000000]   2 base 040000000 mask 0C0000000 write-back
[    0.000000]   3 base 07F800000 mask 0FF800000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] initial memory mapped : 0 - 00c00000
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-00000000337fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0033400000 page 2M
[    0.000000]  0033400000 - 00337fe000 page 4k
[    0.000000] kernel direct mapping tables up to 337fe000 @ bfb000-c00000
[    0.000000] RAMDISK: 37a47000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 33255000 - 337fd5ca
[    0.000000] Move RAMDISK from 0000000037a47000 - 0000000037fef5c9 to 33255000 - 337fd5c9
[    0.000000] ACPI: RSDP 000fe020 00024 (v02 ACRSYS)
[    0.000000] ACPI: XSDT 7f5fe120 00064 (v01 ACRSYS ACRPRDCT 00000001      01000013)
[    0.000000] ACPI: FACP 7f5fd000 000F4 (v04 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: DSDT 7f5f1000 08B04 (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: FACS 7f584000 00040
[    0.000000] ACPI: HPET 7f5fc000 00038 (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: APIC 7f5fb000 00078 (v02 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: MCFG 7f5fa000 0003C (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: SLIC 7f5f0000 00176 (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: BOOT 7f5ef000 00028 (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: SSDT 7f5ed000 00655 (v01  PmRef    CpuPm 00003000 INTL 20051117)
[    0.000000] ACPI: WDAT 7f5ec000 00194 (v01 INSYDE INSYDE   00000001 MSFT 01000013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1214MB HIGHMEM available.
[    0.000000] 823MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 337fe000
[    0.000000]   low ram: 0 - 337fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -&gt; 0x00001000
[    0.000000]   Normal   0x00001000 -&gt; 0x000337fe
[    0.000000]   HighMem  0x000337fe -&gt; 0x0007f600
[    0.000000] Movable zone start PFN for each node
[    0.000000] Early memory PFN ranges
[    0.000000]     0: 0x00000010 -&gt; 0x0000009f
[    0.000000]     0: 0x00000100 -&gt; 0x0007f495
[    0.000000]     0: 0x0007f4bf -&gt; 0x0007f577
[    0.000000]     0: 0x0007f5bf -&gt; 0x0007f5ec
[    0.000000]     0: 0x0007f5ff -&gt; 0x0007f600
[    0.000000] On node 0 totalpages: 521482
[    0.000000] free_area_init_node: node 0, pgdat c0693d00, node_mem_map f2264200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1616 pages used for memmap
[    0.000000]   Normal zone: 205230 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2429 pages used for memmap
[    0.000000]   HighMem zone: 308224 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @f1c00000 s29952 r0 d23296 u1048576
[    0.000000] pcpu-alloc: s29952 r0 d23296 u1048576 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 517405
[    0.000000] Kernel command line: BOOT_IMAGE=linux root=UUID=4ff2d08b-fd50-4296-b967-64292c11b6ca resume=UUID=141a82fa-829a-48ab-8de6-64d6c26f20b1 splash=silent vga=788 systemd.log_level=debug systemd.log_target=kmsg
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] allocated 4173696 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000337fe:0007f600)
[    0.000000] Memory: 2051796k/2086912k available (3756k kernel code, 34132k reserved, 2007k data, 516k init, 1242612k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff17000 - 0xfffff000   ( 928 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf3ffe000 - 0xff7fe000   ( 184 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf37fe000   ( 823 MB)
[    0.000000]       .init : 0xc06a1000 - 0xc0722000   ( 516 kB)
[    0.000000]       .data : 0xc04ab1b4 - 0xc06a0ec0   (2007 kB)
[    0.000000]       .text : 0xc0100000 - 0xc04ab1b4   (3756 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:712 16
[    0.000000] CPU 0 irqstacks, hard=f140a000 soft=f140c000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1496.161 MHz processor.
[    0.001003] Calibrating delay loop (skipped), value calculated using timer frequency.. 2992.32 BogoMIPS (lpj=1496161)
[    0.001030] pid_max: default: 32768 minimum: 301
[    0.002061] Security Framework initialized
[    0.002085] TOMOYO Linux initialized
[    0.002141] Mount-cache hash table entries: 512
[    0.002431] Initializing cgroup subsys cpuacct
[    0.002446] Initializing cgroup subsys memory
[    0.002472] Initializing cgroup subsys devices
[    0.002485] Initializing cgroup subsys freezer
[    0.002496] Initializing cgroup subsys net_cls
[    0.002508] Initializing cgroup subsys blkio
[    0.002563] Disabled fast string operations
[    0.002579] CPU: Physical Processor ID: 0
[    0.002589] CPU: Processor Core ID: 0
[    0.002601] mce: CPU supports 5 MCE banks
[    0.002624] CPU0: Thermal monitoring enabled (TM2)
[    0.002638] using mwait in idle threads.
[    0.002860] ACPI: Checking initramfs for custom DSDT
[    0.195497] ACPI: Core revision 20120111
[    0.209001] ftrace: allocating 16333 entries in 32 pages
[    0.224089] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.225415] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.235437] CPU0: Intel(R) Atom(TM) CPU N550   @ 1.50GHz stepping 0a
[    0.235973] Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
[    0.235973] ... version:                3
[    0.235973] ... bit width:              40
[    0.235973] ... generic registers:      2
[    0.235973] ... value mask:             000000ffffffffff
[    0.235973] ... max period:             000000007fffffff
[    0.235973] ... fixed-purpose events:   3
[    0.235973] ... event mask:             0000000700000003
[    0.235973] CPU 1 irqstacks, hard=f14b2000 soft=f14b4000
[    0.235973] Booting Node   0, Processors  #1
[    0.235973] smpboot cpu 1: start_ip = 9b000
[    0.001999] Initializing CPU#1
[    0.001999] Disabled fast string operations
[    0.247208] CPU 2 irqstacks, hard=f14be000 soft=f14c0000
[    0.247976]  #2
[    0.247983] smpboot cpu 2: start_ip = 9b000
[    0.001999] Initializing CPU#2
[    0.001999] Disabled fast string operations
[    0.260169] CPU 3 irqstacks, hard=f14e8000 soft=f14ea000
[    0.260186]  #3 Ok.
[    0.260194] smpboot cpu 3: start_ip = 9b000
[    0.001999] Initializing CPU#3
[    0.001999] Disabled fast string operations
[    0.271990] Brought up 4 CPUs
[    0.272013] Total of 4 processors activated (11969.28 BogoMIPS).
[    0.274348] devtmpfs: initialized
[    0.275173] PM: Registering ACPI NVS region at 7f577000 (294912 bytes)
[    0.278311] RTC time:  7:14:28, date: 04/17/12
[    0.278410] NET: Registered protocol family 16
[    0.278841] ACPI: bus type pci registered
[    0.279030] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.279052] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.279064] PCI: Using MMCONFIG for extended config space
[    0.279075] PCI: Using configuration type 1 for base access
[    0.280604] bio: create slab &lt;bio-0&gt; at 0
[    0.281068] ACPI: Added _OSI(Module Device)
[    0.281082] ACPI: Added _OSI(Processor Device)
[    0.281094] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.281105] ACPI: Added _OSI(Processor Aggregator Device)
[    0.284768] ACPI: EC: Look up EC in DSDT
[    0.288468] ACPI: Executed 1 blocks of module-level executable AML code
[    0.292951] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.294121] ACPI: SSDT 7f4b7790 00747 (v01  PmRef  Cpu0Ist 00003000 INTL 20051117)
[    0.295501] ACPI: Dynamic OEM Table Load:
[    0.295517] ACPI: SSDT   (null) 00747 (v01  PmRef  Cpu0Ist 00003000 INTL 20051117)
[    0.295818] ACPI: SSDT 7f4b6c10 001C3 (v02  PmRef  Cpu0Cst 00003001 INTL 20051117)
[    0.296683] ACPI: Dynamic OEM Table Load:
[    0.296699] ACPI: SSDT   (null) 001C3 (v02  PmRef  Cpu0Cst 00003001 INTL 20051117)
[    0.302689] ACPI: SSDT 7f4b6e10 001B5 (v01  PmRef    ApIst 00003000 INTL 20051117)
[    0.303650] ACPI: Dynamic OEM Table Load:
[    0.303666] ACPI: SSDT   (null) 001B5 (v01  PmRef    ApIst 00003000 INTL 20051117)
[    0.306218] ACPI: SSDT 7f4b7f10 000C9 (v02  PmRef    ApCst 00003000 INTL 20051117)
[    0.307117] ACPI: Dynamic OEM Table Load:
[    0.307132] ACPI: SSDT   (null) 000C9 (v02  PmRef    ApCst 00003000 INTL 20051117)
[    0.312245] ACPI: Interpreter enabled
[    0.312280] ACPI: (supports S0 S3 S4 S5)
[    0.312413] ACPI: Using IOAPIC for interrupt routing
[    0.444514] ACPI: Power Resource [FN00] (on)
[    0.445378] ACPI: EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62
[    0.445807] ACPI: No dock devices found.
[    0.445826] PCI: Using host bridge windows from ACPI; if necessary, use &quot;pci=nocrs&quot; and report a bug
[    0.446912] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.448582] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.448600] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.448614] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.448633] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xfebfffff]
[    0.448736] PCI host bridge to bus 0000:00
[    0.448750] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.448763] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.448776] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.448790] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
[    0.448824] pci 0000:00:00.0: [8086:a010] type 0 class 0x000600
[    0.448890] pci 0000:00:02.0: [8086:a011] type 0 class 0x000300
[    0.448908] pci 0000:00:02.0: reg 10: [mem 0x98180000-0x981fffff]
[    0.448919] pci 0000:00:02.0: reg 14: [io  0x60c0-0x60c7]
[    0.448930] pci 0000:00:02.0: reg 18: [mem 0x80000000-0x8fffffff pref]
[    0.448949] pci 0000:00:02.0: reg 1c: [mem 0x98000000-0x980fffff]
[    0.449005] pci 0000:00:02.1: [8086:a012] type 0 class 0x000380
[    0.449020] pci 0000:00:02.1: reg 10: [mem 0x98100000-0x9817ffff]
[    0.449148] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
[    0.449184] pci 0000:00:1b.0: reg 10: [mem 0x98200000-0x98203fff 64bit]
[    0.449315] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.449364] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
[    0.449500] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.449550] pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
[    0.449683] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.449738] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
[    0.449809] pci 0000:00:1d.0: reg 20: [io  0x6080-0x609f]
[    0.449869] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
[    0.449947] pci 0000:00:1d.1: reg 20: [io  0x6060-0x607f]
[    0.450009] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
[    0.450081] pci 0000:00:1d.2: reg 20: [io  0x6040-0x605f]
[    0.450141] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
[    0.450213] pci 0000:00:1d.3: reg 20: [io  0x6020-0x603f]
[    0.450289] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
[    0.450322] pci 0000:00:1d.7: reg 10: [mem 0x98204400-0x982047ff]
[    0.450452] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.450491] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
[    0.450609] pci 0000:00:1f.0: [8086:27bc] type 0 class 0x000601
[    0.450781] pci 0000:00:1f.2: [8086:27c1] type 0 class 0x000106
[    0.450813] pci 0000:00:1f.2: reg 10: [io  0x60b8-0x60bf]
[    0.450831] pci 0000:00:1f.2: reg 14: [io  0x60cc-0x60cf]
[    0.450848] pci 0000:00:1f.2: reg 18: [io  0x60b0-0x60b7]
[    0.450866] pci 0000:00:1f.2: reg 1c: [io  0x60c8-0x60cb]
[    0.450883] pci 0000:00:1f.2: reg 20: [io  0x60a0-0x60af]
[    0.450901] pci 0000:00:1f.2: reg 24: [mem 0x98204000-0x982043ff]
[    0.450979] pci 0000:00:1f.2: PME# supported from D3hot
[    0.451014] pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
[    0.451086] pci 0000:00:1f.3: reg 20: [io  0x6000-0x601f]
[    0.451248] pci 0000:01:00.0: [1969:2060] type 0 class 0x000200
[    0.451289] pci 0000:01:00.0: reg 10: [mem 0x97000000-0x9703ffff 64bit]
[    0.451311] pci 0000:01:00.0: reg 18: [io  0x5000-0x507f]
[    0.451473] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.453976] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    0.453994] pci 0000:00:1c.0:   bridge window [io  0x5000-0x5fff]
[    0.454004] pci 0000:00:1c.0:   bridge window [mem 0x97000000-0x97ffffff]
[    0.454018] pci 0000:00:1c.0:   bridge window [mem 0x90000000-0x90ffffff 64bit pref]
[    0.454182] pci 0000:02:00.0: [14e4:4727] type 0 class 0x000280
[    0.454235] pci 0000:02:00.0: reg 10: [mem 0x96000000-0x96003fff 64bit]
[    0.454489] pci 0000:02:00.0: supports D1 D2
[    0.454495] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.454604] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[    0.454621] pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
[    0.454631] pci 0000:00:1c.1:   bridge window [mem 0x96000000-0x96ffffff]
[    0.454645] pci 0000:00:1c.1:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
[    0.454749] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
[    0.454778] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.454785] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.454793] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.454800] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
[    0.454831] pci_bus 0000:00: on NUMA node 0
[    0.454841] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.455221] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
[    0.455360] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
[    0.455729]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.456263]  pci0000:00: ACPI _OSC control (0x1c) granted
[    0.463488] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
[    0.463668] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 12)
[    0.463842] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
[    0.464025] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
[    0.464211] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.464392] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.464572] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.464752] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.465190] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.465190] vgaarb: loaded
[    0.465190] vgaarb: bridge control possible 0000:00:02.0
[    0.465999] PCI: Using ACPI for IRQ routing
[    0.475565] PCI: pci_cache_line_size set to 64 bytes
[    0.475712] reserve RAM buffer: 000000000009fc00 - 000000000009ffff 
[    0.475720] reserve RAM buffer: 000000007f495000 - 000000007fffffff 
[    0.475728] reserve RAM buffer: 000000007f577000 - 000000007fffffff 
[    0.475735] reserve RAM buffer: 000000007f5ec000 - 000000007fffffff 
[    0.475741] reserve RAM buffer: 000000007f600000 - 000000007fffffff 
[    0.476024] NetLabel: Initializing
[    0.476037] NetLabel:  domain hash size = 128
[    0.476046] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.476080] NetLabel:  unlabeled traffic allowed by default
[    0.476097] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.476116] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.476135] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.481205] Switching to clocksource hpet
[    0.495591] pnp: PnP ACPI init
[    0.495636] ACPI: bus type pnp registered
[    0.496586] pnp 00:00: [bus 00-ff]
[    0.496595] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.496601] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.496608] pnp 00:00: [io  0x0d00-0xffff window]
[    0.496615] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.496621] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.496628] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.496634] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.496641] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.496647] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.496654] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.496661] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.496667] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.496674] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.496680] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.496687] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.496693] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.496700] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.496707] pnp 00:00: [mem 0x80000000-0xfebfffff window]
[    0.496827] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.556588] pnp 00:01: [io  0x0068]
[    0.556600] pnp 00:01: [io  0x006c]
[    0.556610] pnp 00:01: [io  0x164e-0x164f]
[    0.556618] pnp 00:01: [io  0x0061]
[    0.556626] pnp 00:01: [io  0x0070]
[    0.556634] pnp 00:01: [io  0x0080]
[    0.556642] pnp 00:01: [io  0x0092]
[    0.556650] pnp 00:01: [io  0x00b2-0x00b3]
[    0.556658] pnp 00:01: [io  0x0063]
[    0.556666] pnp 00:01: [io  0x0065]
[    0.556674] pnp 00:01: [io  0x0067]
[    0.556682] pnp 00:01: [io  0x0600-0x060f]
[    0.556691] pnp 00:01: [io  0x0610]
[    0.556699] pnp 00:01: [io  0x0800-0x080f]
[    0.556707] pnp 00:01: [io  0x0810-0x0817]
[    0.556716] pnp 00:01: [io  0x0400-0x047f]
[    0.556724] pnp 00:01: [io  0x0500-0x053f]
[    0.556733] pnp 00:01: [io  0xff2c-0xff2f]
[    0.556742] pnp 00:01: [mem 0xe0000000-0xefffffff]
[    0.556752] pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
[    0.556761] pnp 00:01: [mem 0xfed14000-0xfed17fff]
[    0.556770] pnp 00:01: [mem 0xfed18000-0xfed18fff]
[    0.556779] pnp 00:01: [mem 0xfed19000-0xfed19fff]
[    0.556788] pnp 00:01: [mem 0xfec00000-0xfec00fff]
[    0.556797] pnp 00:01: [mem 0xfee00000-0xfee00fff]
[    0.557058] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.557088] system 00:01: [io  0x0600-0x060f] has been reserved
[    0.557108] system 00:01: [io  0x0610] has been reserved
[    0.557128] system 00:01: [io  0x0800-0x080f] has been reserved
[    0.557148] system 00:01: [io  0x0810-0x0817] has been reserved
[    0.557169] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.557190] system 00:01: [io  0x0500-0x053f] has been reserved
[    0.557210] system 00:01: [io  0xff2c-0xff2f] has been reserved
[    0.557233] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
[    0.557256] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.557278] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
[    0.557300] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.557322] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.557345] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.557367] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.557392] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.557442] pnp 00:02: [io  0x0000-0x001f]
[    0.557452] pnp 00:02: [io  0x0081-0x0091]
[    0.557460] pnp 00:02: [io  0x0093-0x009f]
[    0.557469] pnp 00:02: [io  0x00c0-0x00df]
[    0.557478] pnp 00:02: [dma 4]
[    0.557576] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.557688] pnp 00:03: [io  0x0070-0x0077]
[    0.557794] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.558096] pnp 00:04: [irq 0 disabled]
[    0.558122] pnp 00:04: [irq 8]
[    0.558132] pnp 00:04: [mem 0xfed00000-0xfed003ff]
[    0.558235] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.558287] pnp 00:05: [io  0x00f0]
[    0.558306] pnp 00:05: [irq 13]
[    0.558406] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.558455] pnp 00:06: [mem 0xff800000-0xffffffff]
[    0.558555] pnp 00:06: Plug and Play ACPI device, IDs INT0800 (active)
[    0.558687] pnp 00:07: [io  0x0060]
[    0.558697] pnp 00:07: [io  0x0064]
[    0.558715] pnp 00:07: [irq 1]
[    0.558826] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.559035] pnp 00:08: [irq 12]
[    0.559150] pnp 00:08: Plug and Play ACPI device, IDs SYN1b1c SYN1b00 SYN0002 PNP0f13 (active)
[    0.559658] pnp: PnP ACPI: found 9 devices
[    0.559678] ACPI: ACPI bus type pnp unregistered
[    0.559695] PnPBIOS: Disabled
[    0.603620] PCI: max bus depth: 1 pci_try_num: 2
[    0.603687] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    0.603714] pci 0000:00:1c.0:   bridge window [io  0x5000-0x5fff]
[    0.603740] pci 0000:00:1c.0:   bridge window [mem 0x97000000-0x97ffffff]
[    0.603765] pci 0000:00:1c.0:   bridge window [mem 0x90000000-0x90ffffff 64bit pref]
[    0.603798] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[    0.603818] pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
[    0.603843] pci 0000:00:1c.1:   bridge window [mem 0x96000000-0x96ffffff]
[    0.603868] pci 0000:00:1c.1:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
[    0.603900] pci 0000:00:1e.0: PCI bridge to [bus 05-05]
[    0.604035] pci 0000:00:1e.0: setting latency timer to 64
[    0.604050] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.604060] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.604071] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.604081] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
[    0.604092] pci_bus 0000:01: resource 0 [io  0x5000-0x5fff]
[    0.604102] pci_bus 0000:01: resource 1 [mem 0x97000000-0x97ffffff]
[    0.604113] pci_bus 0000:01: resource 2 [mem 0x90000000-0x90ffffff 64bit pref]
[    0.604124] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
[    0.604134] pci_bus 0000:02: resource 1 [mem 0x96000000-0x96ffffff]
[    0.604144] pci_bus 0000:02: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
[    0.604156] pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
[    0.604166] pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
[    0.604176] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
[    0.604186] pci_bus 0000:05: resource 7 [mem 0x80000000-0xfebfffff]
[    0.604317] NET: Registered protocol family 2
[    0.604555] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.605460] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.607092] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.607822] TCP: Hash tables configured (established 131072 bind 65536)
[    0.607844] TCP reno registered
[    0.607865] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.607905] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.608249] NET: Registered protocol family 1
[    0.608315] pci 0000:00:02.0: Boot video device
[    0.608787] PCI: CLS 64 bytes, default 64
[    0.608974] Trying to unpack rootfs image as initramfs...
[    0.947977] Freeing initrd memory: 5796k freed
[    0.953330] Simple Boot Flag at 0x44 set to 0x1
[    0.955106] audit: initializing netlink socket (disabled)
[    0.955154] type=2000 audit(1334646868.954:1): initialized
[    1.017150] highmem bounce pool size: 64 pages
[    1.017183] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    1.024353] VFS: Disk quotas dquot_6.5.2
[    1.024592] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.025221] msgmni has been set to 1591
[    1.025973] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.026119] io scheduler noop registered
[    1.026141] io scheduler deadline registered
[    1.026174] io scheduler cfq registered (default)
[    1.026561] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    1.026877] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
[    1.027236] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    1.027261] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    1.027285] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    1.027344] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[    1.027365] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[    1.027389] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[    1.027627] vesafb: mode is 800x600x16, linelength=1600, pages=7
[    1.027646] vesafb: scrolling: redraw
[    1.027664] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
[    1.029137] vesafb: framebuffer at 0x80000000, mapped to 0xf4080000, using 1875k, total 8128k
[    1.029349] fbcon: VESA VGA (fb0) is primary device
[    1.050669] Console: switching to colour frame buffer device 100x37
[    1.072091] fb0: VESA VGA frame buffer device
[    1.072433] intel_idle: MWAIT substates: 0x20220
[    1.072464] intel_idle: v0.4 model 0x1C
[    1.072471] intel_idle: lapic_timer_reliable_states 0x2
[    1.072480] Marking TSC unstable due to TSC halts in idle states deeper than C2
[    1.073113] GHES: HEST is not enabled!
[    1.073520] isapnp: Scanning for PnP cards...
[    1.073594] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.075299] Linux agpgart interface v0.103
[    1.075934] agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
[    1.076762] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
[    1.077865] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    1.078632] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000
[    1.085168] brd: module loaded
[    1.085812] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSS0] at 0x60,0x64 irq 1,12
[    1.110666] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.122086] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.133724] mousedev: PS/2 mouse device common for all mice
[    1.145373] rtc_cmos 00:03: RTC can wake from S4
[    1.156870] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    1.168158] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    1.179756] cpuidle: using governor ladder
[    1.191266] cpuidle: using governor menu
[    1.202977] TCP cubic registered
[    1.213590] Registering the dns_resolver key type
[    1.224335] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.236737] Using IPI No-Shortcut mode
[    1.252281] PM: Checking hibernation image partition UUID=141a82fa-829a-48ab-8de6-64d6c26f20b1
[    1.387083] isapnp: No Plug &amp; Play device found
[    2.260905] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000
[    2.351782] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input1
[    2.368501] PM: Hibernation image not present or could not be loaded.
[    2.368565] registered taskstats version 1
[    2.381385]   Magic number: 8:173:218
[    2.393173] rtc_cmos 00:03: setting system clock to 2012-04-17 07:14:31 UTC (1334646871)
[    2.405245] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
[    2.418061] Freeing unused kernel memory: 516k freed
[    2.430752] Write protecting the kernel text: 3760k
[    2.442828] Write protecting the kernel read-only data: 1668k
[    2.531713] dracut: dracut-017-5.mga2
[    2.570973] udevd[89]: starting version 181
[    2.670337] [drm] Initialized drm 1.1.0 20060810
[    2.693680] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
[    2.702453] ACPI: Power Button [PWRB]
[    2.711237] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
[    2.720130] ACPI: Sleep Button [SLPB]
[    2.728911] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input4
[    2.738091] ACPI: Lid Switch [LID0]
[    2.747145] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[    2.756418] ACPI: Power Button [PWRF]
[    2.834904] i915 0000:00:02.0: setting latency timer to 64
[    2.908286] i915 0000:00:02.0: irq 42 for MSI/MSI-X
[    2.908324] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    2.911394] [drm] Driver supports precise vblank timestamp query.
[    2.953144] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    3.014079] fixme: max PWM is zero.
[    3.280774] [drm] initialized overlay support
[    3.283920] [drm] capturing error event; look for more information in /debug/dri/0/i915_error_state
[    3.284842] render error detected, EIR: 0x00000010
[    3.284842] page table error
[    3.284842]   PGTBL_ER: 0x00000002
[    3.284842] [drm:i915_report_and_clear_eir] *ERROR* EIR stuck: 0x00000010, masking
[    3.284842] render error detected, EIR: 0x00000010
[    3.284842] page table error
[    3.284842]   PGTBL_ER: 0x00000002
[    3.342487] checking generic (80000000 7f0000) vs hw (80000000 10000000)
[    3.342499] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
[    3.345689] Console: switching to colour dummy device 80x25
[    3.347323] fbcon: inteldrmfb (fb0) is primary device
[    3.688120] Console: switching to colour frame buffer device 160x45
[    3.706576] fb0: inteldrmfb frame buffer device
[    3.706585] drm: registered panic notifier
[    4.014216] acpi device:25: registered as cooling_device0
[    4.014763] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input6
[    4.014967] ACPI: Video Device [OVGA] (multi-head: yes  rom: no  post: no)
[    4.015214] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    4.059733] dracut: Starting plymouth daemon
[   11.435128] usbcore: registered new interface driver usbfs
[   11.435206] usbcore: registered new interface driver hub
[   11.437983] usbcore: registered new device driver usb
[   11.449750] uhci_hcd: USB Universal Host Controller Interface driver
[   11.449864] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[   11.449878] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[   11.449969] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[   11.450108] uhci_hcd 0000:00:1d.0: irq 18, io base 0x00006080
[   11.450237] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[   11.450249] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.450259] usb usb1: Product: UHCI Host Controller
[   11.450267] usb usb1: Manufacturer: Linux 3.3.1-netbook-2.mga2 uhci_hcd
[   11.450275] usb usb1: SerialNumber: 0000:00:1d.0
[   11.456107] hub 1-0:1.0: USB hub found
[   11.456129] hub 1-0:1.0: 2 ports detected
[   11.456410] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[   11.456425] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[   11.456474] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
[   11.456577] uhci_hcd 0000:00:1d.1: irq 20, io base 0x00006060
[   11.456703] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[   11.456715] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.456725] usb usb2: Product: UHCI Host Controller
[   11.456733] usb usb2: Manufacturer: Linux 3.3.1-netbook-2.mga2 uhci_hcd
[   11.456741] usb usb2: SerialNumber: 0000:00:1d.1
[   11.459266] hub 2-0:1.0: USB hub found
[   11.459287] hub 2-0:1.0: 2 ports detected
[   11.459539] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[   11.459551] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[   11.459582] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
[   11.459673] uhci_hcd 0000:00:1d.2: irq 21, io base 0x00006040
[   11.459797] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[   11.459809] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.459819] usb usb3: Product: UHCI Host Controller
[   11.459827] usb usb3: Manufacturer: Linux 3.3.1-netbook-2.mga2 uhci_hcd
[   11.459836] usb usb3: SerialNumber: 0000:00:1d.2
[   11.461964] hub 3-0:1.0: USB hub found
[   11.461985] hub 3-0:1.0: 2 ports detected
[   11.462274] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[   11.462287] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[   11.462323] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 4
[   11.462416] uhci_hcd 0000:00:1d.3: irq 22, io base 0x00006020
[   11.462542] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   11.462553] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.462563] usb usb4: Product: UHCI Host Controller
[   11.462571] usb usb4: Manufacturer: Linux 3.3.1-netbook-2.mga2 uhci_hcd
[   11.462580] usb usb4: SerialNumber: 0000:00:1d.3
[   11.462950] SCSI subsystem initialized
[   11.465181] hub 4-0:1.0: USB hub found
[   11.465202] hub 4-0:1.0: 2 ports detected
[   11.513992] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.514041] Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
[   11.514258] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[   11.514276] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[   11.514329] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 5
[   11.514421] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[   11.514456] ehci_hcd 0000:00:1d.7: debug port 1
[   11.518363] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
[   11.518401] ehci_hcd 0000:00:1d.7: irq 22, io mem 0x98204400
[   11.524096] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[   11.524175] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[   11.524187] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.524197] usb usb5: Product: EHCI Host Controller
[   11.524206] usb usb5: Manufacturer: Linux 3.3.1-netbook-2.mga2 ehci_hcd
[   11.524215] usb usb5: SerialNumber: 0000:00:1d.7
[   11.524697] hub 5-0:1.0: USB hub found
[   11.524717] hub 5-0:1.0: 8 ports detected
[   11.532513] libata version 3.00 loaded.
[   11.542178] ahci 0000:00:1f.2: version 3.0
[   11.542330] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
[   11.542416] ahci: SSS flag set, parallel bus scan disabled
[   11.542470] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
[   11.542480] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pmp pio slum part 
[   11.542492] ahci 0000:00:1f.2: setting latency timer to 64
[   11.544529] scsi0 : ahci
[   11.544863] scsi1 : ahci
[   11.545200] scsi2 : ahci
[   11.545511] scsi3 : ahci
[   11.546106] ata1: SATA max UDMA/133 abar <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">m1024 at 0x98204000</A> port 0x98204100 irq 43
[   11.546117] ata2: SATA max UDMA/133 abar <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">m1024 at 0x98204000</A> port 0x98204180 irq 43
[   11.546123] ata3: DUMMY
[   11.546128] ata4: DUMMY
[   11.826157] usb 5-3: new high-speed USB device number 2 using ehci_hcd
[   11.940518] usb 5-3: New USB device found, idVendor=058f, idProduct=6254
[   11.940537] usb 5-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   11.941324] hub 5-3:1.0: USB hub found
[   11.941503] hub 5-3:1.0: 4 ports detected
[   12.006156] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   12.007273] ata1.00: unexpected _GTF length (4)
[   12.008180] ata1.00: ATA-8: WDC WD2500BEVT-22A23T0, 01.01A01, max UDMA/133
[   12.008195] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[   12.009323] ata1.00: unexpected _GTF length (4)
[   12.009632] ata1.00: configured for UDMA/133
[   12.009990] scsi 0:0:0:0: Direct-Access     ATA      WDC WD2500BEVT-2 01.0 PQ: 0 ANSI: 5
[   12.044104] usb 5-4: new high-speed USB device number 3 using ehci_hcd
[   12.265639] usb 5-4: New USB device found, idVendor=0402, idProduct=9665
[   12.265650] usb 5-4: New USB device strings: Mfr=3, Product=1, SerialNumber=0
[   12.265658] usb 5-4: Product: 1.3M WebCam
[   12.265663] usb 5-4: Manufacturer: XPA9N84B9
[   12.315105] ata2: SATA link down (SStatus 0 SControl 300)
[   12.333127] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[   12.333385] sd 0:0:0:0: [sda] Write Protect is off
[   12.333398] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   12.333508] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   12.352284] usb 5-3.3: new low-speed USB device number 4 using ehci_hcd
[   12.443867] usb 5-3.3: New USB device found, idVendor=046d, idProduct=c03d
[   12.443881] usb 5-3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   12.443892] usb 5-3.3: Product: USB-PS/2 Optical Mouse
[   12.443900] usb 5-3.3: Manufacturer: Logitech
[   13.729402]  sda: sda1 sda2 sda3 sda4 &lt; sda5 sda6 sda7 &gt;
[   13.731583] sd 0:0:0:0: [sda] Attached SCSI disk
[   13.747905] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.7/usb5/5-3/5-3.3/5-3.3:1.0/input/input7
[   13.748393] generic-usb 0003:046D:C03D.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.7-3.3/input0
[   13.748474] usbcore: registered new interface driver usbhid
[   13.748483] usbhid: USB HID core driver
[   14.734690] PM: Starting manual resume from disk
[   14.734701] PM: Hibernation image partition 8:6 present
[   14.734705] PM: Looking for hibernation image.
[   14.735069] PM: Image not found (code -22)
[   14.735077] PM: Hibernation image not present or could not be loaded.
[   14.932684] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[   15.045629] dracut: Checking ext4: /dev/disk/by-uuid/4ff2d08b-fd50-4296-b967-64292c11b6ca
[   15.045838] dracut: issuing e2fsck -a  /dev/disk/by-uuid/4ff2d08b-fd50-4296-b967-64292c11b6ca
[   15.114116] dracut: /dev/disk/by-uuid/4ff2d08b-fd50-4296-b967-64292c11b6ca: clean, 102472/1602496 files, 878754/6400000 blocks
[   15.114826] dracut: Remounting /dev/disk/by-uuid/4ff2d08b-fd50-4296-b967-64292c11b6ca with -o acl,sync,noatime,ro
[   15.151580] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: acl
[   15.227406] dracut: Mounted root filesystem /dev/sda5
[   15.636645] dracut: Switching root
[   15.640143] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   16.546104] systemd[1]: Successfully opened /dev/kmsg for logging.
[   16.546524] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup with options cpuset.
[   16.554226] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct.
[   16.562211] systemd[1]: Mounting cgroup to /sys/fs/cgroup/memory of type cgroup with options memory.
[   16.570176] systemd[1]: Mounting cgroup to /sys/fs/cgroup/devices of type cgroup with options devices.
[   16.578149] systemd[1]: Mounting cgroup to /sys/fs/cgroup/freezer of type cgroup with options freezer.
[   16.586127] systemd[1]: Mounting cgroup to /sys/fs/cgroup/net_cls of type cgroup with options net_cls.
[   16.594133] systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio.
[   16.602193] systemd[1]: systemd 44 running in system mode. (+PAM +LIBWRAP +AUDIT -SELINUX +SYSVINIT +LIBCRYPTSETUP; mageia)
[   16.674359] systemd[1]: Your kernel apparently lacks built-in autofs4 support. Might be a good idea to compile it in. We'll now try to work around this by loading the module...
[   16.927503] systemd[1]: Inserted module 'autofs4'
[   16.927579] systemd[1]: Your kernel apparently lacks built-in ipv6 support. Might be a good idea to compile it in. We'll now try to work around this by loading the module...
[   17.074461] NET: Registered protocol family 10
[   17.076032] systemd[1]: Inserted module 'ipv6'
[   17.089577] systemd[1]: Set hostname to &lt;localhost&gt;.
[   17.210862] systemd[1]: Looking for unit files in:
[   17.210876] systemd[1]: 	/etc/systemd/system
[   17.210886] systemd[1]: 	/lib/systemd/system
[   17.227921] systemd[1]: Looking for SysV init scripts in:
[   17.227935] systemd[1]: 	/etc/rc.d/init.d
[   17.227949] systemd[1]: Looking for SysV rcN.d links in:
[   17.227959] systemd[1]: 	/etc/rc.d
[   17.228304] systemd[1]: Using cgroup controller name=systemd. File system hierarchy is at /sys/fs/cgroup/systemd/system.
[   17.228555] systemd[1]: Installed release agent.
[   17.236125] systemd[1]: Created root group.
[   17.236209] systemd[1]: Using notification socket /run/systemd/notify
[   17.236571] systemd[1]: Successfully created private D-Bus server.
[   17.237292] systemd[1]: Spawned /lib/systemd/system-generators/systemd-cryptsetup-generator as 247
[   17.237551] systemd[1]: Spawned /lib/systemd/system-generators/systemd-getty-generator as 248
[   17.237885] systemd[1]: Spawned /lib/systemd/system-generators/systemd-rc-local-generator as 249
[   17.257227] systemd[1]: /lib/systemd/system-generators/systemd-cryptsetup-generator exited successfully.
[   17.279594] systemd[1]: /lib/systemd/system-generators/systemd-getty-generator exited successfully.
[   17.281499] systemd[1]: /lib/systemd/system-generators/systemd-rc-local-generator exited successfully.
[   17.281569] systemd[1]: Added generator unit path /run/systemd/generator to search path.
[   17.451631] systemd[1]: Failed to load configuration for livesys-late.service: No such file or directory
[   17.565409] systemd[1]: Failed to load configuration for auditd.service: No such file or directory
[   17.965995] systemd[1]: Failed to load configuration for NetworkManager.service: No such file or directory
[   17.966094] systemd[1]: Failed to load configuration for portreserve.service: No such file or directory
[   18.036259] systemd[1]: Failed to load configuration for irda.service: No such file or directory
[   18.120643] systemd[1]: Failed to load configuration for ypbind.service: No such file or directory
[   18.120695] systemd[1]: Failed to load configuration for sssd.service: No such file or directory
[   18.150215] systemd[1]: Failed to load configuration for VMware.service: No such file or directory
[   18.311807] systemd[1]: -.mount changed dead -&gt; mounted
[   18.312187] systemd[1]: Activating default unit: default.target
[   18.312219] systemd[1]: Trying to enqueue job graphical.target/start/replace
[   18.312874] systemd[1]: Found ordering cycle on basic.target/start
[   18.312891] systemd[1]: Walked on cycle path to sockets.target/start
[   18.312905] systemd[1]: Walked on cycle path to syslog.socket/start
[   18.312917] systemd[1]: Walked on cycle path to basic.target/start
[   18.312930] systemd[1]: Breaking ordering cycle by deleting job syslog.socket/start
[   18.313131] systemd[1]: Looking at job plymouth-quit.service/stop conflicted_by=yes
[   18.313146] systemd[1]: Looking at job plymouth-quit.service/start conflicted_by=no
[   18.313160] systemd[1]: Fixing conflicting jobs by deleting job plymouth-quit.service/start
[   18.313186] systemd[1]: Looking at job prefdm.service/start conflicted_by=no
[   18.313199] systemd[1]: Looking at job prefdm.service/stop conflicted_by=no
[   18.313212] systemd[1]: Fixing conflicting jobs by deleting job prefdm.service/stop
[   18.313237] systemd[1]: Looking at job <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">getty at tty1.service</A>/stop conflicted_by=yes
[   18.313250] systemd[1]: Looking at job <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">getty at tty1.service</A>/start conflicted_by=no
[   18.313263] systemd[1]: Fixing conflicting jobs by deleting job <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">getty at tty1.service</A>/start
[   18.313400] systemd[1]: Installed new job graphical.target/start as 1
[   18.313415] systemd[1]: Installed new job multi-user.target/start as 2
[   18.313428] systemd[1]: Installed new job basic.target/start as 3
[   18.313442] systemd[1]: Installed new job sysinit.target/start as 4
[   18.313455] systemd[1]: Installed new job local-fs.target/start as 5
[   18.313468] systemd[1]: Installed new job mnt-Windows.mount/start as 6
[   18.313481] systemd[1]: Installed new job systemd-journald.socket/start as 7
[   18.313540] systemd[1]: Installed new job dev-disk-by\x2duuid-2EAE2E6DAE2E2E31.device/start as 9
[   18.313555] systemd[1]: Installed new job media-win_c.mount/start as 16
[   18.313569] systemd[1]: Installed new job media.mount/start as 17
[   18.313598] systemd[1]: Installed new job dev-disk-by\x2duuid-16982CB9982C996F.device/start as 18
[   18.313613] systemd[1]: Installed new job home.mount/start as 19
[   18.313628] systemd[1]: Installed new job <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">fsck at dev-disk-by</A>\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.service/start as 20
[   18.313657] systemd[1]: Installed new job dev-disk-by\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.device/start as 21
[   18.313673] systemd[1]: Installed new job systemd-remount-api-vfs.service/start as 22
[   18.313687] systemd[1]: Installed new job local-fs-pre.target/start as 23
[   18.313701] systemd[1]: Installed new job fedora-storage-init.service/start as 25
[   18.313715] systemd[1]: Installed new job fedora-wait-storage.service/start as 26
[   18.313728] systemd[1]: Installed new job udev.service/start as 27
[   18.313742] systemd[1]: Installed new job udev-control.socket/start as 28
[   18.313755] systemd[1]: Installed new job udev-kernel.socket/start as 29
[   18.313769] systemd[1]: Installed new job udev-settle.service/start as 30
[   18.313783] systemd[1]: Installed new job fedora-readonly.service/start as 31
[   18.313796] systemd[1]: Installed new job remount-rootfs.service/start as 32
[   18.313810] systemd[1]: Installed new job fsck-root.service/start as 33
[   18.313824] systemd[1]: Installed new job fedora-storage-init-late.service/start as 34
[   18.313837] systemd[1]: Installed new job swap.target/start as 35
[   18.313852] systemd[1]: Installed new job dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.swap/start as 36
[   18.313882] systemd[1]: Installed new job dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.device/start as 37
[   18.313898] systemd[1]: Installed new job proc-bus-usb-setup.service/start as 38
[   18.313912] systemd[1]: Installed new job sys-kernel-security.mount/start as 39
[   18.313926] systemd[1]: Installed new job proc-sys-fs-binfmt_misc.automount/start as 40
[   18.313940] systemd[1]: Installed new job systemd-modules-load.service/start as 41
[   18.313954] systemd[1]: Installed new job systemd-sysctl.service/start as 42
[   18.313967] systemd[1]: Installed new job mandriva-kmsg-loglevel.service/start as 43
[   18.313981] systemd[1]: Installed new job systemd-vconsole-setup.service/start as 44
[   18.313995] systemd[1]: Installed new job sys-kernel-debug.mount/start as 45
[   18.314034] systemd[1]: Installed new job mandriva-clean-var-run-lock.service/start as 46
[   18.314048] systemd[1]: Installed new job systemd-tmpfiles-setup.service/start as 47
[   18.314062] systemd[1]: Installed new job dev-hugepages.mount/start as 48
[   18.314076] systemd[1]: Installed new job proc-bus-usb.automount/start as 49
[   18.314089] systemd[1]: Installed new job cryptsetup.target/start as 50
[   18.314103] systemd[1]: Installed new job systemd-random-seed-load.service/start as 51
[   18.314116] systemd[1]: Installed new job plymouth-start.service/start as 53
[   18.314130] systemd[1]: Installed new job systemd-ask-password-plymouth.path/start as 54
[   18.314144] systemd[1]: Installed new job plymouth-read-write.service/start as 55
[   18.314158] systemd[1]: Installed new job systemd-binfmt.service/start as 56
[   18.314172] systemd[1]: Installed new job systemd-ask-password-console.path/start as 57
[   18.314186] systemd[1]: Installed new job sys-fs-fuse-connections.mount/start as 58
[   18.314199] systemd[1]: Installed new job sys-kernel-config.mount/start as 59
[   18.314213] systemd[1]: Installed new job systemd-journald.service/start as 60
[   18.314227] systemd[1]: Installed new job dev-mqueue.mount/start as 61
[   18.314240] systemd[1]: Installed new job sockets.target/start as 64
[   18.314253] systemd[1]: Installed new job avahi-daemon.socket/start as 65
[   18.314267] systemd[1]: Installed new job dbus.socket/start as 66
[   18.314280] systemd[1]: Installed new job systemd-shutdownd.socket/start as 67
[   18.314294] systemd[1]: Installed new job systemd-initctl.socket/start as 68
[   18.314308] systemd[1]: Installed new job ip6tables.service/start as 69
[   18.314321] systemd[1]: Installed new job iptables.service/start as 70
[   18.314335] systemd[1]: Installed new job mandriva-boot-links.service/start as 71
[   18.314348] systemd[1]: Installed new job alsa-restore.service/start as 72
[   18.314362] systemd[1]: Installed new job console-kit-log-system-start.service/start as 73
[   18.314376] systemd[1]: Installed new job fedora-autorelabel-mark.service/start as 74
[   18.314390] systemd[1]: Installed new job fedora-configure.service/start as 75
[   18.314404] systemd[1]: Installed new job systemd-tmpfiles-clean.timer/start as 76
[   18.314418] systemd[1]: Installed new job fedora-loadmodules.service/start as 77
[   18.314432] systemd[1]: Installed new job udev-trigger.service/start as 78
[   18.314445] systemd[1]: Installed new job fedora-autorelabel.service/start as 79
[   18.314459] systemd[1]: Installed new job mandriva-everytime.service/start as 80
[   18.314473] systemd[1]: Installed new job mandriva-save-dmesg.service/start as 81
[   18.314487] systemd[1]: Installed new job systemd-update-utmp-runlevel.service/start as 82
[   18.314501] systemd[1]: Installed new job alsa.service/start as 83
[   18.314514] systemd[1]: Installed new job ntpd.service/start as 84
[   18.314527] systemd[1]: Installed new job avahi-daemon.service/start as 85
[   18.314541] systemd[1]: Installed new job crond.service/start as 86
[   18.314554] systemd[1]: Installed new job irqbalance.service/start as 87
[   18.314567] systemd[1]: Installed new job acpid.service/start as 88
[   18.314581] systemd[1]: Installed new job sound.service/start as 89
[   18.314594] systemd[1]: Installed new job remote-fs.target/start as 90
[   18.314607] systemd[1]: Installed new job systemd-logind.service/start as 91
[   18.314621] systemd[1]: Installed new job systemd-user-sessions.service/start as 92
[   18.314635] systemd[1]: Installed new job dbus.service/start as 93
[   18.314648] systemd[1]: Installed new job rpcbind.target/start as 94
[   18.314661] systemd[1]: Installed new job systemd-ask-password-wall.path/start as 95
[   18.314675] systemd[1]: Installed new job prefdm.service/start as 126
[   18.314688] systemd[1]: Installed new job getty.target/start as 98
[   18.314702] systemd[1]: Installed new job plymouth-quit-wait.service/start as 102
[   18.314716] systemd[1]: Installed new job rc-local.service/start as 103
[   18.314729] systemd[1]: Installed new job rsyslog.service/start as 104
[   18.314743] systemd[1]: Installed new job lm_sensors.service/start as 106
[   18.314756] systemd[1]: Installed new job microcode_ctl.service/start as 107
[   18.314770] systemd[1]: Installed new job resolvconf.service/start as 108
[   18.314784] systemd[1]: Installed new job network-up.service/start as 109
[   18.314797] systemd[1]: Installed new job network.target/start as 110
[   18.314811] systemd[1]: Installed new job nss-lookup.target/start as 111
[   18.314824] systemd[1]: Installed new job shorewall.service/start as 112
[   18.314838] systemd[1]: Installed new job cpufreq.service/start as 113
[   18.314851] systemd[1]: Installed new job mandi.service/start as 114
[   18.314864] systemd[1]: Installed new job network.service/start as 115
[   18.314878] systemd[1]: Installed new job msec.service/start as 116
[   18.314891] systemd[1]: Installed new job partmon.service/start as 117
[   18.314905] systemd[1]: Installed new job systemd-readahead-replay.service/start as 120
[   18.314919] systemd[1]: Installed new job systemd-readahead-collect.service/start as 121
[   18.314933] systemd[1]: Installed new job systemd-readahead-done.timer/start as 122
[   18.314947] systemd[1]: Installed new job upowerd.service/start as 123
[   18.314960] systemd[1]: Installed new job polkitd.service/start as 124
[   18.314974] systemd[1]: Installed new job udisksd.service/start as 125
[   18.315064] systemd[1]: Enqueued job graphical.target/start as 1
[   18.315091] systemd[1]: Loaded units and determined initial transaction in 1s 78ms 381us.
[   18.315330] systemd[1]: Got SIGCHLD for process 246 (switch_root)
[   18.315480] systemd[1]: Child 246 died (code=exited, status=0/SUCCESS)
[   18.315836] systemd[1]: About to execute: /lib/systemd/systemd-readahead-collect
[   18.333153] systemd[1]: Forked /lib/systemd/systemd-readahead-collect as 250
[   18.333422] systemd[1]: systemd-readahead-collect.service changed dead -&gt; start
[   18.377392] systemd[1]: About to execute: /lib/systemd/systemd-readahead-replay
[   18.403128] systemd[1]: Forked /lib/systemd/systemd-readahead-replay as 251
[   18.403337] systemd[1]: systemd-readahead-replay.service changed dead -&gt; start
[   18.403410] systemd[1]: getty.target changed dead -&gt; active
[   18.403433] systemd[1]: Job getty.target/start finished, result=done
[   18.403773] systemd[1]: systemd-ask-password-wall.path changed dead -&gt; waiting
[   18.403800] systemd[1]: Job systemd-ask-password-wall.path/start finished, result=done
[   18.403837] systemd[1]: rpcbind.target changed dead -&gt; active
[   18.403857] systemd[1]: Job rpcbind.target/start finished, result=done
[   18.403898] systemd[1]: remote-fs.target changed dead -&gt; active
[   18.403919] systemd[1]: Job remote-fs.target/start finished, result=done
[   18.404092] systemd[1]: systemd-initctl.socket changed dead -&gt; listening
[   18.404114] systemd[1]: Job systemd-initctl.socket/start finished, result=done
[   18.404212] systemd[1]: systemd-shutdownd.socket changed dead -&gt; listening
[   18.404234] systemd[1]: Job systemd-shutdownd.socket/start finished, result=done
[   18.404285] systemd[1]: cryptsetup.target changed dead -&gt; active
[   18.404305] systemd[1]: Job cryptsetup.target/start finished, result=done
[   18.404421] systemd[1]: Autofs kernel version 1.0
[   18.404623] systemd[1]: Autofs protocol version 5.2
[   18.404653] systemd[1]: proc-sys-fs-binfmt_misc.automount changed dead -&gt; waiting
[   18.404693] systemd[1]: Job proc-sys-fs-binfmt_misc.automount/start finished, result=done
[   18.404987] systemd[1]: udev-kernel.socket changed dead -&gt; listening
[   18.405054] systemd[1]: Job udev-kernel.socket/start finished, result=done
[   18.405304] systemd[1]: udev-control.socket changed dead -&gt; listening
[   18.405328] systemd[1]: Job udev-control.socket/start finished, result=done
[   18.405579] systemd[1]: systemd-journald.socket changed dead -&gt; listening
[   18.405602] systemd[1]: Job systemd-journald.socket/start finished, result=done
[   18.551603] systemd[1]: About to execute: /bin/mount tmpfs /media -t tmpfs -o mode=755,nosuid,nodev,noexec
[   18.569145] systemd[1]: Forked /bin/mount as 252
[   18.569219] systemd[1]: media.mount changed dead -&gt; mounting
[   18.569547] systemd[1]: About to execute: /bin/mount securityfs /sys/kernel/security -t securityfs
[   18.597145] systemd[1]: Forked /bin/mount as 253
[   18.597209] systemd[1]: sys-kernel-security.mount changed dead -&gt; mounting
[   18.718955] systemd[1]: About to execute: /bin/dmesg -n $LOGLEVEL
[   18.735154] systemd[1]: Forked /bin/dmesg as 254
[   18.735563] systemd[1]: mandriva-kmsg-loglevel.service changed dead -&gt; start
[   18.735872] systemd[1]: About to execute: /bin/mount debugfs /sys/kernel/debug -t debugfs
[   18.751144] systemd[1]: Forked /bin/mount as 255
[   18.751213] systemd[1]: sys-kernel-debug.mount changed dead -&gt; mounting
[   18.751510] systemd[1]: About to execute: /bin/mount hugetlbfs /dev/hugepages -t hugetlbfs
[   18.772190] systemd[1]: Forked /bin/mount as 256
[   18.772256] systemd[1]: dev-hugepages.mount changed dead -&gt; mounting
[   18.772843] systemd[1]: About to execute: /lib/udev/udevd
[   18.797150] systemd[1]: Forked /lib/udev/udevd as 257
[   18.797416] systemd[1]: udev.service changed dead -&gt; start
[   18.797831] systemd[1]: About to execute: /sbin/udevadm trigger --type=subsystems --action=add
[   18.820106] systemd[1]: Forked /sbin/udevadm as 258
[   18.820343] systemd[1]: udev-trigger.service changed dead -&gt; start
[   18.820832] systemd[1]: About to execute: /bin/mount mqueue /dev/mqueue -t mqueue
[   18.836113] systemd[1]: Forked /bin/mount as 259
[   18.836177] systemd[1]: dev-mqueue.mount changed dead -&gt; mounting
[   18.836594] systemd[1]: About to execute: /lib/systemd/systemd-journald
[   18.853101] systemd[1]: Forked /lib/systemd/systemd-journald as 260
[   18.853426] systemd[1]: systemd-journald.service changed dead -&gt; running
[   18.853454] systemd[1]: Job systemd-journald.service/start finished, result=done
[   18.854512] systemd[1]: Running GC...
[   18.854618] systemd[1]: Collecting plymouth-reboot.service
[   18.854675] systemd[1]: Collecting console-kit-log-system-restart.service
[   18.854689] systemd[1]: Collecting reboot.target
[   18.854740] systemd[1]: Collecting plymouth-poweroff.service
[   18.854792] systemd[1]: Collecting console-kit-log-system-stop.service
[   18.854806] systemd[1]: Collecting poweroff.target
[   18.854876] systemd[1]: Collecting netfs.service
[   18.856997] systemd[1]: Received SIGCHLD from PID 247 (n/a).
[   18.857114] systemd[1]: Got notification message for unit systemd-readahead-collect.service
[   18.857131] systemd[1]: systemd-readahead-collect.service: Got message
[   18.857147] systemd[1]: systemd-readahead-collect.service: got READY=1
[   18.857290] systemd[1]: systemd-readahead-collect.service changed start -&gt; running
[   18.857317] systemd[1]: Job systemd-readahead-collect.service/start finished, result=done
[   18.857937] systemd[1]: systemd-readahead-collect.service: got STATUS=Collecting readahead data
[   18.857975] systemd[1]: Got notification message for unit systemd-readahead-replay.service
[   18.857990] systemd[1]: systemd-readahead-replay.service: Got message
[   18.858055] systemd[1]: systemd-readahead-replay.service: got STATUS=Replaying readahead data
[   18.858083] systemd[1]: Got notification message for unit systemd-readahead-replay.service
[   18.858097] systemd[1]: systemd-readahead-replay.service: Got message
[   18.858110] systemd[1]: systemd-readahead-replay.service: got READY=1
[   18.858229] systemd[1]: systemd-readahead-replay.service changed start -&gt; running
[   18.858256] systemd[1]: Job systemd-readahead-replay.service/start finished, result=done
[   18.859437] systemd[1]: About to execute: /lib/systemd/fedora-loadmodules
[   18.878210] systemd[1]: Forked /lib/systemd/fedora-loadmodules as 262
[   18.878451] systemd[1]: fedora-loadmodules.service changed dead -&gt; start
[   18.878873] systemd[1]: About to execute: /lib/systemd/systemd-remount-api-vfs
[   18.906153] systemd[1]: Forked /lib/systemd/systemd-remount-api-vfs as 263
[   18.906392] systemd[1]: systemd-remount-api-vfs.service changed dead -&gt; start
[   18.906478] systemd[1]: Starting of fsck-root.service requested but condition failed. Ignoring.
[   18.906503] systemd[1]: Job fsck-root.service/start finished, result=done
[   18.907180] systemd[1]: About to execute: /bin/mount / -o remount
[   18.923131] systemd[1]: Forked /bin/mount as 264
[   18.923375] systemd[1]: remount-rootfs.service changed dead -&gt; start
[   18.923505] systemd[1]: Starting of proc-bus-usb-setup.service requested but condition failed. Ignoring.
[   18.923531] systemd[1]: Job proc-bus-usb-setup.service/start finished, result=done
[   18.924400] systemd[1]: Autofs protocol version 5.2
[   18.924448] systemd[1]: proc-bus-usb.automount changed dead -&gt; waiting
[   18.924486] systemd[1]: Job proc-bus-usb.automount/start finished, result=done
[   19.317521] udevd[257]: starting version 181
[   19.444564] systemd[1]: About to execute: /lib/systemd/systemd-modules-load
[   19.465085] systemd[1]: Forked /lib/systemd/systemd-modules-load as 268
[   19.465326] systemd[1]: systemd-modules-load.service changed dead -&gt; start
[   19.510182] systemd[1]: About to execute: /lib/systemd/systemd-sysctl
[   19.530123] systemd[1]: Forked /lib/systemd/systemd-sysctl as 269
[   19.530370] systemd[1]: systemd-sysctl.service changed dead -&gt; start
[   19.530738] systemd[1]: About to execute: /lib/systemd/systemd-vconsole-setup
[   19.554118] systemd[1]: Forked /lib/systemd/systemd-vconsole-setup as 270
[   19.554366] systemd[1]: systemd-vconsole-setup.service changed dead -&gt; start
[   19.599723] systemd[1]: Starting of systemd-binfmt.service requested but condition failed. Ignoring.
[   19.599747] systemd[1]: Job systemd-binfmt.service/start finished, result=done
[   19.600781] systemd[1]: Incoming traffic on systemd-journald.socket
[   19.600837] systemd[1]: systemd-journald.socket changed listening -&gt; running
[   19.600989] systemd[1]: Received SIGCHLD from PID 258 (udevadm).
[   19.601111] systemd[1]: Got SIGCHLD for process 258 (udevadm)
[   19.601149] systemd[1]: Got notification message for unit udev.service
[   19.601163] systemd[1]: udev.service: Got message
[   19.601177] systemd[1]: udev.service: got READY=1
[   19.601296] systemd[1]: udev.service changed start -&gt; running
[   19.601332] systemd[1]: Job udev.service/start finished, result=done
[   19.602250] systemd[1]: Child 258 died (code=exited, status=0/SUCCESS)
[   19.602268] systemd[1]: Child 258 belongs to udev-trigger.service
[   19.602304] systemd[1]: udev-trigger.service: main process exited, code=exited, status=0
[   19.602318] systemd[1]: udev-trigger.service running next main command for state start
[   19.602378] systemd[1]: About to execute: /sbin/udevadm trigger --type=devices --action=add
[   19.618111] systemd[1]: Forked /sbin/udevadm as 271
[   19.618404] systemd[1]: Incoming traffic on udev-kernel.socket
[   19.618456] systemd[1]: udev-kernel.socket changed listening -&gt; running
[   19.636740] systemd[1]: Accepted connection on private bus.
[   19.868563] systemd[1]: Received SIGCHLD from PID 271 (udevadm).
[   19.868648] systemd[1]: Got SIGCHLD for process 271 (udevadm)
[   19.868756] systemd[1]: Child 271 died (code=exited, status=0/SUCCESS)
[   19.868770] systemd[1]: Child 271 belongs to udev-trigger.service
[   19.868797] systemd[1]: udev-trigger.service: main process exited, code=exited, status=0
[   19.885073] systemd[1]: udev-trigger.service changed start -&gt; exited
[   19.885102] systemd[1]: Job udev-trigger.service/start finished, result=done
[   19.885949] systemd[1]: About to execute: /sbin/udevadm settle
[   19.901084] systemd[1]: Forked /sbin/udevadm as 273
[   19.901314] systemd[1]: udev-settle.service changed dead -&gt; start
[   19.901632] systemd[1]: Accepted connection on private bus.
[   19.903124] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   19.903381] systemd[1]: udev-trigger.service: cgroup is empty
[   19.904169] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   19.904401] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   19.904632] systemd[1]: udev-trigger.service: cgroup is empty
[   19.904787] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   19.904871] systemd[1]: Incoming traffic on udev-control.socket
[   19.904902] systemd[1]: udev-control.socket changed listening -&gt; running
[   20.098629] systemd[1]: Received SIGCHLD from PID 269 (systemd-sysctl).
[   20.098727] systemd[1]: Got SIGCHLD for process 269 (systemd-sysctl)
[   20.098844] systemd[1]: Child 269 died (code=exited, status=0/SUCCESS)
[   20.098859] systemd[1]: Child 269 belongs to systemd-sysctl.service
[   20.098899] systemd[1]: systemd-sysctl.service: main process exited, code=exited, status=0
[   20.120107] systemd[1]: systemd-sysctl.service changed start -&gt; exited
[   20.120139] systemd[1]: Job systemd-sysctl.service/start finished, result=done
[   20.120861] systemd[1]: Accepted connection on private bus.
[   20.121429] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.121604] systemd[1]: systemd-sysctl.service: cgroup is empty
[   20.121713] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.156068] systemd[1]: Received SIGCHLD from PID 254 (dmesg).
[   20.156194] systemd[1]: Got SIGCHLD for process 254 (dmesg)
[   20.156340] systemd[1]: Child 254 died (code=exited, status=0/SUCCESS)
[   20.156363] systemd[1]: Child 254 belongs to mandriva-kmsg-loglevel.service
[   20.156405] systemd[1]: mandriva-kmsg-loglevel.service: main process exited, code=exited, status=0
[   20.168115] systemd[1]: mandriva-kmsg-loglevel.service changed start -&gt; exited
[   20.168146] systemd[1]: Job mandriva-kmsg-loglevel.service/start finished, result=done
[   20.168820] systemd[1]: Accepted connection on private bus.
[   20.169474] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.169703] systemd[1]: mandriva-kmsg-loglevel.service: cgroup is empty
[   20.169760] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.287556] systemd[1]: media.mount changed mounting -&gt; mounting-done
[   20.287590] systemd[1]: Job media.mount/start finished, result=done
[   20.288297] systemd[1]: dev-hugepages.mount changed mounting -&gt; mounting-done
[   20.288332] systemd[1]: Job dev-hugepages.mount/start finished, result=done
[   20.289850] systemd[1]: dev-mqueue.mount changed mounting -&gt; mounting-done
[   20.289887] systemd[1]: Job dev-mqueue.mount/start finished, result=done
[   20.290483] systemd[1]: sys-kernel-debug.mount changed mounting -&gt; mounting-done
[   20.290520] systemd[1]: Job sys-kernel-debug.mount/start finished, result=done
[   20.290970] systemd[1]: sys-kernel-security.mount changed mounting -&gt; mounting-done
[   20.291058] systemd[1]: Job sys-kernel-security.mount/start finished, result=done
[   20.291659] systemd[1]: Received SIGCHLD from PID 252 (mount).
[   20.291769] systemd[1]: Got SIGCHLD for process 252 (mount)
[   20.291833] systemd[1]: Child 252 died (code=exited, status=0/SUCCESS)
[   20.291854] systemd[1]: Child 252 belongs to media.mount
[   20.291895] systemd[1]: media.mount mount process exited, code=exited status=0
[   20.291940] systemd[1]: media.mount changed mounting-done -&gt; mounted
[   20.292146] systemd[1]: Got SIGCHLD for process 253 (mount)
[   20.292209] systemd[1]: Child 253 died (code=exited, status=0/SUCCESS)
[   20.292230] systemd[1]: Child 253 belongs to sys-kernel-security.mount
[   20.292263] systemd[1]: sys-kernel-security.mount mount process exited, code=exited status=0
[   20.292303] systemd[1]: sys-kernel-security.mount changed mounting-done -&gt; mounted
[   20.292459] systemd[1]: Got SIGCHLD for process 255 (mount)
[   20.292518] systemd[1]: Child 255 died (code=exited, status=0/SUCCESS)
[   20.292538] systemd[1]: Child 255 belongs to sys-kernel-debug.mount
[   20.292569] systemd[1]: sys-kernel-debug.mount mount process exited, code=exited status=0
[   20.292610] systemd[1]: sys-kernel-debug.mount changed mounting-done -&gt; mounted
[   20.292742] systemd[1]: Got SIGCHLD for process 256 (mount)
[   20.292784] systemd[1]: Child 256 died (code=exited, status=0/SUCCESS)
[   20.292798] systemd[1]: Child 256 belongs to dev-hugepages.mount
[   20.292820] systemd[1]: dev-hugepages.mount mount process exited, code=exited status=0
[   20.292845] systemd[1]: dev-hugepages.mount changed mounting-done -&gt; mounted
[   20.292945] systemd[1]: Got SIGCHLD for process 259 (mount)
[   20.292982] systemd[1]: Child 259 died (code=exited, status=0/SUCCESS)
[   20.292995] systemd[1]: Child 259 belongs to dev-mqueue.mount
[   20.293065] systemd[1]: dev-mqueue.mount mount process exited, code=exited status=0
[   20.293098] systemd[1]: dev-mqueue.mount changed mounting-done -&gt; mounted
[   20.293242] systemd[1]: Got SIGCHLD for process 263 (systemd-remount)
[   20.293298] systemd[1]: Child 263 died (code=exited, status=0/SUCCESS)
[   20.293317] systemd[1]: Child 263 belongs to systemd-remount-api-vfs.service
[   20.293358] systemd[1]: systemd-remount-api-vfs.service: main process exited, code=exited, status=0
[   20.305158] systemd[1]: systemd-remount-api-vfs.service changed start -&gt; exited
[   20.305190] systemd[1]: Job systemd-remount-api-vfs.service/start finished, result=done
[   20.305896] systemd[1]: Accepted connection on private bus.
[   20.306117] systemd[1]: Accepted connection on private bus.
[   20.306354] systemd[1]: Accepted connection on private bus.
[   20.306624] systemd[1]: Accepted connection on private bus.
[   20.306908] systemd[1]: Accepted connection on private bus.
[   20.307202] systemd[1]: Accepted connection on private bus.
[   20.307844] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.321348] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.321433] EXT4-fs (sda5): re-mounted. Opts: acl
[   20.334388] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.334618] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.350221] systemd[1]: Got notification message for unit systemd-journald.service
[   20.350247] systemd[1]: systemd-journald.service: Got message
[   20.350274] systemd[1]: systemd-journald.service: got STATUS=Processing requests...
[   20.350429] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.351576] systemd[1]: Received SIGCHLD from PID 264 (mount).
[   20.351658] systemd[1]: Got SIGCHLD for process 264 (mount)
[   20.351705] systemd[1]: Child 264 died (code=exited, status=0/SUCCESS)
[   20.351720] systemd[1]: Child 264 belongs to remount-rootfs.service
[   20.351750] systemd[1]: remount-rootfs.service: main process exited, code=exited, status=0
[   20.366132] systemd[1]: remount-rootfs.service changed start -&gt; exited
[   20.366162] systemd[1]: Job remount-rootfs.service/start finished, result=done
[   20.367238] systemd[1]: About to execute: /lib/systemd/fedora-readonly
[   20.382139] systemd[1]: Forked /lib/systemd/fedora-readonly as 289
[   20.382449] systemd[1]: fedora-readonly.service changed dead -&gt; start
[   20.382540] systemd[1]: local-fs-pre.target changed dead -&gt; active
[   20.382572] systemd[1]: Job local-fs-pre.target/start finished, result=done
[   20.382805] systemd[1]: Accepted connection on private bus.
[   20.383073] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.399317] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.399642] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.399779] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.399951] systemd[1]: systemd-remount-api-vfs.service: cgroup is empty
[   20.400105] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.419364] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.419516] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.419783] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.420055] systemd[1]: remount-rootfs.service: cgroup is empty
[   20.420192] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.470818] Non-volatile memory driver v1.3
[   20.585390] systemd[1]: Received SIGCHLD from PID 270 (systemd-vconsol).
[   20.585510] systemd[1]: Got SIGCHLD for process 270 (systemd-vconsol)
[   20.585576] systemd[1]: Child 270 died (code=exited, status=0/SUCCESS)
[   20.585598] systemd[1]: Child 270 belongs to systemd-vconsole-setup.service
[   20.585670] systemd[1]: systemd-vconsole-setup.service: main process exited, code=exited, status=0
[   20.604339] systemd[1]: systemd-vconsole-setup.service changed start -&gt; exited
[   20.604377] systemd[1]: Job systemd-vconsole-setup.service/start finished, result=done
[   20.605188] systemd[1]: Accepted connection on private bus.
[   20.605783] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.605992] systemd[1]: systemd-vconsole-setup.service: cgroup is empty
[   20.606241] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   20.651779] systemd[1]: Received SIGCHLD from PID 268 (systemd-modules).
[   20.651893] systemd[1]: Got SIGCHLD for process 268 (systemd-modules)
[   20.651971] systemd[1]: Child 268 died (code=exited, status=0/SUCCESS)
[   20.651986] systemd[1]: Child 268 belongs to systemd-modules-load.service
[   20.652068] systemd[1]: systemd-modules-load.service: main process exited, code=exited, status=0
[   20.664152] systemd[1]: systemd-modules-load.service changed start -&gt; exited
[   20.664191] systemd[1]: Job systemd-modules-load.service/start finished, result=done
[   20.664749] systemd[1]: Starting of sys-fs-fuse-connections.mount requested but condition failed. Ignoring.
[   20.664778] systemd[1]: Job sys-fs-fuse-connections.mount/start finished, result=done
[   20.664908] systemd[1]: Starting of sys-kernel-config.mount requested but condition failed. Ignoring.
[   20.664925] systemd[1]: Job sys-kernel-config.mount/start finished, result=done
[   20.665173] systemd[1]: Accepted connection on private bus.
[   20.665749] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   20.665919] systemd[1]: systemd-modules-load.service: cgroup is empty
[   20.666074] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   21.989984] systemd[1]: Received SIGCHLD from PID 262 (fedora-loadmodu).
[   21.990117] systemd[1]: Got SIGCHLD for process 262 (fedora-loadmodu)
[   21.990185] systemd[1]: Child 262 died (code=exited, status=0/SUCCESS)
[   21.990201] systemd[1]: Child 262 belongs to fedora-loadmodules.service
[   21.990238] systemd[1]: fedora-loadmodules.service: main process exited, code=exited, status=0
[   22.001158] systemd[1]: fedora-loadmodules.service changed start -&gt; exited
[   22.001188] systemd[1]: Job fedora-loadmodules.service/start finished, result=done
[   22.001879] systemd[1]: Accepted connection on private bus.
[   22.002367] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   22.002542] systemd[1]: fedora-loadmodules.service: cgroup is empty
[   22.002650] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   22.871350] systemd[1]: Received SIGCHLD from PID 289 (fedora-readonly).
[   22.871474] systemd[1]: Got SIGCHLD for process 289 (fedora-readonly)
[   22.871598] systemd[1]: Child 289 died (code=exited, status=0/SUCCESS)
[   22.871613] systemd[1]: Child 289 belongs to fedora-readonly.service
[   22.871645] systemd[1]: fedora-readonly.service: main process exited, code=exited, status=0
[   22.888160] systemd[1]: fedora-readonly.service changed start -&gt; exited
[   22.888191] systemd[1]: Job fedora-readonly.service/start finished, result=done
[   22.888903] systemd[1]: Accepted connection on private bus.
[   22.889552] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   22.889780] systemd[1]: fedora-readonly.service: cgroup is empty
[   22.889840] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   23.444861] ACPI: Fan [FAN] (on)
[   23.493944] systemd[1]: dev-ttyS1.device changed dead -&gt; plugged
[   23.493995] systemd[1]: sys-devices-platform-serial8250-tty-ttyS1.device changed dead -&gt; plugged
[   23.496218] systemd[1]: dev-ttyS0.device changed dead -&gt; plugged
[   23.496276] systemd[1]: sys-devices-platform-serial8250-tty-ttyS0.device changed dead -&gt; plugged
[   23.496332] systemd[1]: Running GC...
[   23.497566] systemd[1]: dev-ttyS2.device changed dead -&gt; plugged
[   23.497617] systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device changed dead -&gt; plugged
[   23.502636] systemd[1]: dev-ttyS3.device changed dead -&gt; plugged
[   23.502695] systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device changed dead -&gt; plugged
[   23.531267] ACPI: AC Adapter [AC] (on-line)
[   23.557115] thermal LNXTHERM:00: registered as thermal_zone0
[   23.557126] ACPI: Thermal Zone [THRM] (38 C)
[   23.559357] systemd[1]: dev-tty0.device changed dead -&gt; plugged
[   23.559410] systemd[1]: sys-devices-virtual-tty-tty0.device changed dead -&gt; plugged
[   23.560881] systemd[1]: dev-tty10.device changed dead -&gt; plugged
[   23.560933] systemd[1]: sys-devices-virtual-tty-tty10.device changed dead -&gt; plugged
[   23.562224] systemd[1]: dev-tty11.device changed dead -&gt; plugged
[   23.562275] systemd[1]: sys-devices-virtual-tty-tty11.device changed dead -&gt; plugged
[   23.562940] systemd[1]: dev-tty12.device changed dead -&gt; plugged
[   23.562995] systemd[1]: sys-devices-virtual-tty-tty12.device changed dead -&gt; plugged
[   23.563494] systemd[1]: dev-tty1.device changed dead -&gt; plugged
[   23.563541] systemd[1]: sys-devices-virtual-tty-tty1.device changed dead -&gt; plugged
[   23.566883] systemd[1]: dev-tty2.device changed dead -&gt; plugged
[   23.566925] systemd[1]: sys-devices-virtual-tty-tty2.device changed dead -&gt; plugged
[   23.576762] systemd[1]: dev-tty3.device changed dead -&gt; plugged
[   23.576810] systemd[1]: sys-devices-virtual-tty-tty3.device changed dead -&gt; plugged
[   23.576865] systemd[1]: Running GC...
[   23.583912] systemd[1]: dev-tty4.device changed dead -&gt; plugged
[   23.583950] systemd[1]: sys-devices-virtual-tty-tty4.device changed dead -&gt; plugged
[   23.589286] systemd[1]: dev-tty5.device changed dead -&gt; plugged
[   23.589335] systemd[1]: sys-devices-virtual-tty-tty5.device changed dead -&gt; plugged
[   23.594176] systemd[1]: dev-tty6.device changed dead -&gt; plugged
[   23.594226] systemd[1]: sys-devices-virtual-tty-tty6.device changed dead -&gt; plugged
[   23.597609] systemd[1]: dev-tty8.device changed dead -&gt; plugged
[   23.597663] systemd[1]: sys-devices-virtual-tty-tty8.device changed dead -&gt; plugged
[   23.598383] systemd[1]: dev-tty7.device changed dead -&gt; plugged
[   23.598431] systemd[1]: sys-devices-virtual-tty-tty7.device changed dead -&gt; plugged
[   23.599374] systemd[1]: dev-tty9.device changed dead -&gt; plugged
[   23.599421] systemd[1]: sys-devices-virtual-tty-tty9.device changed dead -&gt; plugged
[   23.618178] bcma: Core 0 found: ChipCommon (manuf 0x4BF, id 0x800, rev 0x24, class 0x0)
[   23.618210] bcma: Core 1 found: IEEE 802.11 (manuf 0x4BF, id 0x812, rev 0x18, class 0x0)
[   23.618271] bcma: Core 2 found: PCIe (manuf 0x4BF, id 0x820, rev 0x11, class 0x0)
[   23.628320] bcma: Bus registered
[   23.694163] wmi: Mapper loaded
[   24.127427] ACPI: Battery Slot [BAT0] (battery present)
[   24.315723] acer_wmi: Acer Laptop ACPI-WMI Extras
[   24.315761] acer_wmi: Function bitmap for Communication Button: 0x801
[   24.315772] acer_wmi: Brightness must be controlled by generic video driver
[   24.338932] input: Acer WMI hotkeys as /devices/virtual/input/input8
[   24.609152] iTCO_vendor_support: vendor-support=0
[   24.654636] atl1c 0000:01:00.0: version 1.0.1.0-NAPI
[   24.683594] systemd[1]: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-net-eth0.device changed dead -&gt; plugged
[   24.852075] usb 4-1: new full-speed USB device number 2 using uhci_hcd
[   24.903405] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[   25.014139] usb 4-1: New USB device found, idVendor=0489, idProduct=e011
[   25.014153] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   25.014163] usb 4-1: Product: Acer Module
[   25.014170] usb 4-1: Manufacturer: Broadcom Corp
[   25.014178] usb 4-1: SerialNumber: C0CB38E7B98E
[   25.024343] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
[   25.024423] SKU: Nid=0x1d sku_cfg=0x4016892d
[   25.024430] SKU: port_connectivity=0x1
[   25.024435] SKU: enable_pcbeep=0x1
[   25.024440] SKU: check_sum=0x00000006
[   25.024446] SKU: customization=0x00000089
[   25.024451] SKU: external_amp=0x5
[   25.024456] SKU: platform_type=0x1
[   25.024461] SKU: swap=0x0
[   25.024466] SKU: override=0x1
[   25.024655] autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   25.024667]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   25.024675]    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   25.024680]    mono: mono_out=0x0
[   25.024685]    inputs: Internal Mic=0x12 Mic=0x18
[   25.025411] iTCO_wdt: Found a NM10 TCO device (Version=2, TCOBASE=0x0460)
[   25.025595] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=1)
[   25.027705] realtek: No valid SSID, checking pincfg 0x4016892d for NID 0x1d
[   25.027714] realtek: Enabling init ASM_ID=0x892d CODEC_ID=10ec0272
[   25.034739] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   25.035080] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   25.177741] Bluetooth: Core ver 2.16
[   25.177831] NET: Registered protocol family 31
[   25.177840] Bluetooth: HCI device and connection manager initialized
[   25.177849] Bluetooth: HCI socket layer initialized
[   25.177857] Bluetooth: L2CAP socket layer initialized
[   25.177875] Bluetooth: SCO socket layer initialized
[   25.184134] Linux media interface: v0.10
[   25.280963] systemd[1]: sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device changed dead -&gt; plugged
[   25.280996] systemd[1]: Trying to enqueue job sound.target/start/fail
[   25.281081] systemd[1]: Installed new job sound.target/start as 129
[   25.281106] systemd[1]: Enqueued job sound.target/start as 129
[   25.281153] systemd[1]: sound.target changed dead -&gt; active
[   25.281173] systemd[1]: Job sound.target/start finished, result=done
[   25.499541] Linux video capture interface: v2.00
[   25.521289] usb 5-3.1: new high-speed USB device number 6 using ehci_hcd
[   25.555769] cfg80211: Calling CRDA to update world regulatory domain
[   25.612262] usb 5-3.1: New USB device found, idVendor=07ab, idProduct=fcf6
[   25.612272] usb 5-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   25.612280] usb 5-3.1: Product: DataBar USB2.0
[   25.612285] usb 5-3.1: Manufacturer: Freecom
[   25.612290] usb 5-3.1: SerialNumber: 907708280002
[   25.613645] usb 5-3.3: USB disconnect, device number 4
[   25.643617] usbcore: registered new interface driver btusb
[   25.717858] usbcore: registered new interface driver uas
[   25.808282] usb 5-3.3: new low-speed USB device number 7 using ehci_hcd
[   25.899771] usb 5-3.3: New USB device found, idVendor=046d, idProduct=c03d
[   25.899781] usb 5-3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   25.899789] usb 5-3.3: Product: USB-PS/2 Optical Mouse
[   25.899794] usb 5-3.3: Manufacturer: Logitech
[   25.904855] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.7/usb5/5-3/5-3.3/5-3.3:1.0/input/input11
[   25.905310] generic-usb 0003:046D:C03D.0002: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.7-3.3/input0
[   26.006112] systemd[1]: sys-devices-pci0000:00-0000:00:1d.3-usb4-4\x2d1-4\x2d1:1.0-bluetooth-hci0.device changed dead -&gt; plugged
[   26.006147] systemd[1]: Trying to enqueue job bluetooth.target/start/fail
[   26.006553] systemd[1]: Installed new job bluetooth.target/start as 134
[   26.006569] systemd[1]: Installed new job bluetooth.service/start as 135
[   26.006590] systemd[1]: Enqueued job bluetooth.target/start as 134
[   26.006632] systemd[1]: Running GC...
[   26.212241] uvcvideo: Found UVC 1.00 device 1.3M WebCam (0402:9665)
[   26.215441] input: 1.3M WebCam as /devices/pci0000:00/0000:00:1d.7/usb5/5-4/5-4:1.0/input/input12
[   26.215763] usbcore: registered new interface driver uvcvideo
[   26.215771] USB Video Class driver (1.1.1)
[   26.272326] Initializing USB Mass Storage driver...
[   26.272786] scsi4 : usb-storage 5-3.1:1.0
[   26.273111] usbcore: registered new interface driver usb-storage
[   26.273120] USB Mass Storage support registered.
[   26.422401] cfg80211: World regulatory domain updated:
[   26.422410] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   26.422419] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   26.422426] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   26.422434] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   26.422441] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   26.422448] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   26.936012] brcmsmac bcma0:0: mfg 4bf core 812 rev 24 class 0 irq 17
[   26.966270] ieee80211 phy0: brcmsmac: fail to load firmware brcm/bcm43xx-0.fw
[   26.966283] ieee80211 phy0: brcmsmac: Failed to find firmware usually in /lib/firmware/brcm
[   26.966307] brcmsmac: brcms_bcma_probe: brcms_attach failed!
[   26.966402] brcms_module_init: register returned 0
[   27.113301] b43-phy1: Broadcom 4313 WLAN found (core revision 24)
[   27.114181] b43-phy1 ERROR: FOUND UNSUPPORTED PHY (Analog 10, Type 8, Revision 1)
[   27.114202] b43: probe of bcma0:0 failed with error -95
[   27.114283] Broadcom 43xx driver loaded [ Features: PNLS ]
[   27.275852] scsi 4:0:0:0: Direct-Access     Freecom  DataBar USB2.0   1100 PQ: 0 ANSI: 0 CCS
[   27.278558] sd 4:0:0:0: [sdb] 15858688 512-byte logical blocks: (8.11 GB/7.56 GiB)
[   27.279688] sd 4:0:0:0: [sdb] Write Protect is off
[   27.279699] sd 4:0:0:0: [sdb] Mode Sense: 43 00 00 00
[   27.280851] sd 4:0:0:0: [sdb] No Caching mode page present
[   27.280872] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[   27.286920] sd 4:0:0:0: [sdb] No Caching mode page present
[   27.286929] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[   27.379633]  sdb: sdb1
[   27.383711] sd 4:0:0:0: [sdb] No Caching mode page present
[   27.383722] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[   27.383734] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[   28.139339] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1d.7\x2dusb\x2d0:3.1:1.0\x2dscsi\x2d0:0:0:0.device changed dead -&gt; plugged
[   28.139378] systemd[1]: dev-disk-by\x2did-usb\x2dFreecom_DataBar_USB2.0_907708280002\x2d0:0.device changed dead -&gt; plugged
[   28.139404] systemd[1]: dev-sdb.device changed dead -&gt; plugged
[   28.139428] systemd[1]: sys-devices-pci0000:00-0000:00:1d.7-usb5-5\x2d3-5\x2d3.1-5\x2d3.1:1.0-host4-target4:0:0-4:0:0:0-block-sdb.device changed dead -&gt; plugged
[   28.211051] systemd[1]: dev-disk-by\x2duuid-881C\x2dACA6.device changed dead -&gt; plugged
[   28.211099] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1d.7\x2dusb\x2d0:3.1:1.0\x2dscsi\x2d0:0:0:0\x2dpart1.device changed dead -&gt; plugged
[   28.211127] systemd[1]: dev-disk-by\x2did-usb\x2dFreecom_DataBar_USB2.0_907708280002\x2d0:0\x2dpart1.device changed dead -&gt; plugged
[   28.211152] systemd[1]: dev-sdb1.device changed dead -&gt; plugged
[   28.211177] systemd[1]: sys-devices-pci0000:00-0000:00:1d.7-usb5-5\x2d3-5\x2d3.1-5\x2d3.1:1.0-host4-target4:0:0-4:0:0:0-block-sdb-sdb1.device changed dead -&gt; plugged
[   28.313952] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0.device changed dead -&gt; plugged
[   28.314047] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac.device changed dead -&gt; plugged
[   28.314087] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269.device changed dead -&gt; plugged
[   28.314126] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269.device changed dead -&gt; plugged
[   28.314163] systemd[1]: dev-sda.device changed dead -&gt; plugged
[   28.314200] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device changed dead -&gt; plugged
[   28.327492] systemd[1]: dev-disk-by\x2duuid-4ff2d08b\x2dfd50\x2d4296\x2db967\x2d64292c11b6ca.device changed dead -&gt; plugged
[   28.327534] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0\x2dpart5.device changed dead -&gt; plugged
[   28.327562] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac\x2dpart5.device changed dead -&gt; plugged
[   28.327588] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269\x2dpart5.device changed dead -&gt; plugged
[   28.327614] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269\x2dpart5.device changed dead -&gt; plugged
[   28.327639] systemd[1]: dev-sda5.device changed dead -&gt; plugged
[   28.327663] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device changed dead -&gt; plugged
[   28.327735] systemd[1]: Running GC...
[   28.572327] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0\x2dpart4.device changed dead -&gt; plugged
[   28.572379] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac\x2dpart4.device changed dead -&gt; plugged
[   28.572413] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269\x2dpart4.device changed dead -&gt; plugged
[   28.572446] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269\x2dpart4.device changed dead -&gt; plugged
[   28.572477] systemd[1]: dev-sda4.device changed dead -&gt; plugged
[   28.572507] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device changed dead -&gt; plugged
[   28.606753] systemd[1]: Received SIGRTMIN+20 from PID 136 (plymouthd).
[   28.606771] systemd[1]: Enabling showing of status.
[   28.683395] systemd[1]: dev-disk-by\x2duuid-16982CB9982C996F.device changed dead -&gt; plugged
[   28.683429] systemd[1]: Job dev-disk-by\x2duuid-16982CB9982C996F.device/start finished, result=done
[   28.683476] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0\x2dpart2.device changed dead -&gt; plugged
[   28.683504] systemd[1]: dev-disk-by\x2dlabel-SYSTEM\x5cx20RESERVED.device changed dead -&gt; plugged
[   28.683530] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac\x2dpart2.device changed dead -&gt; plugged
[   28.683556] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269\x2dpart2.device changed dead -&gt; plugged
[   28.683582] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269\x2dpart2.device changed dead -&gt; plugged
[   28.683607] systemd[1]: dev-sda2.device changed dead -&gt; plugged
[   28.683631] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device changed dead -&gt; plugged
[   28.683857] systemd[1]: About to execute: /bin/mount /media/win_c
[   28.705151] systemd[1]: Forked /bin/mount as 413
[   28.705220] systemd[1]: media-win_c.mount changed dead -&gt; mounting
[   29.013502] systemd[1]: dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.device changed dead -&gt; plugged
[   29.013536] systemd[1]: Job dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.device/start finished, result=done
[   29.013583] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0\x2dpart6.device changed dead -&gt; plugged
[   29.013611] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac\x2dpart6.device changed dead -&gt; plugged
[   29.013637] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269\x2dpart6.device changed dead -&gt; plugged
[   29.013664] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269\x2dpart6.device changed dead -&gt; plugged
[   29.013689] systemd[1]: dev-sda6.device changed dead -&gt; plugged
[   29.013713] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device changed dead -&gt; plugged
[   29.013985] systemd[1]: About to execute: /sbin/swapon -p 0 /dev/disk/by-uuid/141a82fa-829a-48ab-8de6-64d6c26f20b1
[   29.032200] systemd[1]: Forked /sbin/swapon as 415
[   29.032266] systemd[1]: dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.swap changed dead -&gt; activating
[   29.032330] systemd[1]: Running GC...
[   29.428407] Adding 1023996k swap on /dev/sda6.  Priority:0 extents:1 across:1023996k 
[   29.431060] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0\x2dpart6.swap changed dead -&gt; active
[   29.431406] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac\x2dpart6.swap changed dead -&gt; active
[   29.431688] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269\x2dpart6.swap changed dead -&gt; active
[   29.431952] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269\x2dpart6.swap changed dead -&gt; active
[   29.432380] systemd[1]: Received SIGCHLD from PID 415 (swapon).
[   29.432463] systemd[1]: Got SIGCHLD for process 415 (swapon)
[   29.432560] systemd[1]: Child 415 died (code=exited, status=0/SUCCESS)
[   29.432575] systemd[1]: Child 415 belongs to dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.swap
[   29.432601] systemd[1]: dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.swap swap process exited, code=exited status=0
[   29.432631] systemd[1]: dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.swap changed activating -&gt; active
[   29.432655] systemd[1]: Job dev-disk-by\x2duuid-141a82fa\x2d829a\x2d48ab\x2d8de6\x2d64d6c26f20b1.swap/start finished, result=done
[   29.433289] systemd[1]: swap.target changed dead -&gt; active
[   29.433319] systemd[1]: Job swap.target/start finished, result=done
[   29.434436] systemd[1]: Accepted connection on private bus.
[   29.434957] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   29.446234] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   31.146701] systemd[1]: dev-disk-by\x2duuid-2EAE2E6DAE2E2E31.device changed dead -&gt; plugged
[   31.146732] systemd[1]: Job dev-disk-by\x2duuid-2EAE2E6DAE2E2E31.device/start finished, result=done
[   31.146778] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0\x2dpart3.device changed dead -&gt; plugged
[   31.146806] systemd[1]: dev-disk-by\x2dlabel-Acer.device changed dead -&gt; plugged
[   31.146831] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac\x2dpart3.device changed dead -&gt; plugged
[   31.146856] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269\x2dpart3.device changed dead -&gt; plugged
[   31.146883] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269\x2dpart3.device changed dead -&gt; plugged
[   31.146908] systemd[1]: dev-sda3.device changed dead -&gt; plugged
[   31.146932] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device changed dead -&gt; plugged
[   31.190693] systemd[1]: About to execute: /bin/mount /mnt/Windows
[   31.209189] systemd[1]: Forked /bin/mount as 419
[   31.209252] systemd[1]: mnt-Windows.mount changed dead -&gt; mounting
[   31.799485] fuse init (API version 7.18)
[   31.801526] systemd[1]: sys-module-fuse.device changed dead -&gt; plugged
[   31.801570] systemd[1]: Trying to enqueue job sys-fs-fuse-connections.mount/start/fail
[   31.801722] systemd[1]: Installed new job sys-fs-fuse-connections.mount/start as 175
[   31.801755] systemd[1]: Enqueued job sys-fs-fuse-connections.mount/start as 175
[   31.802165] systemd[1]: About to execute: /bin/mount fusectl /sys/fs/fuse/connections -t fusectl
[   31.821178] systemd[1]: Forked /bin/mount as 421
[   31.821248] systemd[1]: sys-fs-fuse-connections.mount changed dead -&gt; mounting
[   31.824753] systemd[1]: sys-fs-fuse-connections.mount changed mounting -&gt; mounting-done
[   31.824789] systemd[1]: Job sys-fs-fuse-connections.mount/start finished, result=done
[   31.825566] systemd[1]: Received SIGCHLD from PID 421 (mount).
[   31.825678] systemd[1]: Got SIGCHLD for process 421 (mount)
[   31.825800] systemd[1]: Child 421 died (code=exited, status=0/SUCCESS)
[   31.825817] systemd[1]: Child 421 belongs to sys-fs-fuse-connections.mount
[   31.825849] systemd[1]: sys-fs-fuse-connections.mount mount process exited, code=exited status=0
[   31.825885] systemd[1]: sys-fs-fuse-connections.mount changed mounting-done -&gt; mounted
[   31.826161] systemd[1]: Accepted connection on private bus.
[   31.827211] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   31.844252] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   31.936391] systemd[1]: dev-disk-by\x2duuid-C0142C1F142C1B44.device changed dead -&gt; plugged
[   31.936431] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0\x2dpart1.device changed dead -&gt; plugged
[   31.936458] systemd[1]: dev-disk-by\x2dlabel-PQSERVICE.device changed dead -&gt; plugged
[   31.936483] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac\x2dpart1.device changed dead -&gt; plugged
[   31.936508] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269\x2dpart1.device changed dead -&gt; plugged
[   31.936535] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269\x2dpart1.device changed dead -&gt; plugged
[   31.936560] systemd[1]: dev-sda1.device changed dead -&gt; plugged
[   31.936584] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device changed dead -&gt; plugged
[   31.936658] systemd[1]: Running GC...
[   31.965705] systemd[1]: Received SIGCHLD from PID 273 (udevadm).
[   31.965809] systemd[1]: Got SIGCHLD for process 273 (udevadm)
[   31.965864] systemd[1]: Child 273 died (code=exited, status=0/SUCCESS)
[   31.965879] systemd[1]: Child 273 belongs to udev-settle.service
[   31.965914] systemd[1]: udev-settle.service: main process exited, code=exited, status=0
[   31.973170] systemd[1]: udev-settle.service changed start -&gt; exited
[   31.973200] systemd[1]: Job udev-settle.service/start finished, result=done
[   31.977239] systemd[1]: About to execute: /sbin/rmmod scsi_wait_scan
[   32.004180] systemd[1]: Forked /sbin/rmmod as 425
[   32.007321] systemd[1]: fedora-wait-storage.service changed dead -&gt; start
[   32.007760] systemd[1]: Starting of plymouth-start.service requested but condition failed. Ignoring.
[   32.007786] systemd[1]: Job plymouth-start.service/start finished, result=done
[   32.008633] systemd[1]: systemd-ask-password-plymouth.path changed dead -&gt; waiting
[   32.008673] systemd[1]: Job systemd-ask-password-plymouth.path/start finished, result=done
[   32.008747] systemd[1]: Starting of systemd-ask-password-console.path requested but condition failed. Ignoring.
[   32.008772] systemd[1]: Job systemd-ask-password-console.path/start finished, result=done
[   32.008953] systemd[1]: Received SIGCHLD from PID 425 (rmmod).
[   32.009100] systemd[1]: Got SIGCHLD for process 425 (rmmod)
[   32.009222] systemd[1]: Child 425 died (code=exited, status=1/FAILURE)
[   32.009241] systemd[1]: Child 425 belongs to fedora-wait-storage.service
[   32.009276] systemd[1]: fedora-wait-storage.service: main process exited, code=exited, status=1
[   32.009299] systemd[1]: fedora-wait-storage.service running next main command for state start
[   32.009373] systemd[1]: About to execute: /sbin/modprobe scsi_wait_scan
[   32.032133] systemd[1]: Forked /sbin/modprobe as 428
[   32.032708] systemd[1]: Accepted connection on private bus.
[   32.032881] systemd[1]: Accepted connection on private bus.
[   32.034131] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   32.034364] systemd[1]: udev-settle.service: cgroup is empty
[   32.035118] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   32.035340] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   32.035616] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   32.038168] systemd[1]: Received SIGCHLD from PID 428 (modprobe).
[   32.038262] systemd[1]: Got SIGCHLD for process 428 (modprobe)
[   32.038368] systemd[1]: Child 428 died (code=exited, status=0/SUCCESS)
[   32.038383] systemd[1]: Child 428 belongs to fedora-wait-storage.service
[   32.038413] systemd[1]: fedora-wait-storage.service: main process exited, code=exited, status=0
[   32.038428] systemd[1]: fedora-wait-storage.service running next main command for state start
[   32.038485] systemd[1]: About to execute: /sbin/rmmod scsi_wait_scan
[   32.053161] systemd[1]: Forked /sbin/rmmod as 430
[   32.053715] systemd[1]: Accepted connection on private bus.
[   32.054270] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   32.054602] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   32.056839] systemd[1]: Received SIGCHLD from PID 430 (rmmod).
[   32.056927] systemd[1]: Got SIGCHLD for process 430 (rmmod)
[   32.057080] systemd[1]: Child 430 died (code=exited, status=0/SUCCESS)
[   32.057095] systemd[1]: Child 430 belongs to fedora-wait-storage.service
[   32.057121] systemd[1]: fedora-wait-storage.service: main process exited, code=exited, status=0
[   32.068107] systemd[1]: fedora-wait-storage.service changed start -&gt; exited
[   32.068137] systemd[1]: Job fedora-wait-storage.service/start finished, result=done
[   32.068892] systemd[1]: About to execute: /lib/systemd/fedora-storage-init
[   32.087204] systemd[1]: Forked /lib/systemd/fedora-storage-init as 432
[   32.087496] systemd[1]: fedora-storage-init.service changed dead -&gt; start
[   32.087779] systemd[1]: Accepted connection on private bus.
[   32.088509] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   32.088744] systemd[1]: fedora-wait-storage.service: cgroup is empty
[   32.088964] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   32.137809] systemd[1]: Received SIGCHLD from PID 432 (fedora-storage-).
[   32.137930] systemd[1]: Got SIGCHLD for process 432 (fedora-storage-)
[   32.138095] systemd[1]: Child 432 died (code=exited, status=0/SUCCESS)
[   32.138111] systemd[1]: Child 432 belongs to fedora-storage-init.service
[   32.138140] systemd[1]: fedora-storage-init.service: main process exited, code=exited, status=0
[   32.156126] systemd[1]: fedora-storage-init.service changed start -&gt; exited
[   32.156156] systemd[1]: Job fedora-storage-init.service/start finished, result=done
[   32.156927] systemd[1]: About to execute: /lib/systemd/fedora-storage-init
[   32.180153] systemd[1]: Forked /lib/systemd/fedora-storage-init as 440
[   32.180439] systemd[1]: fedora-storage-init-late.service changed dead -&gt; start
[   32.180749] systemd[1]: Accepted connection on private bus.
[   32.181499] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   32.181737] systemd[1]: fedora-storage-init.service: cgroup is empty
[   32.181962] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   32.230403] systemd[1]: Received SIGCHLD from PID 440 (fedora-storage-).
[   32.230518] systemd[1]: Got SIGCHLD for process 440 (fedora-storage-)
[   32.230619] systemd[1]: Child 440 died (code=exited, status=0/SUCCESS)
[   32.230634] systemd[1]: Child 440 belongs to fedora-storage-init-late.service
[   32.230670] systemd[1]: fedora-storage-init-late.service: main process exited, code=exited, status=0
[   32.243103] systemd[1]: fedora-storage-init-late.service changed start -&gt; exited
[   32.243132] systemd[1]: Job fedora-storage-init-late.service/start finished, result=done
[   32.243829] systemd[1]: Accepted connection on private bus.
[   32.244379] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   32.244609] systemd[1]: fedora-storage-init-late.service: cgroup is empty
[   32.244738] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   32.705073] systemd[1]: media-win_c.mount changed mounting -&gt; mounting-done
[   32.705111] systemd[1]: Job media-win_c.mount/start finished, result=done
[   32.705958] systemd[1]: Received SIGCHLD from PID 413 (mount).
[   32.706170] systemd[1]: Got SIGCHLD for process 413 (mount)
[   32.706293] systemd[1]: Child 413 died (code=exited, status=0/SUCCESS)
[   32.706306] systemd[1]: Child 413 belongs to media-win_c.mount
[   32.706331] systemd[1]: media-win_c.mount mount process exited, code=exited status=0
[   32.706362] systemd[1]: media-win_c.mount changed mounting-done -&gt; mounted
[   32.766968] systemd[1]: dev-disk-by\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.device changed dead -&gt; plugged
[   32.767044] systemd[1]: Job dev-disk-by\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.device/start finished, result=done
[   32.767102] systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2dscsi\x2d0:0:0:0\x2dpart7.device changed dead -&gt; plugged
[   32.767131] systemd[1]: dev-disk-by\x2did-wwn\x2d0x50014ee655cdb8ac\x2dpart7.device changed dead -&gt; plugged
[   32.767157] systemd[1]: dev-disk-by\x2did-scsi\x2dSATA_WDC_WD2500BEVT\x2d_WD\x2dWX11A80T0269\x2dpart7.device changed dead -&gt; plugged
[   32.767183] systemd[1]: dev-disk-by\x2did-ata\x2dWDC_WD2500BEVT\x2d22A23T0_WD\x2dWX11A80T0269\x2dpart7.device changed dead -&gt; plugged
[   32.767208] systemd[1]: dev-sda7.device changed dead -&gt; plugged
[   32.767233] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device changed dead -&gt; plugged
[   32.767529] systemd[1]: About to execute: /lib/systemd/systemd-fsck /dev/disk/by-uuid/e9c0bf1d-c6ef-4352-80b2-d4f97bbd0439
[   32.793110] systemd[1]: Forked /lib/systemd/systemd-fsck as 450
[   32.793341] systemd[1]: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">fsck at dev-disk-by</A>\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.service changed dead -&gt; start
[   33.472914] systemd[1]: mnt-Windows.mount changed mounting -&gt; mounting-done
[   33.472947] systemd[1]: Job mnt-Windows.mount/start finished, result=done
[   33.473747] systemd[1]: Received SIGCHLD from PID 419 (mount).
[   33.473828] systemd[1]: Got SIGCHLD for process 419 (mount)
[   33.473926] systemd[1]: Child 419 died (code=exited, status=0/SUCCESS)
[   33.473940] systemd[1]: Child 419 belongs to mnt-Windows.mount
[   33.473966] systemd[1]: mnt-Windows.mount mount process exited, code=exited status=0
[   33.473996] systemd[1]: mnt-Windows.mount changed mounting-done -&gt; mounted
[   36.558595] systemd[1]: Received SIGCHLD from PID 251 (systemd-readahe).
[   36.558719] systemd[1]: Got SIGCHLD for process 251 (systemd-readahe)
[   36.558809] systemd[1]: Child 251 died (code=exited, status=0/SUCCESS)
[   36.558830] systemd[1]: Child 251 belongs to systemd-readahead-replay.service
[   36.558879] systemd[1]: systemd-readahead-replay.service: main process exited, code=exited, status=0
[   36.568151] systemd[1]: systemd-readahead-replay.service changed running -&gt; exited
[   36.568358] systemd[1]: Accepted connection on private bus.
[   36.568899] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   36.569156] systemd[1]: systemd-readahead-replay.service: cgroup is empty
[   36.569215] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   36.769619] systemd[1]: Received SIGCHLD from PID 450 (systemd-fsck).
[   36.769734] systemd[1]: Got SIGCHLD for process 450 (systemd-fsck)
[   36.769892] systemd[1]: Child 450 died (code=exited, status=0/SUCCESS)
[   36.769917] systemd[1]: Child 450 belongs to <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">fsck at dev-disk-by</A>\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.service
[   36.769961] systemd[1]: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">fsck at dev-disk-by</A>\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.service: main process exited, code=exited, status=0
[   36.770710] systemd[1]: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">fsck at dev-disk-by</A>\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.service changed start -&gt; dead
[   36.781156] systemd[1]: Job <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">fsck at dev-disk-by</A>\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.service/start finished, result=done
[   36.781643] systemd[1]: About to execute: /bin/mount /home
[   36.803191] systemd[1]: Forked /bin/mount as 457
[   36.803259] systemd[1]: home.mount changed dead -&gt; mounting
[   36.803558] systemd[1]: Accepted connection on private bus.
[   36.803784] systemd[1]: Accepted connection on private bus.
[   36.804579] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   36.804811] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   36.805240] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   36.805498] systemd[1]: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">fsck at dev-disk-by</A>\x2duuid-e9c0bf1d\x2dc6ef\x2d4352\x2d80b2\x2dd4f97bbd0439.service: cgroup is empty
[   36.805736] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   36.990830] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: acl
[   36.991824] systemd[1]: home.mount changed mounting -&gt; mounting-done
[   36.991859] systemd[1]: Job home.mount/start finished, result=done
[   36.992603] systemd[1]: local-fs.target changed dead -&gt; active
[   36.992627] systemd[1]: Job local-fs.target/start finished, result=done
[   36.996935] systemd[1]: About to execute: /lib/systemd/mandriva-boot-links
[   37.018162] systemd[1]: Forked /lib/systemd/mandriva-boot-links as 462
[   37.018448] systemd[1]: mandriva-boot-links.service changed dead -&gt; start
[   37.018592] systemd[1]: Starting of fedora-autorelabel-mark.service requested but condition failed. Ignoring.
[   37.018620] systemd[1]: Job fedora-autorelabel-mark.service/start finished, result=done
[   37.018942] systemd[1]: Starting of fedora-configure.service requested but condition failed. Ignoring.
[   37.018961] systemd[1]: Job fedora-configure.service/start finished, result=done
[   37.019928] systemd[1]: Starting of fedora-autorelabel.service requested but condition failed. Ignoring.
[   37.019947] systemd[1]: Job fedora-autorelabel.service/start finished, result=done
[   37.024400] systemd[1]: About to execute: /etc/init.d/mandrake_everytime
[   37.046135] systemd[1]: Forked /etc/init.d/mandrake_everytime as 463
[   37.046323] systemd[1]: mandriva-everytime.service changed dead -&gt; start
[   37.046666] systemd[1]: About to execute: /lib/systemd/mandriva-save-dmesg
[   37.063199] systemd[1]: Forked /lib/systemd/mandriva-save-dmesg as 465
[   37.063458] systemd[1]: mandriva-save-dmesg.service changed dead -&gt; start
[   37.063957] systemd[1]: About to execute: /usr/bin/find /var/lock /var/run -depth ! -type d ! -path /var/lock/TMP_1ST -delete
[   37.085181] systemd[1]: Forked /usr/bin/find as 467
[   37.085477] systemd[1]: mandriva-clean-var-run-lock.service changed dead -&gt; start
[   37.085886] systemd[1]: About to execute: /lib/systemd/systemd-random-seed load
[   37.097119] systemd[1]: Forked /lib/systemd/systemd-random-seed as 474
[   37.097345] systemd[1]: systemd-random-seed-load.service changed dead -&gt; start
[   37.097738] systemd[1]: About to execute: /bin/plymouth update-root-fs --read-write
[   37.110125] systemd[1]: Forked /bin/plymouth as 475
[   37.110344] systemd[1]: plymouth-read-write.service changed dead -&gt; start
[   37.110555] systemd[1]: Received SIGCHLD from PID 457 (mount).
[   37.110660] systemd[1]: Got SIGCHLD for process 457 (mount)
[   37.110776] systemd[1]: Child 457 died (code=exited, status=0/SUCCESS)
[   37.110795] systemd[1]: Child 457 belongs to home.mount
[   37.110834] systemd[1]: home.mount mount process exited, code=exited status=0
[   37.110875] systemd[1]: home.mount changed mounting-done -&gt; mounted
[   37.111174] systemd[1]: Accepted connection on private bus.
[   37.112296] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   37.123333] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   37.126185] systemd[1]: Received SIGCHLD from PID 474 (systemd-random-).
[   37.126308] systemd[1]: Got SIGCHLD for process 474 (systemd-random-)
[   37.126460] systemd[1]: Child 474 died (code=exited, status=0/SUCCESS)
[   37.126483] systemd[1]: Child 474 belongs to systemd-random-seed-load.service
[   37.126529] systemd[1]: systemd-random-seed-load.service: main process exited, code=exited, status=0
[   37.127192] systemd[1]: systemd-random-seed-load.service changed start -&gt; dead
[   37.137124] systemd[1]: Job systemd-random-seed-load.service/start finished, result=done
[   37.137549] systemd[1]: Running GC...
[   37.138002] systemd[1]: Accepted connection on private bus.
[   37.138548] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   37.138770] systemd[1]: systemd-random-seed-load.service: cgroup is empty
[   37.138893] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   37.273140] systemd[1]: Received SIGCHLD from PID 462 (mandriva-boot-l).
[   37.273252] systemd[1]: Got SIGCHLD for process 462 (mandriva-boot-l)
[   37.273398] systemd[1]: Child 462 died (code=exited, status=0/SUCCESS)
[   37.273421] systemd[1]: Child 462 belongs to mandriva-boot-links.service
[   37.273476] systemd[1]: mandriva-boot-links.service: main process exited, code=exited, status=0
[   37.283151] systemd[1]: mandriva-boot-links.service changed start -&gt; exited
[   37.283183] systemd[1]: Job mandriva-boot-links.service/start finished, result=done
[   37.283845] systemd[1]: Accepted connection on private bus.
[   37.284352] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   37.284573] systemd[1]: mandriva-boot-links.service: cgroup is empty
[   37.284690] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 262 bytes
Desc: OpenPGP digital signature
URL: &lt;/pipermail/mageia-dev/attachments/20120417/c92ce176/attachment-0001.asc&gt;
</PRE>

<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="014352.html">[Mageia-dev] Broken database problem solved but not all well
</A></li>
	<LI>Next message: <A HREF="014441.html">[Mageia-dev] Broken database problem
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#16390">[ date ]</a>
              <a href="thread.html#16390">[ thread ]</a>
              <a href="subject.html#16390">[ subject ]</a>
              <a href="author.html#16390">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
mailing list</a><br>
</body></html>