ubuntuusers.de

apt_trace von 28.08.2017

Autor:
Roete1958
Datum:
28. August 2017 16:22
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
execve("/usr/bin/apt-get", ["apt-get", "update"], [/* 17 vars */]) = 0
brk(NULL)                               = 0x56183d9d8000
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f659232c000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=158784, ...}) = 0
mmap(NULL, 158784, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f6592305000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\10\4\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=1526760, ...}) = 0
mmap(NULL, 3624344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6591d94000
mprotect(0x7f6591f02000, 2097152, PROT_NONE) = 0
mmap(0x7f6592102000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16e000) = 0x7f6592102000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/libapt-private.so.0.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\322\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=337984, ...}) = 0
mmap(NULL, 2434464, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6591b41000
mprotect(0x7f6591b91000, 2097152, PROT_NONE) = 0
mmap(0x7f6591d91000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x50000) = 0x7f6591d91000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \235\10\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=1566440, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6592304000
mmap(NULL, 3675136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f65917bf000
mprotect(0x7f6591931000, 2097152, PROT_NONE) = 0
mmap(0x7f6591b31000, 49152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x172000) = 0x7f6591b31000
mmap(0x7f6591b3d000, 13312, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6591b3d000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p*\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=89696, ...}) = 0
mmap(NULL, 2185488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f65915a9000
mprotect(0x7f65915bf000, 2093056, PROT_NONE) = 0
mmap(0x7f65917be000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f65917be000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1868984, ...}) = 0
mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f65911df000
mprotect(0x7f659139f000, 2097152, PROT_NONE) = 0
mmap(0x7f659159f000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7f659159f000
mmap(0x7f65915a5000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f65915a5000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\r\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=14608, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6592303000
mmap(NULL, 2109680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6590fdb000
mprotect(0x7f6590fde000, 2093056, PROT_NONE) = 0
mmap(0x7f65911dd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f65911dd000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P9\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=101200, ...}) = 0
mmap(NULL, 2206280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6590dc0000
mprotect(0x7f6590dd7000, 2097152, PROT_NONE) = 0
mmap(0x7f6590fd7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f6590fd7000
mmap(0x7f6590fd9000, 6728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6590fd9000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\35\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=104864, ...}) = 0
mmap(NULL, 2199848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6590ba6000
mprotect(0x7f6590bbf000, 2093056, PROT_NONE) = 0
mmap(0x7f6590dbe000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18000) = 0x7f6590dbe000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\23\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=66800, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6592302000
mmap(NULL, 2161928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6590996000
mprotect(0x7f65909a5000, 2093056, PROT_NONE) = 0
mmap(0x7f6590ba4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f6590ba4000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/liblzma.so.5", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320 \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=137400, ...}) = 0
mmap(NULL, 2232456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6590774000
mprotect(0x7f6590795000, 2093056, PROT_NONE) = 0
mmap(0x7f6590994000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7f6590994000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/liblz4.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\36\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=96360, ...}) = 0
mmap(NULL, 2191456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f659055c000
mprotect(0x7f6590573000, 2093056, PROT_NONE) = 0
mmap(0x7f6590772000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7f6590772000
close(3)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0V\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=1088952, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6592301000
mmap(NULL, 3178744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6590253000
mprotect(0x7f659035b000, 2093056, PROT_NONE) = 0
mmap(0x7f659055a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x107000) = 0x7f659055a000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6592300000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f65922ff000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f65922fd000
arch_prctl(ARCH_SET_FS, 0x7f65922fd740) = 0
mprotect(0x7f659159f000, 16384, PROT_READ) = 0
mprotect(0x7f659055a000, 4096, PROT_READ) = 0
mprotect(0x7f6590772000, 4096, PROT_READ) = 0
mprotect(0x7f65911dd000, 4096, PROT_READ) = 0
mprotect(0x7f6590994000, 4096, PROT_READ) = 0
mprotect(0x7f6590ba4000, 4096, PROT_READ) = 0
mprotect(0x7f6590dbe000, 4096, PROT_READ) = 0
mprotect(0x7f6590fd7000, 4096, PROT_READ) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f65922fc000
mprotect(0x7f6591b31000, 40960, PROT_READ) = 0
mprotect(0x7f6592102000, 24576, PROT_READ) = 0
mprotect(0x7f6591d91000, 8192, PROT_READ) = 0
mprotect(0x56183c6e2000, 4096, PROT_READ) = 0
mprotect(0x7f659232e000, 4096, PROT_READ) = 0
munmap(0x7f6592305000, 158784)          = 0
brk(NULL)                               = 0x56183d9d8000
brk(0x56183da0a000)                     = 0x56183da0a000
open("/dev/null", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 3
open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=4545952, ...}) = 0
mmap(NULL, 4545952, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f658fdfd000
close(4)                                = 0
stat("/etc/apt/apt.conf.d/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/etc/apt/apt.conf.d/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=26258, ...}) = 0
mmap(NULL, 26258, PROT_READ, MAP_SHARED, 4, 0) = 0x7f6592325000
close(4)                                = 0
open("/etc/apt/apt.conf.d/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents(4, /* 14 entries */, 32768)    = 488
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/00aptitude", O_RDONLY) = 4
read(4, "Aptitude::Get-Root-Command \"sudo"..., 8191) = 49
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/00trustcdrom", O_RDONLY) = 4
read(4, "APT::Authentication::TrustCDROM "..., 8191) = 40
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/01-vendor-ubuntu", O_RDONLY) = 4
read(4, "Acquire::Changelogs::AlwaysOnlin"..., 8191) = 42
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/01autoremove", O_RDONLY) = 4
read(4, "APT\n{\n  NeverAutoRemove\n  {\n\t\"^f"..., 8191) = 769
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/01autoremove-kernels", O_RDONLY) = 4
read(4, "// DO NOT EDIT! File autogenerat"..., 8191) = 3627
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/01autoremove-postgresql", O_RDONLY) = 4
read(4, "// File installed by postgresql-"..., 8191) = 628
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/20auto-upgrades", O_RDONLY) = 4
read(4, "APT::Periodic::Update-Package-Li"..., 8191) = 130
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/20dbus", O_RDONLY) = 4
read(4, "// Notify all clients to reload "..., 8191) = 243
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/50appstream", O_RDONLY) = 4
read(4, "## This file is provided by apps"..., 8191) = 1432
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/50unattended-upgrades", O_RDONLY) = 4
read(4, "// Automatically upgrade package"..., 8191) = 2656
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/70debconf", O_RDONLY) = 4
read(4, "// Pre-configure all packages wi"..., 8191) = 182
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/apt.conf.d/99synaptic", O_RDONLY) = 4
read(4, "APT::Install-Recommends \"true\";\n", 8191) = 32
read(4, "", 8191)                       = 0
close(4)                                = 0
stat("/etc/apt/apt.conf", 0x7ffe144b28e0) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2995, ...}) = 0
read(4, "# Locale name alias data base.\n#"..., 4096) = 2995
read(4, "", 4096)                       = 0
close(4)                                = 0
open("/usr/share/locale/de/LC_MESSAGES/apt.mo", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=38581, ...}) = 0
mmap(NULL, 38581, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f659231b000
close(4)                                = 0
stat("/var/lib/dpkg/status", {st_mode=S_IFREG|0644, st_size=2719350, ...}) = 0
stat("/usr/bin/dpkg", {st_mode=S_IFREG|0755, st_size=278264, ...}) = 0
stat("/etc/debian_version", {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f65912144b0}, {SIG_DFL, [], 0}, 8) = 0
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
rt_sigaction(SIGWINCH, {0x7f6591b6baf0, [WINCH], SA_RESTORER|SA_RESTART, 0x7f65912144b0}, {SIG_DFL, [], 0}, 8) = 0
ioctl(1, TIOCGWINSZ, {ws_row=77, ws_col=236, ws_xpixel=0, ws_ypixel=0}) = 0
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
stat("/etc/apt/sources.list", {st_mode=S_IFREG|0664, st_size=2670, ...}) = 0
open("/etc/apt/sources.list", O_RDONLY) = 4
read(4, "# deb cdrom:[Kubuntu 16.04.1 LTS"..., 8191) = 2670
open("/var/lib/apt/lists/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 5
fstat(5, {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
getdents(5, /* 104 entries */, 32768)   = 10072
getdents(5, /* 0 entries */, 32768)     = 0
close(5)                                = 0
pipe([5, 6])                            = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62145
close(6)                                = 0
fcntl(5, F_GETFL)                       = 0 (flags O_RDONLY)
fstat(5, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
read(5, "i386\n", 4096)                 = 5
read(5, "", 4096)                       = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62145, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
close(5)                                = 0
wait4(62145, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 62145
read(4, "", 8191)                       = 0
close(4)                                = 0
stat("/etc/apt/sources.list.d/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/etc/apt/sources.list.d/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/apt/sources.list.d/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents(4, /* 14 entries */, 32768)    = 632
brk(0x56183da2b000)                     = 0x56183da2b000
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
open("/etc/apt/sources.list.d/debian-jessie-backports.list", O_RDONLY) = 4
read(4, "deb http://ftp.debian.org/debian"..., 8191) = 55
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/sources.list.d/docker.list", O_RDONLY) = 4
read(4, "deb https://apt.dockerproject.or"..., 8191) = 58
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/sources.list.d/kvibes-ubuntu-mediaelch-xenial.list", O_RDONLY) = 4
read(4, "deb http://ppa.launchpad.net/kvi"..., 8191) = 136
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/sources.list.d/nijel-ubuntu-phpmyadmin-xenial.list", O_RDONLY) = 4
read(4, "deb http://ppa.launchpad.net/nij"..., 8191) = 136
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/sources.list.d/plexmediaserver.list", O_RDONLY) = 4
read(4, "# When enabling this repo please"..., 8191) = 227
read(4, "", 8191)                       = 0
close(4)                                = 0
open("/etc/apt/sources.list.d/virtualbox.list", O_RDONLY) = 4
read(4, "deb http://download.virtualbox.o"..., 8191) = 68
read(4, "", 8191)                       = 0
close(4)                                = 0
getuid()                                = 0
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4
connect(4, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(4)                                = 0
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4
connect(4, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(4)                                = 0
open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=533, ...}) = 0
read(4, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 533
read(4, "", 4096)                       = 0
close(4)                                = 0
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=158784, ...}) = 0
mmap(NULL, 158784, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f65922d5000
close(4)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libnss_compat.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\22\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0644, st_size=35688, ...}) = 0
mmap(NULL, 2131040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f658fbf4000
mprotect(0x7f658fbfc000, 2093056, PROT_NONE) = 0
mmap(0x7f658fdfb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f658fdfb000
close(4)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libnsl.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360?\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0644, st_size=93128, ...}) = 0
mmap(NULL, 2198104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f658f9db000
mprotect(0x7f658f9f1000, 2093056, PROT_NONE) = 0
mmap(0x7f658fbf0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x15000) = 0x7f658fbf0000
mmap(0x7f658fbf2000, 6744, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f658fbf2000
close(4)                                = 0
mprotect(0x7f658fbf0000, 4096, PROT_READ) = 0
mprotect(0x7f658fdfb000, 4096, PROT_READ) = 0
munmap(0x7f65922d5000, 158784)          = 0
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=158784, ...}) = 0
mmap(NULL, 158784, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f65922d5000
close(4)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libnss_nis.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260 \0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0644, st_size=47648, ...}) = 0
mmap(NULL, 2143624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f658f7cf000
mprotect(0x7f658f7da000, 2093056, PROT_NONE) = 0
mmap(0x7f658f9d9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa000) = 0x7f658f9d9000
close(4)                                = 0
access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260!\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0644, st_size=47600, ...}) = 0
mmap(NULL, 2168600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f658f5bd000
mprotect(0x7f658f5c8000, 2093056, PROT_NONE) = 0
mmap(0x7f658f7c7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa000) = 0x7f658f7c7000
mmap(0x7f658f7c9000, 22296, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f658f7c9000
close(4)                                = 0
mprotect(0x7f658f7c7000, 4096, PROT_READ) = 0
mprotect(0x7f658f9d9000, 4096, PROT_READ) = 0
munmap(0x7f65922d5000, 158784)          = 0
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 4
lseek(4, 0, SEEK_CUR)                   = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3526, ...}) = 0
mmap(NULL, 3526, PROT_READ, MAP_SHARED, 4, 0) = 0x7f659231a000
lseek(4, 3526, SEEK_SET)                = 3526
munmap(0x7f659231a000, 3526)            = 0
close(4)                                = 0
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4
connect(4, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(4)                                = 0
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4
connect(4, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(4)                                = 0
open("/etc/group", O_RDONLY|O_CLOEXEC)  = 4
lseek(4, 0, SEEK_CUR)                   = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2043, ...}) = 0
mmap(NULL, 2043, PROT_READ, MAP_SHARED, 4, 0) = 0x7f659231a000
lseek(4, 2043, SEEK_SET)                = 2043
munmap(0x7f659231a000, 2043)            = 0
close(4)                                = 0
stat("/etc/apt/auth.conf", 0x7ffe144b2420) = -1 ENOENT (No such file or directory)
umask(022)                              = 022
stat("/var/lib/apt/lists/partial", {st_mode=S_IFDIR|0700, st_size=20480, ...}) = 0
umask(022)                              = 022
getuid()                                = 0
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 4
lseek(4, 0, SEEK_CUR)                   = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3526, ...}) = 0
mmap(NULL, 3526, PROT_READ, MAP_SHARED, 4, 0) = 0x7f659231a000
lseek(4, 3526, SEEK_SET)                = 3526
munmap(0x7f659231a000, 3526)            = 0
close(4)                                = 0
open("/etc/group", O_RDONLY|O_CLOEXEC)  = 4
lseek(4, 0, SEEK_CUR)                   = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2043, ...}) = 0
mmap(NULL, 2043, PROT_READ, MAP_SHARED, 4, 0) = 0x7f659231a000
lseek(4, 2043, SEEK_SET)                = 2043
munmap(0x7f659231a000, 2043)            = 0
close(4)                                = 0
chown("/var/lib/apt/lists/partial", 105, 0) = 0
chmod("/var/lib/apt/lists/partial", 0700) = 0
stat("/var/lib/apt/lists/partial", {st_mode=S_IFDIR|0700, st_size=20480, ...}) = 0
open("/var/lib/apt/lists/partial", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFDIR|0700, st_size=20480, ...}) = 0
getdents(4, /* 3 entries */, 32768)     = 128
open("/usr/share/locale/de/LC_MESSAGES/libapt-pkg5.0.mo", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=26239, ...}) = 0
mmap(NULL, 26239, PROT_READ, MAP_PRIVATE, 5, 0) = 0x7f6592314000
close(5)                                = 0
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
open("/var/lib/apt/lists/lock", O_RDWR|O_CREAT|O_NOFOLLOW, 0640) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fcntl(4, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
stat("/usr/bin/xz", {st_mode=S_IFREG|0755, st_size=68648, ...}) = 0
stat("/usr/bin/xz", {st_mode=S_IFREG|0755, st_size=68648, ...}) = 0
stat("/usr/bin/lz4", 0x7ffe144b0b40)    = -1 ENOENT (No such file or directory)
stat("/usr/bin/xz", {st_mode=S_IFREG|0755, st_size=68648, ...}) = 0
stat("/bin/bzip2", {st_mode=S_IFREG|0755, st_size=31288, ...}) = 0
stat("/usr/bin/xz", {st_mode=S_IFREG|0755, st_size=68648, ...}) = 0
stat("/usr/lib/apt/methods/http", {st_mode=S_IFREG|0755, st_size=80000, ...}) = 0
pipe([5, 6])                            = 0
pipe([7, 8])                            = 0
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fcntl(6, F_SETFD, FD_CLOEXEC)           = 0
fcntl(7, F_SETFD, FD_CLOEXEC)           = 0
fcntl(8, F_SETFD, FD_CLOEXEC)           = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62146
fcntl(5, F_GETFL)                       = 0 (flags O_RDONLY)
fcntl(5, F_SETFL, O_RDONLY|O_NONBLOCK)  = 0
fcntl(8, F_GETFL)                       = 0x1 (flags O_WRONLY)
fcntl(8, F_SETFL, O_WRONLY|O_NONBLOCK)  = 0
close(6)                                = 0
close(7)                                = 0
select(6, [5], NULL, NULL, NULL)        = 1 (in [5])
read(5, "100 Capabilities\nVersion: 1.2\nPi"..., 64000) = 64
close(5)                                = 0
close(8)                                = 0
kill(62146, SIGINT)                     = 0
wait4(62146, [{WIFEXITED(s) && WEXITSTATUS(s) == 100}], 0, NULL) = 62146
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62146, si_uid=0, si_status=100, si_utime=0, si_stime=0} ---
open("/usr/share/locale-langpack/de/LC_MESSAGES/libapt-pkg5.0.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/apt/methods/https", {st_mode=S_IFREG|0755, st_size=71808, ...}) = 0
pipe([5, 6])                            = 0
pipe([7, 8])                            = 0
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fcntl(6, F_SETFD, FD_CLOEXEC)           = 0
fcntl(7, F_SETFD, FD_CLOEXEC)           = 0
fcntl(8, F_SETFD, FD_CLOEXEC)           = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62147
fcntl(5, F_GETFL)                       = 0 (flags O_RDONLY)
fcntl(5, F_SETFL, O_RDONLY|O_NONBLOCK)  = 0
fcntl(8, F_GETFL)                       = 0x1 (flags O_WRONLY)
fcntl(8, F_SETFL, O_WRONLY|O_NONBLOCK)  = 0
close(6)                                = 0
close(7)                                = 0
select(6, [5], NULL, NULL, NULL)        = 1 (in [5])
read(5, "100 Capabilities\nVersion: 1.2\nPi"..., 64000) = 64
close(5)                                = 0
close(8)                                = 0
kill(62147, SIGINT)                     = 0
wait4(62147, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGINT}], 0, NULL) = 62147
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_KILLED, si_pid=62147, si_uid=0, si_status=SIGINT, si_utime=0, si_stime=0} ---
brk(0x56183da4c000)                     = 0x56183da4c000
getuid()                                = 0
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 5
lseek(5, 0, SEEK_CUR)                   = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=3526, ...}) = 0
mmap(NULL, 3526, PROT_READ, MAP_SHARED, 5, 0) = 0x7f6592313000
lseek(5, 3526, SEEK_SET)                = 3526
munmap(0x7f6592313000, 3526)            = 0
close(5)                                = 0
geteuid()                               = 0
getegid()                               = 0
open("/proc/sys/kernel/ngroups_max", O_RDONLY) = 5
read(5, "65536\n", 31)                  = 6
close(5)                                = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f65922bb000
getgroups(65536, [0])                   = 1
setgroups(1, [65534])                   = 0
setresgid(-1, 65534, -1)                = 0
setresuid(-1, 105, -1)                  = 0
getpid()                                = 62144
open("/var/lib/apt/lists/partial/.apt-acquire-privs-test.itUtGa", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
unlink("/var/lib/apt/lists/partial/.apt-acquire-privs-test.itUtGa") = 0
close(5)                                = 0
open("/var/lib/apt/lists/partial/.apt-acquire-privs-test.mt69rS", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
unlink("/var/lib/apt/lists/partial/.apt-acquire-privs-test.mt69rS") = 0
close(5)                                = 0
open("/var/lib/apt/lists/partial/.apt-acquire-privs-test.4fkRdA", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
unlink("/var/lib/apt/lists/partial/.apt-acquire-privs-test.4fkRdA") = 0
close(5)                                = 0
open("/var/lib/apt/lists/partial/.apt-acquire-privs-test.BNYzZh", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
unlink("/var/lib/apt/lists/partial/.apt-acquire-privs-test.BNYzZh") = 0
close(5)                                = 0
open("/var/lib/apt/lists/partial/.apt-acquire-privs-test.MEWjLZ", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
unlink("/var/lib/apt/lists/partial/.apt-acquire-privs-test.MEWjLZ") = 0
close(5)                                = 0
open("/var/lib/apt/lists/partial/.apt-acquire-privs-test.CVl5wH", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
unlink("/var/lib/apt/lists/partial/.apt-acquire-privs-test.CVl5wH") = 0
close(5)                                = 0
open("/var/lib/apt/lists/partial/.apt-acquire-privs-test.rvIRip", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
unlink("/var/lib/apt/lists/partial/.apt-acquire-privs-test.rvIRip") = 0
close(5)                                = 0
setresuid(-1, 0, -1)                    = 0
setresgid(-1, 0, -1)                    = 0
setgroups(1, [0])                       = 0
munmap(0x7f65922bb000, 266240)          = 0
stat("/usr/lib/apt/methods/http", {st_mode=S_IFREG|0755, st_size=80000, ...}) = 0
pipe([5, 6])                            = 0
pipe([7, 8])                            = 0
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fcntl(6, F_SETFD, FD_CLOEXEC)           = 0
fcntl(7, F_SETFD, FD_CLOEXEC)           = 0
fcntl(8, F_SETFD, FD_CLOEXEC)           = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62148
fcntl(5, F_GETFL)                       = 0 (flags O_RDONLY)
fcntl(5, F_SETFL, O_RDONLY|O_NONBLOCK)  = 0
fcntl(8, F_GETFL)                       = 0x1 (flags O_WRONLY)
fcntl(8, F_SETFL, O_WRONLY|O_NONBLOCK)  = 0
close(6)                                = 0
close(7)                                = 0
select(6, [5], NULL, NULL, NULL)        = 1 (in [5])
read(5, "100 Capabilities\nVersion: 1.2\nPi"..., 64000) = 64
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=7877, ...}) = 0
open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=2335, ...}) = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=2335, ...}) = 0
read(6, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\t\0\0\0\0"..., 4096) = 2335
lseek(6, -1476, SEEK_CUR)               = 859
read(6, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\t\0\0\0\0"..., 4096) = 1476
close(6)                                = 0
stat("/var/lib/apt/lists/partial/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease", 0x7ffe144b1e50) = -1 ENOENT (No such file or directory)
stat("/usr/lib/apt/methods/http", {st_mode=S_IFREG|0755, st_size=80000, ...}) = 0
pipe([6, 7])                            = 0
pipe([9, 10])                           = 0
fcntl(6, F_SETFD, FD_CLOEXEC)           = 0
fcntl(7, F_SETFD, FD_CLOEXEC)           = 0
fcntl(9, F_SETFD, FD_CLOEXEC)           = 0
fcntl(10, F_SETFD, FD_CLOEXEC)          = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62149
fcntl(6, F_GETFL)                       = 0 (flags O_RDONLY)
fcntl(6, F_SETFL, O_RDONLY|O_NONBLOCK)  = 0
fcntl(10, F_GETFL)                      = 0x1 (flags O_WRONLY)
fcntl(10, F_SETFL, O_WRONLY|O_NONBLOCK) = 0
close(7)                                = 0
close(9)                                = 0
select(7, [6], NULL, NULL, NULL)        = 1 (in [6])
read(6, "100 Capabilities\nVersion: 1.2\nPi"..., 64000) = 64
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17533, ...}) = 0
stat("/var/lib/apt/lists/partial/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease", 0x7ffe144b1e50) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17538, ...}) = 0
stat("/var/lib/apt/lists/partial/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease", 0x7ffe144b1e50) = -1 ENOENT (No such file or directory)
stat("/usr/lib/apt/methods/http", {st_mode=S_IFREG|0755, st_size=80000, ...}) = 0
pipe([7, 9])                            = 0
pipe([11, 12])                          = 0
fcntl(7, F_SETFD, FD_CLOEXEC)           = 0
fcntl(9, F_SETFD, FD_CLOEXEC)           = 0
fcntl(11, F_SETFD, FD_CLOEXEC)          = 0
fcntl(12, F_SETFD, FD_CLOEXEC)          = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62150
fcntl(7, F_GETFL)                       = 0 (flags O_RDONLY)
fcntl(7, F_SETFL, O_RDONLY|O_NONBLOCK)  = 0
fcntl(12, F_GETFL)                      = 0x1 (flags O_WRONLY)
fcntl(12, F_SETFL, O_WRONLY|O_NONBLOCK) = 0
close(9)                                = 0
close(11)                               = 0
select(8, [7], NULL, NULL, NULL)        = 1 (in [7])
read(7, "100 Capabilities\nVersion: 1.2\nPi"..., 64000) = 64
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_InRelease", 0x7ffe144b1d80) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/partial/ftp.debian.org_debian_dists_jessie-backports_InRelease", 0x7ffe144b1e50) = -1 ENOENT (No such file or directory)
stat("/usr/lib/apt/methods/http", {st_mode=S_IFREG|0755, st_size=80000, ...}) = 0
pipe([9, 11])                           = 0
pipe([13, 14])                          = 0
fcntl(9, F_SETFD, FD_CLOEXEC)           = 0
fcntl(11, F_SETFD, FD_CLOEXEC)          = 0
fcntl(13, F_SETFD, FD_CLOEXEC)          = 0
fcntl(14, F_SETFD, FD_CLOEXEC)          = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62151
fcntl(9, F_GETFL)                       = 0 (flags O_RDONLY)
fcntl(9, F_SETFL, O_RDONLY|O_NONBLOCK)  = 0
fcntl(14, F_GETFL)                      = 0x1 (flags O_WRONLY)
fcntl(14, F_SETFL, O_WRONLY|O_NONBLOCK) = 0
close(11)                               = 0
close(13)                               = 0
select(10, [9], NULL, NULL, NULL)       = 1 (in [9])
read(9, "100 Capabilities\nVersion: 1.2\nPi"..., 64000) = 64
brk(0x56183da6f000)                     = 0x56183da6f000
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_InRelease", 0x7ffe144b1d80) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/partial/archive.ubuntu.com_ubuntu_dists_xenial_InRelease", 0x7ffe144b1e50) = -1 ENOENT (No such file or directory)
stat("/usr/lib/apt/methods/https", {st_mode=S_IFREG|0755, st_size=71808, ...}) = 0
pipe([11, 13])                          = 0
pipe([15, 16])                          = 0
fcntl(11, F_SETFD, FD_CLOEXEC)          = 0
fcntl(13, F_SETFD, FD_CLOEXEC)          = 0
fcntl(15, F_SETFD, FD_CLOEXEC)          = 0
fcntl(16, F_SETFD, FD_CLOEXEC)          = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62152
fcntl(11, F_GETFL)                      = 0 (flags O_RDONLY)
fcntl(11, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
fcntl(16, F_GETFL)                      = 0x1 (flags O_WRONLY)
fcntl(16, F_SETFL, O_WRONLY|O_NONBLOCK) = 0
close(13)                               = 0
close(15)                               = 0
select(12, [11], NULL, NULL, NULL)      = 1 (in [11])
read(11, "100 Capabilities\nVersion: 1.2\nPi"..., 64000) = 64
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0644, st_size=48685, ...}) = 0
stat("/var/lib/apt/lists/partial/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
getuid()                                = 0
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 13
lseek(13, 0, SEEK_CUR)                  = 0
fstat(13, {st_mode=S_IFREG|0644, st_size=3526, ...}) = 0
mmap(NULL, 3526, PROT_READ, MAP_SHARED, 13, 0) = 0x7f6592313000
lseek(13, 3526, SEEK_SET)               = 3526
munmap(0x7f6592313000, 3526)            = 0
close(13)                               = 0
open("/etc/group", O_RDONLY|O_CLOEXEC)  = 13
lseek(13, 0, SEEK_CUR)                  = 0
fstat(13, {st_mode=S_IFREG|0644, st_size=2043, ...}) = 0
mmap(NULL, 2043, PROT_READ, MAP_SHARED, 13, 0) = 0x7f6592313000
lseek(13, 2043, SEEK_SET)               = 2043
munmap(0x7f6592313000, 2043)            = 0
close(13)                               = 0
lchown("/var/lib/apt/lists/partial/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", 105, 0) = 0
lstat("/var/lib/apt/lists/partial/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
chmod("/var/lib/apt/lists/partial/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", 0600) = 0
stat("/usr/lib/apt/methods/http", {st_mode=S_IFREG|0755, st_size=80000, ...}) = 0
pipe([13, 15])                          = 0
pipe([17, 18])                          = 0
fcntl(13, F_SETFD, FD_CLOEXEC)          = 0
fcntl(15, F_SETFD, FD_CLOEXEC)          = 0
fcntl(17, F_SETFD, FD_CLOEXEC)          = 0
fcntl(18, F_SETFD, FD_CLOEXEC)          = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62153
fcntl(13, F_GETFL)                      = 0 (flags O_RDONLY)
fcntl(13, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
fcntl(18, F_GETFL)                      = 0x1 (flags O_WRONLY)
fcntl(18, F_SETFL, O_WRONLY|O_NONBLOCK) = 0
close(15)                               = 0
close(17)                               = 0
select(14, [13], NULL, NULL, NULL)      = 1 (in [13])
read(13, "100 Capabilities\nVersion: 1.2\nPi"..., 64000) = 64
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=1724, ...}) = 0
stat("/var/lib/apt/lists/partial/www.ecodms.de_ecodms%5f160964_xenial_InRelease", 0x7ffe144b1e50) = -1 ENOENT (No such file or directory)
select(19, [5 6 7 9 11 13], [8 10 12 14 16 18], NULL, {0, 500000}) = 6 (out [8 10 12 14 16 18], left {0, 499997})
write(18, "601 Configuration\nConfig-Item: A"..., 12013) = 12013
write(16, "601 Configuration\nConfig-Item: A"..., 12036) = 12036
write(14, "601 Configuration\nConfig-Item: A"..., 11974) = 11974
write(12, "601 Configuration\nConfig-Item: A"..., 11986) = 11986
write(10, "601 Configuration\nConfig-Item: A"..., 12350) = 12350
write(8, "601 Configuration\nConfig-Item: A"..., 12051) = 12051
rt_sigprocmask(SIG_BLOCK, [WINCH], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
fstat(1, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 2), ...}) = 0
write(1, "\r0% [Wird verarbeitet]", 22) = 22
select(14, [5 6 7 9 11 13], [], NULL, {0, 500000}) = 1 (in [11], left {0, 497579})
read(11, "400 URI Failure\nURI: https://apt"..., 64000) = 169
stat("/var/lib/apt/lists/partial/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
getuid()                                = 0
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 15
lseek(15, 0, SEEK_CUR)                  = 0
fstat(15, {st_mode=S_IFREG|0644, st_size=3526, ...}) = 0
mmap(NULL, 3526, PROT_READ, MAP_SHARED, 15, 0) = 0x7f6592313000
lseek(15, 3526, SEEK_SET)               = 3526
munmap(0x7f6592313000, 3526)            = 0
close(15)                               = 0
open("/etc/group", O_RDONLY|O_CLOEXEC)  = 15
lseek(15, 0, SEEK_CUR)                  = 0
fstat(15, {st_mode=S_IFREG|0644, st_size=2043, ...}) = 0
mmap(NULL, 2043, PROT_READ, MAP_SHARED, 15, 0) = 0x7f6592313000
lseek(15, 2043, SEEK_SET)               = 2043
munmap(0x7f6592313000, 2043)            = 0
close(15)                               = 0
lchown("/var/lib/apt/lists/partial/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", 0, 0) = 0
lstat("/var/lib/apt/lists/partial/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
chmod("/var/lib/apt/lists/partial/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", 0644) = 0
write(1, "\r                     \r", 23) = 23
write(1, "Fehl:1 https://apt.dockerproject"..., 66) = 66
write(1, "  Could not resolve host: apt.do"..., 48) = 48
rt_sigprocmask(SIG_BLOCK, [WINCH], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(1, "\r0% [Wird verarbeitet]", 22) = 22
select(14, [5 6 7 9 11 13], [], NULL, {0, 500000}) = 1 (in [9], left {0, 476888})
read(9, "102 Status\nURI: http://archive.u"..., 64000) = 116
select(14, [5 6 7 9 11 13], [], NULL, {0, 476888}) = 1 (in [9], left {0, 476722})
read(9, "400 URI Failure\nURI: http://arch"..., 64000) = 193
stat("/var/lib/apt/lists/partial/archive.ubuntu.com_ubuntu_dists_xenial_InRelease", 0x7ffe144b1840) = -1 ENOENT (No such file or directory)
unlink("/var/lib/apt/lists/partial/archive.ubuntu.com_ubuntu_dists_xenial_InRelease") = -1 ENOENT (No such file or directory)
write(1, "\r                     \r", 23) = 23
write(1, "Fehl:2 http://archive.ubuntu.com"..., 57) = 57
write(1, "  \302\273archive.ubuntu.com\302\253 konnte "..., 57) = 57
rt_sigprocmask(SIG_BLOCK, [WINCH], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(1, "\r0% [Wird verarbeitet]", 22) = 22
select(14, [5 6 7 9 11 13], [], NULL, {0, 500000}) = 1 (in [13], left {0, 498344})
read(13, "102 Status\nURI: http://www.ecodm"..., 64000) = 107
select(14, [5 6 7 9 11 13], [], NULL, {0, 498344}) = 1 (in [13], left {0, 498159})
read(13, "400 URI Failure\nURI: http://www."..., 64000) = 184
stat("/var/lib/apt/lists/partial/www.ecodms.de_ecodms%5f160964_xenial_InRelease", 0x7ffe144b1840) = -1 ENOENT (No such file or directory)
unlink("/var/lib/apt/lists/partial/www.ecodms.de_ecodms%5f160964_xenial_InRelease") = -1 ENOENT (No such file or directory)
write(1, "\r                     \r", 23) = 23
write(1, "Fehl:3 http://www.ecodms.de/ecod"..., 60) = 60
write(1, "  \302\273www.ecodms.de\302\253 konnte nicht"..., 52) = 52
rt_sigprocmask(SIG_BLOCK, [WINCH], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(1, "\r0% [Wird verarbeitet]", 22) = 22
select(14, [5 6 7 9 11 13], [], NULL, {0, 500000}) = 1 (in [7], left {0, 499575})
read(7, "102 Status\nURI: http://ftp.debia"..., 64000) = 126
select(14, [5 6 7 9 11 13], [], NULL, {0, 499575}) = 1 (in [7], left {0, 499331})
read(7, "102 Status\nURI: http://ftp.debia"..., 64000) = 118
select(14, [5 6 7 9 11 13], [], NULL, {0, 499331}) = 1 (in [7], left {0, 499281})
read(7, "102 Status\nURI: http://ftp.debia"..., 64000) = 118
select(14, [5 6 7 9 11 13], [], NULL, {0, 499281}) = 1 (in [7], left {0, 499226})
read(7, "400 URI Failure\nURI: http://ftp."..., 64000) = 305
stat("/var/lib/apt/lists/partial/ftp.debian.org_debian_dists_jessie-backports_InRelease", 0x7ffe144b1840) = -1 ENOENT (No such file or directory)
unlink("/var/lib/apt/lists/partial/ftp.debian.org_debian_dists_jessie-backports_InRelease") = -1 ENOENT (No such file or directory)
write(1, "\r                     \r", 23) = 23
write(1, "Fehl:4 http://ftp.debian.org/deb"..., 63) = 63
write(1, "  \302\273klecker-ftp.debian.org\302\253 kon"..., 163) = 163
rt_sigprocmask(SIG_BLOCK, [WINCH], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(1, "\r0% [Wird verarbeitet]", 22) = 22
select(14, [5 6 7 9 11 13], [], NULL, {0, 500000}) = 1 (in [6], left {0, 496352})
read(6, "102 Status\nURI: http://ppa.launc"..., 64000) = 131
select(14, [5 6 7 9 11 13], [], NULL, {0, 496352}) = 1 (in [6], left {0, 496163})
read(6, "400 URI Failure\nURI: http://ppa."..., 64000) = 208
stat("/var/lib/apt/lists/partial/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease", 0x7ffe144b1840) = -1 ENOENT (No such file or directory)
unlink("/var/lib/apt/lists/partial/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease") = -1 ENOENT (No such file or directory)
write(1, "\r                     \r", 23) = 23
write(1, "Fehl:5 http://ppa.launchpad.net/"..., 73) = 73
write(1, "  \302\273ppa.launchpad.net\302\253 konnte n"..., 56) = 56
rt_sigprocmask(SIG_BLOCK, [WINCH], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(1, "\r0% [Wird verarbeitet]", 22) = 22
select(14, [5 6 7 9 11 13], [], NULL, {0, 500000}) = 1 (in [5], left {0, 499268})
read(5, "102 Status\nURI: http://download."..., 64000) = 137
select(14, [5 6 7 9 11 13], [], NULL, {0, 499268}) = 1 (in [5], left {0, 499042})
read(5, "400 URI Failure\nURI: http://down"..., 64000) = 214
stat("/var/lib/apt/lists/partial/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease", 0x7ffe144b1840) = -1 ENOENT (No such file or directory)
unlink("/var/lib/apt/lists/partial/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease") = -1 ENOENT (No such file or directory)
write(1, "\r                     \r", 23) = 23
write(1, "Fehl:6 http://download.virtualbo"..., 73) = 73
write(1, "  \302\273download.virtualbox.org\302\253 ko"..., 62) = 62
rt_sigprocmask(SIG_BLOCK, [WINCH], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(1, "\r0% [Wird verarbeitet]", 22) = 22
select(14, [5 6 7 9 11 13], [], NULL, {0, 500000}) = 1 (in [6], left {0, 499997})
read(6, "102 Status\nURI: http://ppa.launc"..., 64000) = 339
stat("/var/lib/apt/lists/partial/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease", 0x7ffe144b1840) = -1 ENOENT (No such file or directory)
unlink("/var/lib/apt/lists/partial/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease") = -1 ENOENT (No such file or directory)
write(1, "\r                     \r", 23) = 23
write(1, "Fehl:7 http://ppa.launchpad.net/"..., 73) = 73
write(1, "  \302\273ppa.launchpad.net\302\253 konnte n"..., 56) = 56
rt_sigprocmask(SIG_BLOCK, [WINCH], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(1, "\r0% [Wird verarbeitet]", 22) = 22
write(1, "\r                     \r", 23) = 23
close(5)                                = 0
close(8)                                = 0
kill(62148, SIGINT)                     = 0
wait4(62148, [{WIFEXITED(s) && WEXITSTATUS(s) == 100}], 0, NULL) = 62148
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62148, si_uid=105, si_status=100, si_utime=0, si_stime=0} ---
close(6)                                = 0
close(10)                               = 0
kill(62149, SIGINT)                     = 0
wait4(62149, [{WIFEXITED(s) && WEXITSTATUS(s) == 100}], 0, NULL) = 62149
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62149, si_uid=105, si_status=100, si_utime=0, si_stime=0} ---
close(7)                                = 0
close(12)                               = 0
kill(62150, SIGINT)                     = 0
wait4(62150, [{WIFEXITED(s) && WEXITSTATUS(s) == 100}], 0, NULL) = 62150
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62150, si_uid=105, si_status=100, si_utime=0, si_stime=0} ---
close(9)                                = 0
close(14)                               = 0
kill(62151, SIGINT)                     = 0
wait4(62151, [{WIFEXITED(s) && WEXITSTATUS(s) == 100}], 0, NULL) = 62151
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62151, si_uid=105, si_status=100, si_utime=0, si_stime=0} ---
close(11)                               = 0
close(16)                               = 0
kill(62152, SIGINT)                     = 0
wait4(62152, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGINT}], 0, NULL) = 62152
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_KILLED, si_pid=62152, si_uid=105, si_status=SIGINT, si_utime=0, si_stime=0} ---
close(13)                               = 0
close(18)                               = 0
kill(62153, SIGINT)                     = 0
wait4(62153, [{WIFEXITED(s) && WEXITSTATUS(s) == 100}], 0, NULL) = 62153
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62153, si_uid=105, si_status=100, si_utime=0, si_stime=0} ---
close(4)                                = 0
stat("/var/cache/apt/pkgcache.bin", {st_mode=S_IFREG|0644, st_size=7079517, ...}) = 0
unlink("/var/cache/apt/pkgcache.bin")   = 0
stat("/var/cache/apt/srcpkgcache.bin", {st_mode=S_IFREG|0644, st_size=5630374, ...}) = 0
unlink("/var/cache/apt/srcpkgcache.bin") = 0
stat("/var/cache/apt/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/var/cache/apt/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/var/cache/apt/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents(4, /* 3 entries */, 32768)     = 80
stat("/var/cache/apt/archives", {st_mode=S_IFDIR|0755, st_size=73728, ...}) = 0
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
stat("/var/cache/apt/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/var/cache/apt/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/var/cache/apt/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents(4, /* 3 entries */, 32768)     = 80
stat("/var/cache/apt/archives", {st_mode=S_IFDIR|0755, st_size=73728, ...}) = 0
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
lstat("/var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/var/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/var/lib/dpkg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/var/lib/dpkg/status", {st_mode=S_IFREG|0644, st_size=2719350, ...}) = 0
stat("/var/cache/apt/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/var/cache/apt/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
write(1, "\rPaketlisten werden gelesen... 0"..., 34) = 34
open("/var/cache/apt/pkgcache.bin", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/de/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale-langpack/de/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/var/cache/apt/srcpkgcache.bin", O_RDONLY) = -1 ENOENT (No such file or directory)
access("/var/cache/apt/", W_OK)         = 0
mmap(NULL, 25165824, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f658ddbd000
pipe([4, 5])                            = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62155
close(5)                                = 0
fcntl(4, F_GETFL)                       = 0 (flags O_RDONLY)
fstat(4, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
read(4, "i386\n", 4096)                 = 5
read(4, "", 4096)                       = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62155, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
close(4)                                = 0
wait4(62155, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 62155
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Release.gpg", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=1724, ...}) = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
open("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_Release.gpg", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0644, st_size=48685, ...}) = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
open("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_Release.gpg", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_InRelease", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_Release.gpg", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_InRelease", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_Release.gpg", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17533, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_Release.gpg", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17538, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_Release.gpg", 0x7ffe144b1fe0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=7877, ...}) = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.xz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.bz2", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.lzma", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.gz", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.lz4", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.uncompressed", 0x7ffe144b1f10) = -1 ENOENT (No such file or directory)
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.xz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.bz2", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.lzma", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.gz", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.lz4", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.uncompressed", 0x7ffe144b1f70) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en", 0x7ffe144b20c0) = -1 ENOENT (No such file or directory)
stat("/var/lib/dpkg/status", {st_mode=S_IFREG|0644, st_size=2719350, ...}) = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=1724, ...}) = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=1724, ...}) = 0
stat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0
geteuid()                               = 0
open("/tmp/fileutl.message.vtm9k7", O_RDWR|O_CREAT|O_EXCL, 0600) = 4
unlink("/tmp/fileutl.message.vtm9k7")   = 0
open("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_InRelease", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=1724, ...}) = 0
read(5, "-----BEGIN PGP SIGNED MESSAGE---"..., 4096) = 1724
read(5, "", 4096)                       = 0
close(5)                                = 0
write(4, "Date: Fri, 03 Feb 2017 14:51:40 "..., 1201) = 1201
lseek(4, 0, SEEK_SET)                   = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=1724, ...}) = 0
fstat(4, {st_mode=S_IFREG|0600, st_size=1201, ...}) = 0
read(4, "Date: Fri, 03 Feb 2017 14:51:40 "..., 1204) = 1201
read(4, "", 3)                          = 0
close(4)                                = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
open("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
open("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: ecodmsclient\nVersion: 1"..., 32771) = 2339
read(4, "", 30432)                      = 0
write(1, "\rPaketlisten werden gelesen... 0"..., 34) = 34
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
open("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2339, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/www.ecodms.de_ecodms%5f160964_xenial_en", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0644, st_size=48685, ...}) = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0644, st_size=48685, ...}) = 0
stat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0
geteuid()                               = 0
open("/tmp/fileutl.message.dAL0nP", O_RDWR|O_CREAT|O_EXCL, 0600) = 4
unlink("/tmp/fileutl.message.dAL0nP")   = 0
open("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=48685, ...}) = 0
read(5, "-----BEGIN PGP SIGNED MESSAGE---"..., 4096) = 4096
read(5, "062319472ac442793db1b           "..., 4096) = 4096
write(4, "Architectures: amd64 i386 armhf "..., 4096) = 4096
read(5, "nary-ppc64le/Packages.gz\n 466e44"..., 4096) = 4096
write(4, "nts-s390x.bz2\n e62ff0123a74adfc6"..., 4096) = 4096
read(5, "1890afd80709                0 ma"..., 4096) = 4096
write(4, "126af7276             1749 testi"..., 4096) = 4096
read(5, "6e914abc9fcd32ab958033cdf1d3248f"..., 4096) = 4096
write(4, " dcddcbc89128ee4d36fe584b2a98213"..., 4096) = 4096
read(5, "831ab161a2eb872bdf86cb90eaf1b820"..., 4096) = 4096
write(4, "974 testing/binary-armhf/Package"..., 4096) = 4096
read(5, "inary-i386/Packages.gz\n fcea922b"..., 4096) = 4096
write(4, "4d06117             1740 experim"..., 4096) = 4096
read(5, "              0 testing/binary-p"..., 4096) = 4096
write(4, "bd9ddccd4222fbc097cf390ac70ae703"..., 4096) = 4096
read(5, "dce6f3dd7abd0e4cf07f5386ce07abf7"..., 4096) = 4096
write(4, "f43ffa97e8272d81422a41aa2b1599c4"..., 4096) = 4096
read(5, "1dfa196475721d1f8a96a58aac1a17e4"..., 4096) = 4096
write(4, "a6b63321998a3846f715f1044c81922d"..., 4096) = 4096
read(5, "91abf0877f0f17             1746 "..., 4096) = 4096
write(4, "151cc0b3b3005e442cd01feadf28ca09"..., 4096) = 4096
read(5, "18a5ea255460616b19f26980d5e64fac"..., 4096) = 3629
write(4, "le/Release\n cf83e1357eefb8bdf154"..., 4096) = 4096
read(5, "", 4096)                       = 0
close(5)                                = 0
write(4, "545d522c43a9219d9c82818016a138f3"..., 2778) = 2778
lseek(4, 0, SEEK_SET)                   = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_InRelease", {st_mode=S_IFREG|0644, st_size=48685, ...}) = 0
fstat(4, {st_mode=S_IFREG|0600, st_size=47834, ...}) = 0
read(4, "Architectures: amd64 i386 armhf "..., 47837) = 47834
read(4, "", 3)                          = 0
close(4)                                = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
open("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 0"..., 34) = 34
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
open("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: docker-engine\nPriority:"..., 32771) = 25929
read(4, "", 6842)                       = 0
write(1, "\rPaketlisten werden gelesen... 0"..., 34) = 34
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
open("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-amd64_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=25929, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-i386_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/apt.dockerproject.org_repo_dists_ubuntu-xenial_main_i18n_Translation-en", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_InRelease", 0x7ffe144b1ee0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_Release", 0x7ffe144b1ee0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_InRelease", 0x7ffe144b18a0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_Release", 0x7ffe144b18a0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-i386_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_i18n_Translation-en", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-i386_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_i18n_Translation-en", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-i386_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_i18n_Translation-en", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-i386_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_i18n_Translation-en", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_InRelease", 0x7ffe144b1ee0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_Release", {st_mode=S_IFREG|0644, st_size=166023, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_InRelease", 0x7ffe144b18a0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_Release", {st_mode=S_IFREG|0644, st_size=166023, ...}) = 0
stat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0
geteuid()                               = 0
open("/tmp/fileutl.message.mj4ltx", O_RDWR|O_CREAT|O_EXCL, 0600) = 4
unlink("/tmp/fileutl.message.mj4ltx")   = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_Release", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=166023, ...}) = 0
read(5, "-----BEGIN PGP SIGNED MESSAGE---"..., 4096) = 4096
read(5, "6a2378a4504aa       20 contrib/C"..., 4096) = 4096
write(4, "Origin: Debian Backports\nLabel: "..., 4096) = 4096
read(5, "nary-kfreebsd-i386/Packages.gz\n "..., 4096) = 4096
write(4, ".gz\n d41d8cd98f00b204e9800998ecf"..., 4096) = 4096
read(5, "31f8c2      158 contrib/debian-i"..., 4096) = 4096
write(4, "cb0ec66f65edc98     3432 contrib"..., 4096) = 4096
read(5, "ntents-amd64.gz\n 46a8db7897e4463"..., 4096) = 4096
write(4, "rmhf/Release\n d41d8cd98f00b204e9"..., 4096) = 4096
read(5, "fb8a05f   164171 main/Contents-u"..., 4096) = 4096
write(4, " 76958812 main/Contents-arm64\n c"..., 4096) = 4096
read(5, "nary-powerpc/Packages\n 2b6a45a9f"..., 4096) = 4096
write(4, "865a87441e1420b90cab8b8e1e40    "..., 4096) = 4096
read(5, "30a      163 main/debian-install"..., 4096) = 4096
write(4, "f436fc    27796 main/binary-powe"..., 4096) = 4096
read(5, "ree/Contents-kfreebsd-i386.diff/"..., 4096) = 4096
write(4, "d-i386/Release\n 850d27e83097a5c8"..., 4096) = 4096
read(5, "-amd64/Packages.xz\n 27c7da3a85a8"..., 4096) = 4096
write(4, "909e613501c91e9054dd3b    36510 "..., 4096) = 4096
read(5, "on-free/binary-s390x/Packages\n 2"..., 4096) = 4096
write(4, "d68      159 non-free/binary-amd"..., 4096) = 4096
read(5, "ler/binary-mipsel/Packages.gz\n 8"..., 4096) = 4096
write(4, "1175633072dc1c     8530 non-free"..., 4096) = 4096
read(5, "16da8    12398 contrib/Contents-"..., 4096) = 4096
write(4, "f096f9e368e888       32 non-free"..., 4096) = 4096
read(5, ".gz\n 849df5450c274f8997f540523bb"..., 4096) = 4096
write(4, "10d5598e44364b00369c94e9669952a7"..., 4096) = 4096
read(5, "3 contrib/binary-ppc64el/Package"..., 4096) = 4096
write(4, " 9868 contrib/binary-amd64/Packa"..., 4096) = 4096
read(5, "c46680c0b10       32 contrib/deb"..., 4096) = 4096
write(4, "10b8a187a49ae777e61d401ad0    19"..., 4096) = 4096
read(5, "6\n 30c27ed60174b67016c6d90156e8c"..., 4096) = 4096
write(4, "ary-kfreebsd-i386/Packages.xz\n 2"..., 4096) = 4096
read(5, "32b2bf038426531298ea010705f2    "..., 4096) = 4096
write(4, "910 main/Contents-i386.diff/Inde"..., 4096) = 4096
read(5, "ackages.xz\n 5eb80aa75553f41d7593"..., 4096) = 4096
write(4, "ts-udeb-sparc\n b3ceff894d4e2283f"..., 4096) = 4096
read(5, "57c1a6b34da596b1d     2216 main/"..., 4096) = 4096
write(4, "343      156 main/binary-mipsel/"..., 4096) = 4096
read(5, "bcdc579384335b83ec4b0b24e2e91b  "..., 4096) = 4096
write(4, "binary-kfreebsd-amd64/Packages.x"..., 4096) = 4096
read(5, "458378c1bf3c10dd2f5c060d1347741e"..., 4096) = 4096
write(4, "Contents-armel.gz\n 958fdc5528df2"..., 4096) = 4096
read(5, "nary-kfreebsd-i386/Release\n d6ba"..., 4096) = 4096
write(4, "ee/Contents-udeb-mipsel.gz\n da39"..., 4096) = 4096
read(5, "r/binary-armhf/Packages\n a0fddd5"..., 4096) = 4096
write(4, "7fc4288552d006a339b    26009 non"..., 4096) = 4096
read(5, "2628cf82222f39b5cc0ae2    17170 "..., 4096) = 4096
write(4, "f5c060d1347741ed       20 non-fr"..., 4096) = 4096
read(5, "trib/Contents-s390x.diff/Index\n "..., 4096) = 4096
write(4, "nslation-en.diff/Index\n bb926bdd"..., 4096) = 4096
read(5, "851143    10974 contrib/binary-a"..., 4096) = 4096
write(4, "cf6046e088c503e77dd6cc484ef54e1d"..., 4096) = 4096
read(5, "ontrib/binary-mips/Release\n c082"..., 4096) = 4096
write(4, " e7232eb6d9ec40e1f3f04fba30f20f2"..., 4096) = 4096
read(5, "staller/binary-armel/Packages\n f"..., 4096) = 4096
write(4, "0cec4b8f636cd90b43e9ff3f2add681b"..., 4096) = 4096
read(5, "6b1b4cd7664a037ec       20 contr"..., 4096) = 4096
write(4, "aa58f40f3aafaac7021e0ef69c17f6b1"..., 4096) = 4096
read(5, "0369c665523cb44570adb08a7  49498"..., 4096) = 4096
write(4, "er/binary-ppc64el/Packages.gz\n 0"..., 4096) = 4096
read(5, "  21915 main/Contents-udeb-power"..., 4096) = 4096
write(4, "kfreebsd-i386.gz\n c0cf85847fdc4c"..., 4096) = 4096
read(5, "759140 main/binary-kfreebsd-amd6"..., 4096) = 4096
write(4, "fbc14397d8970ac85ed57c1f150af781"..., 4096) = 4096
read(5, "9f05ed      153 main/debian-inst"..., 4096) = 4096
write(4, "719137f9096b38d6e9e356629b2c9e15"..., 4096) = 4096
read(5, "c6a692e81cf35730bfecb9de2cf6c582"..., 4096) = 4096
write(4, "Release\n b96a6c7709437f9d048cedb"..., 4096) = 4096
read(5, "ontents-armhf.diff/Index\n 351311"..., 4096) = 4096
write(4, "861c0    21186 main/debian-insta"..., 4096) = 4096
read(5, "855        0 non-free/Contents-u"..., 4096) = 4096
write(4, "c7e86346966a46871a59d9e464ee76fa"..., 4096) = 4096
read(5, "79a26b93d06     8530 non-free/bi"..., 4096) = 4096
write(4, "d17de546264aa58f40f3aafaac7021e0"..., 4096) = 4096
read(5, "3a8526f9921fd01e8fa603cdb750d4d2"..., 4096) = 4096
write(4, "es.diff/Index\n 5977f2fbbbe7899a7"..., 4096) = 4096
read(5, "ca495991b7852b855        0 non-f"..., 4096) = 4096
write(4, "9a82d2bd23     6692 non-free/bin"..., 4096) = 4096
read(5, "2\n d9b814e8f743edf11dde8fc290cc2"..., 4096) = 2183
write(4, "ler/binary-kfreebsd-amd64/Packag"..., 4096) = 4096
read(5, "", 4096)                       = 0
close(5)                                = 0
write(4, "741ca999f443c9aae8    17170 non-"..., 579) = 579
lseek(4, 0, SEEK_SET)                   = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_Release", {st_mode=S_IFREG|0644, st_size=166023, ...}) = 0
fstat(4, {st_mode=S_IFREG|0600, st_size=164419, ...}) = 0
read(4, "Origin: Debian Backports\nLabel: "..., 164422) = 164419
read(4, "", 3)                          = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 0"..., 34) = 34
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: 0ad\nVersion: 0.0.21-2~b"..., 32771) = 32771
write(1, "\rPaketlisten werden gelesen... 0"..., 34) = 34
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-amd64_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4547819, ...}) = 0
read(4, "/www.amule.org\nDescription-md5: "..., 32206) = 32206
read(4, "l\nDepends: apparmor (>= 2.9.0)\nD"..., 32606) = 32606
read(4, "libxrender1, zlib1g (>= 1:1.1.4)"..., 31188) = 31188
read(4, ":4.5.3), libqtcore4 (>= 4:4.7.0~"..., 32034) = 32034
write(1, "\rPaketlisten werden gelesen... 1"..., 34) = 34
read(4, "i-Arch: same\nHomepage: https://w"..., 32167) = 32167
read(4, "\nSource: brial\nVersion: 0.8.5-4~"..., 32740) = 32740
read(4, "c75ab491487447585c1f67234a72dcc4"..., 32236) = 32236
read(4, " b2714a5dd73de6b9a1f8478ea36a611"..., 32256) = 32256
read(4, "s2-doc\nSource: chemps2\nVersion: "..., 32757) = 32757
read(4, "libgdk-pixbuf2.0-0 (>= 2.22.0), "..., 32364) = 32364
read(4, ".4.0), libxml2 (>= 2.6.27), zlib"..., 32094) = 32094
read(4, "f7b228641758c40fc6c38853a8a241b0"..., 32205) = 32205
read(4, "ceforge.net/\nDescription-md5: bd"..., 32280) = 32280
read(4, "sole based LDAP user management "..., 32482) = 32482
read(4, "d3611ae1ef3c52f\nSHA256: 42faead9"..., 32197) = 32197
read(4, "k-devel@lists.alioth.debian.org>"..., 32649) = 32649
read(4, "e store backend for Django\nHomep"..., 32431) = 32431
brk(0x56183da90000)                     = 0x56183da90000
read(4, "g>\nArchitecture: amd64\nDepends: "..., 32661) = 32661
read(4, "evel@lists.alioth.debian.org>\nAr"..., 32641) = 32641
read(4, ">\nArchitecture: amd64\nDepends: l"..., 32592) = 32592
read(4, "88\nMaintainer: Boris Pek <tehnic"..., 32682) = 32682
read(4, "cture dependent files\nHomepage: "..., 32483) = 32483
read(4, "3a9c4395197cb9af4\nSHA1: a8ebe76b"..., 31552) = 31552
read(4, "37f7e496762f\nSection: interprete"..., 31713) = 31713
read(4, "2.16), libdb5.3, libgnutls-deb0-"..., 32416) = 32416
read(4, "eign\nHomepage: https://ffmpeg.or"..., 31967) = 31967
read(4, "39461ca86c197b30b76aa1fcc1\n\nPack"..., 32131) = 32131
read(4, "al Packaging Team <pkg-pascal-de"..., 32663) = 32663
read(4, "565ca1fa01f7dd762\nSection: games"..., 32228) = 32228
read(4, "525c89a327b96bc6625c7d7e83351b4\n"..., 32181) = 32181
read(4, "-none-eabi (8~bpo8+1)\nVersion: 7"..., 32729) = 32729
read(4, "gin-treebrowser\nSource: geany-pl"..., 32753) = 32753
read(4, "hc-process-prof-1.2.3.0-a2232, l"..., 31583) = 31583
brk(0x56183dabb000)                     = 0x56183dabb000
read(4, "iners <pkg-gnome-maintainers@lis"..., 32656) = 32656
read(4, "le2 (>= 6:11~beta1), libavutil54"..., 32408) = 32408
read(4, "1.55.0, libboost-thread1.55.0, l"..., 32471) = 32471
read(4, "98d4\nSHA1: 2626ff77b5ccae547898e"..., 32189) = 32189
read(4, "mepage: https://github.com/cznic"..., 32430) = 32430
read(4, "ainer: Debian Go Packaging Team "..., 32619) = 32619
read(4, "c1591d49da9ab8e9554bea6\nSHA1: f4"..., 32193) = 32193
read(4, "0c994c427334e6ad0\nSHA256: 82b17a"..., 32186) = 32186
read(4, "8+1_all.deb\nSize: 26778\nMD5sum: "..., 32148) = 32148
read(4, "and correction (runtime)\nHomepag"..., 32270) = 32270
read(4, "ce: gtk-sharp2\nVersion: 2.12.40-"..., 32738) = 32738
read(4, "aging Haskell software; profilin"..., 32031) = 32031
read(4, "8+1), libghc-array-prof-0.5.1.0-"..., 32492) = 32492
read(4, "n: net\nPriority: optional\nFilena"..., 32268) = 32268
read(4, "ow-manager\nDepends: icewm-common"..., 32585) = 32585
read(4, "d5: 04eff6c28579d2b4cb8412d11836"..., 32071) = 32071
brk(0x56183dade000)                     = 0x56183dade000
read(4, "les\nSource: jellyfish\nVersion: 2"..., 32747) = 32747
read(4, "ian Javascript Maintainers <pkg-"..., 32661) = 32661
read(4, "Arch: foreign\nHomepage: http://w"..., 32446) = 32446
read(4, "2.0-0 (>= 2.12.0), libgtk2.0-0 ("..., 32470) = 32470
read(4, ": 153\nMaintainer: Debian Multime"..., 32681) = 32681
read(4, "python-zmq, python2.7, python:an"..., 32403) = 32403
read(4, "\nInstalled-Size: 915\nMaintainer:"..., 32726) = 32726
read(4, "5: 0691977b662e1cda905f3c7fda528"..., 32339) = 32339
read(4, " libdrm\nVersion: 2.4.74-1~bpo8+1"..., 32743) = 32743
read(4, "virt-maintainers@lists.alioth.de"..., 32639) = 32639
read(4, "bee9a77a3c22722c5967037f7adba962"..., 32087) = 32087
read(4, "HEAD/tree/libMems/trunk/\nDescrip"..., 32367) = 32367
read(4, "gtk3\nBreaks: libreoffice-gtk3 (<"..., 32162) = 32162
read(4, "SHA256: 71e2c45de4f2c1581105385b"..., 31883) = 31883
read(4, "es | locales-all\nPre-Depends: dp"..., 32491) = 32491
read(4, " mailto:debian-backports@lists.d"..., 32158) = 32158
read(4, "ugs: mailto:debian-backports@lis"..., 32166) = 32166
brk(0x56183daff000)                     = 0x56183daff000
read(4, "56: 0cd2cb56385e551567ced641b111"..., 31763) = 31763
read(4, "0.3-4~bpo8+1\nInstalled-Size: 619"..., 32726) = 32726
read(4, "2)\nDescription: Video Accelerati"..., 32461) = 32461
read(4, "nstalled-Size: 520\nMaintainer: D"..., 32700) = 32700
read(4, "43ec\n\nPackage: liblockdep4.4\nSou"..., 31703) = 31703
read(4, "h.debian.org>\nArchitecture: amd6"..., 32615) = 32615
brk(0x56183db25000)                     = 0x56183db25000
read(4, "174\n\nPackage: lrslib\nVersion: 0."..., 32145) = 32145
read(4, "08d1fad756\n\nPackage: makedumpfil"..., 32115) = 32115
read(4, "5175f3696257245b16f1a39\n\nPackage"..., 32069) = 32069
read(4, "://mesa3d.org/\nDescription-md5: "..., 32295) = 32295
read(4, ".3.2-1~bpo8+1_all.deb\nSize: 9941"..., 32307) = 32307
read(4, " rrdtool\nRecommends: munin-node,"..., 32312) = 32312
read(4, "fc8\nSHA1: 25a5c33cbd565c93f60a9a"..., 32145) = 32145
read(4, "2-0 (>= 2.2.14)\nDescription: Com"..., 32458) = 32458
read(4, "7.0.0~rc1), python-neutron-lib, "..., 32371) = 32371
read(4, "1_all.deb\nSize: 13878\nMD5sum: ef"..., 32288) = 32288
read(4, "c6a0d2d41a9932443\nDescription-md"..., 32258) = 32258
read(4, "pth\nVersion: 1.3-1~bpo8+1\nInstal"..., 32744) = 32744
read(4, "2), pfstools (<< 1.8.5-2.1), sdp"..., 30227) = 30227
read(4, "itecture: all\nSuggests: qemu\nCon"..., 32604) = 32604
read(4, " http://www.openni.org\nDescripti"..., 32233) = 32233
read(4, " 82c358801fb24bbf517455048cc450e"..., 32251) = 32251
read(4, "08bf50d867f32fe728dfabc42b53d7\nS"..., 32056) = 32056
read(4, "bbe93b09ffa7\nSHA256: 24be4f20931"..., 32257) = 32257
read(4, "o8+1), libc6 (>= 2.14), libgcc1 "..., 32536) = 32536
read(4, ")\nDepends: python3-pil.imagetk ("..., 32563) = 32563
read(4, "m\nDescription-md5: 17ea3115ed224"..., 32459) = 32459
read(4, "ists.alioth.debian.org>\nArchitec"..., 32599) = 32599
read(4, "880dc6089d1a20770551\nSection: py"..., 32401) = 32401
read(4, "22075591582bc38de1b7ea6596d5be1\n"..., 32375) = 32375
read(4, "ilename: pool/main/p/pyroute2/py"..., 32381) = 32381
read(4, "ython-configobj, python-ply (>= "..., 32581) = 32581
read(4, "ient_2.4.0-2~bpo8+1_all.deb\nSize"..., 31915) = 31915
read(4, "2138535ad0dff7673\nSection: pytho"..., 32421) = 32421
read(4, "ndling configuration defaults of"..., 32348) = 32348
read(4, "g>\nArchitecture: amd64\nDepends: "..., 32588) = 32588
brk(0x56183db46000)                     = 0x56183db46000
read(4, "o interact with Git repositories"..., 32518) = 32518
read(4, "ure: all\nDepends: python-cliff ("..., 32610) = 32610
read(4, "hon3-oslo.utils (>= 3.5.0), pyth"..., 32344) = 32344
read(4, ": pure Python memcached client -"..., 32513) = 32513
read(4, "on-novaclient/python-novaclient-"..., 32235) = 32235
read(4, "c50760b7a6a842288892386638de02f9"..., 32113) = 32113
read(4, " python-webob, python:any (<< 2."..., 32319) = 32319
read(4, "MD5sum: 0da8a763c55ba9820b7c61f1"..., 32259) = 32259
read(4, "4a121deca195b244435f4a8e15b9bbf5"..., 32129) = 32129
read(4, "ize: 882928\nMD5sum: 85b1e4ceef9c"..., 32241) = 32241
read(4, "679c51\nSection: python\nPriority:"..., 32373) = 32373
read(4, "n: Python client for the statsd "..., 32537) = 32537
read(4, "\nVersion: 1.16-1~bpo8+1\nInstalle"..., 32724) = 32724
read(4, "ic support - Python 3.x\nHomepage"..., 32470) = 32470
read(4, "af37\nSHA256: 6b54155f0aa9966cec8"..., 32194) = 32194
read(4, "c++6 (>= 4.1.1)\nDescription: QGI"..., 32089) = 32089
read(4, ".6.0), libtiff5 (>= 4.0.3), libt"..., 31924) = 31924
read(4, "d613997f8f7\nSection: gnu-r\nPrior"..., 32283) = 32283
read(4, "itr\nDescription: general purpose"..., 32367) = 32367
read(4, "talled-Size: 245\nMaintainer: Deb"..., 32717) = 32717
read(4, "escription: bridge between IRC a"..., 32538) = 32538
read(4, "Package: librtlsdr0\nSource: rtl-"..., 32771) = 32771
read(4, "-0 (>= 2.34.0), libgupnp-1.0-4 ("..., 32521) = 32521
read(4, "ority: optional\nFilename: pool/m"..., 32315) = 32315
read(4, ".alioth.debian.org>\nArchitecture"..., 32648) = 32648
read(4, "y/\nDescription-md5: 12402939029a"..., 32518) = 32518
read(4, "i@palmtb.net>\nArchitecture: all\n"..., 32641) = 32641
brk(0x56183db67000)                     = 0x56183db67000
read(4, "subunit\nDescription-md5: 5666fee"..., 32435) = 32435
read(4, "talled-Size: 5011\nMaintainer: To"..., 32711) = 32711
read(4, "\nDescription-md5: b9c8f90653038a"..., 32230) = 32230
read(4, "org>\nArchitecture: all\nDepends: "..., 32608) = 32608
read(4, "socksx, python:any (<< 2.8), pyt"..., 32438) = 32438
read(4, "ibcairo2 (>= 1.2.4), libgdk-pixb"..., 32562) = 32562
read(4, "nual\nDescription: compiled XML d"..., 32522) = 32522
read(4, "6 (<< 1:1.8.4ubuntu1~)\nDepends: "..., 32588) = 32588
read(4, ">= 6:11~beta1) | libavcodec-extr"..., 32557) = 32557
read(4, "5: 7c882e15f9d0575c6dd492ea8fd0d"..., 32280) = 32280
read(4, "et\nPriority: optional\nFilename: "..., 32032) = 18145
read(4, "", 13887)                      = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 3"..., 35) = 35
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: 0ad\nVersion: 0.0.21-2~b"..., 32771) = 32771
write(1, "\rPaketlisten werden gelesen... 3"..., 35) = 35
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-i386_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4425292, ...}) = 0
read(4, "256: 781fda0757aff2511c289c70322"..., 31917) = 31917
read(4, "6.deb\nSize: 4492\nMD5sum: e1379e6"..., 32154) = 32154
read(4, "doc\nSource: augeas\nVersion: 1.8."..., 32755) = 32755
read(4, "l/libball1.4-doc_1.4.3~beta1-3~b"..., 32315) = 32315
read(4, "524fc\nSHA1: d323ada62f1e557051bd"..., 32145) = 32145
read(4, "bc6 (>= 2.4), libflite1 (>= 1.4-"..., 32585) = 32585
read(4, "<bobby.prani@gmail.com>\nArchitec"..., 32658) = 32658
read(4, "9ef58bb0230289efd3c2\nSHA1: aa727"..., 32088) = 32088
read(4, "nemiddleware (>= 4.0.0), python-"..., 32264) = 32264
read(4, "itor/ckbuilder\nBuilt-Using: json"..., 32366) = 32366
read(4, " libcurl3-gnutls (>= 7.16.2), li"..., 32494) = 32494
read(4, "= 0.7.0), libnspr4 (>= 2:4.9-2~)"..., 31563) = 31563
read(4, ".2-3~bpo8+1), libnss3-tools\nDesc"..., 32346) = 32346
read(4, "s://www.cups.org/\nDescription-md"..., 32224) = 32224
read(4, "3f3b16\nSHA256: 3582793374682aa2c"..., 32215) = 32215
read(4, "bbindiff (<< 29)\nDescription: in"..., 31978) = 31978
read(4, " perl, libbz2-1.0, libc6 (>= 2.7"..., 32570) = 32570
read(4, "bdune-common-doc (= 2.4.1-1~bpo8"..., 32289) = 32289
read(4, "59d06b\nSHA1: 839015d382b11cc4b4e"..., 32145) = 32145
read(4, "tributed, RESTful Search Engine "..., 32298) = 32298
read(4, "debian.org>\nArchitecture: i386\nR"..., 32612) = 32612
read(4, "lang (<< 1:19.2.1+dfsg-2~bpo8+1)"..., 32572) = 32572
read(4, " (v4)\nHomepage: http://www.exim."..., 32220) = 32220
read(4, "FLAS-FFPACK Developer Documentat"..., 32550) = 32550
read(4, "hep-graphicsio-pdf-java, libfree"..., 32392) = 32392
read(4, "fec4e905358c503\nSHA1: 5b31ac33a9"..., 32225) = 32225
read(4, "@lists.alioth.debian.org>\nArchit"..., 32636) = 32636
read(4, " webanalytics\nHomepage: https://"..., 32509) = 32509
read(4, "bserver\nSource: gdb\nVersion: 7.1"..., 32760) = 32760
read(4, "(>= 2.3.6-6~), libglib2.0-0 (>= "..., 32493) = 32493
read(4, "bytestring-prof, libghc-bytestri"..., 32321) = 32321
read(4, "led-Size: 2513\nMaintainer: Debia"..., 32695) = 32695
read(4, "33b1aca376b70d5d4a2c3\nSHA256: 68"..., 32175) = 32175
read(4, "10_3.7.10.1-1~bpo8+1_i386.deb\nSi"..., 31943) = 31943
read(4, "Maintainer: pkg-go <pkg-go-maint"..., 32651) = 32651
read(4, "es\nHomepage: https://github.com/"..., 32406) = 32406
read(4, "231b86e72bc82e215966\n\nPackage: g"..., 31817) = 31817
read(4, "age: https://github.com/pkg/erro"..., 32499) = 32499
read(4, "dev/golang-gocapability-dev_0.0~"..., 32367) = 32367
read(4, "2.fa8ad6f-1~bpo8+1), golang-gopr"..., 32188) = 32188
read(4, "a53b8\nSection: libdevel\nPriority"..., 32265) = 32265
read(4, "\nDescription: CLI binding for th"..., 32494) = 32494
read(4, "le, average/UPGMA and complete l"..., 32279) = 32279
read(4, "c92ed8ef286ca1688912453\nSHA1: f0"..., 32121) = 32121
read(4, "-doc\nSource: hplip\nVersion: 3.16"..., 32757) = 32757
read(4, "1\nInstalled-Size: 274\nMaintainer"..., 32709) = 32709
read(4, "0)\nConflicts: python-cjson\nDescr"..., 31136) = 31136
read(4, "0327ce71dcb\nSHA1: 4083f49fc9e51a"..., 32241) = 32241
read(4, "fe2f07c2\nSHA1: d809a907e9b12c210"..., 32250) = 32250
read(4, "//www.kamailio.org/\nDescription-"..., 32415) = 32415
read(4, "sum: 5e29db46739b1c37ada3dc75343"..., 32340) = 32340
read(4, "ython3-yaml\nSuggests: python-kom"..., 32483) = 32483
read(4, "a31fca509f71a27e01992657c58c5c7\n"..., 32118) = 32118
read(4, "b85483478e3c53069ac0ab7901f92999"..., 32250) = 32250
read(4, ": https://metacpan.org/release/C"..., 32494) = 32494
read(4, "6.0-2~bpo8+1\nInstalled-Size: 605"..., 32717) = 32717
read(4, "estfs.org\nDescription-md5: ed6bd"..., 31622) = 31622
read(4, "370fe791683a139d77b\nSHA1: 35196b"..., 32210) = 32210
read(4, "ian.org>\nArchitecture: i386\nDepe"..., 32644) = 32644
read(4, "xinerama1, libxml2 (>= 2.7.4), l"..., 31271) = 31271
read(4, "r: Debian LibreOffice Maintainer"..., 32665) = 32665
read(4, "uggests: hunspell-dictionary-da "..., 32365) = 32365
read(4, "s.debian.org\nHomepage: http://ww"..., 32137) = 32137
read(4, "libreoffice-help-te, mythes-te\nD"..., 32256) = 32256
read(4, "ed-Size: 1067\nMaintainer: Debian"..., 32680) = 32680
read(4, " i386\nDepends: libu2f-host0 (= 1"..., 32576) = 32576
read(4, "aintainers@lists.alioth.debian.o"..., 32663) = 32663
read(4, "onal\nFilename: pool/main/l/linux"..., 32381) = 32381
read(4, ">= 1:1.1.4), python\nBreaks: clan"..., 32405) = 32405
read(4, "\nFilename: pool/main/l/llvm-tool"..., 32178) = 32178
read(4, "b50f3283a9\nSHA256: 6c0fafb685c34"..., 32085) = 32085
read(4, "lled-Size: 6612\nMaintainer: Debi"..., 32703) = 32703
read(4, " python (<< 2.8), python (>= 2.7"..., 32575) = 32575
read(4, "(>= 1.0.81~), schroot (>= 1.6.10"..., 32173) = 32173
read(4, "tainers <pkg-mpd-maintainers@lis"..., 32675) = 32675
read(4, "bqt5xml5 (>= 5.0.2), libqt5xmlpa"..., 31905) = 31905
read(4, "uted with the NCBI toolkit\nMulti"..., 32442) = 32442
read(4, "qlalchemy (>= 1.0.12), python-al"..., 32083) = 32083
read(4, " httpd-cgi, nginx\nDepends: libng"..., 32563) = 32563
read(4, "a7d3d79c8e3b63d9a1cb778f3e7640ec"..., 32143) = 32143
read(4, "6.0), python-novaclient (>= 2:2."..., 32021) = 32021
read(4, "-econometrics (<< 1:1.1.1-2+b3),"..., 31341) = 31341
read(4, "1.0), qemu-system (<< 0.14.0)\nDe"..., 32552) = 32552
read(4, "f4ad93e4913099dfd\nSection: libs\n"..., 32175) = 32175
read(4, "3af214\nSHA256: f6b5301e80acd72d8"..., 32216) = 32216
read(4, "decf309a072c8ba9e234e198751a5ead"..., 32006) = 32006
read(4, "ce2a3381e50b4e44\n\nPackage: pari-"..., 32188) = 32188
read(4, "g <pkg-dns-devel@lists.alioth.de"..., 32656) = 32656
read(4, "nentry packages\nHomepage: https:"..., 32487) = 32487
read(4, "5.3), libqt4-network (>= 4:4.6.1"..., 32468) = 32468
read(4, "okaltog/powerline\nDescription-md"..., 32275) = 32275
read(4, "cription-md5: 55747036137610f392"..., 32386) = 32386
read(4, "n-rfoo\nBreaks: pyfai (<< 0.11.0+"..., 32215) = 32215
read(4, "3e90a23224\nSHA256: fbc4da1ba2634"..., 32134) = 32134
read(4, "3.5), python3-pytest (>= 2.7.0),"..., 32524) = 32524
read(4, "5c9bd0eaf\n\nPackage: certbot\nSour"..., 32040) = 32040
read(4, "cron like format - Python 3.x\nHo"..., 32446) = 32446
read(4, "thon3-babel, python3-django, pyt"..., 32573) = 32573
read(4, "edis\nSource: python-fakeredis\nVe"..., 32749) = 32749
read(4, "2d96045ca34ff2412\nSHA1: 495f1496"..., 32217) = 32217
read(4, "2.8.1), python-six (>= 1.9.0), p"..., 32318) = 32318
read(4, "OpenStack <openstack-devel@lists"..., 32638) = 32638
read(4, "787c5cfa8a064ede8168a6\nSHA1: 82d"..., 32052) = 32052
read(4, "numpy-api10, python3-numpy-dev, "..., 32564) = 32564
read(4, "python-oslo.config/python-oslo-c"..., 32335) = 32335
read(4, "b99c6920968133\nSHA1: 468c86ba7ff"..., 32223) = 32223
read(4, "9c65c0cc324add3901\nSection: pyth"..., 32406) = 32406
read(4, "Source: python-psutil\nVersion: 4"..., 32747) = 32747
read(4, "8), python:any (>= 2.7.5-5~)\nDes"..., 32589) = 32589
read(4, "7b53096d657e225\n\nPackage: python"..., 32091) = 32091
read(4, ": 772db436ab5f6c29d5ee25080e4144"..., 32092) = 32092
read(4, "aca34b886cd0c10efb295d179b\nSecti"..., 32381) = 32381
read(4, "ge: https://github.com/jquery/jq"..., 32410) = 32410
read(4, "ock backend modules for qemu-sys"..., 32232) = 32232
read(4, "SHA256: a8747d011d8175aca98898bb"..., 31293) = 31293
read(4, "682b053fd1b5cb0f17325b2ae8\nSHA25"..., 32231) = 32231
read(4, "escription-md5: e0affec54f9f77d0"..., 32494) = 32494
read(4, "\nPackage: r-cran-yaml\nVersion: 2"..., 31969) = 31969
read(4, "0d10a86ffb376c5bfdef87965dcda\nSe"..., 32374) = 32374
read(4, "eb frontend for routino\nHomepage"..., 32510) = 32510
read(4, "hub.com/toshia/pluggaloid\nDescri"..., 32401) = 32401
read(4, "0516def43e875ab\n\nPackage: python"..., 31954) = 31954
read(4, "n (= 1.0.0-2~bpo8+1), sqlite3, d"..., 32547) = 32547
read(4, "-base (>= 3.2-14), init-system-h"..., 32592) = 32592
read(4, "ah Meyerhans <noahm@debian.org>\n"..., 32690) = 32690
read(4, "Filename: pool/main/s/stevedore/"..., 32298) = 32298
read(4, "er: Olly Betts <olly@survex.com>"..., 32681) = 32681
read(4, "n\nHomepage: http://www.freedeskt"..., 32342) = 32342
read(4, "Filename: pool/main/t/todotxt-cl"..., 32456) = 32456
read(4, "n: python\nPriority: optional\nFil"..., 32365) = 32365
read(4, ".4-1~bpo8+1\nInstalled-Size: 1494"..., 32720) = 32720
read(4, "urce: webkit2gtk\nVersion: 2.16.3"..., 32731) = 32731
read(4, "oth.org/\nDescription-md5: 578246"..., 32409) = 32409
read(4, "5sum: 233bb9096f27e7bdf44c862935"..., 31726) = 31726
read(4, "e Force <debian-x@lists.debian.o"..., 32628) = 32628
read(4, "c2bf28afbbd62d605fdaffb2ef2827f7"..., 32106) = 28494
read(4, "", 3612)                       = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 5"..., 35) = 35
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: 0ad\nDescription-md5: d9"..., 32771) = 32771
write(1, "\rPaketlisten werden gelesen... 5"..., 35) = 35
stat("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
open("/var/lib/apt/lists/ftp.debian.org_debian_dists_jessie-backports_main_i18n_Translation-en", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3346496, ...}) = 0
read(4, "d be independent of the\n overall"..., 32261) = 32261
read(4, "te set of linear algebra kernels"..., 32472) = 32472
read(4, "enhof (Saarland\n University, Saa"..., 32028) = 32028
read(4, "and playback (games). Blender ha"..., 32532) = 32532
read(4, "- static libs and headers\n BRLTT"..., 32644) = 32644
read(4, "onents. The delivery of counters"..., 32411) = 32411
read(4, " operating systems\n and network "..., 32568) = 32568
read(4, " spam detection capabilities.\n\nP"..., 32440) = 32440
read(4, "ollectd\nDescription-md5: 4cab05e"..., 32761) = 32761
read(4, "or the Corosync daemons, utiliti"..., 31926) = 31926
read(4, "iption-en: program that finds an"..., 32701) = 32701
read(4, "ertificate\n authority (letsencry"..., 32529) = 32529
read(4, " module for serializing and\n de-"..., 32615) = 32615
read(4, "ket processing. Applications run"..., 32580) = 32580
read(4, "ports the easy implementation of"..., 32453) = 32453
read(4, "ed ejabberd and Erlang/OTP\n admi"..., 31600) = 31600
read(4, " many parallel calculations, bas"..., 30885) = 30885
read(4, "nts detected within\n the multipl"..., 32011) = 32011
read(4, "en: Library for computing Fast F"..., 32687) = 32687
read(4, "-db-3.0.0\nDescription-md5: fc967"..., 32754) = 32754
read(4, "-netplay-server\nDescription-md5:"..., 32756) = 32756
read(4, " harep: tool for automatically r"..., 32190) = 32190
read(4, "th the normal functions you woul"..., 32605) = 32605
read(4, "x, for example).\n\nPackage: git-a"..., 31832) = 31832
read(4, " the documentation for GMT.\n\nPac"..., 32042) = 32042
read(4, "gnals such as those used for dig"..., 32579) = 32579
read(4, " the crypto/tls package.\n\nPackag"..., 32393) = 32393
read(4, "s are preserved. Comments can be"..., 32172) = 32172
read(4, "to the golang-golang-x-tools\n pa"..., 32584) = 32584
read(4, "ges'.\n .\n \"IQ Bal Optimize\": Thi"..., 32180) = 32180
read(4, "tations\n that identify an implem"..., 32125) = 32125
read(4, "en: Random number generator for "..., 32682) = 32682
read(4, " API is exposed through hpmud. S"..., 31949) = 31949
read(4, "tc/network/interfaces format and"..., 31923) = 31923
read(4, " execution, loops,\n internationa"..., 32471) = 32471
read(4, "s.\n\nPackage: libjs-jquery-galler"..., 32385) = 32385
read(4, "xy server. Written entirely in C"..., 32569) = 32569
read(4, "-player and entertainment hub fo"..., 32545) = 32545
read(4, "ncludes a form designer.\n .\n Unl"..., 32276) = 32276
read(4, "ing from string keys to string v"..., 32541) = 32541
read(4, "ave the library be highly modula"..., 32241) = 32241
read(4, "AP.\n .\n This package provides th"..., 32397) = 32397
read(4, "t doesn't wrap so you'd truncate"..., 32443) = 32443
read(4, "y package to facilitate upgrades"..., 32624) = 32624
read(4, " can\n install extra dictionaries"..., 31933) = 31933
read(4, "patterns/thesauri independently "..., 31888) = 31888
read(4, "possible languages).\n You can sw"..., 32295) = 32295
read(4, "\nPackage: uno-libs3-dbg\nDescript"..., 31836) = 31836
read(4, "tion (VA) API for Linux -- runti"..., 32675) = 32675
read(4, "-armmp, and can be used for buil"..., 32373) = 32373
read(4, "\nDescription-en: Debugging symbo"..., 32691) = 32691
read(4, "code between\n compiler phases an"..., 32349) = 32349
read(4, "ation.  In a dual interpretation"..., 32405) = 32405
read(4, " and serves any desktop or web\n "..., 32499) = 32499
read(4, "ecf9d1cf\nDescription-en: impleme"..., 32700) = 32700
read(4, "ded to support the transition fr"..., 32587) = 32587
read(4, "goals of MySQL are speed, robust"..., 32421) = 32421
read(4, "a.\n\nPackage: libncbi-wvdb-dev\nDe"..., 31989) = 31989
read(4, "ress module is an implementation"..., 32618) = 32618
read(4, "implementation.\n .\n This package"..., 32470) = 32470
read(4, " rapid application development. "..., 32528) = 32528
read(4, "oth message reject and DMARC\n fa"..., 31677) = 31677
read(4, "lly, this package is to be insta"..., 32035) = 32035
read(4, "er necessary files to build\n app"..., 32147) = 32147
read(4, "ntained\n by the SAM/BAM Format S"..., 32400) = 32400
read(4, "using Maximum Likelihood\n PhyML "..., 32666) = 32666
read(4, "LUGIN_PATH.\n .\n pluginhook does "..., 32385) = 32385
read(4, "e.\n .\n PostgreSQL is a fully fea"..., 32525) = 32525
read(4, " a PulseAudio sound server to\n f"..., 32234) = 32234
read(4, " module contains all of the Bina"..., 32623) = 32623
read(4, "orming astrophysics with Python\n"..., 32654) = 32654
read(4, "ble way of calling\n C code from "..., 32484) = 32484
read(4, "ion summarization, are also dist"..., 32180) = 32180
read(4, "a blocking style of programming\n"..., 32450) = 32450
read(4, "tion-md5: 4d342210a936ae7232384a"..., 32735) = 32735
read(4, "to\n the IETF draft specification"..., 32566) = 32566
read(4, "ython reader and an optional C e"..., 32522) = 32522
read(4, "ine Client - doc\n python-opensta"..., 32650) = 32650
read(4, ": transitional dummy package for"..., 32668) = 32668
read(4, "\"binary bytes\" (i.e. unix string"..., 31626) = 31626
read(4, "o maintain than plain-vanilla\n C"..., 32562) = 32562
read(4, ".x module.\n\nPackage: python-scci"..., 32218) = 32218
read(4, "odule - Python 2.7\n This package"..., 32650) = 32650
read(4, "hese files belong to YOUR projec"..., 32284) = 32284
read(4, " Python 3.x module.\n\nPackage: py"..., 31217) = 31217
read(4, "age: qcontrol\nDescription-md5: 2"..., 32767) = 32767
read(4, "r statistical comp. language and"..., 32658) = 32658
read(4, " response module\n classes.\n\nPack"..., 32512) = 32512
read(4, "ation and\n classification of rep"..., 32444) = 32444
read(4, "ntended for meta-genomics or for"..., 32076) = 32076
read(4, "cription-md5: e83cb117edbb0209a7"..., 32739) = 32739
read(4, "ed.  Quick introspection into ru"..., 32354) = 32354
read(4, "(new)\n terminal window.\n\nPackage"..., 32353) = 32353
read(4, "is the client to communicate wit"..., 32637) = 32637
read(4, "ious file and archive\n formats.\n"..., 32480) = 32480
read(4, "multiple hardware devices in the"..., 31967) = 31967
read(4, "\n    o panned windows,\n    o hie"..., 32597) = 32597
read(4, " implementation\n All the code ha"..., 32638) = 32638
read(4, "ctor optimized functions\n Vector"..., 32683) = 32683
read(4, "experience and advance levels, a"..., 32075) = 32075
read(4, " stemming, and simultaneous\n upd"..., 32181) = 32181
read(4, "tly declared and have a dynamic "..., 32164) = 32164
read(4, " guest agents that run in the \"o"..., 32039) = 12623
read(4, "", 19416)                      = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17533, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17533, ...}) = 0
stat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0
geteuid()                               = 0
open("/tmp/fileutl.message.oob5ag", O_RDWR|O_CREAT|O_EXCL, 0600) = 4
unlink("/tmp/fileutl.message.oob5ag")   = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=17533, ...}) = 0
read(5, "-----BEGIN PGP SIGNED MESSAGE---"..., 4096) = 4096
read(5, "dff8595f096f9e368e888           "..., 4096) = 4096
write(4, "Origin: LP-PPA-kvibes-mediaelch\n"..., 4096) = 4096
read(5, "               32 main/debian-in"..., 4096) = 4096
write(4, "n-installer/binary-ppc64el/Packa"..., 4096) = 4096
read(5, "6e6066b9ced5cd8b2d3944f4c0cd6f6a"..., 4096) = 4096
write(4, "m64/Packages.xz\n 33d39a35daaa436"..., 4096) = 4096
read(5, "40b58098cedd35a7dece5d073832ad  "..., 4096) = 1149
write(4, "0c579583               20 main/b"..., 4096) = 4096
read(5, "", 4096)                       = 0
close(5)                                = 0
write(4, "ain/i18n/Translation-en.gz\n 2d84"..., 783) = 783
lseek(4, 0, SEEK_SET)                   = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17533, ...}) = 0
fstat(4, {st_mode=S_IFREG|0600, st_size=17167, ...}) = 0
read(4, "Origin: LP-PPA-kvibes-mediaelch\n"..., 17170) = 17167
read(4, "", 3)                          = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: mediaelch\nPriority: ext"..., 32771) = 1343
read(4, "", 31428)                      = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1343, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: mediaelch\nPriority: ext"..., 32771) = 1340
read(4, "", 31431)                      = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1340, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: mediaelch\nDescription-m"..., 32771) = 446
read(4, "", 32325)                      = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_kvibes_mediaelch_ubuntu_dists_xenial_main_i18n_Translation-en", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=446, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17538, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17538, ...}) = 0
stat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0
geteuid()                               = 0
open("/tmp/fileutl.message.okgCTY", O_RDWR|O_CREAT|O_EXCL, 0600) = 4
unlink("/tmp/fileutl.message.okgCTY")   = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=17538, ...}) = 0
read(5, "-----BEGIN PGP SIGNED MESSAGE---"..., 4096) = 4096
read(5, "a5b03dff8595f096f9e368e888      "..., 4096) = 4096
write(4, "Origin: LP-PPA-nijel-phpmyadmin\n"..., 4096) = 4096
read(5, "c0b10               32 main/debi"..., 4096) = 4096
write(4, "debian-installer/binary-ppc64el/"..., 4096) = 4096
read(5, "743fd20b19d2c8c087e09c7a123d9d22"..., 4096) = 4096
write(4, "ry-arm64/Packages.xz\n 89892054d6"..., 4096) = 4096
read(5, "27ea8443ecd5ffb32cfba2c7f55c9508"..., 4096) = 1154
write(4, "a5bee98ba6c8e              598 m"..., 4096) = 4096
read(5, "", 4096)                       = 0
close(5)                                = 0
write(4, "683 main/i18n/Translation-en.gz\n"..., 788) = 788
lseek(4, 0, SEEK_SET)                   = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=17538, ...}) = 0
fstat(4, {st_mode=S_IFREG|0600, st_size=17172, ...}) = 0
read(4, "Origin: LP-PPA-nijel-phpmyadmin\n"..., 17175) = 17172
read(4, "", 3)                          = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: phpmyadmin\nPriority: ex"..., 32771) = 936
read(4, "", 31835)                      = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-amd64_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: phpmyadmin\nPriority: ex"..., 32771) = 936
read(4, "", 31835)                      = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-i386_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: phpmyadmin\nDescription-"..., 32771) = 1299
read(4, "", 31472)                      = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
open("/var/lib/apt/lists/ppa.launchpad.net_nijel_phpmyadmin_ubuntu_dists_xenial_main_i18n_Translation-en", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1299, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=7877, ...}) = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=7877, ...}) = 0
stat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0
geteuid()                               = 0
open("/tmp/fileutl.message.K5U1CH", O_RDWR|O_CREAT|O_EXCL, 0600) = 4
unlink("/tmp/fileutl.message.K5U1CH")   = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=7877, ...}) = 0
read(5, "-----BEGIN PGP SIGNED MESSAGE---"..., 4096) = 4096
read(5, "/Contents-amd64.gz\n 60a3d4c5c84f"..., 4096) = 3781
write(4, "Origin: Oracle Corporation\nLabel"..., 4096) = 4096
read(5, "", 4096)                       = 0
close(5)                                = 0
write(4, "fa5da3 3877 contrib/Contents-amd"..., 2810) = 2810
lseek(4, 0, SEEK_SET)                   = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_InRelease", {st_mode=S_IFREG|0644, st_size=7877, ...}) = 0
fstat(4, {st_mode=S_IFREG|0600, st_size=6906, ...}) = 0
read(4, "Origin: Oracle Corporation\nLabel"..., 6909) = 6906
read(4, "", 3)                          = 0
close(4)                                = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: virtualbox-5.0\nVersion:"..., 32771) = 3575
read(4, "", 29196)                      = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-amd64_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3575, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
close(4)                                = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: virtualbox-5.0\nVersion:"..., 32771) = 3571
read(4, "", 29200)                      = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
open("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-i386_Packages", O_RDONLY) = 5
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
close(5)                                = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3571, ...}) = 0
close(4)                                = 0
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_binary-all_Packages", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de%5fDE", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-de", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.xz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.bz2", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.lzma", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.gz", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.lz4", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en.uncompressed", 0x7ffe144b1ed0) = -1 ENOENT (No such file or directory)
stat("/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_xenial_contrib_i18n_Translation-en", 0x7ffe144b2020) = -1 ENOENT (No such file or directory)
open("/var/cache/apt/srcpkgcache.bin.u5k5mq", O_RDWR|O_CREAT|O_EXCL, 0600) = 4
umask(0)                                = 022
umask(022)                              = 0
fchmod(4, 0644)                         = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fchmod(4, 0644)                         = 0
write(4, "\334v\376\230\n\7\1\0\210\1\24,@8P\30\24\20\30\30\30V\0\0\264,\0\0RC\0\0"..., 5630374) = 5630374
lseek(4, 0, SEEK_SET)                   = 0
write(4, "\334v\376\230\n\7\0\0\210\1\24,@8P\30\24\20\30\30\30V\0\0\264,\0\0RC\0\0"..., 392) = 392
close(4)                                = 0
rename("/var/cache/apt/srcpkgcache.bin.u5k5mq", "/var/cache/apt/srcpkgcache.bin") = 0
stat("/var/lib/dpkg/status", {st_mode=S_IFREG|0644, st_size=2719350, ...}) = 0
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
open("/var/lib/dpkg/status", O_RDONLY)  = 4
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
read(4, "Package: fonts-sil-abyssinica\nSt"..., 32771) = 32771
write(1, "\rPaketlisten werden gelesen... 8"..., 35) = 35
stat("/var/lib/dpkg/status", {st_mode=S_IFREG|0644, st_size=2719350, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2719350, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2719350, ...}) = 0
brk(0x56183db90000)                     = 0x56183db90000
read(4, "earch.cpan.org/dist/HTML-Tagset/"..., 32153) = 32153
read(4, "lay server running on Linux kern"..., 32135) = 32135
read(4, "629), libwinpr-synch0.1 (>= 1.1."..., 32284) = 32284
read(4, "concurrently.\n .\n This package i"..., 32138) = 32138
read(4, " to a single display to be treat"..., 32192) = 32192
read(4, "he JavaScript script engine for "..., 32151) = 32151
read(4, "te makes it possible to burn DVD"..., 32410) = 32410
read(4, "an.org>\nHomepage: https://metacp"..., 31165) = 31165
read(4, "Description: provides integratio"..., 31702) = 31702
read(4, " them and handling their state. "..., 32314) = 32314
read(4, "k/if-up.d/clamav-freshclam-ifupd"..., 31814) = 31814
read(4, "tes without the need to\n manuall"..., 31195) = 31195
read(4, "/X11/xsm/system.xsm 2f4e2377a286"..., 32372) = 32372
read(4, " secure, efficient and\n extensib"..., 20827) = 20827
read(4, "JavaScript's functional programm"..., 32462) = 32462
read(4, "r: Ubuntu Developers <ubuntu-dev"..., 32647) = 32647
read(4, " 5.0.2), libqt5widgets5 (>= 5.0."..., 32305) = 32305
read(4, "-l10n-kk (<< 4:4.14.0-2), kde-l1"..., 31713) = 31713
read(4, "tu.com>\nArchitecture: amd64\nMult"..., 32597) = 32597
read(4, "ding abstract, devicelink and na"..., 32064) = 32064
read(4, "U/SysV variants)\n    * empty (re"..., 31395) = 31395
read(4, " <ubuntu-devel-discuss@lists.ubu"..., 32627) = 32627
read(4, "(<< 0.3.2)\nConffiles:\n /etc/init"..., 32066) = 32066
read(4, " (>= 1:4.1.1), libstdc++6 (>= 4."..., 32517) = 32517
read(4, "(>= 1:3.0), libpython3.5 (>= 3.5"..., 32458) = 32458
read(4, "\nVersion: 0.23.2-5~ubuntu16.04.1"..., 32586) = 32586
brk(0x56183dbb1000)                     = 0x56183dbb1000
read(4, "dev (<< 136-1)\nEnhances: printer"..., 32227) = 32227
read(4, "o on.\n .\n This package contains "..., 32251) = 32251
read(4, "ard, kwin, kwrited, okular, oxyg"..., 32398) = 32398
read(4, "erty lists format. It's part of "..., 32337) = 32337
read(4, "untu Developers <ubuntu-devel-di"..., 32653) = 32653
read(4, "(>= 4:4.3.4), libkio5 (>= 4:4.3."..., 32284) = 32284
read(4, "er: Debian Multimedia Maintainer"..., 32076) = 32076
read(4, "1-publish and module-x11-bell.\nH"..., 31829) = 31829
read(4, "2.15)\nDescription: pipeline mani"..., 32527) = 32527
read(4, ".7), libisc160 (= 1:9.10.3.dfsg."..., 32385) = 32385
read(4, "9-3), hunspell-fr (<< 1:3.1.0-3)"..., 30840) = 30840
read(4, "defguide\nConffiles:\n /etc/sgml/d"..., 32391) = 32391
read(4, "librados2 (>= 0.72.2), librbd1 ("..., 32401) = 32401
read(4, " created for the Omega\n (Unicode"..., 32106) = 32106
read(4, "but handled by the postinst inst"..., 31563) = 31563
read(4, "on framework. Qt's primary featu"..., 32235) = 32235
read(4, "Section: libs\nInstalled-Size: 34"..., 32700) = 32700
read(4, "\nMulti-Arch: same\nSource: cups\nV"..., 32578) = 32578
read(4, "\n and OpenGL settings can be que"..., 31492) = 31492
read(4, "t. Perl 5 runs on over 100 platf"..., 31976) = 31976
read(4, "epage: https://metacpan.org/rele"..., 32070) = 32070
read(4, "lioth.debian.org>\nHomepage: http"..., 31764) = 31764
read(4, "ontacts\n KContacts is an API for"..., 32476) = 32476
read(4, "bindings for gobject-introspecti"..., 32195) = 32195
read(4, "[default]\n This package provides"..., 32461) = 32461
read(4, "-utils (<< 2.88dsf-59.3~)\nConfli"..., 32390) = 32390
read(4, "\n This package contains the shar"..., 32173) = 32173
read(4, "= 4.96.0), libkf5windowsystem5 ("..., 32246) = 32246
read(4, ".4.0)\nRecommends: kde-style-qtcu"..., 32281) = 32281
brk(0x56183dbd2000)                     = 0x56183dbd2000
read(4, " installed\nPriority: optional\nSe"..., 32727) = 32727
read(4, "gnu.org/projects/sysvinit\nOrigin"..., 32042) = 32042
read(4, "ainer: Debian Multimedia Maintai"..., 31853) = 31853
read(4, "aces: qpdfview-languages\nDepends"..., 32526) = 32526
read(4, "rom GHNS is supported.\n .\n This "..., 31947) = 31947
brk(0x56183dc15000)                     = 0x56183dc15000
read(4, "ng\n files, pipes, and pseudo-tty"..., 32418) = 32418
read(4, "version of the UNIX editor Vi.\n "..., 32126) = 32126
read(4, " amd64\nMulti-Arch: same\nSource: "..., 32579) = 32579
read(4, "ional\nSection: net\nInstalled-Siz"..., 32707) = 32707
read(4, "u-devel-discuss@lists.ubuntu.com"..., 32633) = 32633
read(4, "KDE Maintainers <debian-qt-kde@l"..., 32180) = 32180
read(4, "ibraries. These experimental lib"..., 32098) = 32098
read(4, " installed\nPriority: optional\nSe"..., 32736) = 32736
read(4, "nd vice versa\n  Ability to defin"..., 30979) = 30979
read(4, "ge: http://savannah.gnu.org/proj"..., 31774) = 31774
read(4, "r VLC\n VLC is the VideoLAN proje"..., 32282) = 32282
read(4, "r: Debian Cyrus SASL Team <pkg-c"..., 31862) = 31862
read(4, "1.2.0)\nBreaks: mysql-client-core"..., 32202) = 32202
read(4, "90), libktplogger9 (>= 15.04.2),"..., 32246) = 32246
read(4, "r <anibal@debian.org>\nHomepage: "..., 32195) = 32195
read(4, "itecture: amd64\nVersion: 3.0pl1-"..., 32599) = 32599
read(4, " or context-free\n grammars in Ba"..., 32283) = 32283
read(4, ":4.14.16-0ubuntu3.2), libkjsapi4"..., 32467) = 32467
read(4, "26)\nDescription: Heimdal Kerbero"..., 32299) = 32299
read(4, "d in graphics applications such "..., 31892) = 31892
read(4, ">= 1.9.1-2.4)\nDescription: TagLi"..., 32449) = 32449
read(4, "untu-devel-discuss@lists.ubuntu."..., 32634) = 32634
read(4, "t\n Printing Protocol (IPP), and "..., 32125) = 32125
read(4, "ssage bodies, and header informa"..., 32060) = 26125
read(4, "", 5935)                       = 0
close(4)                                = 0
open("/var/cache/apt/pkgcache.bin.wGyIk9", O_RDWR|O_CREAT|O_EXCL, 0600) = 4
umask(0)                                = 022
umask(022)                              = 0
fchmod(4, 0644)                         = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fchmod(4, 0644)                         = 0
write(4, "\334v\376\230\n\7\1\0\210\1\24,@8P\30\24\20\30\30\30V\0\0n9\0\0\27P\0\0"..., 7079517) = 7079517
lseek(4, 0, SEEK_SET)                   = 0
write(4, "\334v\376\230\n\7\0\0\210\1\24,@8P\30\24\20\30\30\30V\0\0n9\0\0\27P\0\0"..., 392) = 392
close(4)                                = 0
rename("/var/cache/apt/pkgcache.bin.wGyIk9", "/var/cache/apt/pkgcache.bin") = 0
write(1, "\rPaketlisten werden gelesen... F"..., 38) = 38
write(1, "\n", 1)                       = 1
pipe([4, 5])                            = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f65922fda10) = 62156
close(5)                                = 0
fcntl(4, F_GETFL)                       = 0 (flags O_RDONLY)
fstat(4, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
read(4, "i386\n", 4096)                 = 5
read(4, "", 4096)                       = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=62156, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
close(4)                                = 0
wait4(62156, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 62156
munmap(0x7f658ddbd000, 25165824)        = 0
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Packages (main/binary-amd"..., 143) = 143
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Packages (main/binary-i38"..., 142) = 142
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Packages (main/binary-all"..., 141) = 141
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Translations (main/i18n/T"..., 148) = 148
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Translations (main/i18n/T"..., 145) = 145
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Translations (main/i18n/T"..., 145) = 145
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target DEP-11 (main/dep11/Compon"..., 146) = 146
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target DEP-11-icons (main/dep11/"..., 147) = 147
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Fehlschlag beim Holen von http:/"..., 128) = 128
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Fehlschlag beim Holen von https:"..., 137) = 137
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Fehlschlag beim Holen von http:/"..., 137) = 137
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Fehlschlag beim Holen von http:/"..., 249) = 249
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Fehlschlag beim Holen von http:/"..., 152) = 152
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Fehlschlag beim Holen von http:/"..., 152) = 152
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Fehlschlag beim Holen von http:/"..., 158) = 158
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Einige Indexdateien konnten nich"..., 113) = 113
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Packages (main/binary-amd"..., 143) = 143
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Packages (main/binary-i38"..., 142) = 142
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Packages (main/binary-all"..., 141) = 141
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Translations (main/i18n/T"..., 148) = 148
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Translations (main/i18n/T"..., 145) = 145
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target Translations (main/i18n/T"..., 145) = 145
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target DEP-11 (main/dep11/Compon"..., 146) = 146
write(2, "\n", 1)                       = 1
write(2, "W", 1)                        = 1
write(2, ": ", 2)                       = 2
write(2, "Target DEP-11-icons (main/dep11/"..., 147) = 147
write(2, "\n", 1)                       = 1
brk(0x56183db01000)                     = 0x56183db01000
close(3)                                = 0
exit_group(0)                           = ?
+++ exited with 0 +++