Ubuntu Pastebin

Paste from Talustus at Sun, 22 Mar 2015 23:24:54 +0000

Download as text
   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
root@ubuntu-phablet:/# dmesg
g symlink '/dev/char/3:66' to '../ttyt2'
[   26.106048] systemd-udevd[145]: created empty file '/run/udev/data/c3:66' for '/devices/virtual/tty/ttyt2'
[   26.106353] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.106414] systemd-udevd[145]: seq 3387 processed with 0
[   26.106567] systemd-udevd[143]: seq 3386 running
[   26.106903] systemd-udevd[143]: no db file to read /run/udev/data/c3:65: No such file or directory
[   26.107116] systemd-udevd[143]: handling device node '/dev/ttyt1', devnum=c3:65, mode=0600, uid=0, gid=0
[   26.107177] systemd-udevd[143]: preserve permissions /dev/ttyt1, 020600, uid=0, gid=0
[   26.107269] systemd-udevd[143]: creating symlink '/dev/char/3:65' to '../ttyt1'
[   26.107421] systemd-udevd[143]: created empty file '/run/udev/data/c3:65' for '/devices/virtual/tty/ttyt1'
[   26.107727] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.107788] systemd-udevd[143]: seq 3386 processed with 0
[   26.107879] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.108123] systemd-udevd[139]: seq 3389 queued, 'add' 'tty'
[   26.108459] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.108642] systemd-udevd[139]: seq 3390 queued, 'add' 'tty'
[   26.109008] systemd-udevd[145]: seq 3390 running
[   26.109313] systemd-udevd[145]: no db file to read /run/udev/data/c3:69: No such file or directory
[   26.109527] systemd-udevd[145]: handling device node '/dev/ttyt5', devnum=c3:69, mode=0600, uid=0, gid=0
[   26.109588] systemd-udevd[145]: preserve permissions /dev/ttyt5, 020600, uid=0, gid=0
[   26.109680] systemd-udevd[145]: creating symlink '/dev/char/3:69' to '../ttyt5'
[   26.109832] systemd-udevd[145]: created empty file '/run/udev/data/c3:69' for '/devices/virtual/tty/ttyt5'
[   26.110168] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.110229] systemd-udevd[145]: seq 3390 processed with 0
[   26.110382] systemd-udevd[143]: seq 3389 running
[   26.110778] systemd-udevd[143]: no db file to read /run/udev/data/c3:68: No such file or directory
[   26.110992] systemd-udevd[143]: handling device node '/dev/ttyt4', devnum=c3:68, mode=0600, uid=0, gid=0
[   26.111053] systemd-udevd[143]: preserve permissions /dev/ttyt4, 020600, uid=0, gid=0
[   26.111145] systemd-udevd[143]: creating symlink '/dev/char/3:68' to '../ttyt4'
[   26.111328] systemd-udevd[143]: created empty file '/run/udev/data/c3:68' for '/devices/virtual/tty/ttyt4'
[   26.111663] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.111724] systemd-udevd[143]: seq 3389 processed with 0
[   26.111816] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.112030] systemd-udevd[139]: seq 3391 queued, 'add' 'tty'
[   26.112365] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.112548] systemd-udevd[139]: seq 3392 queued, 'add' 'tty'
[   26.112854] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.113006] systemd-udevd[139]: seq 3393 queued, 'add' 'tty'
[   26.113372] systemd-udevd[146]: seq 3393 running
[   26.113708] systemd-udevd[146]: no db file to read /run/udev/data/c3:72: No such file or directory
[   26.113922] systemd-udevd[146]: handling device node '/dev/ttyt8', devnum=c3:72, mode=0600, uid=0, gid=0
[   26.113983] systemd-udevd[146]: preserve permissions /dev/ttyt8, 020600, uid=0, gid=0
[   26.114074] systemd-udevd[146]: creating symlink '/dev/char/3:72' to '../ttyt8'
[   26.114227] systemd-udevd[146]: created empty file '/run/udev/data/c3:72' for '/devices/virtual/tty/ttyt8'
[   26.114562] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.114624] systemd-udevd[146]: seq 3393 processed with 0
[   26.114776] systemd-udevd[145]: seq 3392 running
[   26.115112] systemd-udevd[145]: no db file to read /run/udev/data/c3:71: No such file or directory
[   26.115325] systemd-udevd[145]: handling device node '/dev/ttyt7', devnum=c3:71, mode=0600, uid=0, gid=0
[   26.115386] systemd-udevd[145]: preserve permissions /dev/ttyt7, 020600, uid=0, gid=0
[   26.115478] systemd-udevd[145]: creating symlink '/dev/char/3:71' to '../ttyt7'
[   26.115631] systemd-udevd[145]: created empty file '/run/udev/data/c3:71' for '/devices/virtual/tty/ttyt7'
[   26.115936] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.115997] systemd-udevd[145]: seq 3392 processed with 0
[   26.116149] systemd-udevd[143]: seq 3391 running
[   26.116485] systemd-udevd[143]: no db file to read /run/udev/data/c3:70: No such file or directory
[   26.116699] systemd-udevd[143]: handling device node '/dev/ttyt6', devnum=c3:70, mode=0600, uid=0, gid=0
[   26.116760] systemd-udevd[143]: preserve permissions /dev/ttyt6, 020600, uid=0, gid=0
[   26.116851] systemd-udevd[143]: creating symlink '/dev/char/3:70' to '../ttyt6'
[   26.117034] systemd-udevd[143]: created empty file '/run/udev/data/c3:70' for '/devices/virtual/tty/ttyt6'
[   26.117340] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.117401] systemd-udevd[143]: seq 3391 processed with 0
[   26.117492] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.117736] systemd-udevd[139]: seq 3394 queued, 'add' 'tty'
[   26.118072] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.118255] systemd-udevd[139]: seq 3395 queued, 'add' 'tty'
[   26.118560] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.118713] systemd-udevd[139]: seq 3396 queued, 'add' 'tty'
[   26.119079] systemd-udevd[146]: seq 3396 running
[   26.119415] systemd-udevd[146]: no db file to read /run/udev/data/c3:75: No such file or directory
[   26.119628] systemd-udevd[146]: handling device node '/dev/ttytb', devnum=c3:75, mode=0600, uid=0, gid=0
[   26.119689] systemd-udevd[146]: preserve permissions /dev/ttytb, 020600, uid=0, gid=0
[   26.119781] systemd-udevd[146]: creating symlink '/dev/char/3:75' to '../ttytb'
[   26.119964] systemd-udevd[146]: created empty file '/run/udev/data/c3:75' for '/devices/virtual/tty/ttytb'
[   26.120269] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.120330] systemd-udevd[146]: seq 3396 processed with 0
[   26.120483] systemd-udevd[145]: seq 3395 running
[   26.120910] systemd-udevd[145]: no db file to read /run/udev/data/c3:74: No such file or directory
[   26.121124] systemd-udevd[145]: handling device node '/dev/ttyta', devnum=c3:74, mode=0600, uid=0, gid=0
[   26.121185] systemd-udevd[145]: preserve permissions /dev/ttyta, 020600, uid=0, gid=0
[   26.121276] systemd-udevd[145]: creating symlink '/dev/char/3:74' to '../ttyta'
[   26.121429] systemd-udevd[145]: created empty file '/run/udev/data/c3:74' for '/devices/virtual/tty/ttyta'
[   26.121765] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.121826] systemd-udevd[145]: seq 3395 processed with 0
[   26.121978] systemd-udevd[143]: seq 3394 running
[   26.122314] systemd-udevd[143]: no db file to read /run/udev/data/c3:73: No such file or directory
[   26.122497] systemd-udevd[143]: handling device node '/dev/ttyt9', devnum=c3:73, mode=0600, uid=0, gid=0
[   26.122589] systemd-udevd[143]: preserve permissions /dev/ttyt9, 020600, uid=0, gid=0
[   26.122680] systemd-udevd[143]: creating symlink '/dev/char/3:73' to '../ttyt9'
[   26.122833] systemd-udevd[143]: created empty file '/run/udev/data/c3:73' for '/devices/virtual/tty/ttyt9'
[   26.123138] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.123199] systemd-udevd[143]: seq 3394 processed with 0
[   26.123291] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.123535] systemd-udevd[139]: seq 3397 queued, 'add' 'tty'
[   26.123901] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.124053] systemd-udevd[139]: seq 3398 queued, 'add' 'tty'
[   26.124359] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.124511] systemd-udevd[139]: seq 3399 queued, 'add' 'tty'
[   26.124908] systemd-udevd[146]: seq 3399 running
[   26.125213] systemd-udevd[146]: no db file to read /run/udev/data/c3:78: No such file or directory
[   26.125427] systemd-udevd[146]: handling device node '/dev/ttyte', devnum=c3:78, mode=0600, uid=0, gid=0
[   26.125518] systemd-udevd[146]: preserve permissions /dev/ttyte, 020600, uid=0, gid=0
[   26.125610] systemd-udevd[146]: creating symlink '/dev/char/3:78' to '../ttyte'
[   26.125793] systemd-udevd[146]: created empty file '/run/udev/data/c3:78' for '/devices/virtual/tty/ttyte'
[   26.126098] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.126190] systemd-udevd[146]: seq 3399 processed with 0
[   26.126312] systemd-udevd[145]: seq 3398 running
[   26.126678] systemd-udevd[145]: no db file to read /run/udev/data/c3:77: No such file or directory
[   26.126892] systemd-udevd[145]: handling device node '/dev/ttytd', devnum=c3:77, mode=0600, uid=0, gid=0
[   26.126953] systemd-udevd[145]: preserve permissions /dev/ttytd, 020600, uid=0, gid=0
[   26.127044] systemd-udevd[145]: creating symlink '/dev/char/3:77' to '../ttytd'
[   26.127197] systemd-udevd[145]: created empty file '/run/udev/data/c3:77' for '/devices/virtual/tty/ttytd'
[   26.127502] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.127563] systemd-udevd[145]: seq 3398 processed with 0
[   26.127716] systemd-udevd[143]: seq 3397 running
[   26.128051] systemd-udevd[143]: no db file to read /run/udev/data/c3:76: No such file or directory
[   26.128265] systemd-udevd[143]: handling device node '/dev/ttytc', devnum=c3:76, mode=0600, uid=0, gid=0
[   26.128326] systemd-udevd[143]: preserve permissions /dev/ttytc, 020600, uid=0, gid=0
[   26.128417] systemd-udevd[143]: creating symlink '/dev/char/3:76' to '../ttytc'
[   26.128601] systemd-udevd[143]: created empty file '/run/udev/data/c3:76' for '/devices/virtual/tty/ttytc'
[   26.128906] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.128967] systemd-udevd[143]: seq 3397 processed with 0
[   26.129058] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.129302] systemd-udevd[139]: seq 3400 queued, 'add' 'tty'
[   26.129638] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.129821] systemd-udevd[139]: seq 3401 queued, 'add' 'tty'
[   26.130187] systemd-udevd[145]: seq 3401 running
[   26.130493] systemd-udevd[145]: no db file to read /run/udev/data/c3:80: No such file or directory
[   26.130767] systemd-udevd[145]: handling device node '/dev/ttyu0', devnum=c3:80, mode=0600, uid=0, gid=0
[   26.130828] systemd-udevd[145]: preserve permissions /dev/ttyu0, 020600, uid=0, gid=0
[   26.130920] systemd-udevd[145]: creating symlink '/dev/char/3:80' to '../ttyu0'
[   26.131103] systemd-udevd[145]: created empty file '/run/udev/data/c3:80' for '/devices/virtual/tty/ttyu0'
[   26.131408] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.131469] systemd-udevd[145]: seq 3401 processed with 0
[   26.131622] systemd-udevd[143]: seq 3400 running
[   26.131988] systemd-udevd[143]: no db file to read /run/udev/data/c3:79: No such file or directory
[   26.132202] systemd-udevd[143]: handling device node '/dev/ttytf', devnum=c3:79, mode=0600, uid=0, gid=0
[   26.132263] systemd-udevd[143]: preserve permissions /dev/ttytf, 020600, uid=0, gid=0
[   26.132354] systemd-udevd[143]: creating symlink '/dev/char/3:79' to '../ttytf'
[   26.132507] systemd-udevd[143]: created empty file '/run/udev/data/c3:79' for '/devices/virtual/tty/ttytf'
[   26.132812] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.132873] systemd-udevd[143]: seq 3400 processed with 0
[   26.132965] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.133178] systemd-udevd[139]: seq 3402 queued, 'add' 'tty'
[   26.133514] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.133697] systemd-udevd[139]: seq 3403 queued, 'add' 'tty'
[   26.134002] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.134155] systemd-udevd[139]: seq 3404 queued, 'add' 'tty'
[   26.134521] systemd-udevd[146]: seq 3404 running
[   26.134857] systemd-udevd[146]: no db file to read /run/udev/data/c3:83: No such file or directory
[   26.135040] systemd-udevd[146]: handling device node '/dev/ttyu3', devnum=c3:83, mode=0600, uid=0, gid=0
[   26.135131] systemd-udevd[146]: preserve permissions /dev/ttyu3, 020600, uid=0, gid=0
[   26.135223] systemd-udevd[146]: creating symlink '/dev/char/3:83' to '../ttyu3'
[   26.135375] systemd-udevd[146]: created empty file '/run/udev/data/c3:83' for '/devices/virtual/tty/ttyu3'
[   26.135711] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.135772] systemd-udevd[146]: seq 3404 processed with 0
[   26.135894] systemd-udevd[145]: seq 3403 running
[   26.136260] systemd-udevd[145]: no db file to read /run/udev/data/c3:82: No such file or directory
[   26.136444] systemd-udevd[145]: handling device node '/dev/ttyu2', devnum=c3:82, mode=0600, uid=0, gid=0
[   26.136535] systemd-udevd[145]: preserve permissions /dev/ttyu2, 020600, uid=0, gid=0
[   26.136627] systemd-udevd[145]: creating symlink '/dev/char/3:82' to '../ttyu2'
[   26.136779] systemd-udevd[145]: created empty file '/run/udev/data/c3:82' for '/devices/virtual/tty/ttyu2'
[   26.137084] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.137145] systemd-udevd[145]: seq 3403 processed with 0
[   26.137298] systemd-udevd[143]: seq 3402 running
[   26.137634] systemd-udevd[143]: no db file to read /run/udev/data/c3:81: No such file or directory
[   26.137847] systemd-udevd[143]: handling device node '/dev/ttyu1', devnum=c3:81, mode=0600, uid=0, gid=0
[   26.137908] systemd-udevd[143]: preserve permissions /dev/ttyu1, 020600, uid=0, gid=0
[   26.138000] systemd-udevd[143]: creating symlink '/dev/char/3:81' to '../ttyu1'
[   26.138183] systemd-udevd[143]: created empty file '/run/udev/data/c3:81' for '/devices/virtual/tty/ttyu1'
[   26.138488] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.138580] systemd-udevd[143]: seq 3402 processed with 0
[   26.138671] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.138885] systemd-udevd[139]: seq 3405 queued, 'add' 'tty'
[   26.139251] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.139404] systemd-udevd[139]: seq 3406 queued, 'add' 'tty'
[   26.139709] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.139892] systemd-udevd[139]: seq 3407 queued, 'add' 'tty'
[   26.140258] systemd-udevd[146]: seq 3407 running
[   26.140625] systemd-udevd[146]: no db file to read /run/udev/data/c3:86: No such file or directory
[   26.140869] systemd-udevd[146]: handling device node '/dev/ttyu6', devnum=c3:86, mode=0600, uid=0, gid=0
[   26.140930] systemd-udevd[146]: preserve permissions /dev/ttyu6, 020600, uid=0, gid=0
[   26.141021] systemd-udevd[146]: creating symlink '/dev/char/3:86' to '../ttyu6'
[   26.141204] systemd-udevd[146]: created empty file '/run/udev/data/c3:86' for '/devices/virtual/tty/ttyu6'
[   26.141540] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.141601] systemd-udevd[146]: seq 3407 processed with 0
[   26.141754] systemd-udevd[145]: seq 3406 running
[   26.142120] systemd-udevd[145]: no db file to read /run/udev/data/c3:85: No such file or directory
[   26.142303] systemd-udevd[145]: handling device node '/dev/ttyu5', devnum=c3:85, mode=0600, uid=0, gid=0
[   26.142364] systemd-udevd[145]: preserve permissions /dev/ttyu5, 020600, uid=0, gid=0
[   26.142456] systemd-udevd[145]: creating symlink '/dev/char/3:85' to '../ttyu5'
[   26.142639] systemd-udevd[145]: created empty file '/run/udev/data/c3:85' for '/devices/virtual/tty/ttyu5'
[   26.142944] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.143005] systemd-udevd[145]: seq 3406 processed with 0
[   26.143157] systemd-udevd[143]: seq 3405 running
[   26.143493] systemd-udevd[143]: no db file to read /run/udev/data/c3:84: No such file or directory
[   26.143707] systemd-udevd[143]: handling device node '/dev/ttyu4', devnum=c3:84, mode=0600, uid=0, gid=0
[   26.143768] systemd-udevd[143]: preserve permissions /dev/ttyu4, 020600, uid=0, gid=0
[   26.143859] systemd-udevd[143]: creating symlink '/dev/char/3:84' to '../ttyu4'
[   26.144042] systemd-udevd[143]: created empty file '/run/udev/data/c3:84' for '/devices/virtual/tty/ttyu4'
[   26.144317] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.144409] systemd-udevd[143]: seq 3405 processed with 0
[   26.144470] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.144714] systemd-udevd[139]: seq 3408 queued, 'add' 'tty'
[   26.145080] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.145233] systemd-udevd[139]: seq 3409 queued, 'add' 'tty'
[   26.145629] systemd-udevd[145]: seq 3409 running
[   26.145935] systemd-udevd[145]: no db file to read /run/udev/data/c3:88: No such file or directory
[   26.146148] systemd-udevd[145]: handling device node '/dev/ttyu8', devnum=c3:88, mode=0600, uid=0, gid=0
[   26.146209] systemd-udevd[145]: preserve permissions /dev/ttyu8, 020600, uid=0, gid=0
[   26.146301] systemd-udevd[145]: creating symlink '/dev/char/3:88' to '../ttyu8'
[   26.146453] systemd-udevd[145]: created empty file '/run/udev/data/c3:88' for '/devices/virtual/tty/ttyu8'
[   26.146789] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.146850] systemd-udevd[145]: seq 3409 processed with 0
[   26.146972] systemd-udevd[143]: seq 3408 running
[   26.147338] systemd-udevd[143]: no db file to read /run/udev/data/c3:87: No such file or directory
[   26.147521] systemd-udevd[143]: handling device node '/dev/ttyu7', devnum=c3:87, mode=0600, uid=0, gid=0
[   26.147613] systemd-udevd[143]: preserve permissions /dev/ttyu7, 020600, uid=0, gid=0
[   26.147674] systemd-udevd[143]: creating symlink '/dev/char/3:87' to '../ttyu7'
[   26.147857] systemd-udevd[143]: created empty file '/run/udev/data/c3:87' for '/devices/virtual/tty/ttyu7'
[   26.148132] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.148193] systemd-udevd[143]: seq 3408 processed with 0
[   26.148284] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.148498] systemd-udevd[139]: seq 3410 queued, 'add' 'tty'
[   26.148834] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.149017] systemd-udevd[139]: seq 3411 queued, 'add' 'tty'
[   26.149322] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.149475] systemd-udevd[139]: seq 3412 queued, 'add' 'tty'
[   26.149841] systemd-udevd[146]: seq 3412 running
[   26.150177] systemd-udevd[146]: no db file to read /run/udev/data/c3:91: No such file or directory
[   26.150360] systemd-udevd[146]: handling device node '/dev/ttyub', devnum=c3:91, mode=0600, uid=0, gid=0
[   26.150451] systemd-udevd[146]: preserve permissions /dev/ttyub, 020600, uid=0, gid=0
[   26.150543] systemd-udevd[146]: creating symlink '/dev/char/3:91' to '../ttyub'
[   26.150756] systemd-udevd[146]: created empty file '/run/udev/data/c3:91' for '/devices/virtual/tty/ttyub'
[   26.151123] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.151184] systemd-udevd[146]: seq 3412 processed with 0
[   26.151336] systemd-udevd[145]: seq 3411 running
[   26.151672] systemd-udevd[145]: no db file to read /run/udev/data/c3:90: No such file or directory
[   26.151885] systemd-udevd[145]: handling device node '/dev/ttyua', devnum=c3:90, mode=0600, uid=0, gid=0
[   26.151947] systemd-udevd[145]: preserve permissions /dev/ttyua, 020600, uid=0, gid=0
[   26.152038] systemd-udevd[145]: creating symlink '/dev/char/3:90' to '../ttyua'
[   26.152221] systemd-udevd[145]: created empty file '/run/udev/data/c3:90' for '/devices/virtual/tty/ttyua'
[   26.152557] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.152618] systemd-udevd[145]: seq 3411 processed with 0
[   26.152740] systemd-udevd[143]: seq 3410 running
[   26.153106] systemd-udevd[143]: no db file to read /run/udev/data/c3:89: No such file or directory
[   26.153289] systemd-udevd[143]: handling device node '/dev/ttyu9', devnum=c3:89, mode=0600, uid=0, gid=0
[   26.153381] systemd-udevd[143]: preserve permissions /dev/ttyu9, 020600, uid=0, gid=0
[   26.153472] systemd-udevd[143]: creating symlink '/dev/char/3:89' to '../ttyu9'
[   26.153625] systemd-udevd[143]: created empty file '/run/udev/data/c3:89' for '/devices/virtual/tty/ttyu9'
[   26.153930] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.153991] systemd-udevd[143]: seq 3410 processed with 0
[   26.154083] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.154327] systemd-udevd[139]: seq 3413 queued, 'add' 'tty'
[   26.154663] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.154846] systemd-udevd[139]: seq 3414 queued, 'add' 'tty'
[   26.155151] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.155303] systemd-udevd[139]: seq 3415 queued, 'add' 'tty'
[   26.155700] systemd-udevd[146]: seq 3415 running
[   26.155731] systemd-udevd[142]: seq 2777 running
[   26.156066] systemd-udevd[142]: no db file to read /run/udev/data/c10:85: No such file or directory
[   26.156341] systemd-udevd[146]: no db file to read /run/udev/data/c3:94: No such file or directory
[   26.156402] systemd-udevd[142]: handling device node '/dev/android_adb', devnum=c10:85, mode=0600, uid=0, gid=0
[   26.156463] systemd-udevd[142]: preserve permissions /dev/android_adb, 020600, uid=0, gid=0
[   26.156555] systemd-udevd[142]: creating symlink '/dev/char/10:85' to '../android_adb'
[   26.156738] systemd-udevd[142]: created empty file '/run/udev/data/c10:85' for '/devices/virtual/misc/android_adb'
[   26.157043] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.157104] systemd-udevd[142]: seq 2777 processed with 0
[   26.157257] systemd-udevd[147]: seq 2782 running
[   26.157531] systemd-udevd[147]: no db file to read /run/udev/data/c10:84: No such file or directory
[   26.157592] systemd-udevd[146]: handling device node '/dev/ttyue', devnum=c3:94, mode=0600, uid=0, gid=0
[   26.157684] systemd-udevd[146]: preserve permissions /dev/ttyue, 020600, uid=0, gid=0
[   26.157775] systemd-udevd[146]: creating symlink '/dev/char/3:94' to '../ttyue'
[   26.157928] systemd-udevd[146]: created empty file '/run/udev/data/c3:94' for '/devices/virtual/tty/ttyue'
[   26.158264] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.158325] systemd-udevd[146]: seq 3415 processed with 0
[   26.158447] systemd-udevd[145]: seq 3414 running
[   26.158782] systemd-udevd[147]: handling device node '/dev/ccid_ctrl', devnum=c10:84, mode=0600, uid=0, gid=0
[   26.158843] systemd-udevd[145]: no db file to read /run/udev/data/c3:93: No such file or directory
[   26.159057] systemd-udevd[145]: handling device node '/dev/ttyud', devnum=c3:93, mode=0600, uid=0, gid=0
[   26.159118] systemd-udevd[145]: preserve permissions /dev/ttyud, 020600, uid=0, gid=0
[   26.159240] systemd-udevd[145]: creating symlink '/dev/char/3:93' to '../ttyud'
[   26.159393] systemd-udevd[145]: created empty file '/run/udev/data/c3:93' for '/devices/virtual/tty/ttyud'
[   26.159667] systemd-udevd[147]: preserve permissions /dev/ccid_ctrl, 020600, uid=0, gid=0
[   26.159729] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.159790] systemd-udevd[145]: seq 3414 processed with 0
[   26.159942] systemd-udevd[143]: seq 3413 running
[   26.160278] systemd-udevd[143]: no db file to read /run/udev/data/c3:92: No such file or directory
[   26.160339] systemd-udevd[147]: creating symlink '/dev/char/10:84' to '../ccid_ctrl'
[   26.160522] systemd-udevd[147]: created empty file '/run/udev/data/c10:84' for '/devices/virtual/misc/ccid_ctrl'
[   26.160736] systemd-udevd[163]: seq 2785 running
[   26.161041] systemd-udevd[163]: no db file to read /run/udev/data/c10:117: No such file or directory
[   26.161132] systemd-udevd[143]: handling device node '/dev/ttyuc', devnum=c3:92, mode=0600, uid=0, gid=0
[   26.161224] systemd-udevd[143]: preserve permissions /dev/ttyuc, 020600, uid=0, gid=0
[   26.161315] systemd-udevd[143]: creating symlink '/dev/char/3:92' to '../ttyuc'
[   26.161499] systemd-udevd[143]: created empty file '/run/udev/data/c3:92' for '/devices/virtual/tty/ttyuc'
[   26.161804] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.161895] systemd-udevd[163]: handling device node '/dev/dsp_debug', devnum=c10:117, mode=0600, uid=0, gid=0
[   26.161987] systemd-udevd[163]: preserve permissions /dev/dsp_debug, 020600, uid=0, gid=0
[   26.162078] systemd-udevd[163]: creating symlink '/dev/char/10:117' to '../dsp_debug'
[   26.162231] systemd-udevd[163]: created empty file '/run/udev/data/c10:117' for '/devices/virtual/misc/dsp_debug'
[   26.162506] systemd-udevd[163]: passed -1 bytes to netlink monitor 0x40f004b8
[   26.162567] systemd-udevd[163]: seq 2785 processed with 0
[   26.162841] systemd-udevd[143]: seq 3413 processed with 0
[   26.162872] systemd-udevd[147]: passed -1 bytes to netlink monitor 0x40ef7918
[   26.162933] systemd-udevd[147]: seq 2782 processed with 0
[   26.163085] systemd-udevd[144]: seq 2779 running
[   26.163360] systemd-udevd[144]: no db file to read /run/udev/data/c10:91: No such file or directory
[   26.163421] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.163787] systemd-udevd[139]: seq 3416 queued, 'add' 'tty'
[   26.163818] systemd-udevd[144]: handling device node '/dev/audience_a2220', devnum=c10:91, mode=0600, uid=0, gid=0
[   26.163909] systemd-udevd[144]: preserve permissions /dev/audience_a2220, 020600, uid=0, gid=0
[   26.164001] systemd-udevd[144]: creating symlink '/dev/char/10:91' to '../audience_a2220'
[   26.164184] systemd-udevd[144]: created empty file '/run/udev/data/c10:91' for '/devices/virtual/misc/audience_a2220'
[   26.164459] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.164703] systemd-udevd[144]: seq 2779 processed with 0
[   26.164855] systemd-udevd[142]: seq 3416 running
[   26.165130] systemd-udevd[166]: handling device node '/dev/amp', devnum=c10:79, mode=0600, uid=0, gid=0
[   26.165191] systemd-udevd[142]: no db file to read /run/udev/data/c3:95: No such file or directory
[   26.165435] systemd-udevd[142]: handling device node '/dev/ttyuf', devnum=c3:95, mode=0600, uid=0, gid=0
[   26.165496] systemd-udevd[142]: preserve permissions /dev/ttyuf, 020600, uid=0, gid=0
[   26.165588] systemd-udevd[142]: creating symlink '/dev/char/3:95' to '../ttyuf'
[   26.165771] systemd-udevd[142]: created empty file '/run/udev/data/c3:95' for '/devices/virtual/tty/ttyuf'
[   26.166015] systemd-udevd[166]: preserve permissions /dev/amp, 020600, uid=0, gid=0
[   26.166076] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.166137] systemd-udevd[142]: seq 3416 processed with 0
[   26.166229] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.166503] systemd-udevd[139]: seq 3417 queued, 'add' 'tty'
[   26.166717] systemd-udevd[166]: creating symlink '/dev/char/10:79' to '../amp'
[   26.166900] systemd-udevd[142]: seq 3417 running
[   26.166992] systemd-udevd[166]: created empty file '/run/udev/data/c10:79' for '/devices/virtual/misc/amp'
[   26.167266] systemd-udevd[166]: passed -1 bytes to netlink monitor 0x40f06ef0
[   26.167480] systemd-udevd[142]: no db file to read /run/udev/data/c3:96: No such file or directory
[   26.167694] systemd-udevd[142]: handling device node '/dev/ttyv0', devnum=c3:96, mode=0600, uid=0, gid=0
[   26.167755] systemd-udevd[166]: seq 2776 processed with 0
[   26.167999] systemd-udevd[142]: preserve permissions /dev/ttyv0, 020600, uid=0, gid=0
[   26.168243] systemd-udevd[142]: creating symlink '/dev/char/3:96' to '../ttyv0'
[   26.168548] systemd-udevd[142]: created empty file '/run/udev/data/c3:96' for '/devices/virtual/tty/ttyv0'
[   26.168975] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.169189] systemd-udevd[142]: seq 3417 processed with 0
[   26.169403] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.169952] systemd-udevd[139]: seq 3418 queued, 'add' 'tty'
[   26.170501] systemd-udevd[142]: seq 3418 running
[   26.170989] systemd-udevd[142]: no db file to read /run/udev/data/c3:97: No such file or directory
[   26.171356] systemd-udevd[142]: handling device node '/dev/ttyv1', devnum=c3:97, mode=0600, uid=0, gid=0
[   26.171569] systemd-udevd[142]: preserve permissions /dev/ttyv1, 020600, uid=0, gid=0
[   26.171752] systemd-udevd[142]: creating symlink '/dev/char/3:97' to '../ttyv1'
[   26.172088] systemd-udevd[142]: created empty file '/run/udev/data/c3:97' for '/devices/virtual/tty/ttyv1'
[   26.172546] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.172760] systemd-udevd[142]: seq 3418 processed with 0
[   26.172943] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.173278] systemd-udevd[139]: seq 3419 queued, 'add' 'tty'
[   26.173675] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.174011] systemd-udevd[139]: seq 3420 queued, 'add' 'tty'
[   26.174468] systemd-udevd[143]: seq 3420 running
[   26.174926] systemd-udevd[143]: no db file to read /run/udev/data/c3:99: No such file or directory
[   26.175262] systemd-udevd[143]: handling device node '/dev/ttyv3', devnum=c3:99, mode=0600, uid=0, gid=0
[   26.175445] systemd-udevd[143]: preserve permissions /dev/ttyv3, 020600, uid=0, gid=0
[   26.175689] systemd-udevd[143]: creating symlink '/dev/char/3:99' to '../ttyv3'
[   26.175994] systemd-udevd[143]: created empty file '/run/udev/data/c3:99' for '/devices/virtual/tty/ttyv3'
[   26.176452] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.176574] systemd-udevd[143]: seq 3420 processed with 0
[   26.176879] systemd-udevd[142]: seq 3419 running
[   26.177307] systemd-udevd[142]: no db file to read /run/udev/data/c3:98: No such file or directory
[   26.177642] systemd-udevd[142]: handling device node '/dev/ttyv2', devnum=c3:98, mode=0600, uid=0, gid=0
[   26.177886] systemd-udevd[142]: preserve permissions /dev/ttyv2, 020600, uid=0, gid=0
[   26.178039] systemd-udevd[142]: creating symlink '/dev/char/3:98' to '../ttyv2'
[   26.178344] systemd-udevd[142]: created empty file '/run/udev/data/c3:98' for '/devices/virtual/tty/ttyv2'
[   26.178802] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.179016] systemd-udevd[142]: seq 3419 processed with 0
[   26.179168] systemd-udevd[139]: passed 174 bytes to netlink monitor 0x40ee80a0
[   26.179534] systemd-udevd[139]: seq 3421 queued, 'add' 'tty'
[   26.179962] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.180267] systemd-udevd[139]: seq 3422 queued, 'add' 'tty'
[   26.180755] systemd-udevd[142]: seq 3421 running
[   26.181030] systemd-udevd[143]: seq 3422 running
[   26.181365] systemd-udevd[142]: no db file to read /run/udev/data/c3:100: No such file or directory
[   26.181701] systemd-udevd[143]: no db file to read /run/udev/data/c3:101: No such file or directory
[   26.181732] systemd-udevd[142]: handling device node '/dev/ttyv4', devnum=c3:100, mode=0600, uid=0, gid=0
[   26.181823] systemd-udevd[142]: preserve permissions /dev/ttyv4, 020600, uid=0, gid=0
[   26.181915] systemd-udevd[142]: creating symlink '/dev/char/3:100' to '../ttyv4'
[   26.182098] systemd-udevd[142]: created empty file '/run/udev/data/c3:100' for '/devices/virtual/tty/ttyv4'
[   26.182434] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.182495] systemd-udevd[142]: seq 3421 processed with 0
[   26.182617] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.182800] systemd-udevd[139]: seq 3423 queued, 'add' 'tty'
[   26.183166] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.183197] systemd-udevd[143]: handling device node '/dev/ttyv5', devnum=c3:101, mode=0600, uid=0, gid=0
[   26.183288] systemd-udevd[143]: preserve permissions /dev/ttyv5, 020600, uid=0, gid=0
[   26.183380] systemd-udevd[143]: creating symlink '/dev/char/3:101' to '../ttyv5'
[   26.183563] systemd-udevd[143]: created empty file '/run/udev/data/c3:101' for '/devices/virtual/tty/ttyv5'
[   26.184143] systemd-udevd[139]: seq 3424 queued, 'add' 'tty'
[   26.184265] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.184509] systemd-udevd[143]: seq 3422 processed with 0
[   26.184661] systemd-udevd[144]: seq 3424 running
[   26.185089] systemd-udevd[142]: seq 3423 running
[   26.185150] systemd-udevd[144]: no db file to read /run/udev/data/c3:103: No such file or directory
[   26.185394] systemd-udevd[144]: handling device node '/dev/ttyv7', devnum=c3:103, mode=0600, uid=0, gid=0
[   26.185638] systemd-udevd[144]: preserve permissions /dev/ttyv7, 020600, uid=0, gid=0
[   26.185729] systemd-udevd[142]: no db file to read /run/udev/data/c3:102: No such file or directory
[   26.185943] systemd-udevd[142]: handling device node '/dev/ttyv6', devnum=c3:102, mode=0600, uid=0, gid=0
[   26.186004] systemd-udevd[144]: creating symlink '/dev/char/3:103' to '../ttyv7'
[   26.186187] systemd-udevd[144]: created empty file '/run/udev/data/c3:103' for '/devices/virtual/tty/ttyv7'
[   26.186462] systemd-udevd[142]: preserve permissions /dev/ttyv6, 020600, uid=0, gid=0
[   26.186523] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.186584] systemd-udevd[144]: seq 3424 processed with 0
[   26.186676] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.186889] systemd-udevd[139]: seq 3425 queued, 'add' 'tty'
[   26.187164] systemd-udevd[142]: creating symlink '/dev/char/3:102' to '../ttyv6'
[   26.187255] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.187408] systemd-udevd[139]: seq 3426 queued, 'add' 'tty'
[   26.187683] systemd-udevd[142]: created empty file '/run/udev/data/c3:102' for '/devices/virtual/tty/ttyv6'
[   26.187774] systemd-udevd[144]: seq 3426 running
[   26.188140] systemd-udevd[144]: no db file to read /run/udev/data/c3:105: No such file or directory
[   26.188262] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.188323] systemd-udevd[142]: seq 3423 processed with 0
[   26.188476] systemd-udevd[143]: seq 3425 running
[   26.188812] systemd-udevd[144]: handling device node '/dev/ttyv9', devnum=c3:105, mode=0600, uid=0, gid=0
[   26.188873] systemd-udevd[143]: no db file to read /run/udev/data/c3:104: No such file or directory
[   26.189086] systemd-udevd[143]: handling device node '/dev/ttyv8', devnum=c3:104, mode=0600, uid=0, gid=0
[   26.189147] systemd-udevd[143]: preserve permissions /dev/ttyv8, 020600, uid=0, gid=0
[   26.189239] systemd-udevd[143]: creating symlink '/dev/char/3:104' to '../ttyv8'
[   26.189422] systemd-udevd[143]: created empty file '/run/udev/data/c3:104' for '/devices/virtual/tty/ttyv8'
[   26.189727] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.189788] systemd-udevd[143]: seq 3425 processed with 0
[   26.190002] systemd-udevd[144]: preserve permissions /dev/ttyv9, 020600, uid=0, gid=0
[   26.190246] systemd-udevd[144]: creating symlink '/dev/char/3:105' to '../ttyv9'
[   26.190490] systemd-udevd[144]: created empty file '/run/udev/data/c3:105' for '/devices/virtual/tty/ttyv9'
[   26.191040] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.191253] systemd-udevd[144]: seq 3426 processed with 0
[   26.191436] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.191833] systemd-udevd[139]: seq 3427 queued, 'add' 'tty'
[   26.192230] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.192352] systemd-udevd[142]: seq 3427 running
[   26.192657] systemd-udevd[139]: seq 3428 queued, 'add' 'tty'
[   26.192687] systemd-udevd[142]: no db file to read /run/udev/data/c3:106: No such file or directory
[   26.192932] systemd-udevd[142]: handling device node '/dev/ttyva', devnum=c3:106, mode=0600, uid=0, gid=0
[   26.192993] systemd-udevd[142]: preserve permissions /dev/ttyva, 020600, uid=0, gid=0
[   26.193084] systemd-udevd[142]: creating symlink '/dev/char/3:106' to '../ttyva'
[   26.193267] systemd-udevd[142]: created empty file '/run/udev/data/c3:106' for '/devices/virtual/tty/ttyva'
[   26.193572] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.193756] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.193847] systemd-udevd[143]: seq 3428 running
[   26.194183] systemd-udevd[139]: seq 3429 queued, 'add' 'tty'
[   26.194213] systemd-udevd[143]: no db file to read /run/udev/data/c3:107: No such file or directory
[   26.194427] systemd-udevd[143]: handling device node '/dev/ttyvb', devnum=c3:107, mode=0600, uid=0, gid=0
[   26.194519] systemd-udevd[143]: preserve permissions /dev/ttyvb, 020600, uid=0, gid=0
[   26.194610] systemd-udevd[143]: creating symlink '/dev/char/3:107' to '../ttyvb'
[   26.194793] systemd-udevd[143]: created empty file '/run/udev/data/c3:107' for '/devices/virtual/tty/ttyvb'
[   26.195098] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.195251] systemd-udevd[143]: seq 3428 processed with 0
[   26.195312] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.195526] systemd-udevd[139]: seq 3430 queued, 'add' 'tty'
[   26.195709] systemd-udevd[142]: seq 3427 processed with 0
[   26.195831] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.195983] systemd-udevd[139]: seq 3431 queued, 'add' 'tty'
[   26.196044] systemd-udevd[142]: seq 3429 running
[   26.196411] systemd-udevd[142]: no db file to read /run/udev/data/c3:108: No such file or directory
[   26.196563] systemd-udevd[144]: seq 3431 running
[   26.196777] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.196868] systemd-udevd[142]: handling device node '/dev/ttyvc', devnum=c3:108, mode=0600, uid=0, gid=0
[   26.196960] systemd-udevd[142]: preserve permissions /dev/ttyvc, 020600, uid=0, gid=0
[   26.197052] systemd-udevd[142]: creating symlink '/dev/char/3:108' to '../ttyvc'
[   26.197204] systemd-udevd[142]: created empty file '/run/udev/data/c3:108' for '/devices/virtual/tty/ttyvc'
[   26.197540] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.197662] systemd-udevd[144]: no db file to read /run/udev/data/c3:110: No such file or directory
[   26.197845] systemd-udevd[142]: seq 3429 processed with 0
[   26.197906] systemd-udevd[144]: handling device node '/dev/ttyve', devnum=c3:110, mode=0600, uid=0, gid=0
[   26.197998] systemd-udevd[144]: preserve permissions /dev/ttyve, 020600, uid=0, gid=0
[   26.198089] systemd-udevd[144]: creating symlink '/dev/char/3:110' to '../ttyve'
[   26.198242] systemd-udevd[144]: created empty file '/run/udev/data/c3:110' for '/devices/virtual/tty/ttyve'
[   26.198547] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.198669] systemd-udevd[143]: seq 3430 running
[   26.198852] systemd-udevd[144]: seq 3431 processed with 0
[   26.199005] systemd-udevd[143]: no db file to read /run/udev/data/c3:109: No such file or directory
[   26.199218] systemd-udevd[143]: handling device node '/dev/ttyvd', devnum=c3:109, mode=0600, uid=0, gid=0
[   26.199371] systemd-udevd[139]: seq 3432 queued, 'add' 'tty'
[   26.199584] systemd-udevd[143]: preserve permissions /dev/ttyvd, 020600, uid=0, gid=0
[   26.199707] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.199859] systemd-udevd[139]: seq 3433 queued, 'add' 'tty'
[   26.200103] systemd-udevd[143]: creating symlink '/dev/char/3:109' to '../ttyvd'
[   26.200225] systemd-udevd[144]: seq 3433 running
[   26.200531] systemd-udevd[143]: created empty file '/run/udev/data/c3:109' for '/devices/virtual/tty/ttyvd'
[   26.200622] systemd-udevd[144]: no db file to read /run/udev/data/c3:112: No such file or directory
[   26.200866] systemd-udevd[144]: handling device node '/dev/ttyw0', devnum=c3:112, mode=0600, uid=0, gid=0
[   26.201110] systemd-udevd[144]: preserve permissions /dev/ttyw0, 020600, uid=0, gid=0
[   26.201354] systemd-udevd[144]: creating symlink '/dev/char/3:112' to '../ttyw0'
[   26.201629] systemd-udevd[144]: created empty file '/run/udev/data/c3:112' for '/devices/virtual/tty/ttyw0'
[   26.202301] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.202514] systemd-udevd[144]: seq 3433 processed with 0
[   26.202728] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.203125] systemd-udevd[139]: seq 3434 queued, 'add' 'tty'
[   26.203857] systemd-udevd[144]: seq 3434 running
[   26.204406] systemd-udevd[144]: no db file to read /run/udev/data/c3:113: No such file or directory
[   26.204864] systemd-udevd[144]: handling device node '/dev/ttyw1', devnum=c3:113, mode=0600, uid=0, gid=0
[   26.205108] systemd-udevd[144]: preserve permissions /dev/ttyw1, 020600, uid=0, gid=0
[   26.205261] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.205322] systemd-udevd[144]: creating symlink '/dev/char/3:113' to '../ttyw1'
[   26.205505] systemd-udevd[144]: created empty file '/run/udev/data/c3:113' for '/devices/virtual/tty/ttyw1'
[   26.205841] systemd-udevd[143]: seq 3430 processed with 0
[   26.205871] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.205932] systemd-udevd[144]: seq 3434 processed with 0
[   26.206024] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.206268] systemd-udevd[139]: seq 3435 queued, 'add' 'tty'
[   26.206512] systemd-udevd[142]: seq 3432 running
[   26.206604] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.206756] systemd-udevd[139]: seq 3436 queued, 'add' 'tty'
[   26.207092] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.207244] systemd-udevd[142]: no db file to read /run/udev/data/c3:111: No such file or directory
[   26.207336] systemd-udevd[139]: seq 3437 queued, 'add' 'tty'
[   26.207672] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.207763] systemd-udevd[145]: seq 3437 running
[   26.207916] systemd-udevd[143]: seq 3435 running
[   26.208160] systemd-udevd[139]: seq 3438 queued, 'add' 'tty'
[   26.208312] systemd-udevd[145]: no db file to read /run/udev/data/c3:116: No such file or directory
[   26.208526] systemd-udevd[145]: handling device node '/dev/ttyw4', devnum=c3:116, mode=0600, uid=0, gid=0
[   26.208587] systemd-udevd[144]: seq 3436 running
[   26.208923] systemd-udevd[144]: no db file to read /run/udev/data/c3:115: No such file or directory
[   26.208984] systemd-udevd[145]: preserve permissions /dev/ttyw4, 020600, uid=0, gid=0
[   26.209075] systemd-udevd[145]: creating symlink '/dev/char/3:116' to '../ttyw4'
[   26.209228] systemd-udevd[145]: created empty file '/run/udev/data/c3:116' for '/devices/virtual/tty/ttyw4'
[   26.209594] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.209655] systemd-udevd[144]: handling device node '/dev/ttyw3', devnum=c3:115, mode=0600, uid=0, gid=0
[   26.209716] systemd-udevd[144]: preserve permissions /dev/ttyw3, 020600, uid=0, gid=0
[   26.209808] systemd-udevd[144]: creating symlink '/dev/char/3:115' to '../ttyw3'
[   26.209960] systemd-udevd[144]: created empty file '/run/udev/data/c3:115' for '/devices/virtual/tty/ttyw3'
[   26.210266] systemd-udevd[145]: seq 3437 processed with 0
[   26.210296] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.210357] systemd-udevd[144]: seq 3436 processed with 0
[   26.211029] systemd-udevd[142]: handling device node '/dev/ttyvf', devnum=c3:111, mode=0600, uid=0, gid=0
[   26.211120] systemd-udevd[143]: no db file to read /run/udev/data/c3:114: No such file or directory
[   26.211364] systemd-udevd[143]: handling device node '/dev/ttyw2', devnum=c3:114, mode=0600, uid=0, gid=0
[   26.211425] systemd-udevd[143]: preserve permissions /dev/ttyw2, 020600, uid=0, gid=0
[   26.211517] systemd-udevd[143]: creating symlink '/dev/char/3:114' to '../ttyw2'
[   26.211700] systemd-udevd[143]: created empty file '/run/udev/data/c3:114' for '/devices/virtual/tty/ttyw2'
[   26.211944] systemd-udevd[142]: preserve permissions /dev/ttyvf, 020600, uid=0, gid=0
[   26.212005] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.212097] systemd-udevd[143]: seq 3435 processed with 0
[   26.212432] systemd-udevd[142]: creating symlink '/dev/char/3:111' to '../ttyvf'
[   26.212677] systemd-udevd[142]: created empty file '/run/udev/data/c3:111' for '/devices/virtual/tty/ttyvf'
[   26.213195] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.213409] systemd-udevd[142]: seq 3432 processed with 0
[   26.213775] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.213897] systemd-udevd[146]: seq 3438 running
[   26.214263] systemd-udevd[146]: no db file to read /run/udev/data/c3:117: No such file or directory
[   26.214294] systemd-udevd[139]: seq 3439 queued, 'add' 'tty'
[   26.214630] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.214813] systemd-udevd[146]: handling device node '/dev/ttyw5', devnum=c3:117, mode=0600, uid=0, gid=0
[   26.214904] systemd-udevd[139]: seq 3440 queued, 'add' 'tty'
[   26.215179] systemd-udevd[146]: preserve permissions /dev/ttyw5, 020600, uid=0, gid=0
[   26.215240] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.215393] systemd-udevd[139]: seq 3441 queued, 'add' 'tty'
[   26.215637] systemd-udevd[146]: creating symlink '/dev/char/3:117' to '../ttyw5'
[   26.215759] systemd-udevd[144]: seq 3441 running
[   26.216064] systemd-udevd[146]: created empty file '/run/udev/data/c3:117' for '/devices/virtual/tty/ttyw5'
[   26.216125] systemd-udevd[144]: no db file to read /run/udev/data/c3:120: No such file or directory
[   26.216339] systemd-udevd[144]: handling device node '/dev/ttyw8', devnum=c3:120, mode=0600, uid=0, gid=0
[   26.216400] systemd-udevd[144]: preserve permissions /dev/ttyw8, 020600, uid=0, gid=0
[   26.216491] systemd-udevd[144]: creating symlink '/dev/char/3:120' to '../ttyw8'
[   26.216674] systemd-udevd[144]: created empty file '/run/udev/data/c3:120' for '/devices/virtual/tty/ttyw8'
[   26.216979] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.217041] systemd-udevd[144]: seq 3441 processed with 0
[   26.217132] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.217315] systemd-udevd[139]: seq 3442 queued, 'add' 'tty'
[   26.217681] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.217712] systemd-udevd[144]: seq 3442 running
[   26.218017] systemd-udevd[146]: seq 3438 processed with 0
[   26.218078] systemd-udevd[144]: no db file to read /run/udev/data/c3:121: No such file or directory
[   26.218292] systemd-udevd[144]: handling device node '/dev/ttyw9', devnum=c3:121, mode=0600, uid=0, gid=0
[   26.218353] systemd-udevd[144]: preserve permissions /dev/ttyw9, 020600, uid=0, gid=0
[   26.218444] systemd-udevd[144]: creating symlink '/dev/char/3:121' to '../ttyw9'
[   26.218597] systemd-udevd[144]: created empty file '/run/udev/data/c3:121' for '/devices/virtual/tty/ttyw9'
[   26.218933] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.218963] systemd-udevd[143]: seq 3440 running
[   26.219207] systemd-udevd[144]: seq 3442 processed with 0
[   26.219329] systemd-udevd[143]: no db file to read /run/udev/data/c3:119: No such file or directory
[   26.219543] systemd-udevd[143]: handling device node '/dev/ttyw7', devnum=c3:119, mode=0600, uid=0, gid=0
[   26.219635] systemd-udevd[142]: seq 3439 running
[   26.219848] systemd-udevd[143]: preserve permissions /dev/ttyw7, 020600, uid=0, gid=0
[   26.219970] systemd-udevd[142]: no db file to read /run/udev/data/c3:118: No such file or directory
[   26.220184] systemd-udevd[142]: handling device node '/dev/ttyw6', devnum=c3:118, mode=0600, uid=0, gid=0
[   26.220245] systemd-udevd[143]: creating symlink '/dev/char/3:119' to '../ttyw7'
[   26.220428] systemd-udevd[143]: created empty file '/run/udev/data/c3:119' for '/devices/virtual/tty/ttyw7'
[   26.220672] systemd-udevd[142]: preserve permissions /dev/ttyw6, 020600, uid=0, gid=0
[   26.220794] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.220886] systemd-udevd[143]: seq 3440 processed with 0
[   26.220977] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.221221] systemd-udevd[139]: seq 3443 queued, 'add' 'tty'
[   26.221405] systemd-udevd[142]: creating symlink '/dev/char/3:118' to '../ttyw6'
[   26.221618] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.221740] systemd-udevd[142]: created empty file '/run/udev/data/c3:118' for '/devices/virtual/tty/ttyw6'
[   26.222015] systemd-udevd[139]: seq 3444 queued, 'add' 'tty'
[   26.222076] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.222137] systemd-udevd[142]: seq 3439 processed with 0
[   26.222290] systemd-udevd[143]: seq 3443 running
[   26.222656] systemd-udevd[143]: no db file to read /run/udev/data/c3:122: No such file or directory
[   26.222747] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.222930] systemd-udevd[139]: seq 3445 queued, 'add' 'tty'
[   26.223175] systemd-udevd[144]: seq 3444 running
[   26.223266] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.223449] systemd-udevd[139]: seq 3446 queued, 'add' 'tty'
[   26.223754] systemd-udevd[144]: no db file to read /run/udev/data/c3:123: No such file or directory
[   26.223937] systemd-udevd[145]: seq 3446 running
[   26.224243] systemd-udevd[144]: handling device node '/dev/ttywb', devnum=c3:123, mode=0600, uid=0, gid=0
[   26.224365] systemd-udevd[145]: no db file to read /run/udev/data/c3:125: No such file or directory
[   26.224578] systemd-udevd[145]: handling device node '/dev/ttywd', devnum=c3:125, mode=0600, uid=0, gid=0
[   26.224639] systemd-udevd[145]: preserve permissions /dev/ttywd, 020600, uid=0, gid=0
[   26.224731] systemd-udevd[145]: creating symlink '/dev/char/3:125' to '../ttywd'
[   26.224914] systemd-udevd[145]: created empty file '/run/udev/data/c3:125' for '/devices/virtual/tty/ttywd'
[   26.225158] systemd-udevd[144]: preserve permissions /dev/ttywb, 020600, uid=0, gid=0
[   26.225250] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.225311] systemd-udevd[145]: seq 3446 processed with 0
[   26.225433] systemd-udevd[142]: seq 3445 running
[   26.225708] systemd-udevd[144]: creating symlink '/dev/char/3:123' to '../ttywb'
[   26.225769] systemd-udevd[142]: no db file to read /run/udev/data/c3:124: No such file or directory
[   26.225982] systemd-udevd[142]: handling device node '/dev/ttywc', devnum=c3:124, mode=0600, uid=0, gid=0
[   26.226074] systemd-udevd[142]: preserve permissions /dev/ttywc, 020600, uid=0, gid=0
[   26.226135] systemd-udevd[142]: creating symlink '/dev/char/3:124' to '../ttywc'
[   26.226318] systemd-udevd[142]: created empty file '/run/udev/data/c3:124' for '/devices/virtual/tty/ttywc'
[   26.226623] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.226684] systemd-udevd[144]: created empty file '/run/udev/data/c3:123' for '/devices/virtual/tty/ttywb'
[   26.226928] systemd-udevd[142]: seq 3445 processed with 0
[   26.226989] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.227050] systemd-udevd[144]: seq 3444 processed with 0
[   26.227325] systemd-udevd[143]: handling device node '/dev/ttywa', devnum=c3:122, mode=0600, uid=0, gid=0
[   26.227386] systemd-udevd[143]: preserve permissions /dev/ttywa, 020600, uid=0, gid=0
[   26.227478] systemd-udevd[143]: creating symlink '/dev/char/3:122' to '../ttywa'
[   26.227661] systemd-udevd[143]: created empty file '/run/udev/data/c3:122' for '/devices/virtual/tty/ttywa'
[   26.227966] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.227996] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.228057] systemd-udevd[143]: seq 3443 processed with 0
[   26.228576] systemd-udevd[139]: seq 3447 queued, 'add' 'tty'
[   26.229034] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.229339] systemd-udevd[139]: seq 3448 queued, 'add' 'tty'
[   26.229705] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.229797] systemd-udevd[143]: seq 3448 running
[   26.230102] systemd-udevd[139]: seq 3449 queued, 'add' 'tty'
[   26.230163] systemd-udevd[143]: no db file to read /run/udev/data/c3:127: No such file or directory
[   26.230377] systemd-udevd[143]: handling device node '/dev/ttywf', devnum=c3:127, mode=0600, uid=0, gid=0
[   26.230468] systemd-udevd[143]: preserve permissions /dev/ttywf, 020600, uid=0, gid=0
[   26.230560] systemd-udevd[143]: creating symlink '/dev/char/3:127' to '../ttywf'
[   26.230773] systemd-udevd[143]: created empty file '/run/udev/data/c3:127' for '/devices/virtual/tty/ttywf'
[   26.231170] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.231323] systemd-udevd[143]: seq 3448 processed with 0
[   26.231353] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.231567] systemd-udevd[139]: seq 3450 queued, 'add' 'tty'
[   26.231842] systemd-udevd[144]: seq 3449 running
[   26.231903] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.232055] systemd-udevd[139]: seq 3451 queued, 'add' 'tty'
[   26.232330] systemd-udevd[142]: seq 3447 running
[   26.232513] systemd-udevd[144]: no db file to read /run/udev/data/c3:128: No such file or directory
[   26.232727] systemd-udevd[144]: handling device node '/dev/ttyx0', devnum=c3:128, mode=0600, uid=0, gid=0
[   26.232910] systemd-udevd[144]: preserve permissions /dev/ttyx0, 020600, uid=0, gid=0
[   26.232971] systemd-udevd[142]: no db file to read /run/udev/data/c3:126: No such file or directory
[   26.233215] systemd-udevd[142]: handling device node '/dev/ttywe', devnum=c3:126, mode=0600, uid=0, gid=0
[   26.233276] systemd-udevd[142]: preserve permissions /dev/ttywe, 020600, uid=0, gid=0
[   26.233367] systemd-udevd[142]: creating symlink '/dev/char/3:126' to '../ttywe'
[   26.233551] systemd-udevd[142]: created empty file '/run/udev/data/c3:126' for '/devices/virtual/tty/ttywe'
[   26.233825] systemd-udevd[144]: creating symlink '/dev/char/3:128' to '../ttyx0'
[   26.233856] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.233947] systemd-udevd[142]: seq 3447 processed with 0
[   26.234222] systemd-udevd[145]: seq 3451 running
[   26.234497] systemd-udevd[144]: created empty file '/run/udev/data/c3:128' for '/devices/virtual/tty/ttyx0'
[   26.234588] systemd-udevd[145]: no db file to read /run/udev/data/c3:130: No such file or directory
[   26.234802] systemd-udevd[145]: handling device node '/dev/ttyx2', devnum=c3:130, mode=0600, uid=0, gid=0
[   26.234863] systemd-udevd[145]: preserve permissions /dev/ttyx2, 020600, uid=0, gid=0
[   26.234954] systemd-udevd[145]: creating symlink '/dev/char/3:130' to '../ttyx2'
[   26.235107] systemd-udevd[145]: created empty file '/run/udev/data/c3:130' for '/devices/virtual/tty/ttyx2'
[   26.235412] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.235626] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.235656] systemd-udevd[145]: seq 3451 processed with 0
[   26.235748] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.235992] systemd-udevd[139]: seq 3452 queued, 'add' 'tty'
[   26.236175] systemd-udevd[144]: seq 3449 processed with 0
[   26.236389] systemd-udevd[142]: seq 3452 running
[   26.236419] systemd-udevd[143]: seq 3450 running
[   26.236785] systemd-udevd[143]: no db file to read /run/udev/data/c3:129: No such file or directory
[   26.236938] systemd-udevd[142]: no db file to read /run/udev/data/c3:131: No such file or directory
[   26.237152] systemd-udevd[142]: handling device node '/dev/ttyx3', devnum=c3:131, mode=0600, uid=0, gid=0
[   26.237274] systemd-udevd[143]: handling device node '/dev/ttyx1', devnum=c3:129, mode=0600, uid=0, gid=0
[   26.237335] systemd-udevd[143]: preserve permissions /dev/ttyx1, 020600, uid=0, gid=0
[   26.237426] systemd-udevd[143]: creating symlink '/dev/char/3:129' to '../ttyx1'
[   26.237609] systemd-udevd[143]: created empty file '/run/udev/data/c3:129' for '/devices/virtual/tty/ttyx1'
[   26.237915] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.237976] systemd-udevd[143]: seq 3450 processed with 0
[   26.238220] systemd-udevd[142]: preserve permissions /dev/ttyx3, 020600, uid=0, gid=0
[   26.238372] systemd-udevd[142]: creating symlink '/dev/char/3:131' to '../ttyx3'
[   26.238677] systemd-udevd[142]: created empty file '/run/udev/data/c3:131' for '/devices/virtual/tty/ttyx3'
[   26.239196] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.239410] systemd-udevd[142]: seq 3452 processed with 0
[   26.239562] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.239959] systemd-udevd[139]: seq 3453 queued, 'add' 'tty'
[   26.240356] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.240753] systemd-udevd[139]: seq 3454 queued, 'add' 'tty'
[   26.241149] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.241241] systemd-udevd[143]: seq 3454 running
[   26.241577] systemd-udevd[139]: seq 3455 queued, 'add' 'tty'
[   26.241607] systemd-udevd[143]: no db file to read /run/udev/data/c3:133: No such file or directory
[   26.241821] systemd-udevd[143]: handling device node '/dev/ttyx5', devnum=c3:133, mode=0600, uid=0, gid=0
[   26.241912] systemd-udevd[143]: preserve permissions /dev/ttyx5, 020600, uid=0, gid=0
[   26.242004] systemd-udevd[143]: creating symlink '/dev/char/3:133' to '../ttyx5'
[   26.242156] systemd-udevd[143]: created empty file '/run/udev/data/c3:133' for '/devices/virtual/tty/ttyx5'
[   26.242492] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.242645] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.242675] systemd-udevd[143]: seq 3454 processed with 0
[   26.242828] systemd-udevd[144]: seq 3455 running
[   26.243164] systemd-udevd[139]: seq 3456 queued, 'add' 'tty'
[   26.243194] systemd-udevd[144]: no db file to read /run/udev/data/c3:134: No such file or directory
[   26.243408] systemd-udevd[144]: handling device node '/dev/ttyx6', devnum=c3:134, mode=0600, uid=0, gid=0
[   26.243652] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.243713] systemd-udevd[144]: preserve permissions /dev/ttyx6, 020600, uid=0, gid=0
[   26.243804] systemd-udevd[144]: creating symlink '/dev/char/3:134' to '../ttyx6'
[   26.243957] systemd-udevd[144]: created empty file '/run/udev/data/c3:134' for '/devices/virtual/tty/ttyx6'
[   26.244323] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.244354] systemd-udevd[139]: seq 3457 queued, 'add' 'tty'
[   26.244659] systemd-udevd[144]: seq 3455 processed with 0
[   26.244750] systemd-udevd[145]: seq 3457 running
[   26.245025] systemd-udevd[143]: seq 3456 running
[   26.245086] systemd-udevd[145]: no db file to read /run/udev/data/c3:136: No such file or directory
[   26.245300] systemd-udevd[145]: handling device node '/dev/ttyx8', devnum=c3:136, mode=0600, uid=0, gid=0
[   26.245544] systemd-udevd[145]: preserve permissions /dev/ttyx8, 020600, uid=0, gid=0
[   26.245574] systemd-udevd[143]: no db file to read /run/udev/data/c3:135: No such file or directory
[   26.245788] systemd-udevd[143]: handling device node '/dev/ttyx7', devnum=c3:135, mode=0600, uid=0, gid=0
[   26.245849] systemd-udevd[143]: preserve permissions /dev/ttyx7, 020600, uid=0, gid=0
[   26.245941] systemd-udevd[143]: creating symlink '/dev/char/3:135' to '../ttyx7'
[   26.246124] systemd-udevd[143]: created empty file '/run/udev/data/c3:135' for '/devices/virtual/tty/ttyx7'
[   26.246398] systemd-udevd[145]: creating symlink '/dev/char/3:136' to '../ttyx8'
[   26.246459] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.246520] systemd-udevd[143]: seq 3456 processed with 0
[   26.246704] systemd-udevd[142]: seq 3453 running
[   26.247070] systemd-udevd[142]: no db file to read /run/udev/data/c3:132: No such file or directory
[   26.247100] systemd-udevd[145]: created empty file '/run/udev/data/c3:136' for '/devices/virtual/tty/ttyx8'
[   26.247436] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.247497] systemd-udevd[142]: handling device node '/dev/ttyx4', devnum=c3:132, mode=0600, uid=0, gid=0
[   26.247589] systemd-udevd[142]: preserve permissions /dev/ttyx4, 020600, uid=0, gid=0
[   26.247680] systemd-udevd[142]: creating symlink '/dev/char/3:132' to '../ttyx4'
[   26.247863] systemd-udevd[142]: created empty file '/run/udev/data/c3:132' for '/devices/virtual/tty/ttyx4'
[   26.248168] systemd-udevd[145]: seq 3457 processed with 0
[   26.248199] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.248260] systemd-udevd[142]: seq 3453 processed with 0
[   26.248382] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.248657] systemd-udevd[139]: seq 3458 queued, 'add' 'tty'
[   26.249053] systemd-udevd[142]: seq 3458 running
[   26.249481] systemd-udevd[142]: no db file to read /run/udev/data/c3:137: No such file or directory
[   26.249847] systemd-udevd[142]: handling device node '/dev/ttyx9', devnum=c3:137, mode=0600, uid=0, gid=0
[   26.250061] systemd-udevd[142]: preserve permissions /dev/ttyx9, 020600, uid=0, gid=0
[   26.250305] systemd-udevd[142]: creating symlink '/dev/char/3:137' to '../ttyx9'
[   26.250549] systemd-udevd[142]: created empty file '/run/udev/data/c3:137' for '/devices/virtual/tty/ttyx9'
[   26.251098] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.251312] systemd-udevd[142]: seq 3458 processed with 0
[   26.251464] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.251831] systemd-udevd[139]: seq 3459 queued, 'add' 'tty'
[   26.252288] systemd-udevd[142]: seq 3459 running
[   26.252746] systemd-udevd[142]: no db file to read /run/udev/data/c3:138: No such file or directory
[   26.253112] systemd-udevd[142]: handling device node '/dev/ttyxa', devnum=c3:138, mode=0600, uid=0, gid=0
[   26.253265] systemd-udevd[142]: preserve permissions /dev/ttyxa, 020600, uid=0, gid=0
[   26.253509] systemd-udevd[142]: creating symlink '/dev/char/3:138' to '../ttyxa'
[   26.253814] systemd-udevd[142]: created empty file '/run/udev/data/c3:138' for '/devices/virtual/tty/ttyxa'
[   26.254272] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.254425] systemd-udevd[142]: seq 3459 processed with 0
[   26.254669] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.254943] systemd-udevd[139]: seq 3460 queued, 'add' 'tty'
[   26.255401] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.255706] systemd-udevd[139]: seq 3461 queued, 'add' 'tty'
[   26.256164] systemd-udevd[143]: seq 3461 running
[   26.256561] systemd-udevd[143]: no db file to read /run/udev/data/c3:140: No such file or directory
[   26.256927] systemd-udevd[143]: handling device node '/dev/ttyxc', devnum=c3:140, mode=0600, uid=0, gid=0
[   26.257141] systemd-udevd[143]: preserve permissions /dev/ttyxc, 020600, uid=0, gid=0
[   26.257385] systemd-udevd[143]: creating symlink '/dev/char/3:140' to '../ttyxc'
[   26.257629] systemd-udevd[143]: created empty file '/run/udev/data/c3:140' for '/devices/virtual/tty/ttyxc'
[   26.258087] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.258300] systemd-udevd[143]: seq 3461 processed with 0
[   26.258514] systemd-udevd[142]: seq 3460 running
[   26.258972] systemd-udevd[142]: no db file to read /run/udev/data/c3:139: No such file or directory
[   26.259338] systemd-udevd[142]: handling device node '/dev/ttyxb', devnum=c3:139, mode=0600, uid=0, gid=0
[   26.259490] systemd-udevd[142]: preserve permissions /dev/ttyxb, 020600, uid=0, gid=0
[   26.259674] systemd-udevd[142]: creating symlink '/dev/char/3:139' to '../ttyxb'
[   26.259979] systemd-udevd[142]: created empty file '/run/udev/data/c3:139' for '/devices/virtual/tty/ttyxb'
[   26.260437] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.260589] systemd-udevd[142]: seq 3460 processed with 0
[   26.260711] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.260955] systemd-udevd[139]: seq 3462 queued, 'add' 'tty'
[   26.261474] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.261566] systemd-udevd[142]: seq 3462 running
[   26.261871] systemd-udevd[139]: seq 3463 queued, 'add' 'tty'
[   26.261901] systemd-udevd[142]: no db file to read /run/udev/data/c3:141: No such file or directory
[   26.262145] systemd-udevd[142]: handling device node '/dev/ttyxd', devnum=c3:141, mode=0600, uid=0, gid=0
[   26.262207] systemd-udevd[142]: preserve permissions /dev/ttyxd, 020600, uid=0, gid=0
[   26.262298] systemd-udevd[142]: creating symlink '/dev/char/3:141' to '../ttyxd'
[   26.262481] systemd-udevd[142]: created empty file '/run/udev/data/c3:141' for '/devices/virtual/tty/ttyxd'
[   26.262786] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.262969] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.263153] systemd-udevd[139]: seq 3464 queued, 'add' 'tty'
[   26.263366] systemd-udevd[143]: seq 3463 running
[   26.263519] systemd-udevd[144]: seq 3464 running
[   26.263824] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.264068] systemd-udevd[143]: no db file to read /run/udev/data/c3:142: No such file or directory
[   26.264190] systemd-udevd[144]: no db file to read /run/udev/data/c3:143: No such file or directory
[   26.264434] systemd-udevd[144]: handling device node '/dev/ttyxf', devnum=c3:143, mode=0600, uid=0, gid=0
[   26.264526] systemd-udevd[143]: handling device node '/dev/ttyxe', devnum=c3:142, mode=0600, uid=0, gid=0
[   26.264587] systemd-udevd[143]: preserve permissions /dev/ttyxe, 020600, uid=0, gid=0
[   26.264678] systemd-udevd[143]: creating symlink '/dev/char/3:142' to '../ttyxe'
[   26.264862] systemd-udevd[143]: created empty file '/run/udev/data/c3:142' for '/devices/virtual/tty/ttyxe'
[   26.265167] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.265228] systemd-udevd[144]: preserve permissions /dev/ttyxf, 020600, uid=0, gid=0
[   26.265319] systemd-udevd[144]: creating symlink '/dev/char/3:143' to '../ttyxf'
[   26.265472] systemd-udevd[144]: created empty file '/run/udev/data/c3:143' for '/devices/virtual/tty/ttyxf'
[   26.265777] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.265838] systemd-udevd[144]: seq 3464 processed with 0
[   26.266052] systemd-udevd[143]: seq 3463 processed with 0
[   26.266113] systemd-udevd[139]: seq 3465 queued, 'add' 'tty'
[   26.266387] systemd-udevd[142]: seq 3462 processed with 0
[   26.266418] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.266632] systemd-udevd[139]: seq 3466 queued, 'add' 'tty'
[   26.266876] systemd-udevd[142]: seq 3465 running
[   26.266906] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.267089] systemd-udevd[139]: seq 3467 queued, 'add' 'tty'
[   26.267303] systemd-udevd[143]: seq 3466 running
[   26.267456] systemd-udevd[144]: seq 3467 running
[   26.267669] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.267913] systemd-udevd[143]: no db file to read /run/udev/data/c3:145: No such file or directory
[   26.268035] systemd-udevd[144]: no db file to read /run/udev/data/c3:146: No such file or directory
[   26.268280] systemd-udevd[144]: handling device node '/dev/ttyy2', devnum=c3:146, mode=0600, uid=0, gid=0
[   26.268341] systemd-udevd[143]: handling device node '/dev/ttyy1', devnum=c3:145, mode=0600, uid=0, gid=0
[   26.268402] systemd-udevd[143]: preserve permissions /dev/ttyy1, 020600, uid=0, gid=0
[   26.268493] systemd-udevd[143]: creating symlink '/dev/char/3:145' to '../ttyy1'
[   26.268676] systemd-udevd[143]: created empty file '/run/udev/data/c3:145' for '/devices/virtual/tty/ttyy1'
[   26.269012] systemd-udevd[144]: preserve permissions /dev/ttyy2, 020600, uid=0, gid=0
[   26.269042] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.269134] systemd-udevd[143]: seq 3466 processed with 0
[   26.269500] systemd-udevd[144]: creating symlink '/dev/char/3:146' to '../ttyy2'
[   26.269561] systemd-udevd[142]: no db file to read /run/udev/data/c3:144: No such file or directory
[   26.269775] systemd-udevd[142]: handling device node '/dev/ttyy0', devnum=c3:144, mode=0600, uid=0, gid=0
[   26.269836] systemd-udevd[142]: preserve permissions /dev/ttyy0, 020600, uid=0, gid=0
[   26.269927] systemd-udevd[142]: creating symlink '/dev/char/3:144' to '../ttyy0'
[   26.270080] systemd-udevd[142]: created empty file '/run/udev/data/c3:144' for '/devices/virtual/tty/ttyy0'
[   26.270385] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.270477] systemd-udevd[144]: created empty file '/run/udev/data/c3:146' for '/devices/virtual/tty/ttyy2'
[   26.270782] systemd-udevd[142]: seq 3465 processed with 0
[   26.270874] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.270935] systemd-udevd[144]: seq 3467 processed with 0
[   26.271240] systemd-udevd[139]: seq 3468 queued, 'add' 'tty'
[   26.271667] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.271759] systemd-udevd[142]: seq 3468 running
[   26.272094] systemd-udevd[139]: seq 3469 queued, 'add' 'tty'
[   26.272125] systemd-udevd[142]: no db file to read /run/udev/data/c3:147: No such file or directory
[   26.272338] systemd-udevd[142]: handling device node '/dev/ttyy3', devnum=c3:147, mode=0600, uid=0, gid=0
[   26.272430] systemd-udevd[142]: preserve permissions /dev/ttyy3, 020600, uid=0, gid=0
[   26.272521] systemd-udevd[142]: creating symlink '/dev/char/3:147' to '../ttyy3'
[   26.272674] systemd-udevd[142]: created empty file '/run/udev/data/c3:147' for '/devices/virtual/tty/ttyy3'
[   26.273010] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.273071] systemd-udevd[142]: seq 3468 processed with 0
[   26.273559] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.273681] systemd-udevd[143]: seq 3469 running
[   26.274017] systemd-udevd[139]: seq 3470 queued, 'add' 'tty'
[   26.274047] systemd-udevd[143]: no db file to read /run/udev/data/c3:148: No such file or directory
[   26.274261] systemd-udevd[143]: handling device node '/dev/ttyy4', devnum=c3:148, mode=0600, uid=0, gid=0
[   26.274353] systemd-udevd[143]: preserve permissions /dev/ttyy4, 020600, uid=0, gid=0
[   26.274444] systemd-udevd[143]: creating symlink '/dev/char/3:148' to '../ttyy4'
[   26.274597] systemd-udevd[143]: created empty file '/run/udev/data/c3:148' for '/devices/virtual/tty/ttyy4'
[   26.274932] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.275085] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.275268] systemd-udevd[143]: seq 3469 processed with 0
[   26.275299] systemd-udevd[139]: seq 3471 queued, 'add' 'tty'
[   26.275634] systemd-udevd[142]: seq 3470 running
[   26.275695] systemd-udevd[144]: seq 3471 running
[   26.276031] systemd-udevd[144]: no db file to read /run/udev/data/c3:150: No such file or directory
[   26.276123] systemd-udevd[142]: no db file to read /run/udev/data/c3:149: No such file or directory
[   26.276367] systemd-udevd[142]: handling device node '/dev/ttyy5', devnum=c3:149, mode=0600, uid=0, gid=0
[   26.276428] systemd-udevd[142]: preserve permissions /dev/ttyy5, 020600, uid=0, gid=0
[   26.276519] systemd-udevd[142]: creating symlink '/dev/char/3:149' to '../ttyy5'
[   26.276702] systemd-udevd[142]: created empty file '/run/udev/data/c3:149' for '/devices/virtual/tty/ttyy5'
[   26.277008] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.277099] systemd-udevd[144]: handling device node '/dev/ttyy6', devnum=c3:150, mode=0600, uid=0, gid=0
[   26.277160] systemd-udevd[144]: preserve permissions /dev/ttyy6, 020600, uid=0, gid=0
[   26.277252] systemd-udevd[144]: creating symlink '/dev/char/3:150' to '../ttyy6'
[   26.277404] systemd-udevd[144]: created empty file '/run/udev/data/c3:150' for '/devices/virtual/tty/ttyy6'
[   26.277709] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.277801] systemd-udevd[144]: seq 3471 processed with 0
[   26.277862] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.278076] systemd-udevd[142]: seq 3470 processed with 0
[   26.278106] systemd-udevd[139]: seq 3472 queued, 'add' 'tty'
[   26.278472] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.278564] systemd-udevd[143]: seq 3472 running
[   26.278900] systemd-udevd[139]: seq 3473 queued, 'add' 'tty'
[   26.278930] systemd-udevd[143]: no db file to read /run/udev/data/c3:151: No such file or directory
[   26.279174] systemd-udevd[143]: handling device node '/dev/ttyy7', devnum=c3:151, mode=0600, uid=0, gid=0
[   26.279235] systemd-udevd[143]: preserve permissions /dev/ttyy7, 020600, uid=0, gid=0
[   26.279327] systemd-udevd[143]: creating symlink '/dev/char/3:151' to '../ttyy7'
[   26.279510] systemd-udevd[143]: created empty file '/run/udev/data/c3:151' for '/devices/virtual/tty/ttyy7'
[   26.279815] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.279876] systemd-udevd[143]: seq 3472 processed with 0
[   26.280364] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.280456] systemd-udevd[142]: seq 3473 running
[   26.280944] systemd-udevd[142]: no db file to read /run/udev/data/c3:152: No such file or directory
[   26.281188] systemd-udevd[139]: seq 3474 queued, 'add' 'tty'
[   26.281372] systemd-udevd[142]: handling device node '/dev/ttyy8', devnum=c3:152, mode=0600, uid=0, gid=0
[   26.281616] systemd-udevd[142]: preserve permissions /dev/ttyy8, 020600, uid=0, gid=0
[   26.281921] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.281982] systemd-udevd[143]: seq 3474 running
[   26.282348] systemd-udevd[143]: no db file to read /run/udev/data/c3:153: No such file or directory
[   26.282409] systemd-udevd[139]: seq 3475 queued, 'add' 'tty'
[   26.282714] systemd-udevd[142]: creating symlink '/dev/char/3:152' to '../ttyy8'
[   26.283020] systemd-udevd[144]: seq 3475 running
[   26.283081] systemd-udevd[143]: handling device node '/dev/ttyy9', devnum=c3:153, mode=0600, uid=0, gid=0
[   26.283172] systemd-udevd[143]: preserve permissions /dev/ttyy9, 020600, uid=0, gid=0
[   26.283264] systemd-udevd[143]: creating symlink '/dev/char/3:153' to '../ttyy9'
[   26.283416] systemd-udevd[143]: created empty file '/run/udev/data/c3:153' for '/devices/virtual/tty/ttyy9'
[   26.283782] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.283966] systemd-udevd[144]: no db file to read /run/udev/data/c3:154: No such file or directory
[   26.284027] systemd-udevd[143]: seq 3474 processed with 0
[   26.284240] systemd-udevd[142]: created empty file '/run/udev/data/c3:152' for '/devices/virtual/tty/ttyy8'
[   26.284606] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.284667] systemd-udevd[144]: handling device node '/dev/ttyya', devnum=c3:154, mode=0600, uid=0, gid=0
[   26.284729] systemd-udevd[144]: preserve permissions /dev/ttyya, 020600, uid=0, gid=0
[   26.284820] systemd-udevd[144]: creating symlink '/dev/char/3:154' to '../ttyya'
[   26.285003] systemd-udevd[144]: created empty file '/run/udev/data/c3:154' for '/devices/virtual/tty/ttyya'
[   26.285308] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.285369] systemd-udevd[144]: seq 3475 processed with 0
[   26.285583] systemd-udevd[142]: seq 3473 processed with 0
[   26.285797] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.286193] systemd-udevd[139]: seq 3476 queued, 'add' 'tty'
[   26.286621] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.286956] systemd-udevd[139]: seq 3477 queued, 'add' 'tty'
[   26.287475] systemd-udevd[143]: seq 3477 running
[   26.287902] systemd-udevd[143]: no db file to read /run/udev/data/c3:156: No such file or directory
[   26.288238] systemd-udevd[143]: handling device node '/dev/ttyyc', devnum=c3:156, mode=0600, uid=0, gid=0
[   26.288482] systemd-udevd[143]: preserve permissions /dev/ttyyc, 020600, uid=0, gid=0
[   26.288635] systemd-udevd[143]: creating symlink '/dev/char/3:156' to '../ttyyc'
[   26.288970] systemd-udevd[143]: created empty file '/run/udev/data/c3:156' for '/devices/virtual/tty/ttyyc'
[   26.289428] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.289581] systemd-udevd[143]: seq 3477 processed with 0
[   26.289855] systemd-udevd[142]: seq 3476 running
[   26.290283] systemd-udevd[142]: no db file to read /run/udev/data/c3:155: No such file or directory
[   26.290679] systemd-udevd[142]: handling device node '/dev/ttyyb', devnum=c3:155, mode=0600, uid=0, gid=0
[   26.290924] systemd-udevd[142]: preserve permissions /dev/ttyyb, 020600, uid=0, gid=0
[   26.291137] systemd-udevd[142]: creating symlink '/dev/char/3:155' to '../ttyyb'
[   26.291381] systemd-udevd[142]: created empty file '/run/udev/data/c3:155' for '/devices/virtual/tty/ttyyb'
[   26.291900] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.292114] systemd-udevd[142]: seq 3476 processed with 0
[   26.292266] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.292633] systemd-udevd[139]: seq 3478 queued, 'add' 'tty'
[   26.293060] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.293365] systemd-udevd[139]: seq 3479 queued, 'add' 'tty'
[   26.293884] systemd-udevd[143]: seq 3479 running
[   26.294281] systemd-udevd[143]: no db file to read /run/udev/data/c3:158: No such file or directory
[   26.294647] systemd-udevd[143]: handling device node '/dev/ttyye', devnum=c3:158, mode=0600, uid=0, gid=0
[   26.294860] systemd-udevd[143]: preserve permissions /dev/ttyye, 020600, uid=0, gid=0
[   26.295043] systemd-udevd[143]: creating symlink '/dev/char/3:158' to '../ttyye'
[   26.295349] systemd-udevd[143]: created empty file '/run/udev/data/c3:158' for '/devices/virtual/tty/ttyye'
[   26.295806] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.296020] systemd-udevd[143]: seq 3479 processed with 0
[   26.296264] systemd-udevd[142]: seq 3478 running
[   26.296691] systemd-udevd[142]: no db file to read /run/udev/data/c3:157: No such file or directory
[   26.297027] systemd-udevd[142]: handling device node '/dev/ttyyd', devnum=c3:157, mode=0600, uid=0, gid=0
[   26.297271] systemd-udevd[142]: preserve permissions /dev/ttyyd, 020600, uid=0, gid=0
[   26.297485] systemd-udevd[142]: creating symlink '/dev/char/3:157' to '../ttyyd'
[   26.297729] systemd-udevd[142]: created empty file '/run/udev/data/c3:157' for '/devices/virtual/tty/ttyyd'
[   26.298217] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.298400] systemd-udevd[142]: seq 3478 processed with 0
[   26.298583] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.298950] systemd-udevd[139]: seq 3480 queued, 'add' 'tty'
[   26.299407] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.299682] systemd-udevd[139]: seq 3481 queued, 'add' 'tty'
[   26.300170] systemd-udevd[143]: seq 3481 running
[   26.300659] systemd-udevd[143]: no db file to read /run/udev/data/c3:160: No such file or directory
[   26.301055] systemd-udevd[143]: handling device node '/dev/ttyz0', devnum=c3:160, mode=0600, uid=0, gid=0
[   26.301269] systemd-udevd[143]: preserve permissions /dev/ttyz0, 020600, uid=0, gid=0
[   26.301452] systemd-udevd[143]: creating symlink '/dev/char/3:160' to '../ttyz0'
[   26.301757] systemd-udevd[143]: created empty file '/run/udev/data/c3:160' for '/devices/virtual/tty/ttyz0'
[   26.302215] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.302459] systemd-udevd[143]: seq 3481 processed with 0
[   26.302612] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.302947] systemd-udevd[139]: seq 3482 queued, 'add' 'tty'
[   26.303436] systemd-udevd[143]: seq 3482 running
[   26.303924] systemd-udevd[143]: no db file to read /run/udev/data/c3:161: No such file or directory
[   26.304199] systemd-udevd[143]: handling device node '/dev/ttyz1', devnum=c3:161, mode=0600, uid=0, gid=0
[   26.304412] systemd-udevd[143]: preserve permissions /dev/ttyz1, 020600, uid=0, gid=0
[   26.304656] systemd-udevd[143]: creating symlink '/dev/char/3:161' to '../ttyz1'
[   26.304962] systemd-udevd[143]: created empty file '/run/udev/data/c3:161' for '/devices/virtual/tty/ttyz1'
[   26.305358] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.305572] systemd-udevd[143]: seq 3482 processed with 0
[   26.305877] systemd-udevd[142]: seq 3480 running
[   26.306304] systemd-udevd[142]: no db file to read /run/udev/data/c3:159: No such file or directory
[   26.306640] systemd-udevd[142]: handling device node '/dev/ttyyf', devnum=c3:159, mode=0600, uid=0, gid=0
[   26.306884] systemd-udevd[142]: preserve permissions /dev/ttyyf, 020600, uid=0, gid=0
[   26.307067] systemd-udevd[142]: creating symlink '/dev/char/3:159' to '../ttyyf'
[   26.307373] systemd-udevd[142]: created empty file '/run/udev/data/c3:159' for '/devices/virtual/tty/ttyyf'
[   26.307861] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.308074] systemd-udevd[142]: seq 3480 processed with 0
[   26.308227] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.308593] systemd-udevd[139]: seq 3483 queued, 'add' 'tty'
[   26.309020] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.309326] systemd-udevd[139]: seq 3484 queued, 'add' 'tty'
[   26.309783] systemd-udevd[143]: seq 3484 running
[   26.310241] systemd-udevd[143]: no db file to read /run/udev/data/c3:163: No such file or directory
[   26.310546] systemd-udevd[143]: handling device node '/dev/ttyz3', devnum=c3:163, mode=0600, uid=0, gid=0
[   26.310791] systemd-udevd[143]: preserve permissions /dev/ttyz3, 020600, uid=0, gid=0
[   26.311035] systemd-udevd[143]: creating symlink '/dev/char/3:163' to '../ttyz3'
[   26.311340] systemd-udevd[143]: created empty file '/run/udev/data/c3:163' for '/devices/virtual/tty/ttyz3'
[   26.311828] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.311981] systemd-udevd[143]: seq 3484 processed with 0
[   26.312225] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.312500] systemd-udevd[139]: seq 3485 queued, 'add' 'tty'
[   26.312988] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.313262] systemd-udevd[139]: seq 3486 queued, 'add' 'tty'
[   26.313690] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.313751] systemd-udevd[144]: seq 3486 running
[   26.314086] systemd-udevd[139]: seq 3487 queued, 'add' 'tty'
[   26.314117] systemd-udevd[144]: no db file to read /run/udev/data/c3:165: No such file or directory
[   26.314361] systemd-udevd[144]: handling device node '/dev/ttyz5', devnum=c3:165, mode=0600, uid=0, gid=0
[   26.314605] systemd-udevd[144]: preserve permissions /dev/ttyz5, 020600, uid=0, gid=0
[   26.314636] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.314788] systemd-udevd[139]: seq 3488 queued, 'add' 'tty'
[   26.315124] systemd-udevd[144]: creating symlink '/dev/char/3:165' to '../ttyz5'
[   26.315155] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.315338] systemd-udevd[139]: seq 3489 queued, 'add' 'tty'
[   26.315643] systemd-udevd[144]: created empty file '/run/udev/data/c3:165' for '/devices/virtual/tty/ttyz5'
[   26.315734] systemd-udevd[147]: seq 3489 running
[   26.316070] systemd-udevd[147]: no db file to read /run/udev/data/c3:168: No such file or directory
[   26.316162] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.316223] systemd-udevd[144]: seq 3486 processed with 0
[   26.316375] systemd-udevd[145]: seq 3487 running
[   26.316711] systemd-udevd[147]: handling device node '/dev/ttyz8', devnum=c3:168, mode=0600, uid=0, gid=0
[   26.316772] systemd-udevd[145]: no db file to read /run/udev/data/c3:166: No such file or directory
[   26.316986] systemd-udevd[145]: handling device node '/dev/ttyz6', devnum=c3:166, mode=0600, uid=0, gid=0
[   26.317047] systemd-udevd[145]: preserve permissions /dev/ttyz6, 020600, uid=0, gid=0
[   26.317138] systemd-udevd[145]: creating symlink '/dev/char/3:166' to '../ttyz6'
[   26.317291] systemd-udevd[145]: created empty file '/run/udev/data/c3:166' for '/devices/virtual/tty/ttyz6'
[   26.317596] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.317687] systemd-udevd[145]: seq 3487 processed with 0
[   26.317810] systemd-udevd[146]: seq 3488 running
[   26.318023] systemd-udevd[147]: preserve permissions /dev/ttyz8, 020600, uid=0, gid=0
[   26.318176] systemd-udevd[146]: no db file to read /run/udev/data/c3:167: No such file or directory
[   26.318237] systemd-udevd[147]: creating symlink '/dev/char/3:168' to '../ttyz8'
[   26.318389] systemd-udevd[147]: created empty file '/run/udev/data/c3:168' for '/devices/virtual/tty/ttyz8'
[   26.318725] systemd-udevd[147]: passed -1 bytes to netlink monitor 0x40ef7918
[   26.318817] systemd-udevd[146]: handling device node '/dev/ttyz7', devnum=c3:167, mode=0600, uid=0, gid=0
[   26.318908] systemd-udevd[146]: preserve permissions /dev/ttyz7, 020600, uid=0, gid=0
[   26.319000] systemd-udevd[146]: creating symlink '/dev/char/3:167' to '../ttyz7'
[   26.319152] systemd-udevd[146]: created empty file '/run/udev/data/c3:167' for '/devices/virtual/tty/ttyz7'
[   26.319427] systemd-udevd[147]: seq 3489 processed with 0
[   26.319458] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.319519] systemd-udevd[146]: seq 3488 processed with 0
[   26.319946] systemd-udevd[143]: seq 3485 running
[   26.320373] systemd-udevd[143]: no db file to read /run/udev/data/c3:164: No such file or directory
[   26.320831] systemd-udevd[143]: handling device node '/dev/ttyz4', devnum=c3:164, mode=0600, uid=0, gid=0
[   26.321075] systemd-udevd[143]: preserve permissions /dev/ttyz4, 020600, uid=0, gid=0
[   26.321289] systemd-udevd[143]: creating symlink '/dev/char/3:164' to '../ttyz4'
[   26.321563] systemd-udevd[143]: created empty file '/run/udev/data/c3:164' for '/devices/virtual/tty/ttyz4'
[   26.322052] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.322265] systemd-udevd[143]: seq 3485 processed with 0
[   26.322479] systemd-udevd[142]: seq 3483 running
[   26.322998] systemd-udevd[142]: no db file to read /run/udev/data/c3:162: No such file or directory
[   26.323333] systemd-udevd[142]: handling device node '/dev/ttyz2', devnum=c3:162, mode=0600, uid=0, gid=0
[   26.323516] systemd-udevd[142]: preserve permissions /dev/ttyz2, 020600, uid=0, gid=0
[   26.323730] systemd-udevd[142]: creating symlink '/dev/char/3:162' to '../ttyz2'
[   26.324066] systemd-udevd[142]: created empty file '/run/udev/data/c3:162' for '/devices/virtual/tty/ttyz2'
[   26.324523] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.324676] systemd-udevd[142]: seq 3483 processed with 0
[   26.324890] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.325286] systemd-udevd[139]: seq 3490 queued, 'add' 'tty'
[   26.325775] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.326049] systemd-udevd[139]: seq 3491 queued, 'add' 'tty'
[   26.326568] systemd-udevd[143]: seq 3491 running
[   26.326965] systemd-udevd[143]: no db file to read /run/udev/data/c3:170: No such file or directory
[   26.327331] systemd-udevd[143]: handling device node '/dev/ttyza', devnum=c3:170, mode=0600, uid=0, gid=0
[   26.327545] systemd-udevd[143]: preserve permissions /dev/ttyza, 020600, uid=0, gid=0
[   26.327789] systemd-udevd[143]: creating symlink '/dev/char/3:170' to '../ttyza'
[   26.328033] systemd-udevd[143]: created empty file '/run/udev/data/c3:170' for '/devices/virtual/tty/ttyza'
[   26.328491] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.328704] systemd-udevd[143]: seq 3491 processed with 0
[   26.328948] systemd-udevd[142]: seq 3490 running
[   26.329437] systemd-udevd[142]: no db file to read /run/udev/data/c3:169: No such file or directory
[   26.329772] systemd-udevd[142]: handling device node '/dev/ttyz9', devnum=c3:169, mode=0600, uid=0, gid=0
[   26.329956] systemd-udevd[142]: preserve permissions /dev/ttyz9, 020600, uid=0, gid=0
[   26.330169] systemd-udevd[142]: creating symlink '/dev/char/3:169' to '../ttyz9'
[   26.330474] systemd-udevd[142]: created empty file '/run/udev/data/c3:169' for '/devices/virtual/tty/ttyz9'
[   26.331115] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.331268] systemd-udevd[142]: seq 3490 processed with 0
[   26.331481] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.331817] systemd-udevd[139]: seq 3492 queued, 'add' 'tty'
[   26.332305] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.332611] systemd-udevd[139]: seq 3493 queued, 'add' 'tty'
[   26.333007] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.333312] systemd-udevd[139]: seq 3494 queued, 'add' 'tty'
[   26.333679] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.333770] systemd-udevd[144]: seq 3494 running
[   26.334075] systemd-udevd[139]: seq 3495 queued, 'add' 'tty'
[   26.334106] systemd-udevd[144]: no db file to read /run/udev/data/c3:173: No such file or directory
[   26.334350] systemd-udevd[144]: handling device node '/dev/ttyzd', devnum=c3:173, mode=0600, uid=0, gid=0
[   26.334442] systemd-udevd[144]: preserve permissions /dev/ttyzd, 020600, uid=0, gid=0
[   26.334503] systemd-udevd[144]: creating symlink '/dev/char/3:173' to '../ttyzd'
[   26.334686] systemd-udevd[144]: created empty file '/run/udev/data/c3:173' for '/devices/virtual/tty/ttyzd'
[   26.334991] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.335083] systemd-udevd[144]: seq 3494 processed with 0
[   26.335540] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.335632] systemd-udevd[145]: seq 3495 running
[   26.335968] systemd-udevd[145]: no db file to read /run/udev/data/c3:174: No such file or directory
[   26.336029] systemd-udevd[139]: seq 3496 queued, 'add' 'tty'
[   26.336364] systemd-udevd[139]: passed 175 bytes to netlink monitor 0x40ee80a0
[   26.336486] systemd-udevd[145]: handling device node '/dev/ttyze', devnum=c3:174, mode=0600, uid=0, gid=0
[   26.336547] systemd-udevd[145]: preserve permissions /dev/ttyze, 020600, uid=0, gid=0
[   26.336639] systemd-udevd[145]: creating symlink '/dev/char/3:174' to '../ttyze'
[   26.336822] systemd-udevd[145]: created empty file '/run/udev/data/c3:174' for '/devices/virtual/tty/ttyze'
[   26.337158] systemd-udevd[145]: passed -1 bytes to netlink monitor 0x40eecbf0
[   26.337188] systemd-udevd[139]: seq 3497 queued, 'add' 'vc'
[   26.337432] systemd-udevd[139]: passed 167 bytes to netlink monitor 0x40ee80a0
[   26.337585] systemd-udevd[139]: seq 3498 queued, 'add' 'vc'
[   26.337799] systemd-udevd[146]: seq 3497 running
[   26.337890] systemd-udevd[147]: seq 3498 running
[   26.338134] systemd-udevd[147]: no db file to read /run/udev/data/c7:1: No such file or directory
[   26.338256] systemd-udevd[146]: no db file to read /run/udev/data/c7:0: No such file or directory
[   26.338439] systemd-udevd[146]: handling device node '/dev/vcs', devnum=c7:0, mode=0600, uid=0, gid=0
[   26.338500] systemd-udevd[146]: preserve permissions /dev/vcs, 020600, uid=0, gid=0
[   26.338592] systemd-udevd[146]: creating symlink '/dev/char/7:0' to '../vcs'
[   26.338745] systemd-udevd[146]: created empty file '/run/udev/data/c7:0' for '/devices/virtual/vc/vcs'
[   26.338989] systemd-udevd[146]: passed -1 bytes to netlink monitor 0x40ef7748
[   26.339080] systemd-udevd[147]: handling device node '/dev/vcs1', devnum=c7:1, mode=0600, uid=0, gid=0
[   26.339172] systemd-udevd[147]: preserve permissions /dev/vcs1, 020600, uid=0, gid=0
[   26.339263] systemd-udevd[147]: creating symlink '/dev/char/7:1' to '../vcs1'
[   26.339416] systemd-udevd[147]: created empty file '/run/udev/data/c7:1' for '/devices/virtual/vc/vcs1'
[   26.339660] systemd-udevd[147]: passed -1 bytes to netlink monitor 0x40ef7918
[   26.339721] systemd-udevd[147]: seq 3498 processed with 0
[   26.339874] systemd-udevd[143]: seq 3493 running
[   26.340087] systemd-udevd[146]: seq 3497 processed with 0
[   26.340270] systemd-udevd[143]: no db file to read /run/udev/data/c3:172: No such file or directory
[   26.340332] systemd-udevd[144]: seq 3496 running
[   26.340728] systemd-udevd[144]: no db file to read /run/udev/data/c3:175: No such file or directory
[   26.340789] systemd-udevd[143]: handling device node '/dev/ttyzc', devnum=c3:172, mode=0600, uid=0, gid=0
[   26.340881] systemd-udevd[143]: preserve permissions /dev/ttyzc, 020600, uid=0, gid=0
[   26.340972] systemd-udevd[143]: creating symlink '/dev/char/3:172' to '../ttyzc'
[   26.341125] systemd-udevd[143]: created empty file '/run/udev/data/c3:172' for '/devices/virtual/tty/ttyzc'
[   26.341491] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.341613] systemd-udevd[144]: handling device node '/dev/ttyzf', devnum=c3:175, mode=0600, uid=0, gid=0
[   26.341674] systemd-udevd[144]: preserve permissions /dev/ttyzf, 020600, uid=0, gid=0
[   26.341766] systemd-udevd[144]: creating symlink '/dev/char/3:175' to '../ttyzf'
[   26.341918] systemd-udevd[144]: created empty file '/run/udev/data/c3:175' for '/devices/virtual/tty/ttyzf'
[   26.342224] systemd-udevd[143]: seq 3493 processed with 0
[   26.342254] systemd-udevd[144]: passed -1 bytes to netlink monitor 0x40eefe10
[   26.342315] systemd-udevd[144]: seq 3496 processed with 0
[   26.342407] systemd-udevd[145]: seq 3495 processed with 0
[   26.342803] systemd-udevd[142]: seq 3492 running
[   26.343261] systemd-udevd[142]: no db file to read /run/udev/data/c3:171: No such file or directory
[   26.343627] systemd-udevd[142]: handling device node '/dev/ttyzb', devnum=c3:171, mode=0600, uid=0, gid=0
[   26.343841] systemd-udevd[142]: preserve permissions /dev/ttyzb, 020600, uid=0, gid=0
[   26.344085] systemd-udevd[142]: creating symlink '/dev/char/3:171' to '../ttyzb'
[   26.344329] systemd-udevd[142]: created empty file '/run/udev/data/c3:171' for '/devices/virtual/tty/ttyzb'
[   26.344787] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.345001] systemd-udevd[142]: seq 3492 processed with 0
[   26.345184] systemd-udevd[139]: passed 169 bytes to netlink monitor 0x40ee80a0
[   26.345642] systemd-udevd[139]: seq 3499 queued, 'add' 'vc'
[   26.346038] systemd-udevd[142]: seq 3499 running
[   26.346435] systemd-udevd[142]: no db file to read /run/udev/data/c7:128: No such file or directory
[   26.346740] systemd-udevd[142]: handling device node '/dev/vcsa', devnum=c7:128, mode=0600, uid=0, gid=0
[   26.346893] systemd-udevd[142]: preserve permissions /dev/vcsa, 020600, uid=0, gid=0
[   26.347137] systemd-udevd[142]: creating symlink '/dev/char/7:128' to '../vcsa'
[   26.347442] systemd-udevd[142]: created empty file '/run/udev/data/c7:128' for '/devices/virtual/vc/vcsa'
[   26.347808] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.347961] systemd-udevd[142]: seq 3499 processed with 0
[   26.348175] systemd-udevd[139]: passed 171 bytes to netlink monitor 0x40ee80a0
[   26.348449] systemd-udevd[139]: seq 3500 queued, 'add' 'vc'
[   26.348937] systemd-udevd[142]: seq 3500 running
[   26.349273] systemd-udevd[142]: no db file to read /run/udev/data/c7:129: No such file or directory
[   26.349578] systemd-udevd[142]: handling device node '/dev/vcsa1', devnum=c7:129, mode=0600, uid=0, gid=0
[   26.349822] systemd-udevd[142]: preserve permissions /dev/vcsa1, 020600, uid=0, gid=0
[   26.350036] systemd-udevd[142]: creating symlink '/dev/char/7:129' to '../vcsa1'
[   26.350280] systemd-udevd[142]: created empty file '/run/udev/data/c7:129' for '/devices/virtual/vc/vcsa1'
[   26.350769] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.350982] systemd-udevd[142]: seq 3500 processed with 0
[   26.351135] systemd-udevd[139]: passed 173 bytes to netlink monitor 0x40ee80a0
[   26.351470] systemd-udevd[139]: seq 3501 queued, 'add' 'vtconsole'
[   26.351745] systemd-udevd[139]: passed 151 bytes to netlink monitor 0x40ee80a0
[   26.352020] systemd-udevd[139]: seq 3502 queued, 'add' 'xt_idletimer'
[   26.352386] systemd-udevd[143]: seq 3502 running
[   26.352691] systemd-udevd[143]: no db file to read /run/udev/data/+xt_idletimer:timers: No such file or directory
[   26.353088] systemd-udevd[143]: passed -1 bytes to netlink monitor 0x40eeda50
[   26.353302] systemd-udevd[143]: seq 3502 processed with 0
[   26.353485] systemd-udevd[142]: seq 3501 running
[   26.353759] systemd-udevd[142]: no db file to read /run/udev/data/+vtconsole:vtcon0: No such file or directory
[   26.354156] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.354370] systemd-udevd[142]: seq 3501 processed with 0
[   26.354522] systemd-udevd[139]: passed 157 bytes to netlink monitor 0x40ee80a0
[   26.354888] systemd-udevd[139]: seq 3503 queued, 'change' 'power_supply'
[   26.355377] systemd-udevd[139]: passed 410 bytes to netlink monitor 0x40ee80a0
[   26.355682] systemd-udevd[139]: seq 3504 queued, 'change' 'power_supply'
[   26.355987] systemd-udevd[139]: seq 3505 queued, 'change' 'power_supply'
[   26.356262] systemd-udevd[139]: seq 3506 queued, 'change' 'power_supply'
[   26.356506] systemd-udevd[139]: seq 3507 queued, 'change' 'power_supply'
[   26.356842] systemd-udevd[142]: seq 3503 running
[   26.357238] systemd-udevd[142]: no db file to read /run/udev/data/+power_supply:battery: No such file or directory
[   26.357757] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.357971] systemd-udevd[142]: seq 3503 processed with 0
[   26.358428] systemd-udevd[139]: passed 410 bytes to netlink monitor 0x40ee80a0
[   26.358764] systemd-udevd[142]: seq 3504 running
[   26.359161] systemd-udevd[142]: no db file to read /run/udev/data/+power_supply:battery: No such file or directory
[   26.359649] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.359863] systemd-udevd[142]: seq 3504 processed with 0
[   26.360321] systemd-udevd[139]: passed 410 bytes to netlink monitor 0x40ee80a0
[   26.360717] systemd-udevd[142]: seq 3505 running
[   26.361145] systemd-udevd[142]: no db file to read /run/udev/data/+power_supply:battery: No such file or directory
[   26.361633] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.361846] systemd-udevd[142]: seq 3505 processed with 0
[   26.362304] systemd-udevd[139]: passed 410 bytes to netlink monitor 0x40ee80a0
[   26.362640] systemd-udevd[142]: seq 3506 running
[   26.363037] systemd-udevd[142]: no db file to read /run/udev/data/+power_supply:battery: No such file or directory
[   26.363555] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.363769] systemd-udevd[142]: seq 3506 processed with 0
[   26.364196] systemd-udevd[139]: passed 410 bytes to netlink monitor 0x40ee80a0
[   26.364562] systemd-udevd[142]: seq 3507 running
[   26.364959] systemd-udevd[142]: no db file to read /run/udev/data/+power_supply:battery: No such file or directory
[   26.365447] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   26.365661] systemd-udevd[142]: seq 3507 processed with 0
[   26.728302] initrd: checking filesystem integrity for the userdata partition
[   26.781341] EXT3-fs (mmcblk0p25): error: couldn't mount because of unsupported optional features (40)
[   26.811614] EXT2-fs (mmcblk0p25): error: couldn't mount because of unsupported optional features (44)
[   27.150695] sec_bat_check_detbat : vf adc : 744
[   27.719482] EXT4-fs (mmcblk0p25): recovery complete
[   27.719543] systemd-udevd[139]: Validate module index
[   27.719604] systemd-udevd[139]: Check if link configuration needs reloading.
[   27.719757] systemd-udevd[139]: seq 3508 queued, 'add' 'slab'
[   27.719970] systemd-udevd[139]: passed 137 bytes to netlink monitor 0x40ee80a0
[   27.720123] systemd-udevd[142]: seq 3508 running
[   27.720336] systemd-udevd[142]: no db file to read /run/udev/data/+slab::at-0000120: No such file or directory
[   27.720825] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   27.721038] systemd-udevd[142]: seq 3508 processed with 0
[   27.723632] EXT4-fs (mmcblk0p25): mounted filesystem with ordered data mode. Opts: errors=remount-ro
[   27.808746] systemd-udevd[139]: device 0x40eed918 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p25'
[   27.809234] systemd-udevd[139]: inotify event: 8 for /dev/mmcblk0p25
[   27.809600] systemd-udevd[139]: device /dev/mmcblk0p25 closed, synthesising 'change'
[   27.810211] systemd-udevd[139]: seq 3509 queued, 'change' 'block'
[   27.810607] systemd-udevd[142]: seq 3509 running
[   27.810943] systemd-udevd[142]: device 0x40eede18 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0'
[   27.811981] systemd-udevd[142]: device 0x40eed940 filled with db file data
[   27.812194] systemd-udevd[142]: removing watch on '/dev/mmcblk0p25'
[   27.812744] initrd: checking filesystem for userdata took (including e2fsck) 1 seconds
[   27.812835] systemd-udevd[142]: device 0x40eede18 filled with db file data
[   27.812927] systemd-udevd[142]: LINK 'disk/by-path/platform-msm_sdcc.1-part25' /lib/udev/rules.d/60-persistent-storage.rules:58
[   27.813018] systemd-udevd[142]: IMPORT builtin 'blkid' /lib/udev/rules.d/60-persistent-storage.rules:71
[   27.813629] initrd: mounting /dev/mmcblk0p25
[   27.813659] systemd-udevd[142]: probe /dev/mmcblk0p25 raid offset=0
[   27.813842] systemd-udevd[139]: passed 264 bytes to netlink monitor 0x40ee80a0
[   27.838134] EXT3-fs (mmcblk0p25): error: unrecognized mount option "discard" or missing value
[   27.859527] systemd-udevd[142]: LINK 'disk/by-uuid/57f8f4bc-abf4-655f-bf67-946fc0f9f25b' /lib/udev/rules.d/60-persistent-storage.rules:77
[   27.859802] systemd-udevd[142]: handling device node '/dev/mmcblk0p25', devnum=b179:25, mode=0600, uid=0, gid=0
[   27.860076] systemd-udevd[142]: preserve already existing symlink '/dev/block/179:25' to '../mmcblk0p25'
[   27.860321] systemd-udevd[142]: found 'b179:25' claiming '/run/udev/links/\x2fdisk\x2fby-path\x2fplatform-msm_sdcc.1-part25'
[   27.860565] systemd-udevd[142]: creating link '/dev/disk/by-path/platform-msm_sdcc.1-part25' to '/dev/mmcblk0p25'
[   27.860839] systemd-udevd[142]: preserve already existing symlink '/dev/disk/by-path/platform-msm_sdcc.1-part25' to '../../mmcblk0p25'
[   27.861145] systemd-udevd[142]: found 'b179:24' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   27.861572] systemd-udevd[142]: device 0x40eeb2f0 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p24'
[   27.862274] systemd-udevd[142]: device 0x40eeb2f0 filled with db file data
[   27.862487] systemd-udevd[142]: found 'b179:26' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   27.862854] systemd-udevd[142]: device 0x40eeb498 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p26'
[   27.863464] systemd-udevd[142]: device 0x40eeb498 filled with db file data
[   27.863708] systemd-udevd[142]: found 'b179:25' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   27.863922] systemd-udevd[142]: found 'b179:21' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   27.864257] systemd-udevd[142]: device 0x40eeb498 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p21'
[   27.864898] systemd-udevd[142]: device 0x40eeb498 filled with db file data
[   27.865081] systemd-udevd[142]: creating link '/dev/disk/by-uuid/57f8f4bc-abf4-655f-bf67-946fc0f9f25b' to '/dev/mmcblk0p25'
[   27.865295] systemd-udevd[142]: atomically replace '/dev/disk/by-uuid/57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   27.865875] systemd-udevd[142]: created db file '/run/udev/data/b179:25' for '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p25'
[   27.866180] systemd-udevd[142]: adding watch on '/dev/mmcblk0p25'
[   27.866546] systemd-udevd[142]: created db file '/run/udev/data/b179:25' for '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p25'
[   27.866973] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   27.867309] systemd-udevd[142]: seq 3509 processed with 0
[   27.922698] EXT4-fs (mmcblk0p25): Ignoring delalloc option - requested data journaling mode
[   27.923034] EXT4-fs (mmcblk0p25): mounted filesystem with journalled data mode. Opts: discard,data=journal
[   27.928527] initrd: boot mode: ubuntu
[   27.935028] systemd-udevd[139]: seq 3510 queued, 'change' 'block'
[   27.935272] systemd-udevd[139]: passed 202 bytes to netlink monitor 0x40ee80a0
[   27.935760] systemd-udevd[142]: seq 3510 running
[   27.935791] systemd-udevd[139]: device 0x40eefc18 has devpath '/devices/virtual/block/loop0'
[   27.936065] systemd-udevd[139]: inotify event: 8 for /dev/loop0
[   27.936248] systemd-udevd[142]: Unable to flock(/dev/loop0), skipping event handling: Resource temporarily unavailable
[   27.936340] systemd-udevd[139]: device 0x40eef390 has devpath '/devices/virtual/block/loop0'
[   27.936737] systemd-udevd[142]: seq 3510 processed with -11
[   27.937377] systemd-udevd[139]: device 0x40eef390 has devpath '/devices/virtual/block/loop0'
[   27.937774] systemd-udevd[139]: device /dev/loop0 closed, synthesising 'change'
[   27.937896] EXT3-fs (loop0): error: couldn't mount because of unsupported optional features (40)
[   27.938385] systemd-udevd[139]: device 0x40eef390 has devpath '/devices/virtual/block/loop0'
[   27.938873] systemd-udevd[139]: seq 3511 queued, 'change' 'block'
[   27.939086] systemd-udevd[139]: passed 202 bytes to netlink monitor 0x40ee80a0
[   27.939208] systemd-udevd[142]: seq 3511 running
[   27.939575] systemd-udevd[142]: device 0x40eede18 filled with db file data
[   27.939788] systemd-udevd[142]: removing watch on '/dev/loop0'
[   27.940185] systemd-udevd[142]: IMPORT builtin 'blkid' /lib/udev/rules.d/60-persistent-storage.rules:71
[   27.940734] systemd-udevd[142]: probe /dev/loop0 raid offset=0
[   27.979705] systemd-udevd[142]: LINK 'disk/by-uuid/5d2d129e-0e25-0a59-9c1c-cf5e5733f024' /lib/udev/rules.d/60-persistent-storage.rules:77
[   27.979980] systemd-udevd[142]: LINK 'disk/by-label/Ubuntu' /lib/udev/rules.d/60-persistent-storage.rules:78
[   27.980224] systemd-udevd[142]: handling device node '/dev/loop0', devnum=b7:0, mode=0600, uid=0, gid=0
[   27.980499] systemd-udevd[142]: preserve already existing symlink '/dev/block/7:0' to '../loop0'
[   27.980834] systemd-udevd[142]: creating link '/dev/disk/by-label/Ubuntu' to '/dev/loop0'
[   27.981079] systemd-udevd[142]: creating symlink '/dev/disk/by-label/Ubuntu' to '../../loop0'
[   27.981384] systemd-udevd[142]: creating link '/dev/disk/by-uuid/5d2d129e-0e25-0a59-9c1c-cf5e5733f024' to '/dev/loop0'
[   27.981597] systemd-udevd[142]: creating symlink '/dev/disk/by-uuid/5d2d129e-0e25-0a59-9c1c-cf5e5733f024' to '../../loop0'
[   27.982208] systemd-udevd[142]: created db file '/run/udev/data/b7:0' for '/devices/virtual/block/loop0'
[   27.982421] systemd-udevd[142]: adding watch on '/dev/loop0'
[   27.982849] systemd-udevd[142]: created db file '/run/udev/data/b7:0' for '/devices/virtual/block/loop0'
[   27.984039] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   27.984405] EXT2-fs (loop0): error: couldn't mount because of unsupported optional features (40)
[   27.984741] systemd-udevd[142]: seq 3511 processed with 0
[   28.033538] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[   28.034851] initrd: mounting system.img (image developer mode)
[   28.103668] systemd-udevd[139]: seq 3512 queued, 'change' 'block'
[   28.103851] systemd-udevd[139]: passed 202 bytes to netlink monitor 0x40ee80a0
[   28.103973] systemd-udevd[142]: seq 3512 running
[   28.104766] systemd-udevd[142]: device 0x40ee8018 filled with db file data
[   28.104949] systemd-udevd[142]: removing watch on '/dev/loop1'
[   28.105346] systemd-udevd[142]: IMPORT builtin 'blkid' /lib/udev/rules.d/60-persistent-storage.rules:71
[   28.105834] systemd-udevd[142]: probe /dev/loop1 raid offset=0
[   28.169616] systemd-udevd[142]: LINK 'disk/by-uuid/57f8f4bc-abf4-655f-bf67-946fc0f9f25b' /lib/udev/rules.d/60-persistent-storage.rules:77
[   28.169891] systemd-udevd[142]: handling device node '/dev/loop1', devnum=b7:1, mode=0600, uid=0, gid=0
[   28.170166] systemd-udevd[142]: preserve already existing symlink '/dev/block/7:1' to '../loop1'
[   28.170379] systemd-udevd[142]: found 'b179:24' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   28.170837] EXT3-fs (loop1): error: couldn't mount because of unsupported optional features (40)
[   28.171264] systemd-udevd[142]: device 0x40eede18 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p24'
[   28.171966] systemd-udevd[142]: device 0x40eede18 filled with db file data
[   28.172180] systemd-udevd[142]: found 'b179:26' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   28.172546] systemd-udevd[142]: device 0x40eede18 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p26'
[   28.173156] systemd-udevd[142]: device 0x40eede18 filled with db file data
[   28.173370] systemd-udevd[142]: found 'b179:25' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   28.173706] systemd-udevd[142]: device 0x40eede18 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p25'
[   28.174316] systemd-udevd[142]: device 0x40eede18 filled with db file data
[   28.174530] systemd-udevd[142]: found 'b179:21' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   28.174896] systemd-udevd[142]: device 0x40eede18 has devpath '/devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p21'
[   28.175506] systemd-udevd[142]: device 0x40eede18 filled with db file data
[   28.175811] systemd-udevd[142]: creating link '/dev/disk/by-uuid/57f8f4bc-abf4-655f-bf67-946fc0f9f25b' to '/dev/loop1'
[   28.175994] systemd-udevd[142]: atomically replace '/dev/disk/by-uuid/57f8f4bc-abf4-655f-bf67-946fc0f9f25b'
[   28.176513] systemd-udevd[142]: created db file '/run/udev/data/b7:1' for '/devices/virtual/block/loop1'
[   28.176757] systemd-udevd[142]: adding watch on '/dev/loop1'
[   28.177154] systemd-udevd[142]: created db file '/run/udev/data/b7:1' for '/devices/virtual/block/loop1'
[   28.177520] systemd-udevd[142]: passed -1 bytes to netlink monitor 0x40eed658
[   28.177673] systemd-udevd[142]: seq 3512 processed with 0
[   28.211181] EXT2-fs (loop1): error: couldn't mount because of unsupported optional features (40)
[   28.313293] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null)
[   28.323181] initrd: device is i9210t
[   28.847442] initrd: checking fstab /root/var/lib/lxc/android/rootfs/fstab* for additional mount points
[   28.896759] initrd: checking mount label mmcblk0p13
[   28.942535] initrd: checking mount label mmcblk0p26
[   28.958892] initrd: mounting /root/var/lib/lxc/android/system.img as /root/android/system
[   29.040283] systemd-udevd[139]: udevd message (EXIT) received
[   29.040710] systemd-udevd[144]: Unload module index
[   29.040893] systemd-udevd[143]: Unload module index
[   29.041046] systemd-udevd[144]: Unloaded link configuration context.
[   29.041168] systemd-udevd[143]: Unloaded link configuration context.
[   29.042510] systemd-udevd[142]: Unload module index
[   29.042541] systemd-udevd[146]: Unload module index
[   29.042724] systemd-udevd[146]: Unloaded link configuration context.
[   29.043121] systemd-udevd[142]: Unloaded link configuration context.
[   29.044006] systemd-udevd[147]: Unload module index
[   29.044342] systemd-udevd[147]: Unloaded link configuration context.
[   29.044372] systemd-udevd[145]: Unload module index
[   29.044555] systemd-udevd[145]: Unloaded link configuration context.
[   29.045715] systemd-udevd[161]: Unload module index
[   29.045867] systemd-udevd[163]: Unload module index
[   29.046051] systemd-udevd[163]: Unloaded link configuration context.
[   29.046112] systemd-udevd[161]: Unloaded link configuration context.
[   29.047485] systemd-udevd[165]: Unload module index
[   29.047515] systemd-udevd[139]: worker [142] exit
[   29.047576] systemd-udevd[139]: worker [142] cleaned up
[   29.047637] systemd-udevd[139]: worker [143] exit
[   29.047668] systemd-udevd[139]: worker [143] cleaned up
[   29.047760] systemd-udevd[139]: worker [144] exit
[   29.047790] systemd-udevd[139]: worker [144] cleaned up
[   29.047851] systemd-udevd[139]: worker [145] exit
[   29.047882] systemd-udevd[139]: worker [145] cleaned up
[   29.047973] systemd-udevd[139]: worker [146] exit
[   29.048004] systemd-udevd[139]: worker [146] cleaned up
[   29.048065] systemd-udevd[139]: worker [147] exit
[   29.048095] systemd-udevd[139]: worker [147] cleaned up
[   29.048187] systemd-udevd[139]: worker [161] exit
[   29.048217] systemd-udevd[139]: worker [161] cleaned up
[   29.048278] systemd-udevd[139]: worker [163] exit
[   29.048309] systemd-udevd[139]: worker [163] cleaned up
[   29.048461] systemd-udevd[166]: Unload module index
[   29.048675] systemd-udevd[166]: Unloaded link configuration context.
[   29.049743] systemd-udevd[165]: Unloaded link configuration context.
[   29.049865] systemd-udevd[139]: worker [166] exit
[   29.049926] systemd-udevd[139]: worker [166] cleaned up
[   29.050140] systemd-udevd[162]: Unload module index
[   29.050506] systemd-udevd[162]: Unloaded link configuration context.
[   29.051788] systemd-udevd[139]: worker [162] exit
[   29.051971] systemd-udevd[139]: worker [162] cleaned up
[   29.052124] systemd-udevd[139]: worker [165] exit
[   29.052246] systemd-udevd[139]: worker [165] cleaned up
[   29.140747] systemd-udevd[164]: Unload module index
[   29.141052] systemd-udevd[164]: Unloaded link configuration context.
[   29.142456] systemd-udevd[139]: worker [164] exit
[   29.142578] systemd-udevd[139]: worker [164] cleaned up
[   29.142944] systemd-udevd[139]: Unload module index
[   29.143188] systemd-udevd[139]: Unloaded link configuration context.
[   29.660491] init: ureadahead main process (343) terminated with status 5
[   29.979400] init: mounted-proc main process (361) terminated with status 1
[   31.699310] android_usb: already disabled
[   31.700286] usb: enable_store f:adb
[   31.828308] adb_open
[   31.828338] adb_bind_config
[   31.942657] msm_otg_irq: IRQ state: b_peripheral      otgsc = 9202f20
[   31.977050] usb: android_work config=  (null),connected=1,sw_connected=0
[   31.977142] android_work: sent uevent USB_STATE=CONNECTED
[   31.982971] msm_otg_irq: IRQ state: b_peripheral      otgsc = 9200f20
[   32.060668] usb: set_config_number single config
[   32.060699] usb: set_interface_count next_interface_id=1
[   32.161376] sec_bat_check_detbat : vf adc : 745
[   32.181549] init: plymouth-upstart-bridge main process (600) terminated with status 1
[   33.964202] usb: set_config_number single config
[   33.964233] usb: set_interface_count next_interface_id=1
[   33.966217] usb: set_config_number single config
[   33.966247] usb: set_interface_count next_interface_id=1
[   34.242370] msm_otg_irq: IRQ state: b_peripheral      otgsc = 9202f20
[   34.283050] msm_otg_irq: IRQ state: b_peripheral      otgsc = 9200f20
[   34.510986] msm_otg_irq: IRQ state: b_peripheral      otgsc = 9200f20
[   34.794128] usb: set_config_number single config
[   34.794158] usb: set_interface_count next_interface_id=1
[   34.796112] usb: set_config_number single config
[   34.796142] usb: set_interface_count next_interface_id=1
[   34.806121] android_usb gadget: high speed config #1: android
[   34.806274] usb: android_work config=c0ccb174,connected=1,sw_connected=1
[   34.806335] android_work: sent uevent USB_STATE=CONFIGURED
[   37.191284] sec_bat_check_detbat : vf adc : 743
[   42.211303] sec_bat_check_detbat : vf adc : 746
[   47.221313] sec_bat_check_detbat : vf adc : 746
[   48.809143] adbd (705): /proc/705/oom_adj is deprecated, please use /proc/705/oom_score_adj instead.
[   52.241302] sec_bat_check_detbat : vf adc : 746
[   57.261322] sec_bat_check_detbat : vf adc : 746
[   62.271301] sec_bat_check_detbat : vf adc : 746
[   67.291320] sec_bat_check_detbat : vf adc : 746
[   72.311309] sec_bat_check_detbat : vf adc : 746
[   77.321319] sec_bat_check_detbat : vf adc : 746
[   82.341308] sec_bat_check_detbat : vf adc : 746
[   87.351318] sec_bat_check_detbat : vf adc : 746
[   92.371307] sec_bat_check_detbat : vf adc : 746
[   97.391326] sec_bat_check_detbat : vf adc : 746
[  102.401306] sec_bat_check_detbat : vf adc : 746
[  108.391448] sec_bat_check_detbat : vf adc : 746
[  113.401275] sec_bat_check_detbat : vf adc : 746
[  118.481323] sec_bat_check_detbat : vf adc : 746
[  123.491241] sec_bat_check_detbat : vf adc : 746
[  128.501251] sec_bat_check_detbat : vf adc : 746
[  133.511291] sec_bat_check_detbat : vf adc : 746
[  138.521301] sec_bat_check_detbat : vf adc : 746
[  143.541320] sec_bat_check_detbat : vf adc : 746
[  148.551300] sec_bat_check_detbat : vf adc : 746
[  154.011322] sec_bat_check_detbat : vf adc : 746
[  159.041473] sec_bat_check_detbat : vf adc : 746
[  164.081298] sec_bat_check_detbat : vf adc : 746
[  166.613311] [fg] p:8943, s1:95, s2:94, v:4173750, t:881
[  169.461303] sec_bat_check_detbat : vf adc : 746
[  174.481323] sec_bat_check_detbat : vf adc : 746
[  179.511322] sec_bat_check_detbat : vf adc : 746
[  184.671325] sec_bat_check_detbat : vf adc : 746
[  189.681274] sec_bat_check_detbat : vf adc : 746
[  194.701324] sec_bat_check_detbat : vf adc : 746
[  199.721313] sec_bat_check_detbat : vf adc : 746
[  204.731353] sec_bat_check_detbat : vf adc : 746
[  209.761322] sec_bat_check_detbat : vf adc : 746
[  214.771270] sec_bat_check_detbat : vf adc : 746
[  219.781311] sec_bat_check_detbat : vf adc : 746
[  224.801300] sec_bat_check_detbat : vf adc : 746
[  229.811309] sec_bat_check_detbat : vf adc : 746
[  234.831298] sec_bat_check_detbat : vf adc : 746
[  239.851318] sec_bat_check_detbat : vf adc : 746
[  244.861297] sec_bat_check_detbat : vf adc : 746
[  249.881317] sec_bat_check_detbat : vf adc : 746
[  254.891326] sec_bat_check_detbat : vf adc : 746
[  259.911315] sec_bat_check_detbat : vf adc : 746
[  264.931304] sec_bat_check_detbat : vf adc : 746
[  269.941314] sec_bat_check_detbat : vf adc : 746
[  274.971313] sec_bat_check_detbat : vf adc : 746
[  279.981292] sec_bat_check_detbat : vf adc : 746
[  284.991302] sec_bat_check_detbat : vf adc : 746
[  290.011322] sec_bat_check_detbat : vf adc : 746
[  295.021301] sec_bat_check_detbat : vf adc : 746
[  300.041320] sec_bat_check_detbat : vf adc : 746
[  305.051300] sec_bat_check_detbat : vf adc : 746
[  310.071319] sec_bat_check_detbat : vf adc : 746
[  315.091308] sec_bat_check_detbat : vf adc : 746
[  320.101318] sec_bat_check_detbat : vf adc : 746
[  325.121307] sec_bat_check_detbat : vf adc : 746
[  330.131317] sec_bat_check_detbat : vf adc : 746
[  335.151306] sec_bat_check_detbat : vf adc : 746
[  340.171325] sec_bat_check_detbat : vf adc : 746
[  345.181304] sec_bat_check_detbat : vf adc : 746
[  350.201324] sec_bat_check_detbat : vf adc : 746
[  355.211303] sec_bat_check_detbat : vf adc : 746
[  360.231323] sec_bat_check_detbat : vf adc : 746
[  365.251312] sec_bat_check_detbat : vf adc : 746
[  370.261322] sec_bat_check_detbat : vf adc : 746
[  375.281311] sec_bat_check_detbat : vf adc : 746
[  380.291320] sec_bat_check_detbat : vf adc : 746
[  385.321289] sec_bat_check_detbat : vf adc : 746
[  390.331268] sec_bat_check_detbat : vf adc : 746
[  395.341308] sec_bat_check_detbat : vf adc : 746
[  400.361297] sec_bat_check_detbat : vf adc : 746
[  405.371307] sec_bat_check_detbat : vf adc : 746
[  410.391326] sec_bat_check_detbat : vf adc : 746
[  415.401306] sec_bat_check_detbat : vf adc : 746
[  420.421325] sec_bat_check_detbat : vf adc : 746
[  425.441314] sec_bat_check_detbat : vf adc : 746
[  430.451324] sec_bat_check_detbat : vf adc : 746
[  435.471313] sec_bat_check_detbat : vf adc : 746
[  440.481353] sec_bat_check_detbat : vf adc : 746
[  445.521270] sec_bat_check_detbat : vf adc : 746
[  447.503356] [fg] p:9038, s1:96, s2:95, v:4186250, t:886
[  450.591278] sec_bat_check_detbat : vf adc : 746
[  455.601287] sec_bat_check_detbat : vf adc : 746
[  460.611236] sec_bat_check_detbat : vf adc : 746
[  465.621246] sec_bat_check_detbat : vf adc : 746
[  470.631256] sec_bat_check_detbat : vf adc : 746
[  475.641265] sec_bat_check_detbat : vf adc : 746
[  480.651245] sec_bat_check_detbat : vf adc : 746
[  485.661254] sec_bat_check_detbat : vf adc : 746
[  490.671295] sec_bat_check_detbat : vf adc : 746
[  495.681243] sec_bat_check_detbat : vf adc : 746
[  500.691253] sec_bat_check_detbat : vf adc : 746
[  505.701263] sec_bat_check_detbat : vf adc : 746
[  510.711273] sec_bat_check_detbat : vf adc : 746
[  515.721313] sec_bat_check_detbat : vf adc : 746
[  520.741302] sec_bat_check_detbat : vf adc : 746
[  525.751312] sec_bat_check_detbat : vf adc : 746
[  530.771301] sec_bat_check_detbat : vf adc : 746
[  535.851440] sec_bat_check_detbat : vf adc : 746
[  540.921447] sec_bat_check_detbat : vf adc : 746
[  546.001281] sec_bat_check_detbat : vf adc : 746
[  551.011260] sec_bat_check_detbat : vf adc : 746
[  556.021240] sec_bat_check_detbat : vf adc : 746
[  561.031280] sec_bat_check_detbat : vf adc : 746
[  566.041259] sec_bat_check_detbat : vf adc : 746
[  571.051239] sec_bat_check_detbat : vf adc : 746
[  576.061248] sec_bat_check_detbat : vf adc : 746
[  581.071258] sec_bat_check_detbat : vf adc : 746
[  586.081237] sec_bat_check_detbat : vf adc : 746
[  591.091247] sec_bat_check_detbat : vf adc : 746
[  596.101257] sec_bat_check_detbat : vf adc : 746
[  601.111236] sec_bat_check_detbat : vf adc : 746
[  606.121246] sec_bat_check_detbat : vf adc : 746
[  611.131256] sec_bat_check_detbat : vf adc : 746
[  616.141265] sec_bat_check_detbat : vf adc : 746
[  621.151306] sec_bat_check_detbat : vf adc : 746
[  626.161285] sec_bat_check_detbat : vf adc : 746
[  631.171264] sec_bat_check_detbat : vf adc : 746
[  636.181274] sec_bat_check_detbat : vf adc : 746
[  641.191284] sec_bat_check_detbat : vf adc : 746
[  646.201263] sec_bat_check_detbat : vf adc : 746
[  651.211273] sec_bat_check_detbat : vf adc : 746
[  656.221282] sec_bat_check_detbat : vf adc : 746
[  661.231262] sec_bat_check_detbat : vf adc : 746
[  666.241241] sec_bat_check_detbat : vf adc : 746
[  671.251251] sec_bat_check_detbat : vf adc : 746
[  676.261260] sec_bat_check_detbat : vf adc : 746
[  681.271240] sec_bat_check_detbat : vf adc : 746
[  686.281250] sec_bat_check_detbat : vf adc : 746
[  688.263336] [fg] p:9133, s1:97, s2:96, v:4195000, t:886
root@ubuntu-phablet:/#
Download as text