ubuntuusers.de

dpkg -l

Autor:
Hanisch
Datum:
28. April 2020 08:57
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
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
Gewünscht=Unbekannt/Installieren/R=Entfernen/P=Vollständig Löschen/Halten
| Status=Nicht/Installiert/Config/U=Entpackt/halb konFiguriert/
         Halb installiert/Trigger erWartet/Trigger anhängig
|/ Fehler?=(kein)/R=Neuinstallation notwendig (Status, Fehler: GROSS=schlecht)
||/ Name                                          Version                                     Architektur  Beschreibung
+++-=============================================-===========================================-============-======================================================================================================
ii  accountsservice                               0.6.55-0ubuntu11                            amd64        query and manipulate user account information
ii  accountwizard                                 4:19.12.3-0ubuntu1                          amd64        wizard for KDE PIM applications account setup
ii  acl                                           2.2.53-6                                    amd64        access control list - utilities
ii  acpi-support                                  0.143                                       amd64        scripts for handling many ACPI events
ii  acpid                                         1:2.0.32-1ubuntu1                           amd64        Advanced Configuration and Power Interface event daemon
ii  adduser                                       3.118ubuntu2                                all          add and remove users and groups
ii  adwaita-icon-theme                            3.36.0-1ubuntu1                             all          default icon theme of GNOME (small subset)
ii  akonadi-backend-mysql                         4:19.12.3-0ubuntu2                          all          MySQL storage backend for Akonadi
ii  akonadi-server                                4:19.12.3-0ubuntu2                          amd64        Akonadi PIM storage service
ii  alsa-base                                     1.0.25+dfsg-0ubuntu5                        all          ALSA driver configuration files
ii  alsa-topology-conf                            1.2.2-1                                     all          ALSA topology configuration files
ii  alsa-ucm-conf                                 1.2.2-1                                     all          ALSA Use Case Manager configuration files
ii  alsa-utils                                    1.2.2-1ubuntu1                              amd64        Utilities for configuring and using ALSA
ii  amd64-microcode                               3.20191218.1ubuntu1                         amd64        Processor microcode firmware for AMD CPUs
ii  anacron                                       2.3-29                                      amd64        cron-like program that doesn't go by time
ii  apg                                           2.2.3.dfsg.1-5                              amd64        Automated Password Generator - Standalone version
ii  apparmor                                      2.13.3-7ubuntu5                             amd64        user-space parser utility for AppArmor
ii  appmenu-gtk-module-common                     0.7.3-2                                     all          Common files for GtkMenuShell D-Bus exporter
ii  appmenu-gtk3-module:amd64                     0.7.3-2                                     amd64        GtkMenuShell D-Bus exporter (GTK+3.0)
ii  apport                                        2.20.11-0ubuntu27                           all          automatically generate crash reports for debugging
ii  apport-kde                                    2.20.11-0ubuntu27                           all          KDE frontend for the apport crash report system
ii  apport-symptoms                               0.23                                        all          symptom scripts for apport
ii  appstream                                     0.12.10-2                                   amd64        Software component metadata management
ii  apt                                           2.0.2                                       amd64        commandline package manager
ii  apt-config-icons                              0.12.10-2                                   all          APT configuration snippet to enable icon downloads
ii  apt-config-icons-hidpi                        0.12.10-2                                   all          APT configuration snippet to enable HiDPI icon downloads
ii  apt-config-icons-large                        0.12.10-2                                   all          APT configuration snippet to enable large icon downloads
ii  apt-config-icons-large-hidpi                  0.12.10-2                                   all          APT configuration snippet to enable large HiDPI icon downloads
ii  apt-utils                                     2.0.2                                       amd64        package management related utility programs
ii  apt-xapian-index                              0.51ubuntu1                                 all          maintenance and search tools for a Xapian index of Debian packages
ii  aptdaemon                                     1.1.1+bzr982-0ubuntu32                      all          transaction based package management service
ii  aptdaemon-data                                1.1.1+bzr982-0ubuntu32                      all          data files for clients
ii  ark                                           4:19.12.3-0ubuntu1                          amd64        archive utility
ii  aspell                                        0.60.8-1build1                              amd64        GNU Aspell spell-checker
ii  aspell-en                                     2018.04.16-0-1                              all          English dictionary for GNU Aspell
ii  at-spi2-core                                  2.36.0-2                                    amd64        Assistive Technology Service Provider Interface (dbus core)
ii  attr                                          1:2.4.48-5                                  amd64        utilities for manipulating filesystem extended attributes
ii  audacious                                     3.10.1-1build1                              amd64        small and fast audio player which supports lots of formats
ii  audacious-plugins:amd64                       3.10.1-1build2                              amd64        Base plugins for audacious
ii  audacious-plugins-data                        3.10.1-1build2                              all          Data files for Audacious plugins
ii  avahi-autoipd                                 0.7-4ubuntu7                                amd64        Avahi IPv4LL network address configuration daemon
ii  avahi-daemon                                  0.7-4ubuntu7                                amd64        Avahi mDNS/DNS-SD daemon
ii  avahi-utils                                   0.7-4ubuntu7                                amd64        Avahi browsing, publishing and discovery utilities
ii  baloo-kf5                                     5.68.0-0ubuntu1                             amd64        framework for searching and managing metadata
ii  base-files                                    11ubuntu5                                   amd64        Debian base system miscellaneous files
ii  base-passwd                                   3.5.47                                      amd64        Debian base system master password and group files
ii  bash                                          5.0-6ubuntu1                                amd64        GNU Bourne Again SHell
ii  bash-completion                               1:2.10-1ubuntu1                             all          programmable completion for the bash shell
ii  bc                                            1.07.1-2build1                              amd64        GNU bc arbitrary precision calculator language
ii  bind9-dnsutils                                1:9.16.1-0ubuntu2                           amd64        Clients provided with BIND 9
ii  bind9-host                                    1:9.16.1-0ubuntu2                           amd64        DNS Lookup Utility
ii  bind9-libs:amd64                              1:9.16.1-0ubuntu2                           amd64        Shared Libraries used by BIND 9
ii  binutils                                      2.34-6ubuntu1                               amd64        GNU assembler, linker and binary utilities
ii  binutils-common:amd64                         2.34-6ubuntu1                               amd64        Common files for the GNU assembler, linker and binary utilities
ii  binutils-x86-64-linux-gnu                     2.34-6ubuntu1                               amd64        GNU binary utilities, for x86-64-linux-gnu target
ii  bluedevil                                     4:5.18.4.1-0ubuntu1                         amd64        KDE Bluetooth stack
ii  bluez                                         5.53-0ubuntu3                               amd64        Bluetooth tools and daemons
ii  bluez-cups                                    5.53-0ubuntu3                               amd64        Bluetooth printer driver for CUPS
ii  bluez-obexd                                   5.53-0ubuntu3                               amd64        bluez obex daemon
ii  bolt                                          0.8-4                                       amd64        system daemon to manage thunderbolt 3 devices
ii  brasero                                       3.12.2-6ubuntu1                             amd64        CD/DVD burning application for GNOME
ii  brasero-cdrkit:amd64                          3.12.2-6ubuntu1                             amd64        cdrkit extensions for the Brasero burning application
ii  brasero-common                                3.12.2-6ubuntu1                             all          Common files for the Brasero CD burning application and library
ii  breeze                                        4:5.18.4.1-0ubuntu1                         amd64        Default Plasma theme (meta-package).
ii  breeze-cursor-theme                           4:5.18.4.1-0ubuntu1                         all          Default Plasma cursor theme.
ii  breeze-gtk-theme                              5.18.4.1-0ubuntu1                           amd64        GTK theme built to match KDE's Breeze
ii  breeze-icon-theme                             4:5.68.0-0ubuntu1                           all          Default Plasma icon theme
ii  bsdmainutils                                  11.1.2ubuntu3                               amd64        collection of more utilities from FreeBSD
ii  bsdutils                                      1:2.34-0.1ubuntu9                           amd64        basic utilities from 4.4BSD-Lite
ii  bubblewrap                                    0.4.0-1ubuntu4                              amd64        setuid wrapper for unprivileged chroot and namespace manipulation
ii  build-essential                               12.8ubuntu1                                 amd64        Informational list of build-essential packages
ii  busybox-initramfs                             1:1.30.1-4ubuntu6                           amd64        Standalone shell setup for initramfs
ii  busybox-static                                1:1.30.1-4ubuntu6                           amd64        Standalone rescue shell with tons of builtin utilities
ii  bzip2                                         1.0.8-2                                     amd64        high-quality block-sorting file compressor - utilities
ii  ca-certificates                               20190110ubuntu1                             all          Common CA certificates
ii  ca-certificates-java                          20190405ubuntu1                             all          Common CA certificates (JKS keystore)
ii  catdoc                                        1:0.95-4.1                                  amd64        text extractor for MS-Office files
ii  cdparanoia                                    3.10.2+debian-13                            amd64        audio extraction tool for sampling CDs
ii  cdrdao                                        1:1.2.4-1build1                             amd64        records CDs in Disk-At-Once (DAO) mode
ii  cdrskin                                       1.5.2-1                                     amd64        command line CD/DVD/BD writing tool
ii  cheese                                        3.34.0-1build1                              amd64        tool to take pictures and videos from your webcam
ii  cheese-common                                 3.34.0-1build1                              all          Common files for the Cheese tool to take pictures and videos
ii  chrome-gnome-shell                            10.1-5                                      all          GNOME Shell extensions integration for web browsers
ii  chromium-codecs-ffmpeg-extra                  80.0.3987.163-0ubuntu1                      amd64        Transitional package - chromium-codecs-ffmpeg-extra -> chromium-ffmpeg snap
ii  colord                                        1.4.4-2                                     amd64        system service to manage device colour profiles -- system daemon
ii  colord-data                                   1.4.4-2                                     all          system service to manage device colour profiles -- data files
ii  command-not-found                             20.04.2                                     all          Suggest installation of packages in interactive bash sessions
ii  compiz                                        1:0.9.14.1+20.04.20200211-0ubuntu1          all          OpenGL window and compositing manager
ii  compiz-core                                   1:0.9.14.1+20.04.20200211-0ubuntu1          amd64        OpenGL window and compositing manager
ii  compiz-gnome                                  1:0.9.14.1+20.04.20200211-0ubuntu1          amd64        OpenGL window and compositing manager - GNOME window decorator
ii  compiz-plugins:amd64                          1:0.9.14.1+20.04.20200211-0ubuntu1          amd64        OpenGL window and compositing manager - plugins
ii  compiz-plugins-default:amd64                  1:0.9.14.1+20.04.20200211-0ubuntu1          amd64        OpenGL window and compositing manager - default plugins
ii  compiz-plugins-extra                          1:0.9.14.1+20.04.20200211-0ubuntu1          all          transitional dummy package
ii  compizconfig-settings-manager                 1:0.9.14.1+20.04.20200211-0ubuntu1          all          Compiz configuration settings manager
ii  console-setup                                 1.194ubuntu3                                all          console font and keymap setup program
ii  console-setup-linux                           1.194ubuntu3                                all          Linux specific part of console-setup
ii  coreutils                                     8.30-3ubuntu2                               amd64        GNU core utilities
ii  cpio                                          2.13+dfsg-2                                 amd64        GNU cpio -- a program to manage archives of files
ii  cpp                                           4:9.3.0-1ubuntu2                            amd64        GNU C preprocessor (cpp)
ii  cpp-8                                         8.4.0-3ubuntu2                              amd64        GNU C preprocessor
ii  cpp-9                                         9.3.0-10ubuntu2                             amd64        GNU C preprocessor
ii  cracklib-runtime                              2.9.6-3.2                                   amd64        runtime support for password checker library cracklib2
ii  crda                                          3.18-1build1                                amd64        wireless Central Regulatory Domain Agent
ii  cron                                          3.0pl1-136ubuntu1                           amd64        process scheduling daemon
ii  cryfs                                         0.10.2-3build1                              amd64        encrypt your files and store them in the cloud
ii  cryptsetup                                    2:2.2.2-3ubuntu2                            amd64        disk encryption support - startup scripts
ii  cryptsetup-bin                                2:2.2.2-3ubuntu2                            amd64        disk encryption support - command line tools
ii  cryptsetup-initramfs                          2:2.2.2-3ubuntu2                            all          disk encryption support - initramfs integration
ii  cryptsetup-run                                2:2.2.2-3ubuntu2                            all          transitional dummy package for cryptsetup
ii  cups                                          2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - PPD/driver support, web interface
ii  cups-browsed                                  1.27.4-1                                    amd64        OpenPrinting CUPS Filters - cups-browsed
ii  cups-bsd                                      2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - BSD commands
ii  cups-client                                   2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - client programs (SysV)
ii  cups-common                                   2.3.1-9ubuntu1.1                            all          Common UNIX Printing System(tm) - common files
ii  cups-core-drivers                             2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - driverless printing
ii  cups-daemon                                   2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - daemon
ii  cups-filters                                  1.27.4-1                                    amd64        OpenPrinting CUPS Filters - Main Package
ii  cups-filters-core-drivers                     1.27.4-1                                    amd64        OpenPrinting CUPS Filters - Driverless printing
ii  cups-ipp-utils                                2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - IPP developer/admin utilities
ii  cups-pk-helper                                0.2.6-1ubuntu3                              amd64        PolicyKit helper to configure cups with fine-grained privileges
ii  cups-ppdc                                     2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - PPD manipulation utilities
ii  cups-server-common                            2.3.1-9ubuntu1.1                            all          Common UNIX Printing System(tm) - server common files
ii  dash                                          0.5.10.2-6                                  amd64        POSIX-compliant shell
ii  dbus                                          1.12.16-2ubuntu2                            amd64        simple interprocess messaging system (daemon and utilities)
ii  dbus-user-session                             1.12.16-2ubuntu2                            amd64        simple interprocess messaging system (systemd --user integration)
ii  dbus-x11                                      1.12.16-2ubuntu2                            amd64        simple interprocess messaging system (X11 deps)
ii  dc                                            1.07.1-2build1                              amd64        GNU dc arbitrary precision reverse-polish calculator
ii  dconf-cli                                     0.36.0-1                                    amd64        simple configuration storage system - utilities
ii  dconf-gsettings-backend:amd64                 0.36.0-1                                    amd64        simple configuration storage system - GSettings back-end
ii  dconf-service                                 0.36.0-1                                    amd64        simple configuration storage system - D-Bus service
ii  debconf                                       1.5.73                                      all          Debian configuration management system
ii  debconf-i18n                                  1.5.73                                      all          full internationalization support for debconf
ii  debconf-kde-data                              1.0.3-3                                     all          Debconf KDE data files
ii  debconf-kde-helper                            1.0.3-3                                     amd64        Debconf KDE GUI frontend tool
ii  debianutils                                   4.9.1                                       amd64        Miscellaneous utilities specific to Debian
ii  default-jre                                   2:1.11-72                                   amd64        Standard Java or Java compatible Runtime
ii  default-jre-headless                          2:1.11-72                                   amd64        Standard Java or Java compatible Runtime (headless)
ii  desktop-base                                  10.0.3ubuntu1                               all          common files for the Debian Desktop
ii  desktop-file-utils                            0.24-1ubuntu2                               amd64        Utilities for .desktop files
ii  dictionaries-common                           1.28.1                                      all          spelling dictionaries - common utilities
ii  diffutils                                     1:3.7-3                                     amd64        File comparison utilities
ii  ding                                          1.8.1-8                                     all          Graphical dictionary lookup program for Unix (Tk)
ii  dirmngr                                       2.2.19-3ubuntu2                             amd64        GNU privacy guard - network certificate management service
ii  distro-info-data                              0.43ubuntu1.1                               all          information about the distributions' releases (data files)
ii  dkms                                          2.8.1-5ubuntu1                              all          Dynamic Kernel Module Support Framework
ii  dmidecode                                     3.2-3                                       amd64        SMBIOS/DMI table decoder
ii  dmsetup                                       2:1.02.167-1ubuntu1                         amd64        Linux Kernel Device Mapper userspace library
ii  dns-root-data                                 2019052802                                  all          DNS root data including root zone and DNSSEC key
ii  dnsmasq-base                                  2.80-1.1ubuntu1                             amd64        Small caching DNS proxy and DHCP/TFTP server
ii  dnsutils                                      1:9.16.1-0ubuntu2                           all          Transitional package for bind9-dnsutils
ii  docbook-xml                                   4.5-9                                       all          standard XML documentation system for software and systems
ii  docbook-xsl                                   1.79.1+dfsg-2                               all          stylesheets for processing DocBook XML to various output formats
ii  dolphin                                       4:19.12.3-0ubuntu1                          amd64        file manager
ii  dosfstools                                    4.1-2                                       amd64        utilities for making and checking MS-DOS FAT filesystems
ii  dpkg                                          1.19.7ubuntu3                               amd64        Debian package management system
ii  dpkg-dev                                      1.19.7ubuntu3                               all          Debian package development tools
ii  drkonqi                                       5.18.4.1-0ubuntu1                           amd64        Crash handler for Qt applications
ii  dvd+rw-tools                                  7.1-14build1                                amd64        DVD+-RW/R tools
ii  dvdauthor                                     0.7.2-1build1                               amd64        create DVD-Video file system
ii  e2fsprogs                                     1.45.5-2ubuntu1                             amd64        ext2/ext3/ext4 file system utilities
ii  ed                                            1.16-1                                      amd64        classic UNIX line editor
ii  eject                                         2.1.5+deb1+cvs20081104-14                   amd64        ejects CDs and operates CD-Changers under Linux
ii  elisa                                         19.12.3-1                                   amd64        Simple music player with a focus on Plasma desktop integration and privacy
ii  emacsen-common                                3.0.4                                       all          Common facilities for all emacsen
ii  encfs                                         1.9.5-1build2                               amd64        encrypted virtual filesystem
ii  enchant-2                                     2.2.8-1                                     amd64        Wrapper for various spell checker engines (binary programs)
ii  evince                                        3.36.0-2                                    amd64        Document (PostScript, PDF) viewer
ii  evince-common                                 3.36.0-2                                    all          Document (PostScript, PDF) viewer - common files
ii  evolution-data-server                         3.36.1-2                                    amd64        evolution database backend server
ii  evolution-data-server-common                  3.36.1-2                                    all          architecture independent files for Evolution Data Server
ii  fakeroot                                      1.24-1                                      amd64        tool for simulating superuser privileges
ii  fdisk                                         2.34-0.1ubuntu9                             amd64        collection of partitioning utilities
ii  feathernotes                                  0.5.1-1build1                               amd64        Hierarchical notes-manager (binaries)
ii  feathernotes-l10n                             0.5.1-1build1                               all          Hierarchical notes-manager (localization)
ii  featherpad                                    0.12.1-1build1                              amd64        Lightweight Qt5 plain-text editor
ii  featherpad-l10n                               0.12.1-1build1                              all          Language package for featherpad
ii  ffmpeg                                        7:4.2.2-1ubuntu1                            amd64        Tools for transcoding, streaming and playing of multimedia files
ii  ffmpegthumbnailer                             2.1.1-0.2build2                             amd64        fast and lightweight video thumbnailer
ii  ffmpegthumbs                                  4:19.12.3-0ubuntu1                          amd64        video thumbnail generator using ffmpeg
ii  file                                          1:5.38-4                                    amd64        Recognize the type of data in a file using "magic" numbers
ii  findutils                                     4.7.0-1ubuntu1                              amd64        utilities for finding files--find, xargs
ii  firefox                                       75.0+build3-0ubuntu1                        amd64        Safe and easy web browser from Mozilla
ii  firefox-locale-de                             75.0+build3-0ubuntu1                        amd64        German language pack for Firefox
ii  firefox-locale-en                             75.0+build3-0ubuntu1                        amd64        English language pack for Firefox
ii  fluid-soundfont-gm                            3.1-5.1                                     all          Fluid (R3) General MIDI SoundFont (GM)
ii  fluidsynth                                    2.1.1-2                                     amd64        Real-time MIDI software synthesizer
ii  flvstreamer                                   2.1c1-1build1                               amd64        command-line RTMP client
ii  fontconfig                                    2.13.1-2ubuntu3                             amd64        generic font configuration library - support binaries
ii  fontconfig-config                             2.13.1-2ubuntu3                             all          generic font configuration library - configuration
ii  fonts-beng                                    2:1.2                                       all          Metapackage to install Bengali and Assamese fonts
ii  fonts-beng-extra                              1.0-7                                       all          TrueType fonts for Bengali language
ii  fonts-dejavu-core                             2.37-1                                      all          Vera font family derivate with additional characters
ii  fonts-dejavu-extra                            2.37-1                                      all          Vera font family derivate with additional characters (extra variants)
ii  fonts-deva                                    2:1.2                                       all          Meta package to install all Devanagari fonts
ii  fonts-deva-extra                              3.0-5                                       all          Free fonts for Devanagari script
ii  fonts-droid-fallback                          1:6.0.1r16-1.1                              all          handheld device font with extensive style and language support (fallback)
ii  fonts-freefont-ttf                            20120503-10                                 all          Freefont Serif, Sans and Mono Truetype fonts
ii  fonts-gargi                                   2.0-4                                       all          OpenType Devanagari font
ii  fonts-gubbi                                   1.3-3                                       all          Gubbi free font for Kannada script
ii  fonts-gujr                                    2:1.3                                       all          Meta package to install all Gujarati fonts
ii  fonts-gujr-extra                              1.0.1-1                                     all          Free fonts for Gujarati script
ii  fonts-guru                                    2:1.2                                       all          Meta package to install all Punjabi fonts
ii  fonts-guru-extra                              2.0-5                                       all          Free fonts for Punjabi language
ii  fonts-hack                                    3.003-3                                     all          Typeface designed for source code
ii  fonts-indic                                   2:1.3                                       all          Meta package to install all Indian language fonts
ii  fonts-kacst                                   2.01+mry-14                                 all          KACST free TrueType Arabic fonts
ii  fonts-kacst-one                               5.0+svn11846-10                             all          TrueType font designed for Arabic language
ii  fonts-kalapi                                  1.0-3                                       all          Kalapi Gujarati Unicode font
ii  fonts-khmeros-core                            5.0-7ubuntu1                                all          KhmerOS Unicode fonts for the Khmer language of Cambodia
ii  fonts-knda                                    2:1.2                                       all          Meta package for Kannada fonts
ii  fonts-lao                                     0.0.20060226-9ubuntu1                       all          TrueType font for Lao language
ii  fonts-liberation                              1:1.07.4-11                                 all          Fonts with the same metrics as Times, Arial and Courier
ii  fonts-liberation2                             2.1.0-1                                     all          Fonts with the same metrics as Times, Arial and Courier (v2)
ii  fonts-lklug-sinhala                           0.6-3                                       all          Unicode Sinhala font by Lanka Linux User Group
ii  fonts-lohit-beng-assamese                     2.91.5-1                                    all          Lohit TrueType font for Assamese Language
ii  fonts-lohit-beng-bengali                      2.91.5-1                                    all          Lohit TrueType font for Bengali Language
ii  fonts-lohit-deva                              2.95.4-4                                    all          Lohit TrueType font for Devanagari script
ii  fonts-lohit-gujr                              2.92.4-4                                    all          Lohit TrueType font for Gujarati Language
ii  fonts-lohit-guru                              2.91.2-1                                    all          Lohit TrueType font for Punjabi Language
ii  fonts-lohit-knda                              2.5.4-2                                     all          Lohit TrueType font for Kannada Language
ii  fonts-lohit-mlym                              2.92.2-1                                    all          Lohit TrueType font for Malayalam Language
ii  fonts-lohit-orya                              2.91.2-1                                    all          Lohit TrueType font for Oriya Language
ii  fonts-lohit-taml                              2.91.3-1                                    all          Lohit TrueType font for Tamil Language
ii  fonts-lohit-taml-classical                    2.5.4-1                                     all          Lohit Tamil TrueType fonts for Tamil script
ii  fonts-lohit-telu                              2.5.5-1                                     all          Lohit TrueType font for Telugu Language
ii  fonts-mlym                                    2:1.2                                       all          Meta package to install all Malayalam fonts
ii  fonts-nakula                                  1.0-3                                       all          Free Unicode compliant Devanagari font
ii  fonts-navilu                                  1.2-2                                       all          Handwriting font for Kannada
ii  fonts-noto-cjk                                1:20190410+repack1-2                        all          "No Tofu" font families with large Unicode coverage (CJK regular and bold)
ii  fonts-noto-color-emoji                        0~20200408-1                                all          color emoji font from Google
ii  fonts-noto-core                               20200323-1                                  all          "No Tofu" font families with large Unicode coverage (core)
ii  fonts-noto-hinted                             20200323-1                                  all          obsolete metapackage to pull in a subset of Noto fonts
ii  fonts-noto-mono                               20200323-1                                  all          "No Tofu" monospaced font family with large Unicode coverage
ii  fonts-noto-ui-core                            20200323-1                                  all          "No Tofu" font families with large Unicode coverage (UI core)
ii  fonts-noto-unhinted                           20200323-1                                  all          "No Tofu" font families with large Unicode coverage (unhinted)
ii  fonts-opensymbol                              2:102.11+LibO6.4.2-0ubuntu3                 all          OpenSymbol TrueType font
ii  fonts-orya                                    2:1.2                                       all          Meta package to install all Oriya fonts
ii  fonts-orya-extra                              2.0-6                                       all          Free fonts for Odia script
ii  fonts-pagul                                   1.0-7                                       all          Free TrueType font for the Sourashtra language
ii  fonts-quicksand                               0.2016-2                                    all          sans-serif font with round attributes
ii  fonts-sahadeva                                1.0-4                                       all          Free Unicode compliant Devanagari font
ii  fonts-samyak-deva                             1.2.2-4                                     all          Samyak TrueType font for Devanagari script
ii  fonts-samyak-gujr                             1.2.2-4                                     all          Samyak TrueType font for Gujarati language
ii  fonts-samyak-mlym                             1.2.2-4                                     all          Samyak TrueType font for Malayalam language
ii  fonts-samyak-taml                             1.2.2-4                                     all          Samyak TrueType font for Tamil language
ii  fonts-sarai                                   1.0-2                                       all          truetype font for devanagari script
ii  fonts-sil-abyssinica                          2.000-1                                     all          Unicode font for the Ethiopic script
ii  fonts-sil-padauk                              4.000-1                                     all          Burmese Unicode TrueType font with OpenType and Graphite support
ii  fonts-smc                                     1:7.1                                       all          Metapackage for various TrueType fonts for Malayalam Language
ii  fonts-smc-anjalioldlipi                       7.1.2-1                                     all          AnjaliOldLipi malayalam font
ii  fonts-smc-chilanka                            1.400-1                                     all          Chilanka malayalam font
ii  fonts-smc-dyuthi                              3.0.2-1                                     all          Dyuthi malayalam font
ii  fonts-smc-gayathri                            1.100-1                                     all          Gayathri Malayalam font
ii  fonts-smc-karumbi                             1.1.2-1                                     all          Karumbi malayalam font
ii  fonts-smc-keraleeyam                          3.0.2-1                                     all          Keraleeyam malayalam font
ii  fonts-smc-manjari                             1.710-1                                     all          Manjari malayalam font
ii  fonts-smc-meera                               7.0.3-1                                     all          Meera malayalam font
ii  fonts-smc-rachana                             7.0.2-1                                     all          Rachana malayalam font
ii  fonts-smc-raghumalayalamsans                  2.2.1-1                                     all          RaghuMalayalamSans malayalam font
ii  fonts-smc-suruma                              3.2.3-1                                     all          Suruma malayalam font
ii  fonts-smc-uroob                               2.0.2-1                                     all          Uroob malayalam font
ii  fonts-taml                                    2:1.3                                       all          Meta package to install all Tamil fonts
ii  fonts-telu                                    2:1.2                                       all          Meta package to install all Telugu fonts
ii  fonts-telu-extra                              2.0-4                                       all          Free fonts for Telugu script
ii  fonts-thai-tlwg                               1:0.7.1-3                                   all          Thai fonts maintained by TLWG (metapackage)
ii  fonts-tibetan-machine                         1.901b-5                                    all          font for Tibetan, Dzongkha and Ladakhi (OpenType Unicode)
ii  fonts-tlwg-garuda                             1:0.7.1-3                                   all          Thai Garuda font (dependency package)
ii  fonts-tlwg-garuda-ttf                         1:0.7.1-3                                   all          Thai Garuda TrueType font
ii  fonts-tlwg-kinnari                            1:0.7.1-3                                   all          Thai Kinnari font (dependency package)
ii  fonts-tlwg-kinnari-ttf                        1:0.7.1-3                                   all          Thai Kinnari TrueType font
ii  fonts-tlwg-laksaman                           1:0.7.1-3                                   all          Thai Laksaman font (dependency package)
ii  fonts-tlwg-laksaman-ttf                       1:0.7.1-3                                   all          Thai Laksaman TrueType font
ii  fonts-tlwg-loma                               1:0.7.1-3                                   all          Thai Loma font (dependency package)
ii  fonts-tlwg-loma-ttf                           1:0.7.1-3                                   all          Thai Loma TrueType font
ii  fonts-tlwg-mono                               1:0.7.1-3                                   all          Thai TlwgMono font (dependency package)
ii  fonts-tlwg-mono-ttf                           1:0.7.1-3                                   all          Thai TlwgMono TrueType font
ii  fonts-tlwg-norasi                             1:0.7.1-3                                   all          Thai Norasi font (dependency package)
ii  fonts-tlwg-norasi-ttf                         1:0.7.1-3                                   all          Thai Norasi TrueType font
ii  fonts-tlwg-purisa                             1:0.7.1-3                                   all          Thai Purisa font (dependency package)
ii  fonts-tlwg-purisa-ttf                         1:0.7.1-3                                   all          Thai Purisa TrueType font
ii  fonts-tlwg-sawasdee                           1:0.7.1-3                                   all          Thai Sawasdee font (dependency package)
ii  fonts-tlwg-sawasdee-ttf                       1:0.7.1-3                                   all          Thai Sawasdee TrueType font
ii  fonts-tlwg-typewriter                         1:0.7.1-3                                   all          Thai TlwgTypewriter font (dependency package)
ii  fonts-tlwg-typewriter-ttf                     1:0.7.1-3                                   all          Thai TlwgTypewriter TrueType font
ii  fonts-tlwg-typist                             1:0.7.1-3                                   all          Thai TlwgTypist font (dependency package)
ii  fonts-tlwg-typist-ttf                         1:0.7.1-3                                   all          Thai TlwgTypist TrueType font
ii  fonts-tlwg-typo                               1:0.7.1-3                                   all          Thai TlwgTypo font (dependency package)
ii  fonts-tlwg-typo-ttf                           1:0.7.1-3                                   all          Thai TlwgTypo TrueType font
ii  fonts-tlwg-umpush                             1:0.7.1-3                                   all          Thai Umpush font (dependency package)
ii  fonts-tlwg-umpush-ttf                         1:0.7.1-3                                   all          Thai Umpush TrueType font
ii  fonts-tlwg-waree                              1:0.7.1-3                                   all          Thai Waree font (dependency package)
ii  fonts-tlwg-waree-ttf                          1:0.7.1-3                                   all          Thai Waree TrueType font
ii  fonts-ubuntu                                  0.83-4ubuntu1                               all          sans-serif font set from Ubuntu
ii  fonts-urw-base35                              20170801.1-3                                all          font set metric-compatible with the 35 PostScript Level 2 Base Fonts
ii  fonts-wine                                    5.0-3ubuntu1                                all          Windows API implementation - fonts
ii  fonts-yrsa-rasa                               1.002-2                                     all          Open-source, libre fonts for Latin + Gujarati
ii  foomatic-db-compressed-ppds                   20200401-1                                  all          OpenPrinting printer support - Compressed PPDs derived from the database
ii  fprintd                                       1.90.1-1ubuntu1                             amd64        D-Bus daemon for fingerprint reader access
ii  frameworkintegration                          5.68.0-0ubuntu1                             amd64        KF5 cross-framework integration plugins
ii  freerdp2-x11                                  2.0.0~git20190204.1.2693389a+dfsg1-2build2  amd64        RDP client for Windows Terminal Services (X11 client)
ii  friendly-recovery                             0.2.41                                      all          Make recovery boot mode more user-friendly
ii  ftp                                           0.17-34.1                                   amd64        classical file transfer client
ii  fuse                                          2.9.9-3                                     amd64        Filesystem in Userspace
ii  fwupd                                         1.3.9-4                                     amd64        Firmware update daemon
ii  fwupd-signed                                  1.27+1.3.9-4                                amd64        Linux Firmware Updater EFI signed binary
ii  g++                                           4:9.3.0-1ubuntu2                            amd64        GNU C++ compiler
ii  g++-9                                         9.3.0-10ubuntu2                             amd64        GNU C++ compiler
ii  galternatives                                 1.0.6                                       all          graphical setup tool for the alternatives system
ii  gcc                                           4:9.3.0-1ubuntu2                            amd64        GNU C compiler
ii  gcc-10-base:amd64                             10-20200411-0ubuntu1                        amd64        GCC, the GNU Compiler Collection (base package)
ii  gcc-10-base:i386                              10-20200411-0ubuntu1                        i386         GCC, the GNU Compiler Collection (base package)
ii  gcc-8                                         8.4.0-3ubuntu2                              amd64        GNU C compiler
ii  gcc-8-base:amd64                              8.4.0-3ubuntu2                              amd64        GCC, the GNU Compiler Collection (base package)
ii  gcc-9                                         9.3.0-10ubuntu2                             amd64        GNU C compiler
ii  gcc-9-base:amd64                              9.3.0-10ubuntu2                             amd64        GCC, the GNU Compiler Collection (base package)
ii  gcr                                           3.36.0-2build1                              amd64        GNOME crypto services (daemon and tools)
ii  gdb                                           9.1-0ubuntu1                                amd64        GNU Debugger
ii  gdbserver                                     9.1-0ubuntu1                                amd64        GNU Debugger (remote server)
ii  gdisk                                         1.0.5-1                                     amd64        GPT fdisk text-mode partitioning tool
ii  gdm3                                          3.34.1-1ubuntu1                             amd64        GNOME Display Manager
ii  genisoimage                                   9:1.1.11-3.1ubuntu1                         amd64        Creates ISO-9660 CD-ROM filesystem images
ii  geoclue-2.0                                   2.5.6-0ubuntu1                              amd64        geoinformation service
ii  geoip-database                                20191224-2                                  all          IP lookup command line tools that use the GeoIP library (country database)
ii  gettext-base                                  0.19.8.1-10build1                           amd64        GNU Internationalization utilities for the base system
ii  ghostscript                                   9.50~dfsg-5ubuntu4                          amd64        interpreter for the PostScript language and for PDF
ii  ghostscript-x                                 9.50~dfsg-5ubuntu4                          amd64        interpreter for the PostScript language and for PDF - X11 support
ii  gimp                                          2.10.18-1                                   amd64        GNU Image Manipulation Program
ii  gimp-data                                     2.10.18-1                                   all          Data files for GIMP
ii  gir1.2-accountsservice-1.0                    0.6.55-0ubuntu11                            amd64        GObject introspection data for AccountService
ii  gir1.2-atk-1.0:amd64                          2.35.1-1ubuntu2                             amd64        ATK accessibility toolkit (GObject introspection)
ii  gir1.2-atspi-2.0:amd64                        2.36.0-2                                    amd64        Assistive Technology Service Provider (GObject introspection)
ii  gir1.2-clutter-1.0:amd64                      1.26.4+dfsg-1                               amd64        GObject introspection data for the Clutter 1.0 library
ii  gir1.2-cogl-1.0:amd64                         1.22.6-1                                    amd64        GObject introspection data for the Cogl 1.0 library
ii  gir1.2-coglpango-1.0:amd64                    1.22.6-1                                    amd64        GObject introspection data for the CoglPango 1.0 library
ii  gir1.2-freedesktop:amd64                      1.64.0-2                                    amd64        Introspection data for some FreeDesktop components
ii  gir1.2-gck-1:amd64                            3.36.0-2build1                              amd64        GObject introspection data for the GCK library
ii  gir1.2-gcr-3:amd64                            3.36.0-2build1                              amd64        GObject introspection data for the GCR library
ii  gir1.2-gdesktopenums-3.0:amd64                3.36.0-1ubuntu1                             amd64        GObject introspection for GSettings desktop-wide schemas
ii  gir1.2-gdkpixbuf-2.0:amd64                    2.40.0+dfsg-3                               amd64        GDK Pixbuf library - GObject-Introspection
ii  gir1.2-gdm-1.0:amd64                          3.34.1-1ubuntu1                             amd64        GObject introspection data for the GNOME Display Manager
ii  gir1.2-geoclue-2.0:amd64                      2.5.6-0ubuntu1                              amd64        convenience library to interact with geoinformation service (introspection)
ii  gir1.2-glib-2.0:amd64                         1.64.0-2                                    amd64        Introspection data for GLib, GObject, Gio and GModule
ii  gir1.2-gmenu-3.0:amd64                        3.36.0-1ubuntu1                             amd64        GObject introspection data for the GNOME menu library
ii  gir1.2-gnomebluetooth-1.0:amd64               3.34.1-1                                    amd64        Introspection data for GnomeBluetooth
ii  gir1.2-gnomedesktop-3.0:amd64                 3.36.1-1ubuntu1                             amd64        Introspection data for GnomeDesktop
ii  gir1.2-graphene-1.0:amd64                     1.10.0-1build2                              amd64        library of graphic data types (introspection files)
ii  gir1.2-gtk-3.0:amd64                          3.24.18-1ubuntu1                            amd64        GTK graphical user interface library -- gir bindings
ii  gir1.2-gweather-3.0:amd64                     3.36.0-1                                    amd64        GObject introspection data for the GWeather library
ii  gir1.2-handy-0.0:amd64                        0.0.13-1                                    amd64        GObject introspection files for libhandy
ii  gir1.2-ibus-1.0:amd64                         1.5.22-2ubuntu2                             amd64        Intelligent Input Bus - introspection data
ii  gir1.2-json-1.0:amd64                         1.4.4-2ubuntu2                              amd64        GLib JSON manipulation library (introspection data)
ii  gir1.2-mutter-6:amd64                         3.36.1-3ubuntu3                             amd64        GObject introspection data for Mutter
ii  gir1.2-nm-1.0:amd64                           1.22.10-1ubuntu1                            amd64        GObject introspection data for the libnm library
ii  gir1.2-nma-1.0:amd64                          1.8.24-1ubuntu2                             amd64        GObject introspection data for libnma
ii  gir1.2-notify-0.7:amd64                       0.7.9-1ubuntu2                              amd64        sends desktop notifications to a notification daemon (Introspection files)
ii  gir1.2-packagekitglib-1.0                     1.1.13-2ubuntu1                             amd64        GObject introspection data for the PackageKit GLib library
ii  gir1.2-pango-1.0:amd64                        1.44.7-2ubuntu4                             amd64        Layout and rendering of internationalized text - gir bindings
ii  gir1.2-polkit-1.0                             0.105-26ubuntu1                             amd64        GObject introspection data for PolicyKit
ii  gir1.2-rsvg-2.0:amd64                         2.48.2-1                                    amd64        gir files for renderer library for SVG files
ii  gir1.2-secret-1:amd64                         0.20.2-1                                    amd64        Secret store (GObject-Introspection)
ii  gir1.2-soup-2.4:amd64                         2.70.0-1                                    amd64        GObject introspection data for the libsoup HTTP library
ii  gir1.2-udisks-2.0:amd64                       2.8.4-1ubuntu1                              amd64        GObject based library to access udisks2 - introspection data
ii  gir1.2-upowerglib-1.0:amd64                   0.99.11-1build2                             amd64        GObject introspection data for upower
ii  gir1.2-vte-2.91:amd64                         0.60.1-1ubuntu1                             amd64        GObject introspection data for the VTE library
ii  gjs                                           1.64.1-2ubuntu1                             amd64        Mozilla-based javascript bindings for the GNOME platform
ii  gkbd-capplet                                  3.26.1-1                                    amd64        GNOME control center tools for libgnomekbd
ii  glib-networking:amd64                         2.64.1-1                                    amd64        network-related giomodules for GLib
ii  glib-networking:i386                          2.64.1-1                                    i386         network-related giomodules for GLib
ii  glib-networking-common                        2.64.1-1                                    all          network-related giomodules for GLib - data files
ii  glib-networking-services                      2.64.1-1                                    amd64        network-related giomodules for GLib - D-Bus services
ii  gnome-accessibility-themes                    3.28-1ubuntu1                               all          High Contrast GTK+ 2 theme and icons
ii  gnome-control-center                          1:3.36.1-1ubuntu5                           amd64        utilities to configure the GNOME desktop
ii  gnome-control-center-data                     1:3.36.1-1ubuntu5                           all          configuration applets for GNOME - data files
ii  gnome-control-center-faces                    1:3.36.1-1ubuntu5                           all          utilities to configure the GNOME desktop - faces images
ii  gnome-desktop3-data                           3.36.1-1ubuntu1                             all          Common files for GNOME desktop apps
ii  gnome-keyring                                 3.36.0-1ubuntu1                             amd64        GNOME keyring services (daemon and tools)
ii  gnome-keyring-pkcs11:amd64                    3.36.0-1ubuntu1                             amd64        GNOME keyring module for the PKCS#11 module loading library
ii  gnome-menus                                   3.36.0-1ubuntu1                             amd64        GNOME implementation of the freedesktop menu specification
ii  gnome-online-accounts                         3.36.0-1ubuntu1                             amd64        service to manage online accounts for the GNOME desktop
ii  gnome-session-bin                             3.36.0-2ubuntu1                             amd64        GNOME Session Manager - Minimal runtime
ii  gnome-session-common                          3.36.0-2ubuntu1                             all          GNOME Session Manager - common files
ii  gnome-settings-daemon                         3.36.0-1ubuntu2                             amd64        daemon handling the GNOME session settings
ii  gnome-settings-daemon-common                  3.36.0-1ubuntu2                             all          daemon handling the GNOME session settings - common files
ii  gnome-shell                                   3.36.1-5ubuntu1                             amd64        graphical shell for the GNOME desktop
ii  gnome-shell-common                            3.36.1-5ubuntu1                             all          common files for the GNOME graphical shell
ii  gnome-shell-extension-prefs                   3.36.1-5ubuntu1                             amd64        tool to enable / disable GNOME Shell extensions
ii  gnome-shell-extensions                        3.36.1-1                                    all          Extensions to extend functionality of GNOME Shell
ii  gnome-startup-applications                    3.36.0-2ubuntu1                             amd64        Startup Applications manager for GNOME
ii  gnome-system-monitor                          3.36.0-1                                    amd64        Process viewer and system resource monitor for GNOME
ii  gnome-themes-extra:amd64                      3.28-1ubuntu1                               amd64        Adwaita GTK+ 2 theme — engine
ii  gnome-themes-extra-data                       3.28-1ubuntu1                               all          Adwaita GTK+ 2 theme — common files
ii  gnome-tweaks                                  3.34.0-2ubuntu1                             all          tool to adjust advanced configuration settings for GNOME
ii  gnome-user-docs                               3.36.1-0ubuntu1                             all          GNOME user docs
ii  gnome-video-effects                           0.5.0-1ubuntu1                              all          Collection of GStreamer effects
ii  gnupg                                         2.2.19-3ubuntu2                             all          GNU privacy guard - a free PGP replacement
ii  gnupg-agent                                   2.2.19-3ubuntu2                             all          GNU privacy guard - cryptographic agent (dummy transitional package)
ii  gnupg-l10n                                    2.2.19-3ubuntu2                             all          GNU privacy guard - localization files
ii  gnupg-utils                                   2.2.19-3ubuntu2                             amd64        GNU privacy guard - utility programs
ii  gnupg2                                        2.2.19-3ubuntu2                             all          GNU privacy guard - a free PGP replacement (dummy transitional package)
ii  gnustep-base-common                           1.26.0-7                                    all          GNUstep Base library - common files
ii  gnustep-base-runtime                          1.26.0-7                                    amd64        GNUstep Base library - daemons and tools
ii  gnustep-common                                2.7.0-4                                     amd64        Common files for the core GNUstep environment
ii  go-mtpfs                                      0.0~git20180209.d6f8f3c-1                   amd64        Mount MTP devices over FUSE
ii  google-earth-pro-stable                       7.3.3.7673-r0                               amd64        Explore, search and discover the planet
ii  gparted                                       1.0.0-0.1build1                             amd64        GNOME partition editor
ii  gparted-common                                1.0.0-0.1build1                             all          GNOME partition editor -- common data
ii  gpg                                           2.2.19-3ubuntu2                             amd64        GNU Privacy Guard -- minimalist public key operations
ii  gpg-agent                                     2.2.19-3ubuntu2                             amd64        GNU privacy guard - cryptographic agent
ii  gpg-wks-client                                2.2.19-3ubuntu2                             amd64        GNU privacy guard - Web Key Service client
ii  gpg-wks-server                                2.2.19-3ubuntu2                             amd64        GNU privacy guard - Web Key Service server
ii  gpgconf                                       2.2.19-3ubuntu2                             amd64        GNU privacy guard - core configuration utilities
ii  gpgsm                                         2.2.19-3ubuntu2                             amd64        GNU privacy guard - S/MIME version
ii  gpgv                                          2.2.19-3ubuntu2                             amd64        GNU privacy guard - signature verification tool
ii  grep                                          3.4-1                                       amd64        GNU grep, egrep and fgrep
ii  groff-base                                    1.22.4-4build1                              amd64        GNU troff text-formatting system (base system components)
ii  growisofs                                     7.1-14build1                                amd64        DVD+-RW/R recorder
ii  grub-common                                   2.04-1ubuntu26                              amd64        GRand Unified Bootloader (common files)
ii  grub-gfxpayload-lists                         0.7                                         amd64        GRUB gfxpayload blacklist
ii  grub-pc                                       2.04-1ubuntu26                              amd64        GRand Unified Bootloader, version 2 (PC/BIOS version)
ii  grub-pc-bin                                   2.04-1ubuntu26                              amd64        GRand Unified Bootloader, version 2 (PC/BIOS modules)
ii  grub2-common                                  2.04-1ubuntu26                              amd64        GRand Unified Bootloader (common files for version 2)
ii  gsettings-desktop-schemas                     3.36.0-1ubuntu1                             all          GSettings desktop-wide schemas
ii  gstreamer-qapt                                3.0.5-1ubuntu1                              amd64        GStreamer plugin to install codecs using QApt
ii  gstreamer1.0-clutter-3.0:amd64                3.0.27-1                                    amd64        Clutter PLugin for GStreamer 1.0
ii  gstreamer1.0-gl:amd64                         1.16.2-4                                    amd64        GStreamer plugins for GL
ii  gstreamer1.0-libav:amd64                      1.16.2-2                                    amd64        ffmpeg plugin for GStreamer
ii  gstreamer1.0-plugins-bad:amd64                1.16.2-2.1ubuntu1                           amd64        GStreamer plugins from the "bad" set
ii  gstreamer1.0-plugins-base:amd64               1.16.2-4                                    amd64        GStreamer plugins from the "base" set
ii  gstreamer1.0-plugins-base:i386                1.16.2-4                                    i386         GStreamer plugins from the "base" set
ii  gstreamer1.0-plugins-good:amd64               1.16.2-1ubuntu2                             amd64        GStreamer plugins from the "good" set
ii  gstreamer1.0-plugins-good:i386                1.16.2-1ubuntu2                             i386         GStreamer plugins from the "good" set
ii  gstreamer1.0-plugins-ugly:amd64               1.16.2-2build1                              amd64        GStreamer plugins from the "ugly" set
ii  gstreamer1.0-pulseaudio:amd64                 1.16.2-1ubuntu2                             amd64        GStreamer plugin for PulseAudio
ii  gstreamer1.0-x:amd64                          1.16.2-4                                    amd64        GStreamer plugins for X11 and Pango
ii  gstreamer1.0-x:i386                           1.16.2-4                                    i386         GStreamer plugins for X11 and Pango
ii  gtk-update-icon-cache                         3.24.18-1ubuntu1                            amd64        icon theme caching utility
ii  gtk2-engines-pixbuf:amd64                     2.24.32-4ubuntu4                            amd64        pixbuf-based theme for GTK 2
ii  gucharmap                                     1:13.0.1-1                                  amd64        Unicode character picker and font browser
ii  guile-2.2-libs:amd64                          2.2.7+1-4                                   amd64        Core Guile libraries
ii  gvfs:amd64                                    1.44.1-1ubuntu1                             amd64        userspace virtual filesystem - GIO module
ii  gvfs-backends                                 1.44.1-1ubuntu1                             amd64        userspace virtual filesystem - backends
ii  gvfs-common                                   1.44.1-1ubuntu1                             all          userspace virtual filesystem - common data files
ii  gvfs-daemons                                  1.44.1-1ubuntu1                             amd64        userspace virtual filesystem - servers
ii  gvfs-fuse                                     1.44.1-1ubuntu1                             amd64        userspace virtual filesystem - fuse server
ii  gvfs-libs:amd64                               1.44.1-1ubuntu1                             amd64        userspace virtual filesystem - private libraries
ii  gwenview                                      4:19.12.3-0ubuntu2                          amd64        image viewer
ii  gzip                                          1.10-0ubuntu4                               amd64        GNU compression utilities
ii  haveged                                       1.9.1-6ubuntu1                              amd64        Linux entropy source using the HAVEGE algorithm
ii  hddtemp                                       0.3-beta15-53                               amd64        hard drive temperature monitoring utility
ii  hdparm                                        9.58+ds-4                                   amd64        tune hard disk parameters for high performance
ii  hicolor-icon-theme                            0.17-2                                      all          default fallback theme for FreeDesktop.org icon themes
ii  hostname                                      3.23                                        amd64        utility to set/show the host name or domain name
ii  hplip                                         3.20.3+dfsg0-2                              amd64        HP Linux Printing and Imaging System (HPLIP)
ii  hplip-data                                    3.20.3+dfsg0-2                              all          HP Linux Printing and Imaging - data files
ii  humanity-icon-theme                           0.6.15                                      all          Humanity Icon theme
ii  hunspell-de-at-frami                          1:6.4.3-1                                   all          German (Austria) dictionary for hunspell ("frami" version)
ii  hunspell-de-ch-frami                          1:6.4.3-1                                   all          German (Switzerland) dictionary for hunspell ("frami" version)
ii  hunspell-de-de-frami                          1:6.4.3-1                                   all          German dictionary for hunspell ("frami" version)
ii  hunspell-en-us                                1:2018.04.16-1                              all          English_american dictionary for hunspell
ii  hyphen-de                                     1:6.4.3-1                                   all          German hyphenation patterns
ii  hyphen-en-us                                  2.8.8-7                                     all          English (US) hyphenation patterns
ii  i965-va-driver:amd64                          2.4.0-0ubuntu1                              amd64        VAAPI driver for Intel G45 & HD Graphics family
ii  i965-va-driver:i386                           2.4.0-0ubuntu1                              i386         VAAPI driver for Intel G45 & HD Graphics family
ii  ibus                                          1.5.22-2ubuntu2                             amd64        Intelligent Input Bus - core
ii  ibus-data                                     1.5.22-2ubuntu2                             all          Intelligent Input Bus - data files
ii  ibus-gtk:amd64                                1.5.22-2ubuntu2                             amd64        Intelligent Input Bus - GTK2 support
ii  ibus-gtk3:amd64                               1.5.22-2ubuntu2                             amd64        Intelligent Input Bus - GTK3 support
ii  ibverbs-providers:amd64                       28.0-1ubuntu1                               amd64        User space provider drivers for libibverbs
ii  ieee-data                                     20180805.1                                  all          OUI and IAB listings
ii  iio-sensor-proxy                              2.8-1                                       amd64        IIO sensors to D-Bus proxy
ii  im-config                                     0.44-1ubuntu1                               all          Input method configuration framework
ii  info                                          6.7.0.dfsg.2-5                              amd64        Standalone GNU Info documentation browser
ii  init                                          1.57                                        amd64        metapackage ensuring an init system is installed
ii  init-system-helpers                           1.57                                        all          helper tools for all init systems
ii  initramfs-tools                               0.136ubuntu6                                all          generic modular initramfs generator (automation)
ii  initramfs-tools-bin                           0.136ubuntu6                                amd64        binaries used by initramfs-tools
ii  initramfs-tools-core                          0.136ubuntu6                                all          generic modular initramfs generator (core tools)
ii  inputattach                                   1:1.7.0-1                                   amd64        utility to connect serial-attached peripherals to the input subsystem
ii  install-info                                  6.7.0.dfsg.2-5                              amd64        Manage installed documentation in info format
ii  intel-media-va-driver:amd64                   20.1.1+dfsg1-1                              amd64        VAAPI driver for the Intel GEN8+ Graphics family
ii  intel-media-va-driver:i386                    20.1.1+dfsg1-1                              i386         VAAPI driver for the Intel GEN8+ Graphics family
ii  intel-microcode                               3.20191115.1ubuntu3                         amd64        Processor microcode firmware for Intel CPUs
ii  inxi                                          3.0.38-1-0ubuntu1                           all          full featured system information script
ii  ippusbxd                                      1.34-2ubuntu1                               amd64        Daemon for IPP USB printer support
ii  iproute2                                      5.5.0-1ubuntu1                              amd64        networking and traffic control tools
ii  iptables                                      1.8.4-3ubuntu2                              amd64        administration tools for packet filtering and NAT
ii  iputils-ping                                  3:20190709-3                                amd64        Tools to test the reachability of network hosts
ii  iputils-tracepath                             3:20190709-3                                amd64        Tools to trace the network path to a remote host
ii  irqbalance                                    1.6.0-3ubuntu1                              amd64        Daemon to balance interrupts for SMP systems
ii  isc-dhcp-client                               4.4.1-2.1ubuntu5                            amd64        DHCP client for automatically obtaining an IP address
ii  isc-dhcp-common                               4.4.1-2.1ubuntu5                            amd64        common manpages relevant to all of the isc-dhcp packages
ii  iscan                                         2.30.4-2                                    amd64        simple, easy to use scanner utility for EPSON scanners
ii  iscan-data                                    1.39.1-2                                    all          Image Scan! for Linux data files
ii  iscan-plugin-gt-f670                          2.1.3-1                                     amd64        Image Scan! plugin for the Epson GT-F670 / Epson Perfection V200 PHOTO
ii  iso-codes                                     4.4-1                                       all          ISO language, territory, currency, script codes and their translations
ii  iucode-tool                                   2.3.1-1                                     amd64        Intel processor microcode tool
ii  iw                                            5.4-1                                       amd64        tool for configuring Linux wireless devices
ii  java-common                                   0.72                                        all          Base package for Java runtimes
ii  java-wrappers                                 0.3                                         all          wrappers for java executables
ii  javascript-common                             11                                          all          Base support for JavaScript library packages
ii  k3b                                           19.12.3-0ubuntu1                            amd64        Sophisticated CD/DVD burning application
ii  k3b-data                                      19.12.3-0ubuntu1                            all          Sophisticated CD/DVD burning application - data files
ii  k3b-i18n                                      19.12.3-0ubuntu1                            all          Sophisticated CD/DVD burning application - localizations files
ii  kaccounts-integration                         4:19.12.3-0ubuntu1                          amd64        System to administer web accounts
ii  kaccounts-providers                           4:19.12.3-0ubuntu1                          amd64        KDE providers for accounts sign-on
ii  kactivities-bin                               5.68.0-0ubuntu2                             amd64        Command Line Tool for KActivities
ii  kactivitymanagerd                             5.18.4.1-0ubuntu1                           amd64        System service to manage user's activities
ii  kamera                                        4:19.12.3-0ubuntu1                          amd64        digital camera support for KDE applications
ii  kate                                          4:19.12.3-0ubuntu1                          amd64        powerful text editor
ii  kate5-data                                    4:19.12.3-0ubuntu1                          all          shared data files for Kate text editor
ii  kbd                                           2.0.4-4ubuntu2                              amd64        Linux console font and keytable utilities
ii  kcalc                                         4:19.12.3-0ubuntu1                          amd64        simple and scientific calculator
ii  kde-cli-tools                                 4:5.18.4.1-0ubuntu1                         amd64        tools to use KDE services from the command line
ii  kde-cli-tools-data                            4:5.18.4.1-0ubuntu1                         all          tools to use kioslaves from the command line
ii  kde-config-gtk-style:amd64                    4:5.18.4.1-0ubuntu1                         amd64        KDE configuration module for GTK+ 2.x and GTK+ 3.x styles selection
ii  kde-config-gtk-style-preview:amd64            4:5.18.4.1-0ubuntu1                         amd64        KDE configuration module for GTK+ 2.x and GTK+ 3.x styles selection (extras)
ii  kde-config-mailtransport:amd64                19.12.3-0ubuntu1                            amd64        mail transport service KCM
ii  kde-config-screenlocker                       5.18.4.1-0ubuntu1                           amd64        KCM Module for kscreenlocker
ii  kde-config-sddm                               4:5.18.4.1-0ubuntu1                         amd64        KCM module for SDDM
ii  kde-config-tablet                             3.2.0-3build1                               amd64        implements a KDE configuration GUI for the Wacom drivers
ii  kde-config-whoopsie                           15.10ubuntu2                                amd64        Configuration for Whoopsie
ii  kde-l10n-engb                                 4:17.08.3-0ubuntu5                          all          en_GB (engb) localization for KDE
ii  kde-spectacle                                 19.12.3-1ubuntu1                            amd64        Screenshot capture utility
ii  kde-style-breeze                              4:5.18.4.1-0ubuntu1                         amd64        Widget style for Qt and KDE Software
ii  kde-style-oxygen-qt5                          4:5.18.4.1-0ubuntu1                         amd64        Qt decoration for the Oxygen desktop theme
ii  kdeconnect                                    1.4-0ubuntu5                                amd64        connect smartphones to your desktop devices.
ii  kded5                                         5.68.0-0ubuntu1                             amd64        Extensible daemon for providing session services
ii  kdegames-card-data-kf5                        4:19.12.3-1ubuntu1                          all          card decks for KDE games
ii  kdegames-mahjongg-data-kf5                    4:19.12.3-0ubuntu1                          all          tilesets and backgrounds for Mahjongg games
ii  kdegraphics-thumbnailers                      4:19.12.3-0ubuntu1                          amd64        graphics file format thumbnailers for KDE SC
ii  kdenetwork-filesharing                        4:19.12.3-0ubuntu1                          amd64        network filesharing configuration module
ii  kdepim-addons                                 19.12.3-0ubuntu1                            amd64        Addons for KDE PIM applications
ii  kdepim-runtime                                4:19.12.3-0ubuntu1                          amd64        runtime components for Akonadi KDE
ii  kdepim-themeeditors                           4:19.12.3-0ubuntu1                          amd64        Theme Editors for KDE PIM applications
ii  kdeplasma-addons-data                         4:5.18.4.1-0ubuntu2                         all          locale files for kdeplasma-addons
ii  kdialog                                       4:19.12.3-0ubuntu1                          amd64        Dialog display utility
ii  kdoctools5                                    5.68.0-0ubuntu1                             amd64        Tools to generate documentation in various formats from DocBook
ii  keditbookmarks                                19.12.3-0ubuntu1                            amd64        bookmarks editor utility for KDE
ii  kerneloops                                    0.12+git20140509-6ubuntu2                   amd64        kernel oops tracker
ii  keyboard-configuration                        1.194ubuntu3                                all          system-wide keyboard preferences
ii  kf5-kdepim-apps-libs-data                     4:19.12.3-0ubuntu1                          all          KDE PIM mail related libraries, data files
ii  kf5-messagelib-data                           4:19.12.3-0ubuntu1                          all          KDE PIM messaging library, data files
ii  kgamma5                                       4:5.18.4.1-0ubuntu1                         amd64        monitor calibration panel for KDE
ii  khelpcenter                                   4:19.12.3-0ubuntu1                          amd64        KDE documentation viewer
ii  khotkeys                                      4:5.18.4.1-0ubuntu1                         amd64        configure input actions settings
ii  khotkeys-data                                 4:5.18.4.1-0ubuntu1                         all          configure input actions settings
ii  kimageformat-plugins                          5.68.0-0ubuntu1                             amd64        additional image format plugins for QtGui
ii  kinfocenter                                   4:5.18.4.1-0ubuntu1                         amd64        system information viewer
ii  kinit                                         5.68.0-0ubuntu1                             amd64        process launcher to speed up launching KDE applications
ii  kio                                           5.68.0-0ubuntu1                             amd64        resource and network access abstraction
ii  kio-audiocd                                   4:19.12.3-0ubuntu1                          amd64        transparent audio CD access for applications using the KDE Platform
ii  kio-extras                                    4:19.12.3a-0ubuntu2                         amd64        Extra functionality for kioslaves.
ii  kio-extras-data                               4:19.12.3a-0ubuntu2                         all          Extra functionality for kioslaves data files.
ii  kio-ldap                                      19.12.3-0ubuntu1                            amd64        library for accessing LDAP - development files
ii  kio-sieve                                     4:19.12.3-0ubuntu1                          amd64        Sieve mail filtering language support for kdepim, development files
ii  klibc-utils                                   2.0.7-1ubuntu5                              amd64        small utilities built with klibc for early boot
ii  kmahjongg                                     4:19.12.3-0ubuntu1                          amd64        mahjongg solitaire game
ii  kmail                                         4:19.12.3-0ubuntu1                          amd64        full featured graphical email client
ii  kmailtransport-akonadi:amd64                  19.12.3-0ubuntu1                            amd64        mail transport akonadi library
ii  kmenuedit                                     4:5.18.4.1-0ubuntu1                         amd64        XDG menu editor
ii  kmines                                        4:19.12.3-0ubuntu1                          amd64        minesweeper game
ii  kmod                                          27-1ubuntu2                                 amd64        tools for managing Linux kernel modules
ii  konsole                                       4:19.12.3-0ubuntu1                          amd64        X terminal emulator
ii  konsole-kpart                                 4:19.12.3-0ubuntu1                          amd64        Konsole plugin for Qt applications
ii  konversation                                  1.7.5-3ubuntu2                              amd64        user friendly Internet Relay Chat (IRC) client for KDE
ii  konversation-data                             1.7.5-3ubuntu2                              all          data files for Konversation
ii  kpackagelauncherqml                           5.68.0-0ubuntu2                             amd64        commandline tool for launching kpackage QML application
ii  kpackagetool5                                 5.68.0-0ubuntu1                             amd64        command line kpackage tool
ii  kpat                                          4:19.12.3-0ubuntu1                          amd64        solitaire card games
ii  kpeople-vcard                                 0.1-0ubuntu1                                amd64        vCard plugin for KPeople
ii  krb5-locales                                  1.17-6ubuntu4                               all          internationalization support for MIT Kerberos
ii  krdc                                          4:19.12.3-0ubuntu1                          amd64        Remote Desktop Connection client
ii  kross                                         5.68.0-0ubuntu1                             amd64        Multi-language application scripting.
ii  krusader                                      2:2.7.2-1build1                             amd64        twin-panel (commander-style) file manager
ii  kscreen                                       4:5.18.4.1-0ubuntu1                         amd64        KDE monitor hotplug and screen handling
ii  ksshaskpass                                   4:5.18.4.1-0ubuntu1                         amd64        interactively prompt users for a passphrase for ssh-add
ii  ksudoku                                       4:19.12.3-0ubuntu1                          amd64        Sudoku puzzle game and solver
ii  ksysguard                                     4:5.18.4.1-0ubuntu1                         amd64        process monitor and system statistics
ii  ksysguard-data                                4:5.18.4.1-0ubuntu1                         all          library for monitoring your system - shared library
ii  ksysguardd                                    4:5.18.4.1-0ubuntu1                         amd64        System Guard Daemon
ii  ksystemlog                                    4:19.12.3-0ubuntu1                          amd64        system log viewer
ii  ktexteditor-data                              5.68.0-0ubuntu1                             all          provide advanced plain text editing services
ii  ktexteditor-katepart                          5.68.0-0ubuntu1                             amd64        provide advanced plain text editing services
ii  ktnef                                         4:19.12.3-0ubuntu1                          amd64        Viewer for mail attachments using TNEF format
ii  ktorrent                                      5.1.2-1build1                               amd64        BitTorrent client based on the KDE platform
ii  ktorrent-data                                 5.1.2-1build1                               all          KTorrent data and other architecture independent files
ii  kubuntu-desktop                               1.398                                       amd64        Kubuntu Plasma Desktop/Netbook system
ii  kubuntu-notification-helper                   19.10ubuntu2                                amd64        Kubuntu system notification helper
ii  kubuntu-restricted-addons                     26                                          amd64        Commonly used restricted packages for Kubuntu
ii  kubuntu-settings-desktop                      1:20.04.9                                   all          Settings and artwork for the Kubuntu (Desktop)
ii  kubuntu-wallpapers                            20.04.1                                     all          Kubuntu Wallpapers
ii  kubuntu-wallpapers-focal                      20.04.1                                     all          Selection of classic KDE wallpapers for Focal Fossa
ii  kubuntu-web-shortcuts                         17.04ubuntu1                                all          web shortcuts for Kubuntu, Ubuntu, Launchpad
ii  kwalletmanager                                4:19.12.3-0ubuntu1                          amd64        secure password wallet manager
ii  kwayland-data                                 4:5.68.0-0ubuntu1                           all          Qt library wrapper for Wayland libraries - data files
ii  kwayland-integration:amd64                    4:5.18.4.1-0ubuntu1                         amd64        kwayland runtime integration plugins
ii  kwin-addons                                   4:5.18.4.1-0ubuntu2                         amd64        additional desktop and window switchers for KWin
ii  kwin-common                                   4:5.18.4.1-0ubuntu2                         amd64        KDE window manager, common files
ii  kwin-data                                     4:5.18.4.1-0ubuntu2                         all          KDE window manager data files
ii  kwin-style-breeze                             4:5.18.4.1-0ubuntu1                         amd64        KWin Breeze Style
ii  kwin-x11                                      4:5.18.4.1-0ubuntu2                         amd64        KDE window manager, X11 version
ii  kwrite                                        4:19.12.3-0ubuntu1                          amd64        simple text editor
ii  kwrited                                       4:5.18.4.1-0ubuntu1                         amd64        Read and write console output to X.
ii  lame                                          3.100-3                                     amd64        MP3 encoding library (frontend)
ii  language-pack-de                              1:20.04+20200416                            all          translation updates for language German
ii  language-pack-de-base                         1:20.04+20200416                            all          translations for language German
ii  language-pack-en                              1:20.04+20200416                            all          translation updates for language English
ii  language-pack-en-base                         1:20.04+20200416                            all          translations for language English
ii  language-pack-kde-de                          1:19.10.0ubuntu1                            all          KDE translation meta package for language de
ii  language-pack-kde-en                          1:19.10.0ubuntu1                            all          KDE translation meta package for language en_GB
ii  language-selector-common                      0.204                                       all          Language selector for Ubuntu
ii  language-selector-gnome                       0.204                                       all          Language selector for Ubuntu
ii  laptop-detect                                 0.16                                        all          system chassis type checker
ii  less                                          551-1                                       amd64        pager program similar to more
ii  liba52-0.7.4:amd64                            0.7.4-20                                    amd64        library for decoding ATSC A/52 streams
ii  libaa1:amd64                                  1.4p5-46                                    amd64        ASCII art library
ii  libaa1:i386                                   1.4p5-46                                    i386         ASCII art library
ii  libaacs0:amd64                                0.9.0-2                                     amd64        free-and-libre implementation of AACS
ii  libabw-0.1-1:amd64                            0.1.3-1build1                               amd64        library for reading and writing AbiWord(tm) documents
ii  libaccounts-glib0:amd64                       1.23+17.04.20161104-0ubuntu3                amd64        library for single signon
ii  libaccounts-qt5-1:amd64                       1.15+17.04.20161104.1-0ubuntu3              amd64        QT library for single sign on
ii  libaccountsservice0:amd64                     0.6.55-0ubuntu11                            amd64        query and manipulate user account information - shared libraries
ii  libacl1:amd64                                 2.2.53-6                                    amd64        access control list - shared library
ii  libaio1:amd64                                 0.3.112-5                                   amd64        Linux kernel AIO access library - shared library
ii  libalgorithm-diff-perl                        1.19.03-2                                   all          module to find differences between files
ii  libalgorithm-diff-xs-perl                     0.04-6                                      amd64        module to find differences between files (XS accelerated)
ii  libalgorithm-merge-perl                       0.08-3                                      all          Perl module for three-way merge of textual data
ii  libamd2:amd64                                 1:5.7.1+dfsg-2                              amd64        approximate minimum degree ordering library for sparse matrices
ii  libao-common                                  1.2.2+20180113-1ubuntu1                     all          Cross Platform Audio Output Library (Common files)
ii  libao4:amd64                                  1.2.2+20180113-1ubuntu1                     amd64        Cross Platform Audio Output Library
ii  libaom0:amd64                                 1.0.0.errata1-3build1                       amd64        AV1 Video Codec Library
ii  libaom0:i386                                  1.0.0.errata1-3build1                       i386         AV1 Video Codec Library
ii  libapache-pom-java                            18-1                                        all          Maven metadata for all Apache Software projects
ii  libapparmor1:amd64                            2.13.3-7ubuntu5                             amd64        changehat AppArmor library
ii  libappindicator1                              12.10.1+20.04.20200408.1-0ubuntu1           amd64        Application Indicators
ii  libappindicator3-1                            12.10.1+20.04.20200408.1-0ubuntu1           amd64        Application Indicators
ii  libappmenu-gtk3-parser0:amd64                 0.7.3-2                                     amd64        GtkMenuShell to GMenuModel parser (GTK+3.0)
ii  libappstream4:amd64                           0.12.10-2                                   amd64        Library to access AppStream services
ii  libappstreamqt2:amd64                         0.12.10-2                                   amd64        Qt5 library to access AppStream services
ii  libapt-pkg6.0:amd64                           2.0.2                                       amd64        package management runtime library
ii  libarchive13:amd64                            3.4.0-2ubuntu1                              amd64        Multi-format archive and compression library (shared library)
ii  libargon2-1:amd64                             0~20171227-0.2                              amd64        memory-hard hashing function - runtime library
ii  libaribb24-0:amd64                            1.0.3-2                                     amd64        library for ARIB STD-B24 decoding (runtime files)
ii  libasan5:amd64                                9.3.0-10ubuntu2                             amd64        AddressSanitizer -- a fast memory error detector
ii  libasn1-8-heimdal:amd64                       7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - ASN.1 library
ii  libasn1-8-heimdal:i386                        7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - ASN.1 library
ii  libasound2:amd64                              1.2.2-2.1                                   amd64        shared library for ALSA applications
ii  libasound2:i386                               1.2.2-2.1                                   i386         shared library for ALSA applications
ii  libasound2-data                               1.2.2-2.1                                   all          Configuration files and profiles for ALSA drivers
ii  libasound2-plugins:amd64                      1.2.2-1ubuntu1                              amd64        ALSA library additional plugins
ii  libasound2-plugins:i386                       1.2.2-1ubuntu1                              i386         ALSA library additional plugins
ii  libaspell15:amd64                             0.60.8-1build1                              amd64        GNU Aspell spell-checker runtime library
ii  libass9:amd64                                 1:0.14.0-2                                  amd64        library for SSA/ASS subtitles rendering
ii  libassuan0:amd64                              2.5.3-7ubuntu2                              amd64        IPC library for the GnuPG components
ii  libasyncns0:amd64                             0.8-6                                       amd64        Asynchronous name service query library
ii  libasyncns0:i386                              0.8-6                                       i386         Asynchronous name service query library
ii  libatasmart4:amd64                            0.19-5                                      amd64        ATA S.M.A.R.T. reading and parsing library
ii  libatinject-jsr330-api-java                   1.0+ds1-5                                   all          Java API for JSR-330 Dependency Injection
ii  libatk-bridge2.0-0:amd64                      2.34.1-3                                    amd64        AT-SPI 2 toolkit bridge - shared library
ii  libatk-wrapper-java                           0.37.1-1                                    all          ATK implementation for Java using JNI
ii  libatk-wrapper-java-jni:amd64                 0.37.1-1                                    amd64        ATK implementation for Java using JNI (JNI bindings)
ii  libatk1.0-0:amd64                             2.35.1-1ubuntu2                             amd64        ATK accessibility toolkit
ii  libatk1.0-data                                2.35.1-1ubuntu2                             all          Common files for the ATK accessibility toolkit
ii  libatkmm-1.6-1v5:amd64                        2.28.0-2build1                              amd64        C++ wrappers for ATK accessibility toolkit (shared libraries)
ii  libatm1:amd64                                 1:2.5.1-4                                   amd64        shared library for ATM (Asynchronous Transfer Mode)
ii  libatomic1:amd64                              10-20200411-0ubuntu1                        amd64        support library providing __atomic built-in functions
ii  libatomic1:i386                               10-20200411-0ubuntu1                        i386         support library providing __atomic built-in functions
ii  libatopology2:amd64                           1.2.2-2.1                                   amd64        shared library for handling ALSA topology definitions
ii  libatspi2.0-0:amd64                           2.36.0-2                                    amd64        Assistive Technology Service Provider Interface - shared library
ii  libattr1:amd64                                1:2.4.48-5                                  amd64        extended attribute handling - shared library
ii  libaudcore5:amd64                             3.10.1-1build1                              amd64        audacious core engine library
ii  libaudgui5:amd64                              3.10.1-1build1                              amd64        audacious media player (libaudgui shared library)
ii  libaudit-common                               1:2.8.5-2ubuntu6                            all          Dynamic library for security auditing - common files
ii  libaudit1:amd64                               1:2.8.5-2ubuntu6                            amd64        Dynamic library for security auditing
ii  libaudtag3:amd64                              3.10.1-1build1                              amd64        audacious media player (libaudtag shared library)
ii  libauthen-sasl-perl                           2.1600-1                                    all          Authen::SASL - SASL Authentication framework
ii  libavahi-client3:amd64                        0.7-4ubuntu7                                amd64        Avahi client library
ii  libavahi-client3:i386                         0.7-4ubuntu7                                i386         Avahi client library
ii  libavahi-common-data:amd64                    0.7-4ubuntu7                                amd64        Avahi common data files
ii  libavahi-common-data:i386                     0.7-4ubuntu7                                i386         Avahi common data files
ii  libavahi-common3:amd64                        0.7-4ubuntu7                                amd64        Avahi common library
ii  libavahi-common3:i386                         0.7-4ubuntu7                                i386         Avahi common library
ii  libavahi-core7:amd64                          0.7-4ubuntu7                                amd64        Avahi's embeddable mDNS/DNS-SD library
ii  libavahi-glib1:amd64                          0.7-4ubuntu7                                amd64        Avahi GLib integration library
ii  libavc1394-0:amd64                            0.5.4-5                                     amd64        control IEEE 1394 audio/video devices
ii  libavc1394-0:i386                             0.5.4-5                                     i386         control IEEE 1394 audio/video devices
ii  libavcodec58:amd64                            7:4.2.2-1ubuntu1                            amd64        FFmpeg library with de/encoders for audio/video codecs - runtime files
ii  libavcodec58:i386                             7:4.2.2-1ubuntu1                            i386         FFmpeg library with de/encoders for audio/video codecs - runtime files
ii  libavdevice58:amd64                           7:4.2.2-1ubuntu1                            amd64        FFmpeg library for handling input and output devices - runtime files
ii  libavfilter7:amd64                            7:4.2.2-1ubuntu1                            amd64        FFmpeg library containing media filters - runtime files
ii  libavformat58:amd64                           7:4.2.2-1ubuntu1                            amd64        FFmpeg library with (de)muxers for multimedia containers - runtime files
ii  libavresample4:amd64                          7:4.2.2-1ubuntu1                            amd64        FFmpeg compatibility library for resampling - runtime files
ii  libavutil56:amd64                             7:4.2.2-1ubuntu1                            amd64        FFmpeg library with functions for simplifying programming - runtime files
ii  libavutil56:i386                              7:4.2.2-1ubuntu1                            i386         FFmpeg library with functions for simplifying programming - runtime files
ii  libbabeltrace1:amd64                          1.5.8-1build1                               amd64        Babeltrace conversion libraries
ii  libbabl-0.1-0:amd64                           0.1.74-1                                    amd64        Dynamic, any to any, pixel format conversion library
ii  libbasicusageenvironment1:amd64               2020.01.19-1build1                          amd64        multimedia RTSP streaming library (BasicUsageEnvironment class)
ii  libbdplus0:amd64                              0.1.2-3                                     amd64        implementation of BD+ for reading Blu-ray Discs
ii  libbinutils:amd64                             2.34-6ubuntu1                               amd64        GNU binary utilities (private shared library)
ii  libblas3:amd64                                3.9.0-1build1                               amd64        Basic Linear Algebra Reference implementations, shared library
ii  libblkid1:amd64                               2.34-0.1ubuntu9                             amd64        block device ID library
ii  libblkid1:i386                                2.34-0.1ubuntu9                             i386         block device ID library
ii  libblockdev-crypto2:amd64                     2.23-2ubuntu3                               amd64        Crypto plugin for libblockdev
ii  libblockdev-fs2:amd64                         2.23-2ubuntu3                               amd64        file system plugin for libblockdev
ii  libblockdev-loop2:amd64                       2.23-2ubuntu3                               amd64        Loop device plugin for libblockdev
ii  libblockdev-part-err2:amd64                   2.23-2ubuntu3                               amd64        Partition error utility functions for libblockdev
ii  libblockdev-part2:amd64                       2.23-2ubuntu3                               amd64        Partitioning plugin for libblockdev
ii  libblockdev-swap2:amd64                       2.23-2ubuntu3                               amd64        Swap plugin for libblockdev
ii  libblockdev-utils2:amd64                      2.23-2ubuntu3                               amd64        Utility functions for libblockdev
ii  libblockdev2:amd64                            2.23-2ubuntu3                               amd64        Library for manipulating block devices
ii  libbluetooth3:amd64                           5.53-0ubuntu3                               amd64        Library to use the BlueZ Linux Bluetooth stack
ii  libbluray2:amd64                              1:1.2.0-1                                   amd64        Blu-ray disc playback support library (shared library)
ii  libboost-date-time1.71.0:amd64                1.71.0-6ubuntu6                             amd64        set of date-time libraries based on generic programming concepts
ii  libboost-filesystem1.71.0:amd64               1.71.0-6ubuntu6                             amd64        filesystem operations (portable paths, iteration over directories, etc) in C++
ii  libboost-iostreams1.71.0:amd64                1.71.0-6ubuntu6                             amd64        Boost.Iostreams Library
ii  libboost-locale1.71.0:amd64                   1.71.0-6ubuntu6                             amd64        C++ facilities for localization
ii  libboost-thread1.71.0:amd64                   1.71.0-6ubuntu6                             amd64        portable C++ multi-threading
ii  libbrasero-media3-1:amd64                     3.12.2-6ubuntu1                             amd64        CD/DVD burning library for GNOME - runtime
ii  libbrotli1:amd64                              1.0.7-6build1                               amd64        library implementing brotli encoder and decoder (shared libraries)
ii  libbrotli1:i386                               1.0.7-6build1                               i386         library implementing brotli encoder and decoder (shared libraries)
ii  libbs2b0:amd64                                3.1.0+dfsg-2.2build1                        amd64        Bauer stereophonic-to-binaural DSP library
ii  libbsd0:amd64                                 0.10.0-1                                    amd64        utility functions from BSD systems - shared library
ii  libbsd0:i386                                  0.10.0-1                                    i386         utility functions from BSD systems - shared library
ii  libburn4:amd64                                1.5.2-1                                     amd64        library to provide CD/DVD/BD writing functions
ii  libbz2-1.0:amd64                              1.0.8-2                                     amd64        high-quality block-sorting file compressor library - runtime
ii  libbz2-1.0:i386                               1.0.8-2                                     i386         high-quality block-sorting file compressor library - runtime
ii  libc-bin                                      2.31-0ubuntu9                               amd64        GNU C Library: Binaries
ii  libc-dev-bin                                  2.31-0ubuntu9                               amd64        GNU C Library: Development binaries
ii  libc6:amd64                                   2.31-0ubuntu9                               amd64        GNU C Library: Shared libraries
ii  libc6:i386                                    2.31-0ubuntu9                               i386         GNU C Library: Shared libraries
ii  libc6-dbg:amd64                               2.31-0ubuntu9                               amd64        GNU C Library: detached debugging symbols
ii  libc6-dev:amd64                               2.31-0ubuntu9                               amd64        GNU C Library: Development Libraries and Header Files
ii  libcaca0:amd64                                0.99.beta19-2.1ubuntu1                      amd64        colour ASCII art library
ii  libcaca0:i386                                 0.99.beta19-2.1ubuntu1                      i386         colour ASCII art library
ii  libcairo-gobject-perl                         1.005-2                                     amd64        integrate Cairo into the Glib type system in Perl
ii  libcairo-gobject2:amd64                       1.16.0-4ubuntu1                             amd64        Cairo 2D vector graphics library (GObject library)
ii  libcairo-gobject2:i386                        1.16.0-4ubuntu1                             i386         Cairo 2D vector graphics library (GObject library)
ii  libcairo-perl                                 1.107-1                                     amd64        Perl interface to the Cairo graphics library
ii  libcairo2:amd64                               1.16.0-4ubuntu1                             amd64        Cairo 2D vector graphics library
ii  libcairo2:i386                                1.16.0-4ubuntu1                             i386         Cairo 2D vector graphics library
ii  libcairomm-1.0-1v5:amd64                      1.12.2-4build1                              amd64        C++ wrappers for Cairo (shared libraries)
ii  libcamd2:amd64                                1:5.7.1+dfsg-2                              amd64        symmetric approximate minimum degree library for sparse matrices
ii  libcamel-1.2-62:amd64                         3.36.1-2                                    amd64        Evolution MIME message handling library
ii  libcanberra-gtk3-0:amd64                      0.30-7ubuntu1                               amd64        GTK+ 3.0 helper for playing widget event sounds with libcanberra
ii  libcanberra-gtk3-module:amd64                 0.30-7ubuntu1                               amd64        translates GTK3 widgets signals to event sounds
ii  libcanberra-pulse:amd64                       0.30-7ubuntu1                               amd64        PulseAudio backend for libcanberra
ii  libcanberra0:amd64                            0.30-7ubuntu1                               amd64        simple abstract interface for playing event sounds
ii  libcap-ng0:amd64                              0.7.9-2.1build1                             amd64        An alternate POSIX capabilities library
ii  libcap2:amd64                                 1:2.32-1                                    amd64        POSIX 1003.1e capabilities (library)
ii  libcap2:i386                                  1:2.32-1                                    i386         POSIX 1003.1e capabilities (library)
ii  libcap2-bin                                   1:2.32-1                                    amd64        POSIX 1003.1e capabilities (utilities)
ii  libcapi20-3:amd64                             1:3.27-3                                    amd64        ISDN utilities - CAPI support libraries
ii  libcapi20-3:i386                              1:3.27-3                                    i386         ISDN utilities - CAPI support libraries
ii  libcbor0.6:amd64                              0.6.0-0ubuntu1                              amd64        library for parsing and generating CBOR (RFC 7049)
ii  libcc1-0:amd64                                10-20200411-0ubuntu1                        amd64        GCC cc1 plugin for GDB
ii  libccolamd2:amd64                             1:5.7.1+dfsg-2                              amd64        constrained column approximate library for sparse matrices
ii  libcddb2                                      1.3.2-6fakesync1                            amd64        library to access CDDB data - runtime files
ii  libcdio-cdda2:amd64                           10.2+2.0.0-1                                amd64        library to read and control digital audio CDs
ii  libcdio-paranoia2:amd64                       10.2+2.0.0-1                                amd64        library to read digital audio CDs with error correction
ii  libcdio18:amd64                               2.0.0-2                                     amd64        library to read and control CD-ROM
ii  libcdparanoia0:amd64                          3.10.2+debian-13                            amd64        audio extraction tool for sampling CDs (library)
ii  libcdparanoia0:i386                           3.10.2+debian-13                            i386         audio extraction tool for sampling CDs (library)
ii  libcdr-0.1-1:amd64                            0.1.6-1build2                               amd64        library for reading and converting Corel DRAW files
ii  libcephfs2                                    15.2.1-0ubuntu1                             amd64        Ceph distributed file system client library
ii  libcfitsio8:amd64                             3.470-3                                     amd64        shared library for I/O with FITS format data files
ii  libcheese-gtk25:amd64                         3.34.0-1build1                              amd64        tool to take pictures and videos from your webcam - widgets
ii  libcheese8:amd64                              3.34.0-1build1                              amd64        tool to take pictures and videos from your webcam - base library
ii  libchm1                                       2:0.40a-5                                   amd64        library for dealing with Microsoft CHM files
ii  libcholmod3:amd64                             1:5.7.1+dfsg-2                              amd64        sparse Cholesky factorization library for sparse matrices
ii  libchromaprint1:amd64                         1.4.3-3build1                               amd64        audio fingerprint library
ii  libclucene-contribs1v5:amd64                  2.3.3.4+dfsg-1build1                        amd64        language specific text analyzers (runtime)
ii  libclucene-core1v5:amd64                      2.3.3.4+dfsg-1build1                        amd64        core library for full-featured text search engine (runtime)
ii  libclutter-1.0-0:amd64                        1.26.4+dfsg-1                               amd64        Open GL based interactive canvas library
ii  libclutter-1.0-common                         1.26.4+dfsg-1                               all          Open GL based interactive canvas library (common files)
ii  libclutter-gst-3.0-0:amd64                    3.0.27-1                                    amd64        Open GL based interactive canvas library GStreamer elements
ii  libclutter-gtk-1.0-0:amd64                    1.8.4-4                                     amd64        Open GL based interactive canvas library GTK+ widget
ii  libcmis-0.5-5v5                               0.5.2-1ubuntu1                              amd64        CMIS protocol client library
ii  libcodec2-0.9:amd64                           0.9.2-2                                     amd64        Codec2 runtime library
ii  libcodec2-0.9:i386                            0.9.2-2                                     i386         Codec2 runtime library
ii  libcogl-common                                1.22.6-1                                    all          Object oriented GL/GLES Abstraction/Utility Layer (common files)
ii  libcogl-pango20:amd64                         1.22.6-1                                    amd64        Object oriented GL/GLES Abstraction/Utility Layer
ii  libcogl-path20:amd64                          1.22.6-1                                    amd64        Object oriented GL/GLES Abstraction/Utility Layer
ii  libcogl20:amd64                               1.22.6-1                                    amd64        Object oriented GL/GLES Abstraction/Utility Layer
ii  libcolamd2:amd64                              1:5.7.1+dfsg-2                              amd64        column approximate minimum degree ordering library for sparse matrices
ii  libcolorcorrect5                              4:5.18.4.1-0ubuntu1                         amd64        Plasma Workspace for KF5 library
ii  libcolord-gtk1:amd64                          0.2.0-0ubuntu1                              amd64        GTK+ convenience library for interacting with colord
ii  libcolord2:amd64                              1.4.4-2                                     amd64        system service to manage device colour profiles -- runtime
ii  libcolorhug2:amd64                            1.4.4-2                                     amd64        library to access the ColorHug colourimeter -- runtime
ii  libcom-err2:amd64                             1.45.5-2ubuntu1                             amd64        common error description library
ii  libcom-err2:i386                              1.45.5-2ubuntu1                             i386         common error description library
ii  libcommons-codec-java                         1.14-1                                      all          encoder and decoders such as Base64 and hexadecimal codec
ii  libcommons-compress-java                      1.19-1                                      all          Java API for working with compression and archive formats
ii  libcommons-configuration2-java                2.2-1                                       all          Java based library providing a generic configuration interface
ii  libcommons-dbcp2-java                         2.7.0-1                                     all          Database Connection Pooling Services 2
ii  libcommons-io-java                            2.6-2                                       all          Common useful IO related classes
ii  libcommons-lang3-java                         3.8-2                                       all          Apache Commons Lang utility classes
ii  libcommons-logging-java                       1.2-2                                       all          common wrapper interface for several logging APIs
ii  libcommons-parent-java                        43-1                                        all          Maven metadata for Apache Commons project
ii  libcommons-pool2-java                         2.8.0-1                                     all          Apache Commons Pool 2 - Pooling implementation for Java objects
ii  libcompizconfig0:amd64                        1:0.9.14.1+20.04.20200211-0ubuntu1          amd64        Settings library for plugins - OpenCompositing Project
ii  libcontrolsfx-java                            9.0.0+hg20181001-1                          all          high quality UI controls and other tools to complement JavaFX
ii  libcrack2:amd64                               2.9.6-3.2                                   amd64        pro-active password checker library
ii  libcrypt-dev:amd64                            1:4.4.10-10ubuntu4                          amd64        libcrypt development files
ii  libcrypt1:amd64                               1:4.4.10-10ubuntu4                          amd64        libcrypt shared library
ii  libcrypt1:i386                                1:4.4.10-10ubuntu4                          i386         libcrypt shared library
ii  libcryptsetup12:amd64                         2:2.2.2-3ubuntu2                            amd64        disk encryption support - shared library
ii  libctf-nobfd0:amd64                           2.34-6ubuntu1                               amd64        Compact C Type Format library (runtime, no BFD dependency)
ii  libctf0:amd64                                 2.34-6ubuntu1                               amd64        Compact C Type Format library (runtime, BFD dependency)
ii  libcue2:amd64                                 2.2.1-2                                     amd64        CUE Sheet Parser Library
ii  libcups2:amd64                                2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - Core library
ii  libcups2:i386                                 2.3.1-9ubuntu1.1                            i386         Common UNIX Printing System(tm) - Core library
ii  libcupsfilters1:amd64                         1.27.4-1                                    amd64        OpenPrinting CUPS Filters - Shared library
ii  libcupsimage2:amd64                           2.3.1-9ubuntu1.1                            amd64        Common UNIX Printing System(tm) - Raster image library
ii  libcurl3-gnutls:amd64                         7.68.0-1ubuntu2                             amd64        easy-to-use client-side URL transfer library (GnuTLS flavour)
ii  libcurl3-gnutls:i386                          7.68.0-1ubuntu2                             i386         easy-to-use client-side URL transfer library (GnuTLS flavour)
ii  libcurl4:amd64                                7.68.0-1ubuntu2                             amd64        easy-to-use client-side URL transfer library (OpenSSL flavour)
ii  libdaemon0:amd64                              0.14-7                                      amd64        lightweight C library for daemons - runtime library
ii  libdata-dump-perl                             1.23-1                                      all          Perl module to help dump data structures
ii  libdatrie1:amd64                              0.2.12-3                                    amd64        Double-array trie library
ii  libdatrie1:i386                               0.2.12-3                                    i386         Double-array trie library
ii  libdb5.3:amd64                                5.3.28+dfsg1-0.6ubuntu2                     amd64        Berkeley v5.3 Database Libraries [runtime]
ii  libdb5.3:i386                                 5.3.28+dfsg1-0.6ubuntu2                     i386         Berkeley v5.3 Database Libraries [runtime]
ii  libdbus-1-3:amd64                             1.12.16-2ubuntu2                            amd64        simple interprocess messaging system (library)
ii  libdbus-1-3:i386                              1.12.16-2ubuntu2                            i386         simple interprocess messaging system (library)
ii  libdbus-glib-1-2:amd64                        0.110-5fakssync1                            amd64        deprecated library for D-Bus IPC
ii  libdbusmenu-glib4:amd64                       16.04.1+18.10.20180917-0ubuntu6             amd64        library for passing menus over DBus
ii  libdbusmenu-gtk3-4:amd64                      16.04.1+18.10.20180917-0ubuntu6             amd64        library for passing menus over DBus - GTK+ version
ii  libdbusmenu-gtk4:amd64                        16.04.1+18.10.20180917-0ubuntu6             amd64        library for passing menus over DBus - GTK+ version
ii  libdbusmenu-qt5-2:amd64                       0.9.3+16.04.20160218-2build1                amd64        Qt implementation of the DBusMenu protocol
ii  libdc1394-22:amd64                            2.2.5-2.1                                   amd64        high level programming interface for IEEE 1394 digital cameras
ii  libdca0:amd64                                 0.0.6-1                                     amd64        decoding library for DTS Coherent Acoustics streams
ii  libdconf1:amd64                               0.36.0-1                                    amd64        simple configuration storage system - runtime library
ii  libde265-0:amd64                              1.0.4-1build1                               amd64        Open H.265 video codec implementation
ii  libdebconf-kde1:amd64                         1.0.3-3                                     amd64        Debconf KDE GUI library
ii  libdebconfclient0:amd64                       0.251ubuntu1                                amd64        Debian Configuration Management System (C-implementation library)
ii  libdecoration0:amd64                          1:0.9.14.1+20.04.20200211-0ubuntu1          amd64        Compiz window decoration library
ii  libdee-1.0-4:amd64                            1.2.7+17.10.20170616-4ubuntu6               amd64        Model to synchronize multiple instances over DBus - shared lib
ii  libdevmapper1.02.1:amd64                      2:1.02.167-1ubuntu1                         amd64        Linux Kernel Device Mapper userspace library
ii  libdjvulibre-text                             3.5.27.1-14build1                           all          Linguistic support files for libdjvulibre
ii  libdjvulibre21:amd64                          3.5.27.1-14build1                           amd64        Runtime support for the DjVu image format
ii  libdmtx0b:amd64                               0.7.5-3                                     amd64        Data Matrix barcodes (runtime library)
ii  libdns-export1109                             1:9.11.16+dfsg-3~build1                     amd64        Exported DNS Shared Library
ii  libdolphinvcs5:amd64                          4:19.12.3-0ubuntu1                          amd64        library to show version control in Dolphin
ii  libdouble-conversion3:amd64                   3.1.5-4ubuntu1                              amd64        routines to convert IEEE floats to and from strings
ii  libdpkg-perl                                  1.19.7ubuntu3                               all          Dpkg perl modules
ii  libdrm-amdgpu1:amd64                          2.4.101-2                                   amd64        Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii  libdrm-amdgpu1:i386                           2.4.101-2                                   i386         Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii  libdrm-common                                 2.4.101-2                                   all          Userspace interface to kernel DRM services -- common files
ii  libdrm-intel1:amd64                           2.4.101-2                                   amd64        Userspace interface to intel-specific kernel DRM services -- runtime
ii  libdrm-intel1:i386                            2.4.101-2                                   i386         Userspace interface to intel-specific kernel DRM services -- runtime
ii  libdrm-nouveau2:amd64                         2.4.101-2                                   amd64        Userspace interface to nouveau-specific kernel DRM services -- runtime
ii  libdrm-nouveau2:i386                          2.4.101-2                                   i386         Userspace interface to nouveau-specific kernel DRM services -- runtime
ii  libdrm-radeon1:amd64                          2.4.101-2                                   amd64        Userspace interface to radeon-specific kernel DRM services -- runtime
ii  libdrm-radeon1:i386                           2.4.101-2                                   i386         Userspace interface to radeon-specific kernel DRM services -- runtime
ii  libdrm2:amd64                                 2.4.101-2                                   amd64        Userspace interface to kernel DRM services -- runtime
ii  libdrm2:i386                                  2.4.101-2                                   i386         Userspace interface to kernel DRM services -- runtime
ii  libdv4:amd64                                  1.0.0-12                                    amd64        software library for DV format digital video (runtime lib)
ii  libdv4:i386                                   1.0.0-12                                    i386         software library for DV format digital video (runtime lib)
ii  libdvbpsi10:amd64                             1.3.3-1                                     amd64        library for MPEG TS and DVB PSI tables decoding and generating
ii  libdvdnav4:amd64                              6.0.1-1build1                               amd64        DVD navigation library
ii  libdvdread7:amd64                             6.1.0+really6.0.2-1                         amd64        library for reading DVDs
ii  libdw1:amd64                                  0.176-1.1build1                             amd64        library that provides access to the DWARF debug information
ii  libe-book-0.1-1:amd64                         0.1.3-1build3                               amd64        library for reading and converting various  e-book formats
ii  libebackend-1.2-10:amd64                      3.36.1-2                                    amd64        Utility library for evolution data servers
ii  libebml4v5:amd64                              1.3.10-1build1                              amd64        access library for the EBML format (shared library)
ii  libebook-1.2-20:amd64                         3.36.1-2                                    amd64        Client library for evolution address books
ii  libebook-contacts-1.2-3:amd64                 3.36.1-2                                    amd64        Client library for evolution contacts books
ii  libecal-2.0-1:amd64                           3.36.1-2                                    amd64        Client library for evolution calendars
ii  libedata-book-1.2-26:amd64                    3.36.1-2                                    amd64        Backend library for evolution address books
ii  libedata-cal-2.0-1:amd64                      3.36.1-2                                    amd64        Backend library for evolution calendars
ii  libedataserver-1.2-24:amd64                   3.36.1-2                                    amd64        Utility library for evolution data servers
ii  libedataserverui-1.2-2:amd64                  3.36.1-2                                    amd64        Utility library for evolution data servers
ii  libedit2:amd64                                3.1-20191231-1                              amd64        BSD editline and history libraries
ii  libedit2:i386                                 3.1-20191231-1                              i386         BSD editline and history libraries
ii  libeditorconfig0:amd64                        0.12.1-1.1                                  amd64        coding style indenter across editors - library
ii  libefiboot1:amd64                             37-2ubuntu2                                 amd64        Library to manage UEFI variables
ii  libefivar1:amd64                              37-2ubuntu2                                 amd64        Library to manage UEFI variables
ii  libegl-mesa0:amd64                            20.0.4-2ubuntu1                             amd64        free implementation of the EGL API -- Mesa vendor library
ii  libegl1:amd64                                 1.3.1-1                                     amd64        Vendor neutral GL dispatch library -- EGL support
ii  libelf1:amd64                                 0.176-1.1build1                             amd64        library to read and write ELF files
ii  libelf1:i386                                  0.176-1.1build1                             i386         library to read and write ELF files
ii  libenchant-2-2:amd64                          2.2.8-1                                     amd64        Wrapper library for various spell checker engines (runtime libs)
ii  libencode-locale-perl                         1.05-1                                      all          utility to determine the locale encoding
ii  libeot0:amd64                                 0.01-5                                      amd64        Library for parsing/converting Embedded OpenType files
ii  libepoxy0:amd64                               1.5.4-1                                     amd64        OpenGL function pointer management library
ii  libept1.6.0:amd64                             1.1+nmu3ubuntu3                             amd64        High-level library for managing Debian package information
ii  libepub0                                      0.2.2-4ubuntu2                              amd64        library to work with the EPUB file format - runtime library
ii  libepubgen-0.1-1:amd64                        0.1.1-1ubuntu2                              amd64        EPUB generator library
ii  libestr0:amd64                                0.1.10-2.1                                  amd64        Helper functions for handling strings (lib)
ii  libetonyek-0.1-1:amd64                        0.1.9-3                                     amd64        library for reading and converting Apple Keynote presentations
ii  libevdev2:amd64                               1.9.0+dfsg-1                                amd64        wrapper library for evdev devices
ii  libevdocument3-4:amd64                        3.36.0-2                                    amd64        Document (PostScript, PDF) rendering library
ii  libevent-2.1-7:amd64                          2.1.11-stable-1                             amd64        Asynchronous event notification library
ii  libevview3-3:amd64                            3.36.0-2                                    amd64        Document (PostScript, PDF) rendering library - Gtk+ widgets
ii  libexif12:amd64                               0.6.21-6                                    amd64        library to parse EXIF files
ii  libexif12:i386                                0.6.21-6                                    i386         library to parse EXIF files
ii  libexiv2-27:amd64                             0.27.2-8ubuntu2                             amd64        EXIF/IPTC/XMP metadata manipulation library
ii  libexpat1:amd64                               2.2.9-1build1                               amd64        XML parsing C library - runtime library
ii  libexpat1:i386                                2.2.9-1build1                               i386         XML parsing C library - runtime library
ii  libext2fs2:amd64                              1.45.5-2ubuntu1                             amd64        ext2/ext3/ext4 file system libraries
ii  libexttextcat-2.0-0:amd64                     3.4.5-1                                     amd64        Language detection library
ii  libexttextcat-data                            3.4.5-1                                     all          Language detection library - data files
ii  libextutils-depends-perl                      0.8000-1                                    all          Perl module for building extensions that depend on other extensions
ii  libextutils-pkgconfig-perl                    1.16-1                                      all          Perl interface to the pkg-config utility
ii  libfaac0:amd64                                1.30-1                                      amd64        AAC audio encoder (library)
ii  libfaad2:amd64                                2.9.1-1                                     amd64        freeware Advanced Audio Decoder - runtime files
ii  libfakekey0:amd64                             0.1-10                                      amd64        library for converting characters to X key-presses [runtime]
ii  libfakeroot:amd64                             1.24-1                                      amd64        tool for simulating superuser privileges - shared libraries
ii  libfam0:amd64                                 2.7.0-17.3build2                            amd64        Client library to control the FAM daemon
ii  libfastjson4:amd64                            0.99.8-2                                    amd64        fast json library for C
ii  libfaudio0:amd64                              20.04-2                                     amd64        XAudio sound processing reimplementation - library
ii  libfaudio0:i386                               20.04-2                                     i386         XAudio sound processing reimplementation - library
ii  libfdisk1:amd64                               2.34-0.1ubuntu9                             amd64        fdisk partitioning library
ii  libffi7:amd64                                 3.3-4                                       amd64        Foreign Function Interface library runtime
ii  libffi7:i386                                  3.3-4                                       i386         Foreign Function Interface library runtime
ii  libffmpegthumbnailer4v5                       2.1.1-0.2build2                             amd64        shared library for ffmpegthumbnailer
ii  libfftw3-double3:amd64                        3.3.8-2ubuntu1                              amd64        Library for computing Fast Fourier Transforms - Double precision
ii  libfftw3-single3:amd64                        3.3.8-2ubuntu1                              amd64        Library for computing Fast Fourier Transforms - Single precision
ii  libfido2-1:amd64                              1.3.1-1ubuntu2                              amd64        library for generating and verifying FIDO 2.0 objects
ii  libfile-basedir-perl                          0.08-1                                      all          Perl module to use the freedesktop basedir specification
ii  libfile-desktopentry-perl                     0.22-1                                      all          Perl module to handle freedesktop .desktop files
ii  libfile-fcntllock-perl                        0.22-3build4                                amd64        Perl module for file locking with fcntl(2)
ii  libfile-listing-perl                          6.04-1                                      all          module to parse directory listings
ii  libfile-mimeinfo-perl                         0.29-1                                      all          Perl module to determine file types
ii  libflac++6v5:amd64                            1.3.3-1build1                               amd64        Free Lossless Audio Codec - C++ runtime library
ii  libflac8:amd64                                1.3.3-1build1                               amd64        Free Lossless Audio Codec - runtime C library
ii  libflac8:i386                                 1.3.3-1build1                               i386         Free Lossless Audio Codec - runtime C library
ii  libflite1:amd64                               2.1-release-3                               amd64        Small run-time speech synthesis engine - shared libraries
ii  libfluidsynth2:amd64                          2.1.1-2                                     amd64        Real-time MIDI software synthesizer (runtime library)
ii  libfm-data                                    1.3.1-1                                     all          file management support (common data)
ii  libfm-extra4:amd64                            1.3.1-1                                     amd64        file management support (extra library)
ii  libfm-gtk-data                                1.3.1-1                                     all          file management support (GTK+ library common data)
ii  libfm-gtk4:amd64                              1.3.1-1                                     amd64        file management support (GTK+ 2.0 GUI library)
ii  libfm-modules:amd64                           1.3.1-1                                     amd64        file management support (loadable modules for library)
ii  libfm-qt-l10n                                 0.14.1-12ubuntu3                            all          Language package for libfm-qt
ii  libfm-qt6:amd64                               0.14.1-12ubuntu3                            amd64        file management support for pcmanfm-qt
ii  libfm4:amd64                                  1.3.1-1                                     amd64        file management support (core library)
ii  libfont-afm-perl                              1.20-2                                      all          Font::AFM - Interface to Adobe Font Metrics files
ii  libfontconfig1:amd64                          2.13.1-2ubuntu3                             amd64        generic font configuration library - runtime
ii  libfontconfig1:i386                           2.13.1-2ubuntu3                             i386         generic font configuration library - runtime
ii  libfontembed1:amd64                           1.27.4-1                                    amd64        OpenPrinting CUPS Filters - Font Embed Shared library
ii  libfontenc1:amd64                             1:1.1.4-0ubuntu1                            amd64        X11 font encoding library
ii  libfprint-2-2:amd64                           1:1.90.1+tod1-0ubuntu4                      amd64        async fingerprint library of fprint project, shared libraries
ii  libfprint-2-tod1:amd64                        1:1.90.1+tod1-0ubuntu4                      amd64        async fingerprint library of fprint project, drivers shared libraries
ii  libfreecell-solver0                           5.0.0-2                                     amd64        Library for solving Freecell games
ii  libfreehand-0.1-1                             0.1.2-2ubuntu1                              amd64        Library for parsing the FreeHand file format structure
ii  libfreerdp-client2-2:amd64                    2.0.0~git20190204.1.2693389a+dfsg1-2build2  amd64        Free Remote Desktop Protocol library (client library)
ii  libfreerdp2-2:amd64                           2.0.0~git20190204.1.2693389a+dfsg1-2build2  amd64        Free Remote Desktop Protocol library (core library)
ii  libfreetype6:amd64                            2.10.1-2                                    amd64        FreeType 2 font engine, shared library files
ii  libfreetype6:i386                             2.10.1-2                                    i386         FreeType 2 font engine, shared library files
ii  libfribidi0:amd64                             1.0.8-2                                     amd64        Free Implementation of the Unicode BiDi algorithm
ii  libfribidi0:i386                              1.0.8-2                                     i386         Free Implementation of the Unicode BiDi algorithm
ii  libfuse2:amd64                                2.9.9-3                                     amd64        Filesystem in Userspace (library)
ii  libfwupd2:amd64                               1.3.9-4                                     amd64        Firmware update daemon library
ii  libfwupdplugin1:amd64                         1.3.9-4                                     amd64        Firmware update daemon plugin library
ii  libgail-common:amd64                          2.24.32-4ubuntu4                            amd64        GNOME Accessibility Implementation Library -- common modules
ii  libgail18:amd64                               2.24.32-4ubuntu4                            amd64        GNOME Accessibility Implementation Library -- shared libraries
ii  libgbm1:amd64                                 20.0.4-2ubuntu1                             amd64        generic buffer management API -- runtime
ii  libgc1c2:amd64                                1:7.6.4-0.4ubuntu1                          amd64        conservative garbage collector for C and C++
ii  libgcab-1.0-0:amd64                           1.4-1                                       amd64        Microsoft Cabinet file manipulation library
ii  libgcc-8-dev:amd64                            8.4.0-3ubuntu2                              amd64        GCC support library (development files)
ii  libgcc-9-dev:amd64                            9.3.0-10ubuntu2                             amd64        GCC support library (development files)
ii  libgcc-s1:amd64                               10-20200411-0ubuntu1                        amd64        GCC support library
ii  libgcc-s1:i386                                10-20200411-0ubuntu1                        i386         GCC support library
ii  libgcc1                                       1:10-20200411-0ubuntu1                      amd64        GCC support library (dependency package)
ii  libgck-1-0:amd64                              3.36.0-2build1                              amd64        Glib wrapper library for PKCS#11 - runtime
ii  libgcr-base-3-1:amd64                         3.36.0-2build1                              amd64        Library for Crypto related tasks
ii  libgcr-ui-3-1:amd64                           3.36.0-2build1                              amd64        Library for Crypto UI related tasks
ii  libgcrypt20:amd64                             1.8.5-5ubuntu1                              amd64        LGPL Crypto library - runtime library
ii  libgcrypt20:i386                              1.8.5-5ubuntu1                              i386         LGPL Crypto library - runtime library
ii  libgd3:amd64                                  2.2.5-5.2ubuntu2                            amd64        GD Graphics Library
ii  libgd3:i386                                   2.2.5-5.2ubuntu2                            i386         GD Graphics Library
ii  libgdata-common                               0.17.12-1                                   all          Library for accessing GData webservices - common data files
ii  libgdata22:amd64                              0.17.12-1                                   amd64        Library for accessing GData webservices - shared libraries
ii  libgdbm-compat4:amd64                         1.18.1-5                                    amd64        GNU dbm database routines (legacy support runtime version) 
ii  libgdbm-compat4:i386                          1.18.1-5                                    i386         GNU dbm database routines (legacy support runtime version) 
ii  libgdbm6:amd64                                1.18.1-5                                    amd64        GNU dbm database routines (runtime version) 
ii  libgdbm6:i386                                 1.18.1-5                                    i386         GNU dbm database routines (runtime version) 
ii  libgdk-pixbuf2.0-0:amd64                      2.40.0+dfsg-3                               amd64        GDK Pixbuf library
ii  libgdk-pixbuf2.0-0:i386                       2.40.0+dfsg-3                               i386         GDK Pixbuf library
ii  libgdk-pixbuf2.0-bin                          2.40.0+dfsg-3                               amd64        GDK Pixbuf library (thumbnailer)
ii  libgdk-pixbuf2.0-common                       2.40.0+dfsg-3                               all          GDK Pixbuf library - data files
ii  libgdm1                                       3.34.1-1ubuntu1                             amd64        GNOME Display Manager (shared library)
ii  libgee-0.8-2:amd64                            0.20.3-1                                    amd64        GObject based collection and utility library
ii  libgegl-0.4-0:amd64                           0.4.22-3                                    amd64        Generic Graphics Library
ii  libgegl-common                                0.4.22-3                                    all          Generic Graphics Library - common files
ii  libgeoclue-2-0:amd64                          2.5.6-0ubuntu1                              amd64        convenience library to interact with geoinformation service
ii  libgeocode-glib0:amd64                        3.26.2-2                                    amd64        geocoding and reverse geocoding GLib library using Nominatim
ii  libgeoip1:amd64                               1.6.12-6build1                              amd64        non-DNS IP-to-country resolver library
ii  libgexiv2-2:amd64                             0.12.0-2                                    amd64        GObject-based wrapper around the Exiv2 library
ii  libgfortran5:amd64                            10-20200411-0ubuntu1                        amd64        Runtime library for GNU Fortran applications
ii  libgif7:amd64                                 5.1.9-1                                     amd64        library for GIF images (library)
ii  libgimp2.0                                    2.10.18-1                                   amd64        Libraries for the GNU Image Manipulation Program
ii  libgirepository-1.0-1:amd64                   1.64.0-2                                    amd64        Library for handling GObject introspection data (runtime library)
ii  libgit2-28:amd64                              0.28.4+dfsg.1-2                             amd64        low-level Git library
ii  libgjs0g                                      1.64.1-2ubuntu1                             amd64        Mozilla-based javascript bindings for the GNOME platform
ii  libgl1:amd64                                  1.3.1-1                                     amd64        Vendor neutral GL dispatch library -- legacy GL support
ii  libgl1:i386                                   1.3.1-1                                     i386         Vendor neutral GL dispatch library -- legacy GL support
ii  libgl1-mesa-dri:amd64                         20.0.4-2ubuntu1                             amd64        free implementation of the OpenGL API -- DRI modules
ii  libgl1-mesa-dri:i386                          20.0.4-2ubuntu1                             i386         free implementation of the OpenGL API -- DRI modules
ii  libglade2-0:amd64                             1:2.6.4-2ubuntu2                            amd64        library to load .glade files at runtime
ii  libglapi-mesa:amd64                           20.0.4-2ubuntu1                             amd64        free implementation of the GL API -- shared library
ii  libglapi-mesa:i386                            20.0.4-2ubuntu1                             i386         free implementation of the GL API -- shared library
ii  libgles2:amd64                                1.3.1-1                                     amd64        Vendor neutral GL dispatch library -- GLESv2 support
ii  libglib-object-introspection-perl             0.048-2build1                               amd64        Perl bindings for gobject-introspection libraries
ii  libglib-perl:amd64                            3:1.329.2-1                                 amd64        interface to the GLib and GObject libraries
ii  libglib2.0-0:amd64                            2.64.2-1~fakesync1                          amd64        GLib library of C routines
ii  libglib2.0-0:i386                             2.64.2-1~fakesync1                          i386         GLib library of C routines
ii  libglib2.0-bin                                2.64.2-1~fakesync1                          amd64        Programs for the GLib library
ii  libglib2.0-data                               2.64.2-1~fakesync1                          all          Common files for GLib library
ii  libglibmm-2.4-1v5:amd64                       2.64.2-1                                    amd64        C++ wrapper for the GLib toolkit (shared libraries)
ii  libglu1-mesa:amd64                            9.0.1-1build1                               amd64        Mesa OpenGL utility library (GLU)
ii  libglu1-mesa:i386                             9.0.1-1build1                               i386         Mesa OpenGL utility library (GLU)
ii  libglvnd0:amd64                               1.3.1-1                                     amd64        Vendor neutral GL dispatch library
ii  libglvnd0:i386                                1.3.1-1                                     i386         Vendor neutral GL dispatch library
ii  libglx-mesa0:amd64                            20.0.4-2ubuntu1                             amd64        free implementation of the OpenGL API -- GLX vendor library
ii  libglx-mesa0:i386                             20.0.4-2ubuntu1                             i386         free implementation of the OpenGL API -- GLX vendor library
ii  libglx0:amd64                                 1.3.1-1                                     amd64        Vendor neutral GL dispatch library -- GLX support
ii  libglx0:i386                                  1.3.1-1                                     i386         Vendor neutral GL dispatch library -- GLX support
ii  libgme0:amd64                                 0.6.2-1build1                               amd64        Playback library for video game music files - shared library
ii  libgmp10:amd64                                2:6.2.0+dfsg-4                              amd64        Multiprecision arithmetic library
ii  libgmp10:i386                                 2:6.2.0+dfsg-4                              i386         Multiprecision arithmetic library
ii  libgnome-autoar-0-0:amd64                     0.2.3-2                                     amd64        Archives integration support for GNOME
ii  libgnome-bluetooth13:amd64                    3.34.1-1                                    amd64        GNOME Bluetooth tools - support library
ii  libgnome-desktop-3-19:amd64                   3.36.1-1ubuntu1                             amd64        Utility library for loading .desktop files - runtime files
ii  libgnome-menu-3-0:amd64                       3.36.0-1ubuntu1                             amd64        GNOME implementation of the freedesktop menu specification
ii  libgnomekbd-common                            3.26.1-1                                    all          GNOME library to manage keyboard configuration - common files
ii  libgnomekbd8:amd64                            3.26.1-1                                    amd64        GNOME library to manage keyboard configuration - shared library
ii  libgnustep-base1.26                           1.26.0-7                                    amd64        GNUstep Base library
ii  libgnutls30:amd64                             3.6.13-2ubuntu1                             amd64        GNU TLS library - main runtime library
ii  libgnutls30:i386                              3.6.13-2ubuntu1                             i386         GNU TLS library - main runtime library
ii  libgoa-1.0-0b:amd64                           3.36.0-1ubuntu1                             amd64        library for GNOME Online Accounts
ii  libgoa-1.0-common                             3.36.0-1ubuntu1                             all          library for GNOME Online Accounts - common files
ii  libgoa-backend-1.0-1:amd64                    3.36.0-1ubuntu1                             amd64        backend library for GNOME Online Accounts
ii  libgomp1:amd64                                10-20200411-0ubuntu1                        amd64        GCC OpenMP (GOMP) support library
ii  libgomp1:i386                                 10-20200411-0ubuntu1                        i386         GCC OpenMP (GOMP) support library
ii  libgoogle-gson-java                           2.8.5-3                                     all          Converts Java objects into their JSON representation
ii  libgpg-error-l10n                             1.37-1                                      all          library of error values and messages in GnuPG (localization files)
ii  libgpg-error0:amd64                           1.37-1                                      amd64        GnuPG development runtime library
ii  libgpg-error0:i386                            1.37-1                                      i386         GnuPG development runtime library
ii  libgpgme11:amd64                              1.13.1-7ubuntu2                             amd64        GPGME - GnuPG Made Easy (library)
ii  libgpgmepp6:amd64                             1.13.1-7ubuntu2                             amd64        C++ wrapper library for GPGME
ii  libgphoto2-6:amd64                            2.5.24-1                                    amd64        gphoto2 digital camera library
ii  libgphoto2-6:i386                             2.5.24-1                                    i386         gphoto2 digital camera library
ii  libgphoto2-l10n                               2.5.24-1                                    all          gphoto2 digital camera library - localized messages
ii  libgphoto2-port12:amd64                       2.5.24-1                                    amd64        gphoto2 digital camera port library
ii  libgphoto2-port12:i386                        2.5.24-1                                    i386         gphoto2 digital camera port library
ii  libgpm2:amd64                                 1.20.7-5                                    amd64        General Purpose Mouse - shared library
ii  libgpm2:i386                                  1.20.7-5                                    i386         General Purpose Mouse - shared library
ii  libgps26:amd64                                3.20-8                                      amd64        Global Positioning System - library
ii  libgrantlee-templates5                        5.2.0-0ubuntu2                              amd64        Grantlee templating library for Qt - Templates
ii  libgrantlee-textdocument5                     5.2.0-0ubuntu2                              amd64        Grantlee templating library for Qt - TextDocument
ii  libgraphene-1.0-0:amd64                       1.10.0-1build2                              amd64        library of graphic data types
ii  libgraphite2-3:amd64                          1.3.13-11build1                             amd64        Font rendering engine for Complex Scripts -- library
ii  libgraphite2-3:i386                           1.3.13-11build1                             i386         Font rendering engine for Complex Scripts -- library
ii  libgroupsock8:amd64                           2020.01.19-1build1                          amd64        multimedia RTSP streaming library (network interfaces and sockets)
ii  libgs9:amd64                                  9.50~dfsg-5ubuntu4                          amd64        interpreter for the PostScript language and for PDF - Library
ii  libgs9-common                                 9.50~dfsg-5ubuntu4                          all          interpreter for the PostScript language and for PDF - common files
ii  libgsm1:amd64                                 1.0.18-2                                    amd64        Shared libraries for GSM speech compressor
ii  libgsm1:i386                                  1.0.18-2                                    i386         Shared libraries for GSM speech compressor
ii  libgsound0:amd64                              1.0.2-4                                     amd64        small library for playing system sounds
ii  libgspell-1-2:amd64                           1.8.3-1                                     amd64        spell-checking library for GTK+ applications
ii  libgspell-1-common                            1.8.3-1                                     all          libgspell architecture-independent files
ii  libgssapi-krb5-2:amd64                        1.17-6ubuntu4                               amd64        MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii  libgssapi-krb5-2:i386                         1.17-6ubuntu4                               i386         MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii  libgssapi3-heimdal:amd64                      7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - GSSAPI support library
ii  libgssapi3-heimdal:i386                       7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - GSSAPI support library
ii  libgssdp-1.2-0:amd64                          1.2.2-1                                     amd64        GObject-based library for SSDP
ii  libgstreamer-gl1.0-0:amd64                    1.16.2-4                                    amd64        GStreamer GL libraries
ii  libgstreamer-plugins-bad1.0-0:amd64           1.16.2-2.1ubuntu1                           amd64        GStreamer libraries from the "bad" set
ii  libgstreamer-plugins-base1.0-0:amd64          1.16.2-4                                    amd64        GStreamer libraries from the "base" set
ii  libgstreamer-plugins-base1.0-0:i386           1.16.2-4                                    i386         GStreamer libraries from the "base" set
ii  libgstreamer-plugins-good1.0-0:amd64          1.16.2-1ubuntu2                             amd64        GStreamer development files for libraries from the "good" set
ii  libgstreamer-plugins-good1.0-0:i386           1.16.2-1ubuntu2                             i386         GStreamer development files for libraries from the "good" set
ii  libgstreamer1.0-0:amd64                       1.16.2-2                                    amd64        Core GStreamer libraries and elements
ii  libgstreamer1.0-0:i386                        1.16.2-2                                    i386         Core GStreamer libraries and elements
ii  libgtk-3-0:amd64                              3.24.18-1ubuntu1                            amd64        GTK graphical user interface library
ii  libgtk-3-bin                                  3.24.18-1ubuntu1                            amd64        programs for the GTK graphical user interface library
ii  libgtk-3-common                               3.24.18-1ubuntu1                            all          common files for the GTK graphical user interface library
ii  libgtk2.0-0:amd64                             2.24.32-4ubuntu4                            amd64        GTK graphical user interface library - old version
ii  libgtk2.0-bin                                 2.24.32-4ubuntu4                            amd64        programs for the GTK graphical user interface library
ii  libgtk2.0-common                              2.24.32-4ubuntu4                            all          common files for the GTK graphical user interface library
ii  libgtk3-perl                                  0.037-1                                     all          Perl bindings for the GTK+ graphical user interface library
ii  libgtkmm-3.0-1v5:amd64                        3.24.2-1build1                              amd64        C++ wrappers for GTK+ (shared libraries)
ii  libgtop-2.0-11:amd64                          2.40.0-2                                    amd64        gtop system monitoring library (shared)
ii  libgtop2-common                               2.40.0-2                                    all          gtop system monitoring library (common)
ii  libguava-java                                 19.0-1                                      all          Suite of Google common libraries for Java
ii  libgucharmap-2-90-7:amd64                     1:13.0.1-1                                  amd64        Unicode browser widget library (shared library)
ii  libgudev-1.0-0:amd64                          1:233-1                                     amd64        GObject-based wrapper library for libudev
ii  libgudev-1.0-0:i386                           1:233-1                                     i386         GObject-based wrapper library for libudev
ii  libgupnp-1.2-0:amd64                          1.2.2-1                                     amd64        GObject-based library for UPnP
ii  libgupnp-av-1.0-2                             0.12.11-2                                   amd64        Audio/Visual utility library for GUPnP
ii  libgupnp-dlna-2.0-3                           0.10.5-4                                    amd64        DLNA utility library for GUPnP
ii  libgupnp-igd-1.0-4:amd64                      0.2.5-5                                     amd64        library to handle UPnP IGD port mapping
ii  libgusb2:amd64                                0.3.4-0.1                                   amd64        GLib wrapper around libusb1
ii  libgweather-3-16:amd64                        3.36.0-1                                    amd64        GWeather shared library
ii  libgweather-common                            3.36.0-1                                    all          GWeather common files
ii  libgxps2:amd64                                0.3.1-1                                     amd64        handling and rendering XPS documents (library)
ii  libh2-java                                    1.4.197-4                                   all          H2 Database Engine
ii  libhandy-0.0-0:amd64                          0.0.13-1                                    amd64        Library with GTK widgets for mobile phones
ii  libharfbuzz-icu0:amd64                        2.6.4-1ubuntu4                              amd64        OpenType text shaping engine ICU backend
ii  libharfbuzz0b:amd64                           2.6.4-1ubuntu4                              amd64        OpenType text shaping engine (shared library)
ii  libharfbuzz0b:i386                            2.6.4-1ubuntu4                              i386         OpenType text shaping engine (shared library)
ii  libhavege1:amd64                              1.9.1-6ubuntu1                              amd64        entropy source using the HAVEGE algorithm - shared library
ii  libhcrypto4-heimdal:amd64                     7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - crypto library
ii  libhcrypto4-heimdal:i386                      7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - crypto library
ii  libheif1:amd64                                1.6.1-1build1                               amd64        ISO/IEC 23008-12:2017 HEIF file format decoder - shared library
ii  libheimbase1-heimdal:amd64                    7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - Base library
ii  libheimbase1-heimdal:i386                     7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - Base library
ii  libheimntlm0-heimdal:amd64                    7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - NTLM support library
ii  libheimntlm0-heimdal:i386                     7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - NTLM support library
ii  libhfstospell10:amd64                         0.5.0-2build2                               amd64        HFST spell checker runtime libraries
ii  libhogweed5:amd64                             3.5.1+really3.5.1-2                         amd64        low level cryptographic library (public-key cryptos)
ii  libhogweed5:i386                              3.5.1+really3.5.1-2                         i386         low level cryptographic library (public-key cryptos)
ii  libhpmud0:amd64                               3.20.3+dfsg0-2                              amd64        HP Multi-Point Transport Driver (hpmud) run-time libraries
ii  libhtml-form-perl                             6.07-1                                      all          module that represents an HTML form element
ii  libhtml-format-perl                           2.12-1                                      all          module for transforming HTML into various formats
ii  libhtml-parser-perl                           3.72-5                                      amd64        collection of modules that parse HTML text documents
ii  libhtml-tagset-perl                           3.20-4                                      all          data tables pertaining to HTML
ii  libhtml-tree-perl                             5.07-2                                      all          Perl module to represent and create HTML syntax trees
ii  libhttp-cookies-perl                          6.08-1                                      all          HTTP cookie jars
ii  libhttp-daemon-perl                           6.06-1                                      all          simple http server class
ii  libhttp-date-perl                             6.05-1                                      all          module of date conversion routines
ii  libhttp-message-perl                          6.22-1                                      all          perl interface to HTTP style messages
ii  libhttp-negotiate-perl                        6.01-1                                      all          implementation of content negotiation
ii  libhttp-parser2.9:amd64                       2.9.2-2                                     amd64        parser for HTTP messages written in C
ii  libhttpclient-java                            4.5.11-1                                    all          HTTP/1.1 compliant HTTP agent implementation
ii  libhttpcore-java                              4.4.13-1                                    all          set of low level HTTP transport components for Java
ii  libhunspell-1.7-0:amd64                       1.7.0-2build2                               amd64        spell checker and morphological analyzer (shared library)
ii  libhx509-5-heimdal:amd64                      7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - X509 support library
ii  libhx509-5-heimdal:i386                       7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - X509 support library
ii  libhyphen0:amd64                              2.8.8-7                                     amd64        ALTLinux hyphenation library - shared library
ii  libibus-1.0-5:amd64                           1.5.22-2ubuntu2                             amd64        Intelligent Input Bus - shared library
ii  libibverbs1:amd64                             28.0-1ubuntu1                               amd64        Library for direct userspace use of RDMA (InfiniBand/iWARP)
ii  libical3:amd64                                3.0.8-1                                     amd64        iCalendar library implementation in C (runtime)
ii  libice6:amd64                                 2:1.0.10-0ubuntu1                           amd64        X11 Inter-Client Exchange library
ii  libicu66:amd64                                66.1-2ubuntu2                               amd64        International Components for Unicode
ii  libicu66:i386                                 66.1-2ubuntu2                               i386         International Components for Unicode
ii  libid3tag0:amd64                              0.15.1b-14                                  amd64        ID3 tag reading library from the MAD project
ii  libidn11:amd64                                1.33-2.2ubuntu2                             amd64        GNU Libidn library, implementation of IETF IDN specifications
ii  libidn2-0:amd64                               2.2.0-2                                     amd64        Internationalized domain names (IDNA2008/TR46) library
ii  libidn2-0:i386                                2.2.0-2                                     i386         Internationalized domain names (IDNA2008/TR46) library
ii  libiec61883-0:amd64                           1.2.0-3                                     amd64        partial implementation of IEC 61883 (shared lib)
ii  libiec61883-0:i386                            1.2.0-3                                     i386         partial implementation of IEC 61883 (shared lib)
ii  libieee1284-3:amd64                           0.2.11-13build1                             amd64        cross-platform library for parallel port access
ii  libieee1284-3:i386                            0.2.11-13build1                             i386         cross-platform library for parallel port access
ii  libigdgmm11:amd64                             20.1.1+ds1-1                                amd64        Intel Graphics Memory Management Library -- shared library
ii  libigdgmm11:i386                              20.1.1+ds1-1                                i386         Intel Graphics Memory Management Library -- shared library
ii  libijs-0.35:amd64                             0.35-15                                     amd64        IJS raster image transport protocol: shared library
ii  libilmbase24:amd64                            2.3.0-6build1                               amd64        several utility libraries from ILM used by OpenEXR
ii  libimagequant0:amd64                          2.12.2-1.1                                  amd64        palette quantization library
ii  libimlib2:amd64                               1.6.1-1                                     amd64        image loading, rendering, saving library
ii  libimobiledevice6:amd64                       1.2.1~git20191129.9f79242-1build1           amd64        Library for communicating with iPhone and other Apple devices
ii  libinput-bin                                  1.15.5-1                                    amd64        input device management and event handling library - udev quirks
ii  libinput10:amd64                              1.15.5-1                                    amd64        input device management and event handling library - shared library
ii  libinstpatch-1.0-2:amd64                      1.1.2-2build1                               amd64        MIDI instrument editing library
ii  libio-html-perl                               1.001-1                                     all          open an HTML file with automatic charset detection
ii  libio-socket-ssl-perl                         2.067-1                                     all          Perl module implementing object oriented interface to SSL sockets
ii  libio-stringy-perl                            2.111-3                                     all          modules for I/O on in-core objects (strings/arrays)
ii  libip4tc2:amd64                               1.8.4-3ubuntu2                              amd64        netfilter libip4tc library
ii  libip6tc2:amd64                               1.8.4-3ubuntu2                              amd64        netfilter libip6tc library
ii  libipc-system-simple-perl                     1.26-1                                      all          Perl module to run commands simply, with detailed diagnostics
ii  libisc-export1105:amd64                       1:9.11.16+dfsg-3~build1                     amd64        Exported ISC Shared Library
ii  libisl22:amd64                                0.22.1-1                                    amd64        manipulating sets and relations of integer points bounded by linear constraints
ii  libiso9660-11:amd64                           2.0.0-2                                     amd64        library to work with ISO9660 filesystems
ii  libisofs6:amd64                               1.5.2-1                                     amd64        library to create ISO 9660 images
ii  libitm1:amd64                                 10-20200411-0ubuntu1                        amd64        GNU Transactional Memory Library
ii  libiw30:amd64                                 30~pre9-13ubuntu1                           amd64        Wireless tools - library
ii  libixml10:amd64                               1:1.8.4-2ubuntu2                            amd64        Portable SDK for UPnP Devices, version 1.8 (ixml shared library)
ii  libjack-jackd2-0:amd64                        1.9.12~dfsg-2ubuntu2                        amd64        JACK Audio Connection Kit (libraries)
ii  libjack-jackd2-0:i386                         1.9.12~dfsg-2ubuntu2                        i386         JACK Audio Connection Kit (libraries)
ii  libjackson2-core-java                         2.10.1-1                                    all          fast and powerful JSON library for Java -- core library
ii  libjansson4:amd64                             2.12-1build1                                amd64        C library for encoding, decoding and manipulating JSON data
ii  libjavascriptcoregtk-4.0-18:amd64             2.28.1-1                                    amd64        JavaScript engine library from WebKitGTK
ii  libjbig0:amd64                                2.1-3.1build1                               amd64        JBIGkit libraries
ii  libjbig0:i386                                 2.1-3.1build1                               i386         JBIGkit libraries
ii  libjbig2dec0:amd64                            0.18-1ubuntu1                               amd64        JBIG2 decoder library - shared libraries
ii  libjchart2d-java                              3.2.2+dfsg2-2                               all          Java library for precise 2D charting visualizations
ii  libjiconfont-font-awesome-java                4.7.0.0-1                                   all          jIconFont - Font Awesome
ii  libjiconfont-java                             1.0.0-1                                     all          API to provide icons generated by any icon font
ii  libjiconfont-swing-java                       1.0.1-1                                     all          jIconFont - Swing support
ii  libjide-oss-java                              3.7.6+dfsg-1                                all          extensible Swing component library for Java
ii  libjpeg-turbo-progs                           2.0.3-0ubuntu1                              amd64        Programs for manipulating JPEG files
ii  libjpeg-turbo8:amd64                          2.0.3-0ubuntu1                              amd64        IJG JPEG compliant runtime library.
ii  libjpeg-turbo8:i386                           2.0.3-0ubuntu1                              i386         IJG JPEG compliant runtime library.
ii  libjpeg8:amd64                                8c-2ubuntu8                                 amd64        Independent JPEG Group's JPEG runtime library (dependency package)
ii  libjpeg8:i386                                 8c-2ubuntu8                                 i386         Independent JPEG Group's JPEG runtime library (dependency package)
ii  libjs-jquery                                  3.3.1~dfsg-3                                all          JavaScript library for dynamic web applications
ii  libjs-underscore                              1.9.1~dfsg-1                                all          JavaScript's functional programming helper library
ii  libjson-c4:amd64                              0.13.1+dfsg-7                               amd64        JSON manipulation library - shared library
ii  libjson-glib-1.0-0:amd64                      1.4.4-2ubuntu2                              amd64        GLib JSON manipulation library
ii  libjson-glib-1.0-common                       1.4.4-2ubuntu2                              all          GLib JSON manipulation library (common files)
ii  libjsr305-java                                0.1~+svn49-11                               all          Java library that provides annotations for software defect detection
ii  libjte2:amd64                                 1.22-3build1                                amd64        Jigdo Template Export - runtime library
ii  libjuh-java                                   1:6.4.2-0ubuntu3                            all          LibreOffice UNO runtime environment -- Java Uno helper
ii  libjurt-java                                  1:6.4.2-0ubuntu3                            all          LibreOffice UNO runtime environment -- Java Uno Runtime
ii  libk3b7                                       19.12.3-0ubuntu1                            amd64        KDE CD/DVD burning application library - runtime files
ii  libk3b7-extracodecs                           19.12.3-0ubuntu1                            amd64        KDE CD/DVD burning application library - extra decoders
ii  libk5crypto3:amd64                            1.17-6ubuntu4                               amd64        MIT Kerberos runtime libraries - Crypto Library
ii  libk5crypto3:i386                             1.17-6ubuntu4                               i386         MIT Kerberos runtime libraries - Crypto Library
ii  libkaccounts1:amd64                           4:19.12.3-0ubuntu1                          amd64        System to administer web accounts - shared library
ii  libkate1:amd64                                0.4.1-11build1                              amd64        Codec for karaoke and text encapsulation
ii  libkdecorations2-5v5                          4:5.18.4.1-0ubuntu1                         amd64        library to create window decorations
ii  libkdecorations2private7                      4:5.18.4.1-0ubuntu1                         amd64        library to create window decorations - private library
ii  libkeyutils1:amd64                            1.6-6ubuntu1                                amd64        Linux Key Management Utilities (library)
ii  libkeyutils1:i386                             1.6-6ubuntu1                                i386         Linux Key Management Utilities (library)
ii  libkf5activities5:amd64                       5.68.0-0ubuntu2                             amd64        Library to organize the user work in separate activities.
ii  libkf5activitiesstats1:amd64                  5.68.0-0ubuntu1                             amd64        usage data collected by the activities system
ii  libkf5akonadi-data                            4:19.12.3-0ubuntu2                          all          Akonadi arch independent data
ii  libkf5akonadiagentbase5:amd64                 4:19.12.3-0ubuntu2                          amd64        Akonadi agent base library
ii  libkf5akonadicalendar-data                    4:19.12.3-0ubuntu1                          all          library providing calendar helpers for Akonadi items - data files
ii  libkf5akonadicalendar5abi2:amd64              4:19.12.3-0ubuntu1                          amd64        library providing calendar helpers for Akonadi items
ii  libkf5akonadicontact-data                     4:19.12.3-0ubuntu1                          all          akonadi-contacts - data files
ii  libkf5akonadicontact5abi1:amd64               4:19.12.3-0ubuntu1                          amd64        Akonadi contacts access library
ii  libkf5akonadicore-bin                         4:19.12.3-0ubuntu2                          amd64        Tools for Akonadi core library
ii  libkf5akonadicore5abi2:amd64                  4:19.12.3-0ubuntu2                          amd64        Akonadi core library
ii  libkf5akonadimime-data                        4:19.12.3-0ubuntu1                          all          akonadi-mime - data files
ii  libkf5akonadimime5:amd64                      4:19.12.3-0ubuntu1                          amd64        Akonadi MIME handling library
ii  libkf5akonadinotes-data                       4:19.12.3-0ubuntu1                          all          Akonadi notes access library - data files
ii  libkf5akonadinotes5:amd64                     4:19.12.3-0ubuntu1                          amd64        Akonadi notes access library
ii  libkf5akonadiprivate5abi2:amd64               4:19.12.3-0ubuntu2                          amd64        libraries for the Akonadi PIM storage service
ii  libkf5akonadisearch-bin                       4:19.12.3-0ubuntu1                          amd64        Akonadi search library - runtime binaries
ii  libkf5akonadisearch-data                      4:19.12.3-0ubuntu1                          all          Akonadi search library - data files
ii  libkf5akonadisearch-plugins:amd64             4:19.12.3-0ubuntu1                          amd64        Akonadi search library - runtime plugins
ii  libkf5akonadisearchcore5:amd64                4:19.12.3-0ubuntu1                          amd64        Akonadi search core library
ii  libkf5akonadisearchdebug5:amd64               4:19.12.3-0ubuntu1                          amd64        Akonadi search debug library
ii  libkf5akonadisearchpim5:amd64                 4:19.12.3-0ubuntu1                          amd64        Akonadi search library
ii  libkf5akonadisearchxapian5:amd64              4:19.12.3-0ubuntu1                          amd64        Akonadi search xapian library
ii  libkf5akonadiwidgets5abi1:amd64               4:19.12.3-0ubuntu2                          amd64        Akonadi widgets library
ii  libkf5alarmcalendar-data                      4:19.12.3-0ubuntu1                          all          library for handling kalarm calendar data
ii  libkf5alarmcalendar5abi2:amd64                4:19.12.3-0ubuntu1                          amd64        library for handling kalarm calendar data
ii  libkf5archive5:amd64                          5.68.0-0ubuntu1                             amd64        Qt 5 addon providing access to numerous types of archives
ii  libkf5attica5:amd64                           5.68.0-0ubuntu1                             amd64        Qt library that implements the Open Collaboration Services API
ii  libkf5auth-data                               5.68.0-0ubuntu1                             all          Abstraction to system policy and authentication features
ii  libkf5auth5:amd64                             5.68.0-0ubuntu1                             amd64        Abstraction to system policy and authentication features
ii  libkf5authcore5:amd64                         5.68.0-0ubuntu1                             amd64        Abstraction to system policy and authentication features
ii  libkf5baloo5                                  5.68.0-0ubuntu1                             amd64        framework for searching and managing metadata core lib.
ii  libkf5balooengine5                            5.68.0-0ubuntu1                             amd64        framework for searching and managing metadata plugins
ii  libkf5baloowidgets-bin                        4:19.12.3-0ubuntu1                          amd64        Wigets for use with Baloo - binaries
ii  libkf5baloowidgets-data                       4:19.12.3-0ubuntu1                          all          Wigets for use with Baloo - data files
ii  libkf5baloowidgets5:amd64                     4:19.12.3-0ubuntu1                          amd64        Wigets for use with Baloo
ii  libkf5bluezqt-data                            5.68.0-0ubuntu1                             all          data files for bluez-qt
ii  libkf5bluezqt6:amd64                          5.68.0-0ubuntu1                             amd64        Qt wrapper for bluez
ii  libkf5bookmarks-data                          5.68.0-0ubuntu1                             all          Qt library with support for bookmarks and the XBEL format.
ii  libkf5bookmarks5:amd64                        5.68.0-0ubuntu1                             amd64        Qt library with support for bookmarks and the XBEL format.
ii  libkf5calendarcore5abi2:amd64                 5:5.68.0-0ubuntu1                           amd64        calendar access framework
ii  libkf5calendarevents5:amd64                   5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE frameworks -- calendarevents
ii  libkf5calendarsupport-data                    4:19.12.3-0ubuntu1                          all          KDE PIM Calendar support - data files
ii  libkf5calendarsupport5abi1:amd64              4:19.12.3-0ubuntu1                          amd64        KDE PIM Calendar support - library
ii  libkf5calendarutils-bin:amd64                 4:19.12.3-0ubuntu1                          amd64        library with utility functions for the handling of calendar data
ii  libkf5calendarutils-data                      4:19.12.3-0ubuntu1                          all          library with utility functions for the handling of calendar data
ii  libkf5calendarutils5abi1:amd64                4:19.12.3-0ubuntu1                          amd64        library with utility functions for the handling of calendar data
ii  libkf5cddb-data                               4:19.12.3-0ubuntu1                          all          CDDB library for KDE Platform - data files
ii  libkf5cddb5:amd64                             4:19.12.3-0ubuntu1                          amd64        CDDB library for KDE Platform (runtime)
ii  libkf5codecs-data                             5.68.0-0ubuntu1                             all          collection of methods to manipulate strings
ii  libkf5codecs5:amd64                           5.68.0-0ubuntu1                             amd64        collection of methods to manipulate strings
ii  libkf5compactdisc-data                        4:19.12.3-0ubuntu1                          all          CD drive library for KDE Platform - data files
ii  libkf5compactdisc5:amd64                      4:19.12.3-0ubuntu1                          amd64        CD drive library for KDE Platform (runtime)
ii  libkf5completion-data                         5.68.0-0ubuntu1                             all          Widgets with advanced auto-completion features.
ii  libkf5completion5:amd64                       5.68.0-0ubuntu1                             amd64        Widgets with advanced auto-completion features.
ii  libkf5config-bin                              5.68.0-0ubuntu1                             amd64        configuration settings framework for Qt
ii  libkf5config-data                             5.68.0-0ubuntu1                             all          configuration settings framework for Qt
ii  libkf5configcore5:amd64                       5.68.0-0ubuntu1                             amd64        configuration settings framework for Qt
ii  libkf5configgui5:amd64                        5.68.0-0ubuntu1                             amd64        configuration settings framework for Qt
ii  libkf5configwidgets-data                      5.68.0-0ubuntu1                             all          Extra widgets for easier configuration support.
ii  libkf5configwidgets5:amd64                    5.68.0-0ubuntu1                             amd64        Extra widgets for easier configuration support.
ii  libkf5contacteditor5:amd64                    4:19.12.3-0ubuntu1                          amd64        Akonadi contact editor library
ii  libkf5contacts-data                           5:5.68.0-0ubuntu1                           all          data files for kcontacts
ii  libkf5contacts5:amd64                         5:5.68.0-0ubuntu1                           amd64        address book API for KDE frameworks
ii  libkf5coreaddons-data                         5.68.0-0ubuntu1                             all          KDE Frameworks 5 addons to QtCore - data files
ii  libkf5coreaddons5:amd64                       5.68.0-0ubuntu1                             amd64        KDE Frameworks 5 addons to QtCore
ii  libkf5crash5:amd64                            5.68.0-0ubuntu1                             amd64        Support for application crash analysis and bug report from apps
ii  libkf5dbusaddons-bin                          5.68.0-0ubuntu1                             amd64        class library for qtdbus
ii  libkf5dbusaddons-data                         5.68.0-0ubuntu1                             all          class library for qtdbus
ii  libkf5dbusaddons5:amd64                       5.68.0-0ubuntu1                             amd64        class library for qtdbus
ii  libkf5declarative-data                        5.68.0-0ubuntu2                             all          provides integration of QML and KDE frameworks
ii  libkf5declarative5:amd64                      5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE frameworks
ii  libkf5dnssd-data                              5.68.0-0ubuntu1                             all          Abstraction to system DNSSD features.
ii  libkf5dnssd5:amd64                            5.68.0-0ubuntu1                             amd64        Abstraction to system DNSSD features.
ii  libkf5doctools5:amd64                         5.68.0-0ubuntu1                             amd64        Tools to generate documentation in various formats from DocBook
ii  libkf5emoticons-bin                           5.68.0-0ubuntu1                             amd64        Support for emoticons and emoticons themes.
ii  libkf5emoticons-data                          5.68.0-0ubuntu1                             all          Support for emoticons and emoticons themes.
ii  libkf5emoticons5:amd64                        5.68.0-0ubuntu1                             amd64        Support for emoticons and emoticons themes.
ii  libkf5eventviews-data                         4:19.12.3-0ubuntu1                          all          KDE PIM event handling - data files
ii  libkf5eventviews5abi1:amd64                   4:19.12.3-0ubuntu1                          amd64        KDE PIM event handling - library
ii  libkf5filemetadata-bin:amd64                  5.68.0-0ubuntu1                             amd64        library for extracting file metadata
ii  libkf5filemetadata-data                       5.68.0-0ubuntu1                             all          library for extracting file metadata
ii  libkf5filemetadata3:amd64                     5.68.0-0ubuntu1                             amd64        library for extracting file metadata
ii  libkf5followupreminder5:amd64                 4:19.12.3-0ubuntu1                          amd64        follow up reminder library
ii  libkf5globalaccel-bin                         5.68.0-0ubuntu1                             amd64        Configurable global shortcut support.
ii  libkf5globalaccel-data                        5.68.0-0ubuntu1                             all          Configurable global shortcut support.
ii  libkf5globalaccel5:amd64                      5.68.0-0ubuntu1                             amd64        Configurable global shortcut support.
ii  libkf5globalaccelprivate5:amd64               5.68.0-0ubuntu1                             amd64        Configurable global shortcut support - private runtime library
ii  libkf5grantleetheme-data                      19.12.3-0ubuntu1                            all          KDE PIM grantlee theme support - data files
ii  libkf5grantleetheme-plugins                   19.12.3-0ubuntu1                            amd64        KDE PIM grantlee theme support - plugins
ii  libkf5grantleetheme5                          19.12.3-0ubuntu1                            amd64        KDE PIM grantlee theme support - library
ii  libkf5gravatar-data                           4:19.12.3-0ubuntu1                          all          KDE PIM gravatar library - data files
ii  libkf5gravatar5abi2:amd64                     4:19.12.3-0ubuntu1                          amd64        KDE PIM gravatar library
ii  libkf5guiaddons5:amd64                        5.68.0-0ubuntu1                             amd64        additional addons for QtGui
ii  libkf5holidays-data                           1:5.68.0-0ubuntu1                           all          holidays calculation library
ii  libkf5holidays5:amd64                         1:5.68.0-0ubuntu1                           amd64        holidays calculation library
ii  libkf5i18n-data                               5.68.0-0ubuntu1                             all          Advanced internationalization framework.
ii  libkf5i18n5:amd64                             5.68.0-0ubuntu1                             amd64        Advanced internationalization framework.
ii  libkf5iconthemes-bin                          5.68.0-0ubuntu1                             amd64        Support for icon themes
ii  libkf5iconthemes-data                         5.68.0-0ubuntu1                             all          Support for icon themes.
ii  libkf5iconthemes5:amd64                       5.68.0-0ubuntu1                             amd64        Support for icon themes.
ii  libkf5identitymanagement-data                 19.12.3-0ubuntu1                            all          library for managing user identities
ii  libkf5identitymanagement5abi1:amd64           19.12.3-0ubuntu1                            amd64        library for managing user identities
ii  libkf5idletime5:amd64                         5.68.0-0ubuntu1                             amd64        library to provide information about idle time
ii  libkf5imap-data                               19.12.3-0ubuntu1                            all          library for handling IMAP data
ii  libkf5imap5:amd64                             19.12.3-0ubuntu1                            amd64        library for handling IMAP data
ii  libkf5incidenceeditor-bin                     19.12.3-0ubuntu1                            amd64        KDE PIM incidence editor
ii  libkf5incidenceeditor-data                    19.12.3-0ubuntu1                            all          KDE PIM incidence editor - data files
ii  libkf5incidenceeditor5abi2:amd64              19.12.3-0ubuntu1                            amd64        KDE PIM incidence editor - library
ii  libkf5itemmodels5:amd64                       5.68.0-0ubuntu1                             amd64        additional item/view models for Qt Itemview
ii  libkf5itemviews-data                          5.68.0-0ubuntu1                             all          Qt library with additional widgets for ItemModels
ii  libkf5itemviews5:amd64                        5.68.0-0ubuntu1                             amd64        Qt library with additional widgets for ItemModels
ii  libkf5jobwidgets-data                         5.68.0-0ubuntu1                             all          Widgets for tracking KJob instances
ii  libkf5jobwidgets5:amd64                       5.68.0-0ubuntu1                             amd64        Widgets for tracking KJob instances
ii  libkf5js5:amd64                               5.68.0-0ubuntu1                             amd64        Support for JS scripting in Qt applications
ii  libkf5jsapi5:amd64                            5.68.0-0ubuntu1                             amd64        Support for JS scripting in Qt applications
ii  libkf5kaddressbookgrantlee5:amd64             4:19.12.3-0ubuntu1                          amd64        follow up reminder library
ii  libkf5kaddressbookimportexport5:amd64         4:19.12.3-0ubuntu1                          amd64        Addressbook import export library
ii  libkf5kcmutils-data                           5.68.0-0ubuntu1                             all          Extra APIs to write KConfig modules.
ii  libkf5kcmutils5:amd64                         5.68.0-0ubuntu1                             amd64        Extra APIs to write KConfig modules.
ii  libkf5kdcraw5:amd64                           19.12.3-0ubuntu1                            amd64        RAW picture decoding library
ii  libkf5kdegames-data                           4:19.12.3-1ubuntu1                          all          shared library for KDE games - data files
ii  libkf5kdegames7:amd64                         4:19.12.3-1ubuntu1                          amd64        shared library for KDE games
ii  libkf5kdegamesprivate1:amd64                  4:19.12.3-1ubuntu1                          amd64        private part of shared library for KDE games
ii  libkf5kdelibs4support-data                    5.68.0-0ubuntu1                             all          Porting aid from KDELibs4.
ii  libkf5kdelibs4support5:amd64                  5.68.0-0ubuntu1                             amd64        Porting aid from KDELibs4.
ii  libkf5kdelibs4support5-bin                    5.68.0-0ubuntu1                             amd64        Porting aid from KDELibs4.
ii  libkf5kdepimdbusinterfaces5:amd64             4:19.12.3-0ubuntu1                          amd64        KDE PIM D-Bus interfaces library
ii  libkf5kexiv2-15.0.0:amd64                     19.12.3-0ubuntu1                            amd64        Qt like interface for the libexiv2 library
ii  libkf5khtml-bin                               5.68.0-0ubuntu1                             amd64        HTML widget and component
ii  libkf5khtml-data                              5.68.0-0ubuntu1                             all          HTML widget and component
ii  libkf5khtml5:amd64                            5.68.0-0ubuntu1                             amd64        HTML widget and component
ii  libkf5kiocore5:amd64                          5.68.0-0ubuntu1                             amd64        resource and network access abstraction (KIO core library)
ii  libkf5kiofilewidgets5:amd64                   5.68.0-0ubuntu1                             amd64        resource and network access abstraction (KIO file widgets library)
ii  libkf5kiogui5:amd64                           5.68.0-0ubuntu1                             amd64        resource and network access abstraction (KIO gui library)
ii  libkf5kiontlm5:amd64                          5.68.0-0ubuntu1                             amd64        resource and network access abstraction (KIO NTLM library)
ii  libkf5kiowidgets5:amd64                       5.68.0-0ubuntu1                             amd64        resource and network access abstraction (KIO widgets library)
ii  libkf5kipi-data                               4:19.12.3-0ubuntu1                          all          KDE Image Plugin Interface library -- data files
ii  libkf5kipi32.0.0:amd64                        4:19.12.3-0ubuntu1                          amd64        KDE Image Plugin Interface library
ii  libkf5kirigami2-5                             5.68.0-0ubuntu2                             amd64        set of QtQuick components targeted for mobile use
ii  libkf5kmahjongglib-data                       4:19.12.3-0ubuntu1                          all          shared library for kmahjongg and kshisen
ii  libkf5kmahjongglib5                           4:19.12.3-0ubuntu1                          amd64        shared library for kmahjongg and kshisen
ii  libkf5kmanagesieve5:amd64                     4:19.12.3-0ubuntu1                          amd64        Sieve remote script management support for kdepim, library
ii  libkf5kontactinterface-data                   19.12.3-0ubuntu1                            all          Kontact interface library - data files
ii  libkf5kontactinterface5:amd64                 19.12.3-0ubuntu1                            amd64        Kontact interface library
ii  libkf5krosscore5:amd64                        5.68.0-0ubuntu1                             amd64        Multi-language application scripting.
ii  libkf5krossui5:amd64                          5.68.0-0ubuntu1                             amd64        Multi-language application scripting.
ii  libkf5ksieve-data                             4:19.12.3-0ubuntu1                          all          Sieve mail filtering language support for kdepim, data files
ii  libkf5ksieve5:amd64                           4:19.12.3-0ubuntu1                          amd64        Sieve mail filtering language support for kdepim, library
ii  libkf5ksieveui5:amd64                         4:19.12.3-0ubuntu1                          amd64        Sieve mail filtering language support for kdepim, GUI library
ii  libkf5ldap-data                               19.12.3-0ubuntu1                            all          library for accessing LDAP
ii  libkf5ldap5abi1:amd64                         19.12.3-0ubuntu1                            amd64        library for accessing LDAP
ii  libkf5libkdepim-data                          4:19.12.3-0ubuntu1                          all          KDE PIM library - data files
ii  libkf5libkdepim-plugins:amd64                 4:19.12.3-0ubuntu1                          amd64        KDE PIM library - plugins
ii  libkf5libkdepim5abi2:amd64                    4:19.12.3-0ubuntu1                          amd64        KDE PIM library
ii  libkf5libkdepimakonadi5:amd64                 4:19.12.3-0ubuntu1                          amd64        KDE PIM Akonadi library
ii  libkf5libkleo5abi1:amd64                      4:19.12.3-0ubuntu1                          amd64        KDE PIM cryptographic library
ii  libkf5mailcommon-plugins:amd64                4:19.12.3-0ubuntu1                          amd64        KDE PIM email utility library, plugins
ii  libkf5mailcommon5abi4:amd64                   4:19.12.3-0ubuntu1                          amd64        KDE PIM email utility library
ii  libkf5mailimporter-data                       4:19.12.3-0ubuntu1                          all          KDE PIM Mail importer library
ii  libkf5mailimporter5abi1:amd64                 4:19.12.3-0ubuntu1                          amd64        KDE PIM Mail importer library
ii  libkf5mailimporterakonadi5:amd64              4:19.12.3-0ubuntu1                          amd64        KDE PIM Mail importer Akonadi library
ii  libkf5mailtransport-data                      19.12.3-0ubuntu1                            all          mail transport service library - data files
ii  libkf5mailtransport5abi2:amd64                19.12.3-0ubuntu1                            amd64        mail transport service library
ii  libkf5mailtransportakonadi5:amd64             19.12.3-0ubuntu1                            amd64        mail transport service library for akonadi
ii  libkf5mbox5:amd64                             19.12.3-0ubuntu1                            amd64        library for handling mbox mailboxes
ii  libkf5messagecomposer5abi2:amd64              4:19.12.3-0ubuntu1                          amd64        KDE PIM messaging library, composer library
ii  libkf5messagecore5abi2:amd64                  4:19.12.3-0ubuntu1                          amd64        KDE PIM messaging library, core library
ii  libkf5messagelist5abi1:amd64                  4:19.12.3-0ubuntu1                          amd64        KDE PIM messaging library, message list library
ii  libkf5messageviewer-plugins:amd64             4:19.12.3-0ubuntu1                          amd64        KDE PIM messaging library, message viewer library
ii  libkf5messageviewer5abi5:amd64                4:19.12.3-0ubuntu1                          amd64        KDE PIM messaging library, message viewer library
ii  libkf5mime-data                               19.12.3-0ubuntu1                            all          library for handling MIME data
ii  libkf5mime5abi2:amd64                         19.12.3-0ubuntu1                            amd64        library for handling MIME data
ii  libkf5mimetreeparser5abi3:amd64               4:19.12.3-0ubuntu1                          amd64        KDE PIM Mime Tree parser library
ii  libkf5modemmanagerqt6:amd64                   5.68.0-0ubuntu1                             amd64        Qt wrapper library for ModemManager
ii  libkf5networkmanagerqt6                       5.68.0-0ubuntu1                             amd64        Qt wrapper for NetworkManager - library
ii  libkf5newstuff-data                           5.68.0-0ubuntu2                             all          Support for downloading application assets from the network.
ii  libkf5newstuff5:amd64                         5.68.0-0ubuntu2                             amd64        Support for downloading application assets from the network.
ii  libkf5newstuffcore5:amd64                     5.68.0-0ubuntu2                             amd64        Support for downloading application assets from the network.
ii  libkf5notifications-data                      5.68.0-0ubuntu1                             all          Framework for desktop notifications
ii  libkf5notifications5:amd64                    5.68.0-0ubuntu1                             amd64        Framework for desktop notifications
ii  libkf5notifyconfig-data                       5.68.0-0ubuntu1                             all          Configuration system for KNotify.
ii  libkf5notifyconfig5:amd64                     5.68.0-0ubuntu1                             amd64        Configuration system for KNotify.
ii  libkf5package-data                            5.68.0-0ubuntu1                             all          non-binary asset management framework
ii  libkf5package5:amd64                          5.68.0-0ubuntu1                             amd64        non-binary asset management framework
ii  libkf5parts-data                              5.68.0-0ubuntu1                             all          Document centric plugin system.
ii  libkf5parts-plugins                           5.68.0-0ubuntu1                             amd64        Document centric plugin system.
ii  libkf5parts5:amd64                            5.68.0-0ubuntu1                             amd64        Document centric plugin system.
ii  libkf5people-data                             5.68.0-0ubuntu1                             all          data files for kpeople
ii  libkf5people5:amd64                           5.68.0-0ubuntu1                             amd64        framework providing unified access to contacts aggregated by person
ii  libkf5peoplebackend5:amd64                    5.68.0-0ubuntu1                             amd64        framework providing unified access to contacts aggregated by person
ii  libkf5peoplewidgets5:amd64                    5.68.0-0ubuntu1                             amd64        framework providing unified access to contacts aggregated by person
ii  libkf5pimcommon-plugins:amd64                 4:19.12.3-0ubuntu1                          amd64        Common library for KDE PIM - plugins
ii  libkf5pimcommon5abi3:amd64                    4:19.12.3-0ubuntu1                          amd64        Common library for KDE PIM
ii  libkf5pimcommonakonadi5:amd64                 4:19.12.3-0ubuntu1                          amd64        Common library for KDE PIM Akonadi
ii  libkf5pimtextedit-data                        19.12.3-0ubuntu1                            all          library that provides a textedit with PIM-specific features
ii  libkf5pimtextedit5abi3:amd64                  19.12.3-0ubuntu1                            amd64        library that provides a textedit with PIM-specific features
ii  libkf5plasma5:amd64                           5.68.0-0ubuntu1                             amd64        Plasma Runtime components
ii  libkf5plasmaquick5:amd64                      5.68.0-0ubuntu1                             amd64        Plasma Runtime components
ii  libkf5plotting5:amd64                         5.68.0-0ubuntu1                             amd64        KPlotting provides classes to do plotting.
ii  libkf5prison5:amd64                           5.68.0-0ubuntu1                             amd64        barcode API for Qt
ii  libkf5pty-data                                5.68.0-0ubuntu1                             all          Pty abstraction.
ii  libkf5pty5:amd64                              5.68.0-0ubuntu1                             amd64        Pty abstraction.
ii  libkf5pulseaudioqt2:amd64                     1.2-2build1                                 amd64        Pulseaudio bindings library for Qt
ii  libkf5purpose-bin:amd64                       5.68.0-0ubuntu1                             amd64        abstraction to provide and leverage actions of a specific kind, runtime
ii  libkf5purpose5:amd64                          5.68.0-0ubuntu1                             amd64        library for abstractions to get the developer's purposes fulfilled
ii  libkf5quickaddons5:amd64                      5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE frameworks -- quickaddons
ii  libkf5runner5:amd64                           5.68.0-0ubuntu1                             amd64        Used to write plugins loaded at runtime called "Runners".
ii  libkf5sane-data                               19.12.3-0ubuntu1                            all          scanner library (data files)
ii  libkf5sane5:amd64                             19.12.3-0ubuntu1                            amd64        scanner library (runtime)
ii  libkf5screen-bin                              4:5.18.4.1-0ubuntu1                         amd64        library for screen management - helpers
ii  libkf5screen7:amd64                           4:5.18.4.1-0ubuntu1                         amd64        library for screen management - shared library
ii  libkf5sendlater5:amd64                        4:19.12.3-0ubuntu1                          amd64        send later library
ii  libkf5service-bin                             5.68.0-0ubuntu1                             amd64        Advanced plugin and service introspection
ii  libkf5service-data                            5.68.0-0ubuntu1                             all          Advanced plugin and service introspection
ii  libkf5service5:amd64                          5.68.0-0ubuntu1                             amd64        Advanced plugin and service introspection
ii  libkf5solid5:amd64                            5.68.0-0ubuntu1                             amd64        Qt library to query and control hardware
ii  libkf5solid5-data                             5.68.0-0ubuntu1                             all          Qt library to query and control hardware
ii  libkf5sonnet5-data                            5.68.0-0ubuntu1                             all          spell checking library for Qt, data files
ii  libkf5sonnetcore5:amd64                       5.68.0-0ubuntu1                             amd64        spell checking library for Qt, core lib
ii  libkf5sonnetui5:amd64                         5.68.0-0ubuntu1                             amd64        spell checking library for Qt, ui lib
ii  libkf5style5:amd64                            5.68.0-0ubuntu1                             amd64        KF5 cross-framework integration plugins - KStyle
ii  libkf5su-bin                                  5.68.0-0ubuntu1                             amd64        runtime files for kdesu
ii  libkf5su-data                                 5.68.0-0ubuntu1                             all          translation files for kdesu
ii  libkf5su5:amd64                               5.68.0-0ubuntu1                             amd64        Integration with su for elevated privileges.
ii  libkf5syndication5abi1:amd64                  1:5.68.0-0ubuntu1                           amd64        parser library for RSS and Atom feeds
ii  libkf5syntaxhighlighting-data                 5.68.0-0ubuntu1                             all          Syntax highlighting Engine - translations
ii  libkf5syntaxhighlighting5                     5.68.0-0ubuntu1                             amd64        Syntax highlighting Engine
ii  libkf5sysguard-bin:amd64                      4:5.18.4.1-0ubuntu1                         amd64        library for monitoring your system - shared library
ii  libkf5sysguard-data                           4:5.18.4.1-0ubuntu1                         all          library for monitoring your system - shared library
ii  libkf5templateparser5abi2:amd64               4:19.12.3-0ubuntu1                          amd64        KMail template parser library
ii  libkf5texteditor-bin                          5.68.0-0ubuntu1                             amd64        provide advanced plain text editing services (binaries)
ii  libkf5texteditor5:amd64                       5.68.0-0ubuntu1                             amd64        provide advanced plain text editing services
ii  libkf5texteditor5-libjs-underscore            5.68.0-0ubuntu1                             amd64        Bridge package for libjs-underscore
ii  libkf5textwidgets-data                        5.68.0-0ubuntu1                             all          Advanced text editing widgets.
ii  libkf5textwidgets5:amd64                      5.68.0-0ubuntu1                             amd64        Advanced text editing widgets.
ii  libkf5threadweaver5:amd64                     5.68.0-0ubuntu1                             amd64        ThreadWeaver library to help multithreaded programming in Qt
ii  libkf5tnef-data                               4:19.12.3-0ubuntu1                          all          library for handling TNEF data - data files
ii  libkf5tnef5:amd64                             4:19.12.3-0ubuntu1                          amd64        library for handling TNEF data
ii  libkf5torrent6:amd64                          2.1.1-2ubuntu2                              amd64        KTorrent library for C++ / Qt 5 / KDE Frameworks
ii  libkf5unitconversion-data                     5.68.0-0ubuntu1                             all          Support for unit conversion.
ii  libkf5unitconversion5:amd64                   5.68.0-0ubuntu1                             amd64        Support for unit conversion.
ii  libkf5wallet-bin                              5.68.0-0ubuntu2                             amd64        Secure and unified container for user passwords.
ii  libkf5wallet-data                             5.68.0-0ubuntu2                             all          Secure and unified container for user passwords.
ii  libkf5wallet5:amd64                           5.68.0-0ubuntu2                             amd64        Secure and unified container for user passwords.
ii  libkf5waylandclient5:amd64                    4:5.68.0-0ubuntu1                           amd64        Qt library wrapper for Wayland libraries
ii  libkf5waylandserver5:amd64                    4:5.68.0-0ubuntu1                           amd64        Qt library wrapper for Wayland libraries
ii  libkf5webengineviewer5abi3:amd64              4:19.12.3-0ubuntu1                          amd64        WebEngineViewer library
ii  libkf5webkit5:amd64                           5.68.0-0ubuntu1                             amd64        KDE Integration for QtWebKit.
ii  libkf5widgetsaddons-data                      5.68.0-0ubuntu1                             all          add-on widgets and classes for applications that use the Qt Widgets module
ii  libkf5widgetsaddons5:amd64                    5.68.0-0ubuntu1                             amd64        add-on widgets and classes for applications that use the Qt Widgets module
ii  libkf5windowsystem-data                       5.68.0-0ubuntu1                             all          Convenience access to certain properties and features of the window manager
ii  libkf5windowsystem5:amd64                     5.68.0-0ubuntu1                             amd64        Convenience access to certain properties and features of the window manager
ii  libkf5xmlgui-bin                              5.68.0-0ubuntu2                             amd64        User configurable main windows.
ii  libkf5xmlgui-data                             5.68.0-0ubuntu2                             all          User configurable main windows.
ii  libkf5xmlgui5:amd64                           5.68.0-0ubuntu2                             amd64        User configurable main windows.
ii  libkfontinst5                                 4:5.18.4.1-0ubuntu1                         amd64        Tools and widgets for the desktop library
ii  libkfontinstui5                               4:5.18.4.1-0ubuntu1                         amd64        Tools and widgets for the desktop library
ii  libkgantt2:amd64                              2.6.3-1                                     amd64        library for creating Gantt diagrams (shared library)
ii  libkgantt2-l10n                               2.6.3-1                                     all          library for creating Gantt diagrams (translations)
ii  libklibc:amd64                                2.0.7-1ubuntu5                              amd64        minimal libc subset for use with initramfs
ii  libkmod2:amd64                                27-1ubuntu2                                 amd64        libkmod shared library
ii  libkolabxml1v5                                1.1.6-6ubuntu1                              amd64        Kolab XML format (shared library)
ii  libkpathsea6:amd64                            2019.20190605.51237-3build2                 amd64        TeX Live: path search library for TeX (runtime part)
ii  libkpimgapi-data                              19.12.3-0ubuntu1                            all          Google API library for KDE -- data files
ii  libkpimgapicalendar5:amd64                    19.12.3-0ubuntu1                            amd64        library to integrate with Google Calendar service API
ii  libkpimgapicontacts5:amd64                    19.12.3-0ubuntu1                            amd64        library to integrate with Google Contacts service API
ii  libkpimgapicore5abi1:amd64                    19.12.3-0ubuntu1                            amd64        core library to integrate with Google service APIs
ii  libkpimgapitasks5:amd64                       19.12.3-0ubuntu1                            amd64        library to integrate with Google Tasks service API
ii  libkpimimportwizard5:amd64                    4:19.12.3-0ubuntu1                          amd64        PIM data import wizard - library
ii  libkpimitinerary-data                         19.12.3-0ubuntu1                            all          library for Travel Reservation information - arch independent data
ii  libkpimitinerary5:amd64                       19.12.3-0ubuntu1                            amd64        library for Travel Reservation information
ii  libkpimkdav-data                              19.12.3-0ubuntu1                            all          DAV protocol implementation with KJobs - data files
ii  libkpimkdav5abi2:amd64                        19.12.3-0ubuntu1                            amd64        DAV protocol implementation with KJobs
ii  libkpimpkpass5:amd64                          19.12.3-0ubuntu1                            amd64        library for Apple Wallet Pass reader
rc  libkpimsmtp5:amd64                            19.04.3-0ubuntu1                            amd64        library for handling SMTP data
ii  libkpimsmtp5abi1:amd64                        19.12.3-0ubuntu2                            amd64        library for handling SMTP data
ii  libkpmcore9                                   4.1.0-2                                     amd64        KDE Partition Manager Core
ii  libkrb5-26-heimdal:amd64                      7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - libraries
ii  libkrb5-26-heimdal:i386                       7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - libraries
ii  libkrb5-3:amd64                               1.17-6ubuntu4                               amd64        MIT Kerberos runtime libraries
ii  libkrb5-3:i386                                1.17-6ubuntu4                               i386         MIT Kerberos runtime libraries
ii  libkrb5support0:amd64                         1.17-6ubuntu4                               amd64        MIT Kerberos runtime libraries - Support library
ii  libkrb5support0:i386                          1.17-6ubuntu4                               i386         MIT Kerberos runtime libraries - Support library
ii  libksba8:amd64                                1.3.5-2                                     amd64        X.509 and CMS support library
ii  libkscreenlocker5:amd64                       5.18.4.1-0ubuntu1                           amd64        Secure lock screen architecture
ii  libksgrd7:amd64                               4:5.18.4.1-0ubuntu1                         amd64        library for monitoring your system - shared library
ii  libksignalplotter7:amd64                      4:5.18.4.1-0ubuntu1                         amd64        library for monitoring your system - shared library
ii  libktorrent-l10n                              2.1.1-2ubuntu2                              all          localization files for the KTorrent library
ii  libkubuntu1                                   18.04ubuntu2                                amd64        library for Kubuntu platform integration
ii  libkwalletbackend5-5:amd64                    5.68.0-0ubuntu2                             amd64        Secure and unified container for user passwords.
ii  libkwin4-effect-builtins1                     4:5.18.4.1-0ubuntu2                         amd64        KDE window manager effect builtins library
ii  libkwineffects12                              4:5.18.4.1-0ubuntu2                         amd64        KDE window manager effects library
ii  libkwinglutils12                              4:5.18.4.1-0ubuntu2                         amd64        KDE window manager gl utils library
ii  libkwinxrenderutils12                         4:5.18.4.1-0ubuntu2                         amd64        KDE window manager render utils library
ii  libkworkspace5-5                              4:5.18.4.1-0ubuntu1                         amd64        Plasma Workspace for KF5 library
ii  liblangtag-common                             0.6.3-1                                     all          library to access tags for identifying languages -- data
ii  liblangtag1:amd64                             0.6.3-1                                     amd64        library to access tags for identifying languages
ii  liblapack3:amd64                              3.9.0-1build1                               amd64        Library of linear algebra routines 3 - shared version
ii  liblcms2-2:amd64                              2.9-4                                       amd64        Little CMS 2 color management library
ii  liblcms2-2:i386                               2.9-4                                       i386         Little CMS 2 color management library
ii  liblcms2-utils                                2.9-4                                       amd64        Little CMS 2 color management library (utilities)
ii  libldap-2.4-2:amd64                           2.4.49+dfsg-2ubuntu1                        amd64        OpenLDAP libraries
ii  libldap-2.4-2:i386                            2.4.49+dfsg-2ubuntu1                        i386         OpenLDAP libraries
ii  libldap-common                                2.4.49+dfsg-2ubuntu1                        all          OpenLDAP common files for libraries
ii  libldb2:amd64                                 2:2.0.8-2                                   amd64        LDAP-like embedded database - shared library
ii  liblightcouch-java                            0.0.6-1                                     all          LightCouch - CouchDB Java API
ii  liblilv-0-0:amd64                             0.24.6-1                                    amd64        library for simple use of LV2 plugins
ii  liblirc-client0:amd64                         0.10.1-6.1                                  amd64        infra-red remote control support - client library
ii  liblivemedia77:amd64                          2020.01.19-1build1                          amd64        multimedia RTSP streaming library
ii  libllvm9:amd64                                1:9.0.1-12                                  amd64        Modular compiler and toolchain technologies, runtime library
ii  libllvm9:i386                                 1:9.0.1-12                                  i386         Modular compiler and toolchain technologies, runtime library
ii  liblmdb0:amd64                                0.9.24-1                                    amd64        Lightning Memory-Mapped Database shared library
ii  liblocale-gettext-perl                        1.07-4                                      amd64        module using libc functions for internationalization in Perl
ii  liblog4j2-java                                2.11.2-1                                    all          Apache Log4j - Logging Framework for Java
ii  liblouis-data                                 3.12.0-3                                    all          Braille translation library - data
ii  liblouis20:amd64                              3.12.0-3                                    amd64        Braille translation library - shared libs
ii  liblouisutdml-bin                             2.8.0-3                                     amd64        Braille UTDML translation utilities
ii  liblouisutdml-data                            2.8.0-3                                     all          Braille UTDML translation library - data
ii  liblouisutdml9:amd64                          2.8.0-3                                     amd64        Braille UTDML translation library - shared libs
ii  liblsan0:amd64                                10-20200411-0ubuntu1                        amd64        LeakSanitizer -- a memory leak detector (runtime)
ii  libltdl7:amd64                                2.4.6-14                                    amd64        System independent dlopen wrapper for GNU libtool
ii  libltdl7:i386                                 2.4.6-14                                    i386         System independent dlopen wrapper for GNU libtool
ii  liblua5.2-0:amd64                             5.2.4-1.1build3                             amd64        Shared library for the Lua interpreter version 5.2
ii  liblwp-mediatypes-perl                        6.04-1                                      all          module to guess media type for a file or a URL
ii  liblwp-protocol-https-perl                    6.07-2ubuntu2                               all          HTTPS driver for LWP::UserAgent
ii  liblxqt-globalkeys-ui0:amd64                  0.14.3-1ubuntu2                             amd64        daemon used to register global keyboard shortcuts (ui files)
ii  liblxqt-globalkeys0:amd64                     0.14.3-1ubuntu2                             amd64        daemon used to register global keyboard shortcuts (shared libs)
ii  liblxqt-l10n                                  0.14.1-0ubuntu2                             all          Language package for liblxqt
ii  liblxqt0                                      0.14.1-0ubuntu2                             amd64        Shared libraries for LXQt desktop environment (libs)
ii  liblz4-1:amd64                                1.9.2-2                                     amd64        Fast LZ compression algorithm library - runtime
ii  liblz4-1:i386                                 1.9.2-2                                     i386         Fast LZ compression algorithm library - runtime
ii  liblzma5:amd64                                5.2.4-1                                     amd64        XZ-format compression library
ii  liblzma5:i386                                 5.2.4-1                                     i386         XZ-format compression library
ii  liblzo2-2:amd64                               2.10-2                                      amd64        data compression library
ii  libmad0:amd64                                 0.15.1b-10ubuntu1                           amd64        MPEG audio decoder library
ii  libmagic-mgc                                  1:5.38-4                                    amd64        File type determination library using "magic" numbers (compiled magic file)
ii  libmagic1:amd64                               1:5.38-4                                    amd64        Recognize the type of data in a file using "magic" numbers - library
ii  libmailtools-perl                             2.21-1                                      all          modules to manipulate email in perl programs
ii  libmarkdown2:amd64                            2.2.6-1                                     amd64        implementation of the Markdown markup language in C (library)
ii  libmatroska6v5:amd64                          1.5.2-3build1                               amd64        extensible open standard audio/video container format (shared library)
ii  libmaxminddb0:amd64                           1.4.2-0ubuntu1                              amd64        IP geolocation database library
ii  libmbassador-java                             1.3.1-1                                     all          feature-rich Java event bus optimized for high-throughput
ii  libmbedcrypto3:amd64                          2.16.4-1ubuntu2                             amd64        lightweight crypto and SSL/TLS library - crypto library
ii  libmbedtls12:amd64                            2.16.4-1ubuntu2                             amd64        lightweight crypto and SSL/TLS library - tls library
ii  libmbedx509-0:amd64                           2.16.4-1ubuntu2                             amd64        lightweight crypto and SSL/TLS library - x509 certificate library
ii  libmbim-glib4:amd64                           1.22.0-2                                    amd64        Support library to use the MBIM protocol
ii  libmbim-proxy                                 1.22.0-2                                    amd64        Proxy to communicate with MBIM ports
ii  libmediaart-2.0-0:amd64                       1.9.4-2                                     amd64        media art extraction and cache management library
ii  libmenu-cache-bin                             1.1.0-1                                     amd64        LXDE implementation of the freedesktop Menu's cache (libexec)
ii  libmenu-cache3:amd64                          1.1.0-1                                     amd64        LXDE implementation of the freedesktop Menu's cache
ii  libmetacity1:amd64                            1:3.36.1-1                                  amd64        library for the Metacity window manager
ii  libmetis5:amd64                               5.1.0.dfsg-5                                amd64        Serial Graph Partitioning and Fill-reducing Matrix Ordering
ii  libmhash2:amd64                               0.9.9.9-8                                   amd64        Library for cryptographic hashing and message authentication
ii  libmiglayout-java                             5.1-2                                       all          Java Layout Manager
ii  libminizip1:amd64                             1.1-8build1                                 amd64        compression library - minizip library
ii  libmjpegutils-2.1-0:amd64                     1:2.1.0+debian-6build1                      amd64        MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii  libmm-glib0:amd64                             1.12.8-1                                    amd64        D-Bus service for managing modems - shared libraries
ii  libmms0:amd64                                 0.6.4-3                                     amd64        MMS stream protocol library - shared library
ii  libmng2:amd64                                 2.0.3+dfsg-3                                amd64        Multiple-image Network Graphics library
ii  libmnl0:amd64                                 1.0.4-2                                     amd64        minimalistic Netlink communication library
ii  libmodplug1:amd64                             1:0.8.9.0-2build1                           amd64        shared libraries for mod music based on ModPlug
ii  libmongodb-java                               3.6.3-2                                     all          MongoDB Java Driver
ii  libmount1:amd64                               2.34-0.1ubuntu9                             amd64        device mounting library
ii  libmount1:i386                                2.34-0.1ubuntu9                             i386         device mounting library
ii  libmozjs-68-0:amd64                           68.6.0-1ubuntu1                             amd64        SpiderMonkey JavaScript library
ii  libmp3lame0:amd64                             3.100-3                                     amd64        MP3 encoding library
ii  libmp3lame0:i386                              3.100-3                                     i386         MP3 encoding library
ii  libmpc3:amd64                                 1.1.0-1                                     amd64        multiple precision complex floating-point library
ii  libmpcdec6:amd64                              2:0.1~r495-2                                amd64        MusePack decoder - library
ii  libmpdec2:amd64                               2.4.2-3                                     amd64        library for decimal floating point arithmetic (runtime library)
ii  libmpeg2-4:amd64                              0.5.1-9                                     amd64        MPEG1 and MPEG2 video decoder library
ii  libmpeg2encpp-2.1-0:amd64                     1:2.1.0+debian-6build1                      amd64        MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii  libmpfr6:amd64                                4.0.2-1                                     amd64        multiple precision floating-point computation
ii  libmpg123-0:amd64                             1.25.13-1                                   amd64        MPEG layer 1/2/3 audio decoder (shared library)
ii  libmpg123-0:i386                              1.25.13-1                                   i386         MPEG layer 1/2/3 audio decoder (shared library)
ii  libmplex2-2.1-0:amd64                         1:2.1.0+debian-6build1                      amd64        MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii  libmpx2:amd64                                 8.4.0-3ubuntu2                              amd64        Intel memory protection extensions (runtime)
ii  libmspub-0.1-1:amd64                          0.1.4-1build3                               amd64        library for parsing the mspub file structure
ii  libmtdev1:amd64                               1.1.5-1.1                                   amd64        Multitouch Protocol Translation Library - shared library
ii  libmtp-common                                 1.1.17-3                                    all          Media Transfer Protocol (MTP) common files
ii  libmtp-runtime                                1.1.17-3                                    amd64        Media Transfer Protocol (MTP) runtime tools
ii  libmtp9:amd64                                 1.1.17-3                                    amd64        Media Transfer Protocol (MTP) library
ii  libmuparser2v5:amd64                          2.2.6.1+dfsg-1build1                        amd64        fast mathematical expressions parser library (runtime)
ii  libmusicbrainz5cc2v5:amd64                    5.1.0+git20150707-9build1                   amd64        Library to access the MusicBrainz.org database
ii  libmutter-6-0:amd64                           3.36.1-3ubuntu3                             amd64        window manager library from the Mutter window manager
ii  libmwaw-0.3-3:amd64                           0.3.15-2build1                              amd64        import library for some old Mac text documents
ii  libmypaint-1.5-1:amd64                        1.5.1-1                                     amd64        brush library for mypaint
ii  libmypaint-common                             1.5.1-1                                     all          brush library for mypaint - common files
ii  libmysofa1:amd64                              1.0~dfsg0-1                                 amd64        library to read HRTFs stored in the AES69-2015 SOFA format
ii  libmysqlclient21:amd64                        8.0.19-0ubuntu5                             amd64        MySQL database client library
ii  libmysqlclient21:i386                         8.0.19-0ubuntu5                             i386         MySQL database client library
ii  libmythes-1.2-0:amd64                         2:1.2.4-3build1                             amd64        simple thesaurus library
ii  libnautilus-extension1a:amd64                 1:3.36.1.1-1ubuntu2                         amd64        libraries for nautilus components - runtime version
ii  libncurses6:amd64                             6.2-0ubuntu2                                amd64        shared libraries for terminal handling
ii  libncurses6:i386                              6.2-0ubuntu2                                i386         shared libraries for terminal handling
ii  libncursesw6:amd64                            6.2-0ubuntu2                                amd64        shared libraries for terminal handling (wide character support)
ii  libncursesw6:i386                             6.2-0ubuntu2                                i386         shared libraries for terminal handling (wide character support)
ii  libndp0:amd64                                 1.7-0ubuntu1                                amd64        Library for Neighbor Discovery Protocol
ii  libneon27-gnutls:amd64                        0.30.2-4                                    amd64        HTTP and WebDAV client library (GnuTLS enabled)
ii  libnet-dbus-perl                              1.2.0-1                                     amd64        Perl extension for the DBus bindings
ii  libnet-http-perl                              6.19-1                                      all          module providing low-level HTTP connection client
ii  libnet-libidn-perl                            0.12.ds-3build2                             amd64        Perl bindings for GNU Libidn
ii  libnet-smtp-ssl-perl                          1.04-1                                      all          Perl module providing SSL support to Net::SMTP
ii  libnet-ssleay-perl                            1.88-2ubuntu1                               amd64        Perl module for Secure Sockets Layer (SSL)
ii  libnetfilter-conntrack3:amd64                 1.0.7-2                                     amd64        Netfilter netlink-conntrack library
ii  libnetplan0:amd64                             0.99-0ubuntu2                               amd64        YAML network configuration abstraction runtime library
ii  libnettle7:amd64                              3.5.1+really3.5.1-2                         amd64        low level cryptographic library (symmetric and one-way cryptos)
ii  libnettle7:i386                               3.5.1+really3.5.1-2                         i386         low level cryptographic library (symmetric and one-way cryptos)
ii  libnewt0.52:amd64                             0.52.21-4ubuntu2                            amd64        Not Erik's Windowing Toolkit - text mode windowing with slang
ii  libnfnetlink0:amd64                           1.0.1-3build1                               amd64        Netfilter netlink library
ii  libnfs13:amd64                                4.0.0-1                                     amd64        NFS client library (shared library)
ii  libnftnl11:amd64                              1.1.5-1                                     amd64        Netfilter nftables userspace API library
ii  libnghttp2-14:amd64                           1.40.0-1build1                              amd64        library implementing HTTP/2 protocol (shared library)
ii  libnghttp2-14:i386                            1.40.0-1build1                              i386         library implementing HTTP/2 protocol (shared library)
ii  libnice10:amd64                               0.1.16-1                                    amd64        ICE library (shared library)
ii  libnl-3-200:amd64                             3.4.0-1                                     amd64        library for dealing with netlink sockets
ii  libnl-genl-3-200:amd64                        3.4.0-1                                     amd64        library for dealing with netlink sockets - generic netlink
ii  libnl-route-3-200:amd64                       3.4.0-1                                     amd64        library for dealing with netlink sockets - route interface
ii  libnm0:amd64                                  1.22.10-1ubuntu1                            amd64        GObject-based client library for NetworkManager
ii  libnma0:amd64                                 1.8.24-1ubuntu2                             amd64        library for wireless and mobile dialogs (libnm version)
ii  libnorm1:amd64                                1.5.8+dfsg2-2build1                         amd64        NACK-Oriented Reliable Multicast (NORM) library
ii  libnotificationmanager1                       4:5.18.4.1-0ubuntu1                         amd64        Plasma Workspace for KF5 library
ii  libnotify-bin                                 0.7.9-1ubuntu2                              amd64        sends desktop notifications to a notification daemon (Utilities)
ii  libnotify4:amd64                              0.7.9-1ubuntu2                              amd64        sends desktop notifications to a notification daemon
ii  libnpth0:amd64                                1.6-1                                       amd64        replacement for GNU Pth using system threads
ii  libnspr4:amd64                                2:4.25-1                                    amd64        NetScape Portable Runtime Library
ii  libnss-mdns:amd64                             0.14.1-1ubuntu1                             amd64        NSS module for Multicast DNS name resolution
ii  libnss-systemd:amd64                          245.4-4ubuntu3                              amd64        nss module providing dynamic user and group name resolution
ii  libnss3:amd64                                 2:3.49.1-1ubuntu1                           amd64        Network Security Service libraries
ii  libntfs-3g883                                 1:2017.3.23AR.3-3ubuntu1                    amd64        read/write NTFS driver for FUSE (runtime library)
ii  libnuma1:amd64                                2.0.12-1                                    amd64        Libraries for controlling NUMA policy
ii  libnuma1:i386                                 2.0.12-1                                    i386         Libraries for controlling NUMA policy
ii  libobjc4:amd64                                10-20200411-0ubuntu1                        amd64        Runtime library for GNU Objective-C applications
ii  libodbc1:amd64                                2.3.6-0.1build1                             amd64        ODBC library for Unix
ii  libodbc1:i386                                 2.3.6-0.1build1                             i386         ODBC library for Unix
ii  libodfgen-0.1-1:amd64                         0.1.7-1ubuntu2                              amd64        library to generate ODF documents
ii  libofa0:amd64                                 0.9.3-21                                    amd64        library for acoustic fingerprinting
ii  libogg0:amd64                                 1.3.4-0ubuntu1                              amd64        Ogg bitstream library
ii  libogg0:i386                                  1.3.4-0ubuntu1                              i386         Ogg bitstream library
ii  libokhttp-java                                3.13.1-1                                    all          HTTP+HTTP/2 client for Android and Java applications
ii  libokio-java                                  1.16.0-1                                    all          Modern I/O API for Java
ii  libokular5core9                               4:19.12.3-2ubuntu1                          amd64        libraries for the Okular document viewer
ii  libopenal-data                                1:1.19.1-1                                  all          Software implementation of the OpenAL audio API (data files)
ii  libopenal1:amd64                              1:1.19.1-1                                  amd64        Software implementation of the OpenAL audio API (shared library)
ii  libopenal1:i386                               1:1.19.1-1                                  i386         Software implementation of the OpenAL audio API (shared library)
ii  libopenconnect5:amd64                         8.05-1                                      amd64        open client for Cisco AnyConnect, Pulse, GlobalProtect VPN - shared library
ii  libopencore-amrnb0:amd64                      0.1.5-1                                     amd64        Adaptive Multi Rate speech codec - shared library
ii  libopencore-amrwb0:amd64                      0.1.5-1                                     amd64        Adaptive Multi-Rate - Wideband speech codec - shared library
ii  libopenexr24:amd64                            2.3.0-6ubuntu0.1                            amd64        runtime files for the OpenEXR image library
ii  libopenjfx-java                               11.0.7+0-2ubuntu1                           all          JavaFX/OpenJFX - Rich client application platform for Java (Java libraries)
ii  libopenjfx-jni                                11.0.7+0-2ubuntu1                           amd64        JavaFX/OpenJFX - Rich client application platform for Java (native libraries)
ii  libopenjp2-7:amd64                            2.3.1-1ubuntu4                              amd64        JPEG 2000 image compression/decompression library
ii  libopenjp2-7:i386                             2.3.1-1ubuntu4                              i386         JPEG 2000 image compression/decompression library
ii  libopenmpt-modplug1:amd64                     0.4.11-1build1                              amd64        module music library based on OpenMPT -- modplug compat library
ii  libopenmpt0:amd64                             0.4.11-1build1                              amd64        module music library based on OpenMPT -- shared library
ii  libopus0:amd64                                1.3.1-0ubuntu1                              amd64        Opus codec runtime library
ii  libopus0:i386                                 1.3.1-0ubuntu1                              i386         Opus codec runtime library
ii  liborc-0.4-0:amd64                            1:0.4.31-1                                  amd64        Library of Optimized Inner Loops Runtime Compiler
ii  liborc-0.4-0:i386                             1:0.4.31-1                                  i386         Library of Optimized Inner Loops Runtime Compiler
ii  liborcus-0.15-0:amd64                         0.15.3-3build2                              amd64        library for processing spreadsheet documents
ii  libosmesa6:amd64                              20.0.4-2ubuntu1                             amd64        Mesa Off-screen rendering extension
ii  libosmesa6:i386                               20.0.4-2ubuntu1                             i386         Mesa Off-screen rendering extension
ii  liboxygenstyle5-5                             4:5.18.4.1-0ubuntu1                         amd64        style library for the Oxygen desktop theme
ii  liboxygenstyleconfig5-5                       4:5.18.4.1-0ubuntu1                         amd64        style library configuration for the Oxygen desktop theme
ii  libp11-kit0:amd64                             0.23.20-1build1                             amd64        library for loading and coordinating access to PKCS#11 modules - runtime
ii  libp11-kit0:i386                              0.23.20-1build1                             i386         library for loading and coordinating access to PKCS#11 modules - runtime
ii  libpackagekit-glib2-18:amd64                  1.1.13-2ubuntu1                             amd64        Library for accessing PackageKit using GLib
ii  libpackagekitqt5-1:amd64                      1.0.2-1                                     amd64        Library for accessing PackageKit using Qt5
ii  libpagemaker-0.0-0:amd64                      0.0.4-1build1                               amd64        Library for importing and converting PageMaker Documents
ii  libpam-cap:amd64                              1:2.32-1                                    amd64        POSIX 1003.1e capabilities (PAM module)
ii  libpam-fprintd:amd64                          1.90.1-1ubuntu1                             amd64        PAM module for fingerprint authentication through fprintd
ii  libpam-gnome-keyring:amd64                    3.36.0-1ubuntu1                             amd64        PAM module to unlock the GNOME keyring upon login
ii  libpam-kwallet-common                         4:5.18.4.1-0ubuntu1                         all          KWallet integration with PAM (common files)
ii  libpam-kwallet5                               4:5.18.4.1-0ubuntu1                         amd64        KWallet (Kf5) integration with PAM
ii  libpam-modules:amd64                          1.3.1-5ubuntu4                              amd64        Pluggable Authentication Modules for PAM
ii  libpam-modules-bin                            1.3.1-5ubuntu4                              amd64        Pluggable Authentication Modules for PAM - helper binaries
ii  libpam-runtime                                1.3.1-5ubuntu4                              all          Runtime support for the PAM library
ii  libpam-systemd:amd64                          245.4-4ubuntu3                              amd64        system and service manager - PAM module
ii  libpam0g:amd64                                1.3.1-5ubuntu4                              amd64        Pluggable Authentication Modules library
ii  libpango-1.0-0:amd64                          1.44.7-2ubuntu4                             amd64        Layout and rendering of internationalized text
ii  libpango-1.0-0:i386                           1.44.7-2ubuntu4                             i386         Layout and rendering of internationalized text
ii  libpangocairo-1.0-0:amd64                     1.44.7-2ubuntu4                             amd64        Layout and rendering of internationalized text
ii  libpangocairo-1.0-0:i386                      1.44.7-2ubuntu4                             i386         Layout and rendering of internationalized text
ii  libpangoft2-1.0-0:amd64                       1.44.7-2ubuntu4                             amd64        Layout and rendering of internationalized text
ii  libpangoft2-1.0-0:i386                        1.44.7-2ubuntu4                             i386         Layout and rendering of internationalized text
ii  libpangomm-1.4-1v5:amd64                      2.42.0-2build1                              amd64        C++ Wrapper for pango (shared libraries)
ii  libpangoxft-1.0-0:amd64                       1.44.7-2ubuntu4                             amd64        Layout and rendering of internationalized text
ii  libpaper-utils                                1.1.28                                      amd64        library for handling paper characteristics (utilities)
ii  libpaper1:amd64                               1.1.28                                      amd64        library for handling paper characteristics
ii  libparted-fs-resize0:amd64                    3.3-4                                       amd64        disk partition manipulator - shared FS resizing library
ii  libparted2:amd64                              3.3-4                                       amd64        disk partition manipulator - shared library
ii  libpcap0.8:amd64                              1.9.1-3                                     amd64        system interface for user-level packet capture
ii  libpcap0.8:i386                               1.9.1-3                                     i386         system interface for user-level packet capture
ii  libpci3:amd64                                 1:3.6.4-1                                   amd64        PCI utilities (shared library)
ii  libpci3:i386                                  1:3.6.4-1                                   i386         PCI utilities (shared library)
ii  libpciaccess0:amd64                           0.16-0ubuntu1                               amd64        Generic PCI access library for X
ii  libpciaccess0:i386                            0.16-0ubuntu1                               i386         Generic PCI access library for X
ii  libpcre2-16-0:amd64                           10.34-7                                     amd64        New Perl Compatible Regular Expression Library - 16 bit runtime files
ii  libpcre2-8-0:amd64                            10.34-7                                     amd64        New Perl Compatible Regular Expression Library- 8 bit runtime files
ii  libpcre2-8-0:i386                             10.34-7                                     i386         New Perl Compatible Regular Expression Library- 8 bit runtime files
ii  libpcre3:amd64                                2:8.39-12build1                             amd64        Old Perl 5 Compatible Regular Expression Library - runtime files
ii  libpcre3:i386                                 2:8.39-12build1                             i386         Old Perl 5 Compatible Regular Expression Library - runtime files
ii  libpcsclite1:amd64                            1.8.26-3                                    amd64        Middleware to access a smart card using PC/SC (library)
ii  libperl4-corelibs-perl                        0.004-2                                     all          libraries historically supplied with Perl 4
ii  libperl5.30:amd64                             5.30.0-9build1                              amd64        shared Perl library
ii  libperl5.30:i386                              5.30.0-9build1                              i386         shared Perl library
ii  libpgm-5.2-0:amd64                            5.2.122~dfsg-3ubuntu1                       amd64        OpenPGM shared library
ii  libphonenumber7:amd64                         7.1.0-5ubuntu11                             amd64        parsing/formatting/validating phone numbers
ii  libphonon4qt5-4:amd64                         4:4.11.1-3build1                            amd64        multimedia framework from KDE using Qt 5 - core library
ii  libphonon4qt5-data                            4:4.11.1-3build1                            all          multimedia framework from KDE using Qt 5 - core library data
ii  libpipeline1:amd64                            1.5.2-2build1                               amd64        Unix process pipeline manipulation library
ii  libpipewire-0.2-1:amd64                       0.2.7-1                                     amd64        libraries for the PipeWire multimedia server
ii  libpixman-1-0:amd64                           0.38.4-0ubuntu1                             amd64        pixel-manipulation library for X and cairo
ii  libpixman-1-0:i386                            0.38.4-0ubuntu1                             i386         pixel-manipulation library for X and cairo
ii  libplacebo7:amd64                             1.7.0-2                                     amd64        GPU-accelerated video/image rendering primitives (shared library)
ii  libplasma-geolocation-interface5              4:5.18.4.1-0ubuntu1                         amd64        Plasma Workspace for KF5 library
ii  libplist3:amd64                               2.1.0-4build2                               amd64        Library for handling Apple binary and XML property lists
ii  libplymouth5:amd64                            0.9.4git20200323-0ubuntu6                   amd64        graphical boot animation and logger - shared libraries
ii  libpng16-16:amd64                             1.6.37-2                                    amd64        PNG library - runtime (version 1.6)
ii  libpng16-16:i386                              1.6.37-2                                    i386         PNG library - runtime (version 1.6)
ii  libpolkit-agent-1-0:amd64                     0.105-26ubuntu1                             amd64        PolicyKit Authentication Agent API
ii  libpolkit-gobject-1-0:amd64                   0.105-26ubuntu1                             amd64        PolicyKit Authorization API
ii  libpolkit-qt5-1-1:amd64                       0.113.0-0ubuntu2                            amd64        PolicyKit-qt5-1 library
ii  libpoppler-cpp0v5:amd64                       0.86.1-0ubuntu1                             amd64        PDF rendering library (CPP shared library)
ii  libpoppler-glib8:amd64                        0.86.1-0ubuntu1                             amd64        PDF rendering library (GLib-based shared library)
ii  libpoppler-qt5-1:amd64                        0.86.1-0ubuntu1                             amd64        PDF rendering library (Qt 5 based shared library)
ii  libpoppler97:amd64                            0.86.1-0ubuntu1                             amd64        PDF rendering library
ii  libpopt0:amd64                                1.16-14                                     amd64        lib for parsing cmdline parameters
ii  libpostproc55:amd64                           7:4.2.2-1ubuntu1                            amd64        FFmpeg library for post processing - runtime files
ii  libpowerdevilcore2                            4:5.18.4.1-0ubuntu1                         amd64        Global power saver settings ui library.
ii  libpowerdevilui5                              4:5.18.4.1-0ubuntu1                         amd64        Global power saver settings ui library.
ii  libprocesscore7:amd64                         4:5.18.4.1-0ubuntu1                         amd64        library for monitoring your system - shared library
ii  libprocessui7:amd64                           4:5.18.4.1-0ubuntu1                         amd64        library for monitoring your system - shared library
ii  libprocps8:amd64                              2:3.3.16-1ubuntu2                           amd64        library for accessing process information from /proc
ii  libprotobuf-lite17:amd64                      3.6.1.3-2ubuntu5                            amd64        protocol buffers C++ library (lite version)
ii  libprotobuf17:amd64                           3.6.1.3-2ubuntu5                            amd64        protocol buffers C++ library
ii  libproxy-tools                                0.4.15-10                                   amd64        automatic proxy configuration management library (tools)
ii  libproxy1v5:amd64                             0.4.15-10                                   amd64        automatic proxy configuration management library (shared)
ii  libproxy1v5:i386                              0.4.15-10                                   i386         automatic proxy configuration management library (shared)
ii  libpsl5:amd64                                 0.21.0-1ubuntu1                             amd64        Library for Public Suffix List (shared libraries)
ii  libpsl5:i386                                  0.21.0-1ubuntu1                             i386         Library for Public Suffix List (shared libraries)
ii  libpulse-mainloop-glib0:amd64                 1:13.99.1-1ubuntu3                          amd64        PulseAudio client libraries (glib support)
ii  libpulse0:amd64                               1:13.99.1-1ubuntu3                          amd64        PulseAudio client libraries
ii  libpulse0:i386                                1:13.99.1-1ubuntu3                          i386         PulseAudio client libraries
ii  libpulsedsp:amd64                             1:13.99.1-1ubuntu3                          amd64        PulseAudio OSS pre-load library
ii  libpwquality-common                           1.4.2-1build1                               all          library for password quality checking and generation (data files)
ii  libpwquality1:amd64                           1.4.2-1build1                               amd64        library for password quality checking and generation
ii  libpython2-stdlib:amd64                       2.7.17-2ubuntu4                             amd64        interactive high-level object-oriented language (Python2)
ii  libpython2.7-minimal:amd64                    2.7.18~rc1-2                                amd64        Minimal subset of the Python language (version 2.7)
ii  libpython2.7-stdlib:amd64                     2.7.18~rc1-2                                amd64        Interactive high-level object-oriented language (standard library, version 2.7)
ii  libpython3-stdlib:amd64                       3.8.2-0ubuntu2                              amd64        interactive high-level object-oriented language (default python3 version)
ii  libpython3.8:amd64                            3.8.2-1ubuntu1                              amd64        Shared Python runtime library (version 3.8)
ii  libpython3.8-minimal:amd64                    3.8.2-1ubuntu1                              amd64        Minimal subset of the Python language (version 3.8)
ii  libpython3.8-stdlib:amd64                     3.8.2-1ubuntu1                              amd64        Interactive high-level object-oriented language (standard library, version 3.8)
ii  libqalculate20:amd64                          2.8.2-1build3                               amd64        Powerful and easy to use desktop calculator - library
ii  libqalculate20-data                           2.8.2-1build3                               all          Powerful and easy to use desktop calculator - data
ii  libqapt3:amd64                                3.0.5-1ubuntu1                              amd64        QApt library package
ii  libqapt3-runtime                              3.0.5-1ubuntu1                              amd64        Runtime components for the QApt library
ii  libqca-qt5-2:amd64                            2.2.1-2build1                               amd64        libraries for the Qt Cryptographic Architecture
ii  libqca-qt5-2-plugins:amd64                    2.2.1-2build1                               amd64        QCA plugins for libqca2
ii  libqgpgme7:amd64                              1.13.1-7ubuntu2                             amd64        library for GPGME integration with Qt
ii  libqmi-glib5:amd64                            1.24.8-1                                    amd64        Support library to use the Qualcomm MSM Interface (QMI) protocol
ii  libqmi-proxy                                  1.24.8-1                                    amd64        Proxy to communicate with QMI ports
ii  libqmobipocket2:amd64                         4:19.12.3-0ubuntu1                          amd64        library for reading Mobipocket documents
ii  libqpdf26:amd64                               9.1.1-1build1                               amd64        runtime library for PDF transformation/inspection software
ii  libqrencode4:amd64                            4.0.2-2                                     amd64        QR Code encoding library
ii  libqt5concurrent5:amd64                       5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 concurrent module
ii  libqt5core5a:amd64                            5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 core module
ii  libqt5dbus5:amd64                             5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 D-Bus module
ii  libqt5designer5:amd64                         5.12.8-0ubuntu1                             amd64        Qt 5 designer module
ii  libqt5gui5:amd64                              5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 GUI module
ii  libqt5help5:amd64                             5.12.8-0ubuntu1                             amd64        Qt 5 help module
ii  libqt5hunspellinputmethod5:amd64              5.12.8+dfsg-0ubuntu1                        amd64        Qt virtual keyboard - helper library for Hunspell input method
ii  libqt5multimedia5:amd64                       5.12.8-0ubuntu1                             amd64        Qt 5 Multimedia module
ii  libqt5multimedia5-plugins:amd64               5.12.8-0ubuntu1                             amd64        Qt 5 Multimedia module plugins
ii  libqt5multimediagsttools5:amd64               5.12.8-0ubuntu1                             amd64        GStreamer tools for  Qt 5 Multimedia module
ii  libqt5multimediaquick5:amd64                  5.12.8-0ubuntu1                             amd64        Qt 5 Multimedia Quick module
ii  libqt5multimediawidgets5:amd64                5.12.8-0ubuntu1                             amd64        Qt 5 Multimedia Widgets module
ii  libqt5network5:amd64                          5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 network module
ii  libqt5networkauth5:amd64                      5.12.8-0ubuntu1                             amd64        online account access for Qt apps - Library
ii  libqt5opengl5:amd64                           5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 OpenGL module
ii  libqt5positioning5:amd64                      5.12.8+dfsg-0ubuntu1                        amd64        Qt Positioning module
ii  libqt5printsupport5:amd64                     5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 print support module
ii  libqt5qml5:amd64                              5.12.8-0ubuntu1                             amd64        Qt 5 QML module
ii  libqt5quick5:amd64                            5.12.8-0ubuntu1                             amd64        Qt 5 Quick library
ii  libqt5quickcontrols2-5:amd64                  5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 Quick Controls 2 library
ii  libqt5quicktemplates2-5:amd64                 5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 Quick Templates 2 library
ii  libqt5quickwidgets5:amd64                     5.12.8-0ubuntu1                             amd64        Qt 5 Quick Widgets library
ii  libqt5script5:amd64                           5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 script module
ii  libqt5sensors5:amd64                          5.12.8-0ubuntu1                             amd64        Qt Sensors module
ii  libqt5serialport5:amd64                       5.12.8-0ubuntu1                             amd64        Qt 5 serial port support
ii  libqt5sql5:amd64                              5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 SQL module
ii  libqt5sql5-mysql:amd64                        5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 MySQL database driver
ii  libqt5sql5-sqlite:amd64                       5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 SQLite 3 database driver
ii  libqt5svg5:amd64                              5.12.8-0ubuntu1                             amd64        Qt 5 SVG module
ii  libqt5test5:amd64                             5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 test module
ii  libqt5texttospeech5:amd64                     5.12.8-0ubuntu1                             amd64        Speech library for Qt - libraries
ii  libqt5virtualkeyboard5:amd64                  5.12.8+dfsg-0ubuntu1                        amd64        Qt virtual keyboard - public shared library
ii  libqt5waylandclient5:amd64                    5.12.8-0ubuntu1                             amd64        QtWayland client library
ii  libqt5waylandcompositor5:amd64                5.12.8-0ubuntu1                             amd64        QtWayland compositor library
ii  libqt5webchannel5:amd64                       5.12.8-0ubuntu1                             amd64        Web communication library for Qt
ii  libqt5webengine-data                          5.12.8+dfsg-0ubuntu1                        all          Web content engine library for Qt - Data
ii  libqt5webengine5:amd64                        5.12.8+dfsg-0ubuntu1                        amd64        Web content engine library for Qt
ii  libqt5webenginecore5:amd64                    5.12.8+dfsg-0ubuntu1                        amd64        Web content engine library for Qt - Core
ii  libqt5webenginewidgets5:amd64                 5.12.8+dfsg-0ubuntu1                        amd64        Web content engine library for Qt - Widget
ii  libqt5webkit5:amd64                           5.212.0~alpha4-1ubuntu2                     amd64        Web content engine library for Qt
ii  libqt5widgets5:amd64                          5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 widgets module
ii  libqt5x11extras5:amd64                        5.12.8-0ubuntu1                             amd64        Qt 5 X11 extras
ii  libqt5xdg3:amd64                              3.4.0-1build2                               amd64        Implementation of the XDG Specifications for Qt (shared lib)
ii  libqt5xdgiconloader3:amd64                    3.4.0-1build2                               amd64        Implementation of the XDG Iconloader for Qt (shared lib)
ii  libqt5xml5:amd64                              5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 XML module
ii  libqt5xmlpatterns5:amd64                      5.12.8-0ubuntu1                             amd64        Qt 5 XML patterns module
rc  libqtcore4:amd64                              4:4.8.7+dfsg-7ubuntu3                       amd64        Qt 4 core module
ii  libqtermwidget5-0:amd64                       0.14.1-3ubuntu1                             amd64        Terminal emulator widget for Qt 5 (shared libraries)
ii  libquadmath0:amd64                            10-20200411-0ubuntu1                        amd64        GCC Quad-Precision Math Library
ii  librados2                                     15.2.1-0ubuntu1                             amd64        RADOS distributed object store client library
ii  libraptor2-0:amd64                            2.0.15-0ubuntu1                             amd64        Raptor 2 RDF syntax library
ii  librasqal3:amd64                              0.9.33-0.1                                  amd64        Rasqal RDF query library
ii  libraw1394-11:amd64                           2.1.2-1                                     amd64        library for direct access to IEEE 1394 bus (aka FireWire)
ii  libraw1394-11:i386                            2.1.2-1                                     i386         library for direct access to IEEE 1394 bus (aka FireWire)
ii  libraw19:amd64                                0.19.5-1ubuntu1                             amd64        raw image decoder library
ii  librdf0:amd64                                 1.0.17-1.1ubuntu1                           amd64        Redland Resource Description Framework (RDF) library
ii  librdmacm1:amd64                              28.0-1ubuntu1                               amd64        Library for managing RDMA connections
ii  libre2-5:amd64                                20200101+dfsg-1build1                       amd64        efficient, principled regular expression library
ii  libreadline8:amd64                            8.0-4                                       amd64        GNU readline and history libraries, run-time libraries
ii  libreoffice-base-core                         1:6.4.2-0ubuntu3                            amd64        office productivity suite -- shared library
ii  libreoffice-calc                              1:6.4.2-0ubuntu3                            amd64        office productivity suite -- spreadsheet
ii  libreoffice-common                            1:6.4.2-0ubuntu3                            all          office productivity suite -- arch-independent files
ii  libreoffice-core                              1:6.4.2-0ubuntu3                            amd64        office productivity suite -- arch-dependent files
ii  libreoffice-draw                              1:6.4.2-0ubuntu3                            amd64        office productivity suite -- drawing
ii  libreoffice-help-common                       1:6.4.2-0ubuntu3                            all          office productivity suite -- common files for LibreOffice help
ii  libreoffice-help-de                           1:6.4.2-0ubuntu3                            all          office productivity suite -- German help
ii  libreoffice-help-en-us                        1:6.4.2-0ubuntu3                            all          office productivity suite -- English_american help
ii  libreoffice-impress                           1:6.4.2-0ubuntu3                            amd64        office productivity suite -- presentation
ii  libreoffice-kf5                               1:6.4.2-0ubuntu3                            amd64        office productivity suite -- KDE Frameworks 5 integration
ii  libreoffice-l10n-de                           1:6.4.2-0ubuntu3                            all          office productivity suite -- German language package
ii  libreoffice-math                              1:6.4.2-0ubuntu3                            amd64        office productivity suite -- equation editor
ii  libreoffice-plasma                            1:6.4.2-0ubuntu3                            amd64        office productivity suite -- some Plasma integration
ii  libreoffice-qt5                               1:6.4.2-0ubuntu3                            amd64        office productivity suite -- Qt 5 integration
ii  libreoffice-style-breeze                      1:6.4.2-0ubuntu3                            all          office productivity suite -- Breeze symbol style
ii  libreoffice-style-colibre                     1:6.4.2-0ubuntu3                            all          office productivity suite -- colibre symbol style
ii  libreoffice-style-tango                       1:6.4.2-0ubuntu3                            all          office productivity suite -- Tango symbol style
ii  libreoffice-writer                            1:6.4.2-0ubuntu3                            amd64        office productivity suite -- word processor
ii  libresid-builder0c2a                          2.1.1-15ubuntu2                             amd64        SID chip emulation class based on resid
ii  librest-0.7-0:amd64                           0.8.1-1                                     amd64        REST service access library
ii  librevenge-0.0-0:amd64                        0.0.4-6ubuntu5                              amd64        Base Library for writing document interface filters
ii  libridl-java                                  1:6.4.2-0ubuntu3                            all          LibreOffice UNO runtime environment -- base types and types access library for the Java Uno typesystem
ii  libroken18-heimdal:amd64                      7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - roken support library
ii  libroken18-heimdal:i386                       7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - roken support library
ii  librsvg2-2:amd64                              2.48.2-1                                    amd64        SAX-based renderer library for SVG files (runtime)
ii  librsvg2-2:i386                               2.48.2-1                                    i386         SAX-based renderer library for SVG files (runtime)
ii  librsvg2-common:amd64                         2.48.2-1                                    amd64        SAX-based renderer library for SVG files (extra runtime)
ii  librsvg2-common:i386                          2.48.2-1                                    i386         SAX-based renderer library for SVG files (extra runtime)
ii  librtmp1:amd64                                2.4+20151223.gitfa8646d.1-2build1           amd64        toolkit for RTMP streams (shared library)
ii  librtmp1:i386                                 2.4+20151223.gitfa8646d.1-2build1           i386         toolkit for RTMP streams (shared library)
ii  librubberband2:amd64                          1.8.2-1build1                               amd64        audio time-stretching and pitch-shifting library
ii  librygel-core-2.6-2:amd64                     0.38.3-1ubuntu1                             amd64        GNOME UPnP/DLNA services - core library
ii  librygel-db-2.6-2:amd64                       0.38.3-1ubuntu1                             amd64        GNOME UPnP/DLNA services - db library
ii  librygel-renderer-2.6-2:amd64                 0.38.3-1ubuntu1                             amd64        GNOME UPnP/DLNA services - renderer library
ii  librygel-server-2.6-2:amd64                   0.38.3-1ubuntu1                             amd64        GNOME UPnP/DLNA services - server library
ii  libsamplerate0:amd64                          0.1.9-2                                     amd64        Audio sample rate conversion library
ii  libsamplerate0:i386                           0.1.9-2                                     i386         Audio sample rate conversion library
ii  libsane:amd64                                 1.0.29-0ubuntu5                             amd64        API library for scanners
ii  libsane:i386                                  1.0.29-0ubuntu5                             i386         API library for scanners
ii  libsane-common                                1.0.29-0ubuntu5                             all          API library for scanners -- documentation and support files
ii  libsane-hpaio:amd64                           3.20.3+dfsg0-2                              amd64        HP SANE backend for multi-function peripherals
ii  libsasl2-2:amd64                              2.1.27+dfsg-2                               amd64        Cyrus SASL - authentication abstraction library
ii  libsasl2-2:i386                               2.1.27+dfsg-2                               i386         Cyrus SASL - authentication abstraction library
ii  libsasl2-modules:amd64                        2.1.27+dfsg-2                               amd64        Cyrus SASL - pluggable authentication modules
ii  libsasl2-modules:i386                         2.1.27+dfsg-2                               i386         Cyrus SASL - pluggable authentication modules
ii  libsasl2-modules-db:amd64                     2.1.27+dfsg-2                               amd64        Cyrus SASL - pluggable authentication modules (DB)
ii  libsasl2-modules-db:i386                      2.1.27+dfsg-2                               i386         Cyrus SASL - pluggable authentication modules (DB)
ii  libsasl2-modules-kdexoauth2:amd64             19.12.3-0ubuntu1                            amd64        library to integrate with Cyrus SASL
ii  libsbc1:amd64                                 1.4-1                                       amd64        Sub Band CODEC library - runtime
ii  libscim8v5:amd64                              1.4.18-2.2build1                            amd64        library for SCIM platform
ii  libsdl-image1.2:amd64                         1.2.12-12                                   amd64        Image loading library for Simple DirectMedia Layer 1.2, libraries
ii  libsdl1.2debian:amd64                         1.2.15+dfsg2-5                              amd64        Simple DirectMedia Layer
ii  libsdl2-2.0-0:amd64                           2.0.10+dfsg1-3                              amd64        Simple DirectMedia Layer
ii  libsdl2-2.0-0:i386                            2.0.10+dfsg1-3                              i386         Simple DirectMedia Layer
ii  libseccomp2:amd64                             2.4.3-1ubuntu1                              amd64        high level interface to Linux seccomp filter
ii  libsecret-1-0:amd64                           0.20.2-1                                    amd64        Secret store
ii  libsecret-common                              0.20.2-1                                    all          Secret store (common files)
ii  libselinux1:amd64                             3.0-1build2                                 amd64        SELinux runtime shared libraries
ii  libselinux1:i386                              3.0-1build2                                 i386         SELinux runtime shared libraries
ii  libsemanage-common                            3.0-1build2                                 all          Common files for SELinux policy management libraries
ii  libsemanage1:amd64                            3.0-1build2                                 amd64        SELinux policy management library
ii  libsensors-config                             1:3.6.0-2ubuntu1                            all          lm-sensors configuration files
ii  libsensors5:amd64                             1:3.6.0-2ubuntu1                            amd64        library to read temperature/voltage/fan sensors
ii  libsensors5:i386                              1:3.6.0-2ubuntu1                            i386         library to read temperature/voltage/fan sensors
ii  libsepol1:amd64                               3.0-1                                       amd64        SELinux library for manipulating binary security policies
ii  libserd-0-0:amd64                             0.30.2-1                                    amd64        lightweight RDF syntax library
ii  libshine3:amd64                               3.1.1-2                                     amd64        Fixed-point MP3 encoding library - runtime files
ii  libshine3:i386                                3.1.1-2                                     i386         Fixed-point MP3 encoding library - runtime files
ii  libshout3:amd64                               2.4.3-1                                     amd64        MP3/Ogg Vorbis broadcast streaming library
ii  libshout3:i386                                2.4.3-1                                     i386         MP3/Ogg Vorbis broadcast streaming library
ii  libsidplay1v5:amd64                           1.36.59-11build1                            amd64        SID (MOS 6581) emulation library
ii  libsidplay2                                   2.1.1-15ubuntu2                             amd64        SID (MOS 6581) emulation library
ii  libsidplayfp4:amd64                           1.8.8-1build1                               amd64        Library to play Commodore 64 music based on libsidplay2
ii  libsigc++-2.0-0v5:amd64                       2.10.2-1build1                              amd64        type-safe Signal Framework for C++ - runtime
ii  libsignon-extension1:amd64                    8.59+17.10.20170606-0ubuntu2                amd64        Single Sign On framework
ii  libsignon-plugins-common1:amd64               8.59+17.10.20170606-0ubuntu2                amd64        Single Sign On framework
ii  libsignon-qt5-1:amd64                         8.59+17.10.20170606-0ubuntu2                amd64        Single Sign On framework
ii  libslang2:amd64                               2.3.2-4                                     amd64        S-Lang programming library - runtime version
ii  libslang2:i386                                2.3.2-4                                     i386         S-Lang programming library - runtime version
ii  libslf4j-java                                 1.7.25-3                                    all          Simple Logging Facade for Java
ii  libsm6:amd64                                  2:1.2.3-1                                   amd64        X11 Session Management library
ii  libsmartcols1:amd64                           2.34-0.1ubuntu9                             amd64        smart column output alignment library
ii  libsmbclient:amd64                            2:4.11.6+dfsg-0ubuntu1                      amd64        shared library for communication with SMB/CIFS servers
ii  libsmbios-c2                                  2.4.3-1                                     amd64        Provide access to (SM)BIOS information -- dynamic library
ii  libsnapd-glib1:amd64                          1.57-0ubuntu3                               amd64        GLib snapd library
ii  libsnapd-qt1:amd64                            1.57-0ubuntu3                               amd64        Qt snapd library
ii  libsnappy1v5:amd64                            1.1.8-1build1                               amd64        fast compression/decompression library
ii  libsnappy1v5:i386                             1.1.8-1build1                               i386         fast compression/decompression library
ii  libsndfile1:amd64                             1.0.28-7                                    amd64        Library for reading/writing audio files
ii  libsndfile1:i386                              1.0.28-7                                    i386         Library for reading/writing audio files
ii  libsndio7.0:amd64                             1.5.0-3                                     amd64        Small audio and MIDI framework from OpenBSD, runtime libraries
ii  libsndio7.0:i386                              1.5.0-3                                     i386         Small audio and MIDI framework from OpenBSD, runtime libraries
ii  libsnmp-base                                  5.8+dfsg-2ubuntu2                           all          SNMP configuration script, MIBs and documentation
ii  libsnmp35:amd64                               5.8+dfsg-2ubuntu2                           amd64        SNMP (Simple Network Management Protocol) library
ii  libsnmp35:i386                                5.8+dfsg-2ubuntu2                           i386         SNMP (Simple Network Management Protocol) library
ii  libsodium23:amd64                             1.0.18-1                                    amd64        Network communication, cryptography and signaturing library
ii  libsord-0-0:amd64                             0.16.4-1                                    amd64        library for storing RDF data in memory
ii  libsoundtouch1:amd64                          2.1.2+ds1-1build1                           amd64        Sound stretching library
ii  libsoup-gnome2.4-1:amd64                      2.70.0-1                                    amd64        HTTP library implementation in C -- GNOME support library
ii  libsoup2.4-1:amd64                            2.70.0-1                                    amd64        HTTP library implementation in C -- Shared library
ii  libsoup2.4-1:i386                             2.70.0-1                                    i386         HTTP library implementation in C -- Shared library
ii  libsoxr0:amd64                                0.1.3-2build1                               amd64        High quality 1D sample-rate conversion library
ii  libsoxr0:i386                                 0.1.3-2build1                               i386         High quality 1D sample-rate conversion library
ii  libspandsp2:amd64                             0.0.6+dfsg-2                                amd64        Telephony signal processing library
ii  libspatialaudio0:amd64                        0.3.0+git20180730+dfsg1-2build1             amd64        library for ambisonic encoding and decoding (runtime files)
ii  libspectre1:amd64                             0.2.8-2                                     amd64        Library for rendering PostScript documents
ii  libspeex1:amd64                               1.2~rc1.2-1.1ubuntu1                        amd64        The Speex codec runtime library
ii  libspeex1:i386                                1.2~rc1.2-1.1ubuntu1                        i386         The Speex codec runtime library
ii  libspeexdsp1:amd64                            1.2~rc1.2-1.1ubuntu1                        amd64        The Speex extended runtime library
ii  libsqlite3-0:amd64                            3.31.1-4                                    amd64        SQLite 3 shared library
ii  libsqlite3-0:i386                             3.31.1-4                                    i386         SQLite 3 shared library
ii  libsratom-0-0:amd64                           0.6.4-1                                     amd64        library for serialising LV2 atoms to/from Turtle
ii  libsrt1:amd64                                 1.4.0-1build1                               amd64        Secure Reliable Transport UDP streaming library
ii  libsrtp2-1:amd64                              2.3.0-2                                     amd64        Secure RTP (SRTP) and UST Reference Implementations - shared library
ii  libss2:amd64                                  1.45.5-2ubuntu1                             amd64        command-line interface parsing library
ii  libssh-4:amd64                                0.9.3-2ubuntu2                              amd64        tiny C SSH library (OpenSSL flavor)
ii  libssh-4:i386                                 0.9.3-2ubuntu2                              i386         tiny C SSH library (OpenSSL flavor)
ii  libssh-gcrypt-4:amd64                         0.9.3-2ubuntu2                              amd64        tiny C SSH library (gcrypt flavor)
ii  libssh2-1:amd64                               1.8.0-2.1build1                             amd64        SSH2 client-side library
ii  libssl1.1:amd64                               1.1.1f-1ubuntu2                             amd64        Secure Sockets Layer toolkit - shared libraries
ii  libssl1.1:i386                                1.1.1f-1ubuntu2                             i386         Secure Sockets Layer toolkit - shared libraries
ii  libstartup-notification0:amd64                0.12-6                                      amd64        library for program launch feedback (shared library)
ii  libstatgrab10                                 0.92-2                                      amd64        library being useful interface to system statistics
ii  libstb0:amd64                                 0.0~git20190817.1.052dce1-1                 amd64        single-file public domain (or MIT licensed) libraries for C/C++
ii  libstb0:i386                                  0.0~git20190817.1.052dce1-1                 i386         single-file public domain (or MIT licensed) libraries for C/C++
ii  libstdc++-9-dev:amd64                         9.3.0-10ubuntu2                             amd64        GNU Standard C++ Library v3 (development files)
ii  libstdc++6:amd64                              10-20200411-0ubuntu1                        amd64        GNU Standard C++ Library v3
ii  libstdc++6:i386                               10-20200411-0ubuntu1                        i386         GNU Standard C++ Library v3
ii  libstemmer0d:amd64                            0+svn585-2                                  amd64        Snowball stemming algorithms for use in Information Retrieval
ii  libstoken1:amd64                              0.92-1                                      amd64        Software Token for cryptographic authentication - shared library
ii  libsuitesparseconfig5:amd64                   1:5.7.1+dfsg-2                              amd64        configuration routines for all SuiteSparse modules
ii  libswingx-java                                1:1.6.2-4                                   all          extensions to the Swing GUI toolkit
ii  libswresample3:amd64                          7:4.2.2-1ubuntu1                            amd64        FFmpeg library for audio resampling, rematrixing etc. - runtime files
ii  libswresample3:i386                           7:4.2.2-1ubuntu1                            i386         FFmpeg library for audio resampling, rematrixing etc. - runtime files
ii  libswscale5:amd64                             7:4.2.2-1ubuntu1                            amd64        FFmpeg library for image scaling and various conversions - runtime files
ii  libsynctex2:amd64                             2019.20190605.51237-3build2                 amd64        TeX Live: SyncTeX parser library
ii  libsysstat-qt5-0:amd64                        0.4.2-0ubuntu2                              amd64        Qt-based interface to system statistics
ii  libsystemd0:amd64                             245.4-4ubuntu3                              amd64        systemd utility library
ii  libsystemd0:i386                              245.4-4ubuntu3                              i386         systemd utility library
ii  libtag1v5:amd64                               1.11.1+dfsg.1-0.3ubuntu2                    amd64        audio meta-data library
ii  libtag1v5:i386                                1.11.1+dfsg.1-0.3ubuntu2                    i386         audio meta-data library
ii  libtag1v5-vanilla:amd64                       1.11.1+dfsg.1-0.3ubuntu2                    amd64        audio meta-data library - vanilla flavour
ii  libtag1v5-vanilla:i386                        1.11.1+dfsg.1-0.3ubuntu2                    i386         audio meta-data library - vanilla flavour
ii  libtalloc2:amd64                              2.3.0-3ubuntu1                              amd64        hierarchical pool based memory allocator
ii  libtaskmanager6                               4:5.18.4.1-0ubuntu1                         amd64        Plasma Workspace for KF5 library
ii  libtasn1-6:amd64                              4.16.0-2                                    amd64        Manage ASN.1 structures (runtime)
ii  libtasn1-6:i386                               4.16.0-2                                    i386         Manage ASN.1 structures (runtime)
ii  libtcl8.6:amd64                               8.6.10+dfsg-1                               amd64        Tcl (the Tool Command Language) v8.6 - run-time library files
ii  libtdb1:amd64                                 1.4.2-3build1                               amd64        Trivial Database - shared library
ii  libteamdctl0:amd64                            1.30-1                                      amd64        library for communication with `teamd` process
ii  libtevent0:amd64                              0.10.1-4                                    amd64        talloc-based event loop library - shared library
ii  libtext-charwidth-perl                        0.04-10                                     amd64        get display widths of characters on the terminal
ii  libtext-iconv-perl                            1.7-7                                       amd64        module to convert between character sets in Perl
ii  libtext-wrapi18n-perl                         0.06-9                                      all          internationalized substitute of Text::Wrap
ii  libthai-data                                  0.1.28-3                                    all          Data files for Thai language support library
ii  libthai0:amd64                                0.1.28-3                                    amd64        Thai language support library
ii  libthai0:i386                                 0.1.28-3                                    i386         Thai language support library
ii  libtheora0:amd64                              1.1.1+dfsg.1-15ubuntu2                      amd64        Theora Video Compression Codec
ii  libtheora0:i386                               1.1.1+dfsg.1-15ubuntu2                      i386         Theora Video Compression Codec
ii  libtie-ixhash-perl                            1.23-2                                      all          Perl module to order associative arrays
ii  libtiff5:amd64                                4.1.0+git191117-2build1                     amd64        Tag Image File Format (TIFF) library
ii  libtiff5:i386                                 4.1.0+git191117-2build1                     i386         Tag Image File Format (TIFF) library
ii  libtimedate-perl                              2.3200-1                                    all          collection of modules to manipulate date/time information
ii  libtinfo6:amd64                               6.2-0ubuntu2                                amd64        shared low-level terminfo library for terminal handling
ii  libtinfo6:i386                                6.2-0ubuntu2                                i386         shared low-level terminfo library for terminal handling
ii  libtinyxml2-6a:amd64                          7.0.0+dfsg-1build1                          amd64        C++ XML parsing library
ii  libtk8.6:amd64                                8.6.10-1                                    amd64        Tk toolkit for Tcl and X11 v8.6 - run-time files
ii  libtomcrypt1:amd64                            1.18.2-3                                    amd64        public domain open source cryptographic toolkit
ii  libtommath1:amd64                             1.2.0-3                                     amd64        multiple-precision integer library [runtime]
ii  libtotem-plparser-common                      3.26.5-1ubuntu1                             all          Totem Playlist Parser library - common files
ii  libtotem-plparser18:amd64                     3.26.5-1ubuntu1                             amd64        Totem Playlist Parser library - runtime files
ii  libtracker-sparql-2.0-0:amd64                 2.3.4-1                                     amd64        metadata database, indexer and search tool - library
ii  libtre5:amd64                                 0.8.0-6                                     amd64        regexp matching library with approximate matching
ii  libtry-tiny-perl                              0.30-1                                      all          module providing minimalistic try/catch
ii  libtsan0:amd64                                10-20200411-0ubuntu1                        amd64        ThreadSanitizer -- a Valgrind-based detector of data races (runtime)
ii  libtss2-esys0                                 2.3.2-1                                     amd64        TPM2 Software stack library - TSS and TCTI libraries
ii  libtwolame0:amd64                             0.4.0-2                                     amd64        MPEG Audio Layer 2 encoding library
ii  libtwolame0:i386                              0.4.0-2                                     i386         MPEG Audio Layer 2 encoding library
ii  libu2f-udev                                   1.1.10-1                                    all          Universal 2nd Factor (U2F) common files
ii  libubsan1:amd64                               10-20200411-0ubuntu1                        amd64        UBSan -- undefined behaviour sanitizer (runtime)
ii  libuchardet0:amd64                            0.0.6-3build1                               amd64        universal charset detection library - shared library
ii  libudev1:amd64                                245.4-4ubuntu3                              amd64        libudev shared library
ii  libudev1:i386                                 245.4-4ubuntu3                              i386         libudev shared library
ii  libudisks2-0:amd64                            2.8.4-1ubuntu1                              amd64        GObject based library to access udisks2
ii  libumfpack5:amd64                             1:5.7.1+dfsg-2                              amd64        sparse LU factorization library
ii  libunistring2:amd64                           0.9.10-2                                    amd64        Unicode string library for C
ii  libunistring2:i386                            0.9.10-2                                    i386         Unicode string library for C
ii  libunity-protocol-private0:amd64              7.1.4+19.04.20190319-0ubuntu3               amd64        binding to get places into the launcher - private library
ii  libunity-scopes-json-def-desktop              7.1.4+19.04.20190319-0ubuntu3               all          binding to get places into the launcher - desktop def file
ii  libunity9:amd64                               7.1.4+19.04.20190319-0ubuntu3               amd64        binding to get places into the launcher - shared library
ii  libuno-cppu3                                  1:6.4.2-0ubuntu3                            amd64        LibreOffice UNO runtime environment -- CPPU public library
ii  libuno-cppuhelpergcc3-3                       1:6.4.2-0ubuntu3                            amd64        LibreOffice UNO runtime environment -- CPPU helper library
ii  libuno-purpenvhelpergcc3-3                    1:6.4.2-0ubuntu3                            amd64        LibreOffice UNO runtime environment -- "purpose environment" helper
ii  libuno-sal3                                   1:6.4.2-0ubuntu3                            amd64        LibreOffice UNO runtime environment -- SAL public library
ii  libuno-salhelpergcc3-3                        1:6.4.2-0ubuntu3                            amd64        LibreOffice UNO runtime environment -- SAL helpers for C++ library
ii  libunoloader-java                             1:6.4.2-0ubuntu3                            all          LibreOffice UNO runtime environment -- (Java) UNO loader
ii  libunwind8:amd64                              1.2.1-9build1                               amd64        library to determine the call-chain of a program - runtime
ii  libupnp13:amd64                               1:1.8.4-2ubuntu2                            amd64        Portable SDK for UPnP Devices, version 1.8 (shared library)
ii  libupower-glib3:amd64                         0.99.11-1build2                             amd64        abstraction for power management - shared library
ii  liburi-perl                                   1.76-2                                      all          module to manipulate and access URI strings
ii  libusageenvironment3:amd64                    2020.01.19-1build1                          amd64        multimedia RTSP streaming library (UsageEnvironment classes)
ii  libusb-1.0-0:amd64                            2:1.0.23-2build1                            amd64        userspace USB programming library
ii  libusb-1.0-0:i386                             2:1.0.23-2build1                            i386         userspace USB programming library
ii  libusbmuxd6:amd64                             2.0.1-2                                     amd64        USB multiplexor daemon for iPhone and iPod Touch devices - library
ii  libusrsctp1:amd64                             0.9.3.0+20190901-1                          amd64        portable SCTP userland stack - shared library
ii  libutf8proc2:amd64                            2.5.0-1                                     amd64        C library for processing UTF-8 Unicode data (shared library)
ii  libuuid1:amd64                                2.34-0.1ubuntu9                             amd64        Universally Unique ID library
ii  libuuid1:i386                                 2.34-0.1ubuntu9                             i386         Universally Unique ID library
ii  libuv1:amd64                                  1.34.2-1ubuntu1                             amd64        asynchronous event notification library - runtime library
ii  libv4l-0:amd64                                1.18.0-2build1                              amd64        Collection of video4linux support libraries
ii  libv4l-0:i386                                 1.18.0-2build1                              i386         Collection of video4linux support libraries
ii  libv4lconvert0:amd64                          1.18.0-2build1                              amd64        Video4linux frame format conversion library
ii  libv4lconvert0:i386                           1.18.0-2build1                              i386         Video4linux frame format conversion library
ii  libva-drm2:amd64                              2.7.0-2                                     amd64        Video Acceleration (VA) API for Linux -- DRM runtime
ii  libva-drm2:i386                               2.7.0-2                                     i386         Video Acceleration (VA) API for Linux -- DRM runtime
ii  libva-wayland2:amd64                          2.7.0-2                                     amd64        Video Acceleration (VA) API for Linux -- Wayland runtime
ii  libva-x11-2:amd64                             2.7.0-2                                     amd64        Video Acceleration (VA) API for Linux -- X11 runtime
ii  libva-x11-2:i386                              2.7.0-2                                     i386         Video Acceleration (VA) API for Linux -- X11 runtime
ii  libva2:amd64                                  2.7.0-2                                     amd64        Video Acceleration (VA) API for Linux -- runtime
ii  libva2:i386                                   2.7.0-2                                     i386         Video Acceleration (VA) API for Linux -- runtime
ii  libvcdinfo0:amd64                             2.0.1+dfsg-3                                amd64        library to extract information from VideoCD
ii  libvdpau1:amd64                               1.3-1ubuntu2                                amd64        Video Decode and Presentation API for Unix (libraries)
ii  libvdpau1:i386                                1.3-1ubuntu2                                i386         Video Decode and Presentation API for Unix (libraries)
ii  libvidstab1.1:amd64                           1.1.0-2                                     amd64        video stabilization library (shared library)
ii  libvisio-0.1-1:amd64                          0.1.7-1build2                               amd64        library for parsing the visio file structure
ii  libvisual-0.4-0:amd64                         0.4.0-17                                    amd64        audio visualization framework
ii  libvisual-0.4-0:i386                          0.4.0-17                                    i386         audio visualization framework
ii  libvkd3d1:amd64                               1.1-4                                       amd64        Direct3D 12 to Vulkan translation - library
ii  libvkd3d1:i386                                1.1-4                                       i386         Direct3D 12 to Vulkan translation - library
ii  libvlc-bin:amd64                              3.0.9.2-1                                   amd64        tools for VLC's base library
ii  libvlc5:amd64                                 3.0.9.2-1                                   amd64        multimedia player and streamer library
ii  libvlccore9:amd64                             3.0.9.2-1                                   amd64        base library for VLC and its modules
ii  libvncclient1:amd64                           0.9.12+dfsg-9                               amd64        API to write one's own VNC server - client library
ii  libvo-aacenc0:amd64                           0.1.3-2                                     amd64        VisualOn AAC encoder library
ii  libvo-amrwbenc0:amd64                         0.1.3-2                                     amd64        VisualOn AMR-WB encoder library
ii  libvoikko1:amd64                              4.3-1build1                                 amd64        Library of free natural language processing tools
ii  libvolume-key1                                0.3.12-3.1                                  amd64        Library for manipulating storage encryption keys and passphrases
ii  libvorbis0a:amd64                             1.3.6-2ubuntu1                              amd64        decoder library for Vorbis General Audio Compression Codec
ii  libvorbis0a:i386                              1.3.6-2ubuntu1                              i386         decoder library for Vorbis General Audio Compression Codec
ii  libvorbisenc2:amd64                           1.3.6-2ubuntu1                              amd64        encoder library for Vorbis General Audio Compression Codec
ii  libvorbisenc2:i386                            1.3.6-2ubuntu1                              i386         encoder library for Vorbis General Audio Compression Codec
ii  libvorbisfile3:amd64                          1.3.6-2ubuntu1                              amd64        high-level API for Vorbis General Audio Compression Codec
ii  libvpx6:amd64                                 1.8.2-1build1                               amd64        VP8 and VP9 video codec (shared library)
ii  libvpx6:i386                                  1.8.2-1build1                               i386         VP8 and VP9 video codec (shared library)
ii  libvte-2.91-0:amd64                           0.60.1-1ubuntu1                             amd64        Terminal emulator widget for GTK+ 3.0 - runtime files
ii  libvte-2.91-common                            0.60.1-1ubuntu1                             amd64        Terminal emulator widget for GTK+ 3.0 - common files
ii  libvulkan1:amd64                              1.2.131.2-1                                 amd64        Vulkan loader library
ii  libvulkan1:i386                               1.2.131.2-1                                 i386         Vulkan loader library
ii  libwacom-bin                                  1.3-2ubuntu1                                amd64        Wacom model feature query library -- binaries
ii  libwacom-common                               1.3-2ubuntu1                                all          Wacom model feature query library (common files)
ii  libwacom2:amd64                               1.3-2ubuntu1                                amd64        Wacom model feature query library
ii  libwavpack1:amd64                             5.2.0-1                                     amd64        audio codec (lossy and lossless) - library
ii  libwavpack1:i386                              5.2.0-1                                     i386         audio codec (lossy and lossless) - library
ii  libwayland-client0:amd64                      1.18.0-1                                    amd64        wayland compositor infrastructure - client library
ii  libwayland-client0:i386                       1.18.0-1                                    i386         wayland compositor infrastructure - client library
ii  libwayland-cursor0:amd64                      1.18.0-1                                    amd64        wayland compositor infrastructure - cursor library
ii  libwayland-cursor0:i386                       1.18.0-1                                    i386         wayland compositor infrastructure - cursor library
ii  libwayland-egl1:amd64                         1.18.0-1                                    amd64        wayland compositor infrastructure - EGL library
ii  libwayland-egl1:i386                          1.18.0-1                                    i386         wayland compositor infrastructure - EGL library
ii  libwayland-server0:amd64                      1.18.0-1                                    amd64        wayland compositor infrastructure - server library
ii  libwbclient0:amd64                            2:4.11.6+dfsg-0ubuntu1                      amd64        Samba winbind client library
ii  libweather-ion7                               4:5.18.4.1-0ubuntu1                         amd64        Plasma Workspace for KF5 library
ii  libwebkit2gtk-4.0-37:amd64                    2.28.1-1                                    amd64        Web content engine library for GTK
ii  libwebp6:amd64                                0.6.1-2                                     amd64        Lossy compression of digital photographic images.
ii  libwebp6:i386                                 0.6.1-2                                     i386         Lossy compression of digital photographic images.
ii  libwebpdemux2:amd64                           0.6.1-2                                     amd64        Lossy compression of digital photographic images.
ii  libwebpmux3:amd64                             0.6.1-2                                     amd64        Lossy compression of digital photographic images.
ii  libwebpmux3:i386                              0.6.1-2                                     i386         Lossy compression of digital photographic images.
ii  libwebrtc-audio-processing1:amd64             0.3.1-0ubuntu3                              amd64        AudioProcessing module from the WebRTC project.
ii  libwhoopsie-preferences0                      22                                          amd64        Ubuntu error tracker submission settings - shared library
ii  libwhoopsie0:amd64                            0.2.69                                      amd64        Ubuntu error tracker submission - shared library
ii  libwildmidi2:amd64                            0.4.3-1                                     amd64        software MIDI player library
ii  libwind0-heimdal:amd64                        7.7.0+dfsg-1ubuntu1                         amd64        Heimdal Kerberos - stringprep implementation
ii  libwind0-heimdal:i386                         7.7.0+dfsg-1ubuntu1                         i386         Heimdal Kerberos - stringprep implementation
ii  libwine:amd64                                 5.0-3ubuntu1                                amd64        Windows API implementation - library
ii  libwine:i386                                  5.0-3ubuntu1                                i386         Windows API implementation - library
ii  libwinpr2-2:amd64                             2.0.0~git20190204.1.2693389a+dfsg1-2build2  amd64        Windows Portable Runtime library
ii  libwmf0.2-7:amd64                             0.2.8.4-17ubuntu1                           amd64        Windows metafile conversion library
ii  libwnck-3-0:amd64                             3.36.0-1                                    amd64        Window Navigator Construction Kit - runtime files
ii  libwnck-3-common                              3.36.0-1                                    all          Window Navigator Construction Kit - common files
ii  libwoff1:amd64                                1.0.2-1build2                               amd64        library for converting fonts to WOFF 2.0
ii  libwpd-0.10-10:amd64                          0.10.3-1build1                              amd64        Library for handling WordPerfect documents (shared library)
ii  libwpg-0.3-3:amd64                            0.3.3-1build1                               amd64        WordPerfect graphics import/convert library (shared library)
ii  libwps-0.4-4:amd64                            0.4.10-1build1                              amd64        Works text file format import filter library (shared library)
ii  libwrap0:amd64                                7.6.q-30                                    amd64        Wietse Venema's TCP wrappers library
ii  libwrap0:i386                                 7.6.q-30                                    i386         Wietse Venema's TCP wrappers library
ii  libwww-perl                                   6.43-1                                      all          simple and consistent interface to the world-wide web
ii  libwww-robotrules-perl                        6.02-1                                      all          database of robots.txt-derived permissions
ii  libx11-6:amd64                                2:1.6.9-2ubuntu1                            amd64        X11 client-side library
ii  libx11-6:i386                                 2:1.6.9-2ubuntu1                            i386         X11 client-side library
ii  libx11-data                                   2:1.6.9-2ubuntu1                            all          X11 client-side library
ii  libx11-protocol-perl                          0.56-7                                      all          Perl module for the X Window System Protocol, version 11
ii  libx11-xcb1:amd64                             2:1.6.9-2ubuntu1                            amd64        Xlib/XCB interface library
ii  libx11-xcb1:i386                              2:1.6.9-2ubuntu1                            i386         Xlib/XCB interface library
ii  libx264-155:amd64                             2:0.155.2917+git0a84d98-2                   amd64        x264 video coding library
ii  libx264-155:i386                              2:0.155.2917+git0a84d98-2                   i386         x264 video coding library
ii  libx265-179:amd64                             3.2.1-1build1                               amd64        H.265/HEVC video stream encoder (shared library)
ii  libx265-179:i386                              3.2.1-1build1                               i386         H.265/HEVC video stream encoder (shared library)
ii  libxapian30:amd64                             1.4.14-2                                    amd64        Search engine library
ii  libxatracker2:amd64                           20.0.4-2ubuntu1                             amd64        X acceleration library -- runtime
ii  libxau6:amd64                                 1:1.0.9-0ubuntu1                            amd64        X11 authorisation library
ii  libxau6:i386                                  1:1.0.9-0ubuntu1                            i386         X11 authorisation library
ii  libxaw7:amd64                                 2:1.0.13-1                                  amd64        X11 Athena Widget library
ii  libxcb-composite0:amd64                       1.14-2                                      amd64        X C Binding, composite extension
ii  libxcb-cursor0:amd64                          0.1.1-4ubuntu1                              amd64        utility libraries for X C Binding -- cursor
ii  libxcb-damage0:amd64                          1.14-2                                      amd64        X C Binding, damage extension
ii  libxcb-dpms0:amd64                            1.14-2                                      amd64        X C Binding, dpms extension
ii  libxcb-dri2-0:amd64                           1.14-2                                      amd64        X C Binding, dri2 extension
ii  libxcb-dri2-0:i386                            1.14-2                                      i386         X C Binding, dri2 extension
ii  libxcb-dri3-0:amd64                           1.14-2                                      amd64        X C Binding, dri3 extension
ii  libxcb-dri3-0:i386                            1.14-2                                      i386         X C Binding, dri3 extension
ii  libxcb-glx0:amd64                             1.14-2                                      amd64        X C Binding, glx extension
ii  libxcb-glx0:i386                              1.14-2                                      i386         X C Binding, glx extension
ii  libxcb-icccm4:amd64                           0.4.1-1.1                                   amd64        utility libraries for X C Binding -- icccm
ii  libxcb-image0:amd64                           0.4.0-1build1                               amd64        utility libraries for X C Binding -- image
ii  libxcb-keysyms1:amd64                         0.4.0-1build1                               amd64        utility libraries for X C Binding -- keysyms
ii  libxcb-present0:amd64                         1.14-2                                      amd64        X C Binding, present extension
ii  libxcb-present0:i386                          1.14-2                                      i386         X C Binding, present extension
ii  libxcb-randr0:amd64                           1.14-2                                      amd64        X C Binding, randr extension
ii  libxcb-randr0:i386                            1.14-2                                      i386         X C Binding, randr extension
ii  libxcb-record0:amd64                          1.14-2                                      amd64        X C Binding, record extension
ii  libxcb-render-util0:amd64                     0.3.9-1build1                               amd64        utility libraries for X C Binding -- render-util
ii  libxcb-render0:amd64                          1.14-2                                      amd64        X C Binding, render extension
ii  libxcb-render0:i386                           1.14-2                                      i386         X C Binding, render extension
ii  libxcb-res0:amd64                             1.14-2                                      amd64        X C Binding, res extension
ii  libxcb-shape0:amd64                           1.14-2                                      amd64        X C Binding, shape extension
ii  libxcb-shm0:amd64                             1.14-2                                      amd64        X C Binding, shm extension
ii  libxcb-shm0:i386                              1.14-2                                      i386         X C Binding, shm extension
ii  libxcb-sync1:amd64                            1.14-2                                      amd64        X C Binding, sync extension
ii  libxcb-sync1:i386                             1.14-2                                      i386         X C Binding, sync extension
ii  libxcb-util1:amd64                            0.4.0-0ubuntu3                              amd64        utility libraries for X C Binding -- atom, aux and event
ii  libxcb-xfixes0:amd64                          1.14-2                                      amd64        X C Binding, xfixes extension
ii  libxcb-xfixes0:i386                           1.14-2                                      i386         X C Binding, xfixes extension
ii  libxcb-xinerama0:amd64                        1.14-2                                      amd64        X C Binding, xinerama extension
ii  libxcb-xinput0:amd64                          1.14-2                                      amd64        X C Binding, xinput extension
ii  libxcb-xkb1:amd64                             1.14-2                                      amd64        X C Binding, XKEYBOARD extension
ii  libxcb-xv0:amd64                              1.14-2                                      amd64        X C Binding, xv extension
ii  libxcb1:amd64                                 1.14-2                                      amd64        X C Binding
ii  libxcb1:i386                                  1.14-2                                      i386         X C Binding
ii  libxcomposite1:amd64                          1:0.4.5-1                                   amd64        X11 Composite extension library
ii  libxcomposite1:i386                           1:0.4.5-1                                   i386         X11 Composite extension library
ii  libxcursor1:amd64                             1:1.2.0-2                                   amd64        X cursor management library
ii  libxcursor1:i386                              1:1.2.0-2                                   i386         X cursor management library
ii  libxdamage1:amd64                             1:1.1.5-2                                   amd64        X11 damaged region extension library
ii  libxdamage1:i386                              1:1.1.5-2                                   i386         X11 damaged region extension library
ii  libxdmcp6:amd64                               1:1.1.3-0ubuntu1                            amd64        X11 Display Manager Control Protocol library
ii  libxdmcp6:i386                                1:1.1.3-0ubuntu1                            i386         X11 Display Manager Control Protocol library
ii  libxerces-c3.2:amd64                          3.2.2+debian-1build3                        amd64        validating XML parser library for C++
ii  libxext6:amd64                                2:1.3.4-0ubuntu1                            amd64        X11 miscellaneous extension library
ii  libxext6:i386                                 2:1.3.4-0ubuntu1                            i386         X11 miscellaneous extension library
ii  libxfce4ui-2-0:amd64                          4.14.1-1ubuntu1                             amd64        widget library for Xfce - Gtk+3 variant
ii  libxfce4ui-common                             4.14.1-1ubuntu1                             all          common files for libxfce4ui
ii  libxfce4util-bin                              4.14.0-1                                    amd64        tools for libxfce4util
ii  libxfce4util-common                           4.14.0-1                                    all          common files for libxfce4util
ii  libxfce4util7:amd64                           4.14.0-1                                    amd64        Utility functions library for Xfce4
ii  libxfconf-0-3                                 4.14.1-1                                    amd64        Client library for Xfce4 configure interface
ii  libxfixes3:amd64                              1:5.0.3-2                                   amd64        X11 miscellaneous 'fixes' extension library
ii  libxfixes3:i386                               1:5.0.3-2                                   i386         X11 miscellaneous 'fixes' extension library
ii  libxfont2:amd64                               1:2.0.3-1                                   amd64        X11 font rasterisation library
ii  libxft2:amd64                                 2.3.3-0ubuntu1                              amd64        FreeType-based font drawing library for X
ii  libxi6:amd64                                  2:1.7.10-0ubuntu1                           amd64        X11 Input extension library
ii  libxi6:i386                                   2:1.7.10-0ubuntu1                           i386         X11 Input extension library
ii  libxinerama1:amd64                            2:1.1.4-2                                   amd64        X11 Xinerama extension library
ii  libxinerama1:i386                             2:1.1.4-2                                   i386         X11 Xinerama extension library
ii  libxkbcommon-x11-0:amd64                      0.10.0-1                                    amd64        library to create keymaps with the XKB X11 protocol
ii  libxkbcommon0:amd64                           0.10.0-1                                    amd64        library interface to the XKB compiler - shared library
ii  libxkbcommon0:i386                            0.10.0-1                                    i386         library interface to the XKB compiler - shared library
ii  libxkbfile1:amd64                             1:1.1.0-1                                   amd64        X11 keyboard file manipulation library
ii  libxklavier16:amd64                           5.4-4                                       amd64        X Keyboard Extension high-level API
ii  libxml-parser-perl                            2.46-1                                      amd64        Perl module for parsing XML files
ii  libxml-twig-perl                              1:3.50-2                                    all          Perl module for processing huge XML documents in tree mode
ii  libxml-xpathengine-perl                       0.14-1                                      all          re-usable XPath engine for DOM-like trees
ii  libxml2:amd64                                 2.9.10+dfsg-5                               amd64        GNOME XML library
ii  libxml2:i386                                  2.9.10+dfsg-5                               i386         GNOME XML library
ii  libxml2-utils                                 2.9.10+dfsg-5                               amd64        XML utilities
ii  libxmlb1:amd64                                0.1.15-2                                    amd64        Binary XML library
ii  libxmlgraphics-commons-java                   2.4-1                                       all          Reusable components used by Batik and FOP
ii  libxmlsec1:amd64                              1.2.28-2                                    amd64        XML security library
ii  libxmlsec1-nss:amd64                          1.2.28-2                                    amd64        Nss engine for the XML security library
ii  libxmu6:amd64                                 2:1.1.3-0ubuntu1                            amd64        X11 miscellaneous utility library
ii  libxmuu1:amd64                                2:1.1.3-0ubuntu1                            amd64        X11 miscellaneous micro-utility library
ii  libxpm4:amd64                                 1:3.5.12-1                                  amd64        X11 pixmap library
ii  libxpm4:i386                                  1:3.5.12-1                                  i386         X11 pixmap library
ii  libxpresent1:amd64                            1.0.0-2build1                               amd64        X11 Present extension library
ii  libxrandr2:amd64                              2:1.5.2-0ubuntu1                            amd64        X11 RandR extension library
ii  libxrandr2:i386                               2:1.5.2-0ubuntu1                            i386         X11 RandR extension library
ii  libxrender1:amd64                             1:0.9.10-1                                  amd64        X Rendering Extension client library
ii  libxrender1:i386                              1:0.9.10-1                                  i386         X Rendering Extension client library
ii  libxres1:amd64                                2:1.2.0-4                                   amd64        X11 Resource extension library
ii  libxshmfence1:amd64                           1.3-1                                       amd64        X shared memory fences - shared library
ii  libxshmfence1:i386                            1.3-1                                       i386         X shared memory fences - shared library
ii  libxslt1.1:amd64                              1.1.34-4                                    amd64        XSLT 1.0 processing library - runtime library
ii  libxslt1.1:i386                               1.1.34-4                                    i386         XSLT 1.0 processing library - runtime library
ii  libxss1:amd64                                 1:1.2.3-1                                   amd64        X11 Screen Saver extension library
ii  libxss1:i386                                  1:1.2.3-1                                   i386         X11 Screen Saver extension library
ii  libxt6:amd64                                  1:1.1.5-1                                   amd64        X11 toolkit intrinsics library
ii  libxtables12:amd64                            1.8.4-3ubuntu2                              amd64        netfilter xtables library
ii  libxtst6:amd64                                2:1.2.3-1                                   amd64        X11 Testing -- Record extension library
ii  libxv1:amd64                                  2:1.0.11-1                                  amd64        X11 Video extension library
ii  libxv1:i386                                   2:1.0.11-1                                  i386         X11 Video extension library
ii  libxvidcore4:amd64                            2:1.3.7-1                                   amd64        Open source MPEG-4 video codec (library)
ii  libxvidcore4:i386                             2:1.3.7-1                                   i386         Open source MPEG-4 video codec (library)
ii  libxvmc1:amd64                                2:1.0.12-2                                  amd64        X11 Video extension library
ii  libxxf86dga1:amd64                            2:1.1.5-0ubuntu1                            amd64        X11 Direct Graphics Access extension library
ii  libxxf86vm1:amd64                             1:1.1.4-1build1                             amd64        X11 XFree86 video mode extension library
ii  libxxf86vm1:i386                              1:1.1.4-1build1                             i386         X11 XFree86 video mode extension library
ii  libxz-java                                    1.8-2                                       all          Java library with a complete implementation of XZ data compression
ii  libyajl2:amd64                                2.1.0-3                                     amd64        Yet Another JSON Library
ii  libyaml-0-2:amd64                             0.2.2-1                                     amd64        Fast YAML 1.1 parser and emitter library
ii  libyelp0:amd64                                3.36.0-1                                    amd64        Library for the GNOME help browser
ii  libzbar0:amd64                                0.23-1.3                                    amd64        QR code / bar code scanner and decoder (library)
ii  libzip5:amd64                                 1.5.1-0ubuntu1                              amd64        library for reading, creating, and modifying zip archives (runtime)
ii  libzmq5:amd64                                 4.3.2-2ubuntu1                              amd64        lightweight messaging kernel (shared library)
ii  libzstd1:amd64                                1.4.4+dfsg-3                                amd64        fast lossless compression algorithm
ii  libzstd1:i386                                 1.4.4+dfsg-3                                i386         fast lossless compression algorithm
ii  libzvbi-common                                0.2.35-17                                   all          Vertical Blanking Interval decoder (VBI) - common files
ii  libzvbi0:amd64                                0.2.35-17                                   amd64        Vertical Blanking Interval decoder (VBI) - runtime files
ii  libzvbi0:i386                                 0.2.35-17                                   i386         Vertical Blanking Interval decoder (VBI) - runtime files
ii  libzxingcore1:amd64                           1.0.8+ds2-2build1                           amd64        C++ port of ZXing library (library files)
rc  lintian                                       2.22.0                                      all          Debian package checker
ii  linux-base                                    4.5ubuntu3                                  all          Linux image base package
ii  linux-firmware                                1.187                                       all          Firmware for Linux kernel drivers
ii  linux-generic                                 5.4.0.26.32                                 amd64        Complete Generic Linux kernel and headers
ii  linux-headers-5.4.0-26                        5.4.0-26.30                                 all          Header files related to Linux kernel version 5.4.0
ii  linux-headers-5.4.0-26-generic                5.4.0-26.30                                 amd64        Linux kernel headers for version 5.4.0 on 64 bit x86 SMP
ii  linux-headers-generic                         5.4.0.26.32                                 amd64        Generic Linux kernel headers
rc  linux-image-5.0.0-13-generic                  5.0.0-13.14                                 amd64        Signed kernel image generic
rc  linux-image-5.0.0-23-generic                  5.0.0-23.24                                 amd64        Signed kernel image generic
rc  linux-image-5.0.0-25-generic                  5.0.0-25.26                                 amd64        Signed kernel image generic
rc  linux-image-5.0.0-31-generic                  5.0.0-31.33                                 amd64        Signed kernel image generic
rc  linux-image-5.0.0-32-generic                  5.0.0-32.34                                 amd64        Signed kernel image generic
rc  linux-image-5.3.0-19-generic                  5.3.0-19.20                                 amd64        Signed kernel image generic
rc  linux-image-5.3.0-23-generic                  5.3.0-23.25                                 amd64        Signed kernel image generic
rc  linux-image-5.3.0-24-generic                  5.3.0-24.26                                 amd64        Signed kernel image generic
rc  linux-image-5.3.0-26-generic                  5.3.0-26.28                                 amd64        Signed kernel image generic
rc  linux-image-5.3.0-29-generic                  5.3.0-29.31                                 amd64        Signed kernel image generic
ii  linux-image-5.3.0-46-generic                  5.3.0-46.38                                 amd64        Signed kernel image generic
ii  linux-image-5.4.0-26-generic                  5.4.0-26.30                                 amd64        Signed kernel image generic
ii  linux-image-generic                           5.4.0.26.32                                 amd64        Generic Linux kernel image
ii  linux-libc-dev:amd64                          5.4.0-26.30                                 amd64        Linux Kernel Headers for development
rc  linux-modules-5.0.0-13-generic                5.0.0-13.14                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-5.0.0-23-generic                5.0.0-23.24                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-5.0.0-25-generic                5.0.0-25.26                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-5.0.0-31-generic                5.0.0-31.33                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-5.0.0-32-generic                5.0.0-32.34                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-5.3.0-19-generic                5.3.0-19.20                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
rc  linux-modules-5.3.0-23-generic                5.3.0-23.25                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
rc  linux-modules-5.3.0-24-generic                5.3.0-24.26                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
rc  linux-modules-5.3.0-26-generic                5.3.0-26.28                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
rc  linux-modules-5.3.0-29-generic                5.3.0-29.31                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
ii  linux-modules-5.3.0-46-generic                5.3.0-46.38                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
ii  linux-modules-5.4.0-26-generic                5.4.0-26.30                                 amd64        Linux kernel extra modules for version 5.4.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.0.0-13-generic          5.0.0-13.14                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.0.0-23-generic          5.0.0-23.24                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.0.0-25-generic          5.0.0-25.26                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.0.0-31-generic          5.0.0-31.33                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.0.0-32-generic          5.0.0-32.34                                 amd64        Linux kernel extra modules for version 5.0.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.3.0-19-generic          5.3.0-19.20                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.3.0-23-generic          5.3.0-23.25                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.3.0-24-generic          5.3.0-24.26                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.3.0-26-generic          5.3.0-26.28                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
rc  linux-modules-extra-5.3.0-29-generic          5.3.0-29.31                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
ii  linux-modules-extra-5.3.0-46-generic          5.3.0-46.38                                 amd64        Linux kernel extra modules for version 5.3.0 on 64 bit x86 SMP
ii  linux-modules-extra-5.4.0-26-generic          5.4.0-26.30                                 amd64        Linux kernel extra modules for version 5.4.0 on 64 bit x86 SMP
ii  linux-sound-base                              1.0.25+dfsg-0ubuntu5                        all          base package for ALSA and OSS sound systems
ii  lm-sensors                                    1:3.6.0-2ubuntu1                            amd64        utilities to read temperature/voltage/fan sensors
ii  locales                                       2.31-0ubuntu9                               all          GNU C Library: National Language (locale) data [support]
ii  login                                         1:4.8.1-1ubuntu5                            amd64        system login tools
ii  logrotate                                     3.14.0-4ubuntu3                             amd64        Log rotation utility
ii  logsave                                       1.45.5-2ubuntu1                             amd64        save the output of a command in a log file
ii  lp-solve                                      5.5.0.15-4build1                            amd64        Solve (mixed integer) linear programming problems
ii  lsb-base                                      11.1.0ubuntu2                               all          Linux Standard Base init script functionality
ii  lsb-release                                   11.1.0ubuntu2                               all          Linux Standard Base version reporting utility
ii  lshw                                          02.18.85-0.3ubuntu2                         amd64        information about hardware configuration
ii  lsof                                          4.93.2+dfsg-1                               amd64        utility to list open files
ii  ltrace                                        0.7.3-6.1ubuntu1                            amd64        Tracks runtime library calls in dynamically linked programs
ii  lximage-qt                                    0.14.1-1ubuntu2                             amd64        Image viewer for LXQt
ii  lximage-qt-l10n                               0.14.1-1ubuntu2                             all          Language-package for lximage-qt
ii  lxmenu-data                                   0.1.5-2                                     all          LXDE freedesktop.org menu specification
ii  lxqt-about                                    0.14.1-1ubuntu2                             amd64        About screen for LXQt
ii  lxqt-about-l10n                               0.14.1-1ubuntu2                             all          Language package for lxqt-about
ii  lxqt-admin                                    0.14.1-1ubuntu1                             amd64        Admin tools for LXQt
ii  lxqt-admin-l10n                               0.14.1-1ubuntu1                             all          Language package for lxqt-admin
ii  lxqt-branding-debian                          0.14.0.3                                    all          Debian branding for LXQt
ii  lxqt-config                                   0.14.1-0ubuntu3                             amd64        LXQt system settings center
ii  lxqt-core                                     30                                          all          Metapackage for the LXQt core
ii  lxqt-globalkeys                               0.14.3-1ubuntu2                             amd64        daemon used to register global keyboard shortcuts (appl.)
ii  lxqt-globalkeys-l10n                          0.14.3-1ubuntu2                             all          Language package for lxqt-globalkeys
ii  lxqt-notificationd                            0.14.1-1ubuntu2                             amd64        LXQt notification daemon
ii  lxqt-notificationd-l10n                       0.14.1-1ubuntu2                             all          Language package for lxqt-notificationd
ii  lxqt-openssh-askpass                          0.14.1-1ubuntu1                             amd64        OpenSSH user/password GUI dialog for LXQt
ii  lxqt-openssh-askpass-l10n                     0.14.1-1ubuntu1                             all          Language package for lxqt-openssh-askpass
ii  lxqt-panel                                    0.14.1-1ubuntu3                             amd64        LXQt desktop panel
ii  lxqt-panel-l10n                               0.14.1-1ubuntu3                             all          Language package for lxqt-panel
ii  lxqt-policykit                                0.14.1-1ubuntu2                             amd64        LXQt authentication agent for PolicyKit
ii  lxqt-policykit-l10n                           0.14.1-1ubuntu2                             all          Language package for lxqt-policykit
ii  lxqt-powermanagement                          0.14.1-1ubuntu2                             amd64        power management module for LXQt
ii  lxqt-powermanagement-l10n                     0.14.1-1ubuntu2                             all          Language package for lxqt-powermanagement
ii  lxqt-qtplugin:amd64                           0.14.0-3ubuntu4                             amd64        LXQt system integration plugin for Qt
ii  lxqt-runner                                   0.14.1-1ubuntu2                             amd64        LXQt program launcher
ii  lxqt-runner-l10n                              0.14.1-1ubuntu2                             all          Language package for lxqt-runner
ii  lxqt-session                                  0.14.1-2ubuntu2                             amd64        session manager component for LXQt
ii  lxqt-session-l10n                             0.14.1-2ubuntu2                             all          Language package for lxqt-session
ii  lxqt-sudo                                     0.14.1-0ubuntu1                             amd64        Graphical Qt frontend for plain sudo
ii  lxqt-sudo-l10n                                0.14.1-0ubuntu1                             all          Language package for lxqt-sudo
ii  lxqt-system-theme                             0.14.0-0ubuntu1                             all          System theme for LXQt
ii  lxqt-theme-debian                             0.14.0.3                                    all          Debian theme for LXQt
ii  lxqt-themes                                   0.14.0-0ubuntu1                             all          Themes for LXQt
ii  lz4                                           1.9.2-2                                     amd64        Fast LZ compression algorithm library - tool
ii  make                                          4.2.1-1.2                                   amd64        utility for directing compilation
ii  man-db                                        2.9.1-1                                     amd64        tools for reading manual pages
ii  manpages                                      5.05-1                                      all          Manual pages about using a GNU/Linux system
ii  manpages-dev                                  5.05-1                                      all          Manual pages about using GNU/Linux for development
ii  master-pdf-editor                             5.4.38                                      amd64        Master PDF Editor is the complete solution for viewing, printing and editing PDF files 
ii  mawk                                          1.3.4.20200120-2                            amd64        Pattern scanning and text processing language
ii  mbox-importer                                 4:19.12.3-0ubuntu1                          amd64        MBox email archive importer
ii  mc                                            3:4.8.24-2ubuntu1                           amd64        Midnight Commander - a powerful file manager
ii  mc-data                                       3:4.8.24-2ubuntu1                           all          Midnight Commander - a powerful file manager -- data files
ii  media-player-info                             24-2                                        all          Media player identification files
ii  mediathekview                                 13.2.1-3                                    all          view streams from German public television stations
ii  memtest86+                                    5.01-3.1ubuntu1                             amd64        thorough real-mode memory tester
ii  mesa-utils                                    8.4.0-1build1                               amd64        Miscellaneous Mesa GL utilities
ii  mesa-va-drivers:amd64                         20.0.4-2ubuntu1                             amd64        Mesa VA-API video acceleration drivers
ii  mesa-va-drivers:i386                          20.0.4-2ubuntu1                             i386         Mesa VA-API video acceleration drivers
ii  mesa-vdpau-drivers:amd64                      20.0.4-2ubuntu1                             amd64        Mesa VDPAU video acceleration drivers
ii  mesa-vdpau-drivers:i386                       20.0.4-2ubuntu1                             i386         Mesa VDPAU video acceleration drivers
ii  mesa-vulkan-drivers:amd64                     20.0.4-2ubuntu1                             amd64        Mesa Vulkan graphics drivers
ii  mesa-vulkan-drivers:i386                      20.0.4-2ubuntu1                             i386         Mesa Vulkan graphics drivers
ii  metacity-common                               1:3.36.1-1                                  all          shared files for the Metacity window manager
ii  meteo-qt                                      1.5-1                                       amd64        Application to display weather information
ii  meteo-qt-l10n                                 1.5-1                                       all          Application to display weather information (translations)
ii  milou                                         4:5.18.4.1-0ubuntu1                         amd64        Dedicated search plasmoid.
ii  mime-support                                  3.64ubuntu1                                 all          MIME files 'mime.types' & 'mailcap', and support programs
ii  mlocate                                       0.26-3ubuntu3                               amd64        quickly find files on the filesystem based on their name
ii  mobile-broadband-provider-info                20190618-3                                  all          database of mobile broadband service providers
ii  modemmanager                                  1.12.8-1                                    amd64        D-Bus service for managing modems
ii  mount                                         2.34-0.1ubuntu9                             amd64        tools for mounting and manipulating filesystems
ii  mousetweaks                                   3.32.0-2                                    amd64        mouse accessibility enhancements for the GNOME desktop
ii  mpv                                           0.32.0-1ubuntu1                             amd64        video player based on MPlayer/mplayer2
ii  mscompress                                    0.4-7                                       amd64        Microsoft "compress.exe/expand.exe" compatible (de)compressor
ii  mtools                                        4.0.24-1                                    amd64        Tools for manipulating MSDOS files
ii  mtr-tiny                                      0.93-1                                      amd64        Full screen ncurses traceroute tool
ii  muon                                          4:5.8.0-1ubuntu5                            amd64        graphical package manager
ii  mutter                                        3.36.1-3ubuntu3                             amd64        Example window manager using GNOME's window manager library
ii  mutter-common                                 3.36.1-3ubuntu3                             all          shared files for the Mutter window manager
ii  mysql-client-core-5.7                         5.7.27-0ubuntu0.19.04.1                     amd64        MySQL database core client binaries
ii  mysql-common                                  5.8+1.0.5ubuntu2                            all          MySQL database common files, e.g. /etc/mysql/my.cnf
ii  mysql-server-core-5.7                         5.7.27-0ubuntu0.19.04.1                     amd64        MySQL database server binaries
ii  mythes-de                                     20160424-3                                  all          German Thesaurus for OpenOffice.org/LibreOffice
ii  mythes-en-us                                  1:6.4.3-1                                   all          English (USA) Thesaurus for LibreOffice
ii  nano                                          4.8-1ubuntu1                                amd64        small, friendly text editor inspired by Pico
ii  nautilus-extension-brasero                    3.12.2-6ubuntu1                             amd64        CD/DVD burning integration for Nautilus
ii  ncurses-base                                  6.2-0ubuntu2                                all          basic terminal type definitions
ii  ncurses-bin                                   6.2-0ubuntu2                                amd64        terminal-related programs and man pages
ii  net-tools                                     1.60+git20180626.aebd88e-1ubuntu1           amd64        NET-3 networking toolkit
ii  netbase                                       6.1                                         all          Basic TCP/IP networking system
ii  netcat-openbsd                                1.206-1ubuntu1                              amd64        TCP/IP swiss army knife
ii  netplan.io                                    0.99-0ubuntu2                               amd64        YAML network configuration abstraction for various backends
ii  network-manager                               1.22.10-1ubuntu1                            amd64        network management framework (daemon and userspace tools)
ii  network-manager-gnome                         1.8.24-1ubuntu2                             amd64        network management framework (GNOME frontend)
ii  network-manager-pptp                          1.2.8-2                                     amd64        network management framework (PPTP plugin core)
ii  networkd-dispatcher                           2.0.1-1                                     all          Dispatcher service for systemd-networkd connection status changes
ii  ntfs-3g                                       1:2017.3.23AR.3-3ubuntu1                    amd64        read/write NTFS driver for FUSE
ii  ocl-icd-libopencl1:amd64                      2.2.11-1ubuntu1                             amd64        Generic OpenCL ICD Loader
ii  ocl-icd-libopencl1:i386                       2.2.11-1ubuntu1                             i386         Generic OpenCL ICD Loader
ii  okular                                        4:19.12.3-2ubuntu1                          amd64        universal document viewer
ii  okular-extra-backends                         4:19.12.3-2ubuntu1                          amd64        additional document format support for Okular
ii  openjdk-11-jre:amd64                          11.0.7+10-3ubuntu1                          amd64        OpenJDK Java runtime, using Hotspot JIT
ii  openjdk-11-jre-headless:amd64                 11.0.7+10-3ubuntu1                          amd64        OpenJDK Java runtime, using Hotspot JIT (headless)
ii  openprinting-ppds                             20200401-1                                  all          OpenPrinting printer support - PostScript PPD files
ii  openssh-client                                1:8.2p1-4                                   amd64        secure shell (SSH) client, for secure access to remote machines
ii  openssl                                       1.1.1f-1ubuntu2                             amd64        Secure Sockets Layer toolkit - cryptographic utility
ii  os-prober                                     1.74ubuntu2                                 amd64        utility to detect other OSes on a set of drives
ii  oxygen-icon-theme                             5:5.68.0-0ubuntu1                           all          Oxygen icon theme
ii  oxygen-sounds                                 4:5.18.4.1-0ubuntu1                         all          Sounds for the Oxygen desktop theme
ii  p11-kit                                       0.23.20-1build1                             amd64        p11-glue utilities
ii  p11-kit-modules:amd64                         0.23.20-1build1                             amd64        p11-glue proxy and trust modules
ii  p7zip                                         16.02+dfsg-7build1                          amd64        7zr file archiver with high compression ratio
ii  p7zip-full                                    16.02+dfsg-7build1                          amd64        7z and 7za file archivers with high compression ratio
ii  packagekit                                    1.1.13-2ubuntu1                             amd64        Provides a package management service
ii  packagekit-tools                              1.1.13-2ubuntu1                             amd64        Provides PackageKit command-line tools
ii  papirus-icon-theme                            20200201-1                                  all          Papirus open source icon theme for Linux
ii  parcellite                                    1.2.1-3                                     amd64        lightweight GTK+ clipboard manager
ii  parted                                        3.3-4                                       amd64        disk partition manipulator
ii  partitionmanager                              4.1.0-1                                     amd64        file, disk and partition management for KDE
ii  passwd                                        1:4.8.1-1ubuntu5                            amd64        change and administer password and group data
ii  pastebinit                                    1.5.1-1                                     all          command-line pastebin client
ii  patch                                         2.7.6-6                                     amd64        Apply a diff file to an original
ii  pavucontrol-qt                                0.14.1-1ubuntu2                             amd64        Qt port of volume control pavucontrol
ii  pavucontrol-qt-l10n                           0.14.1-1ubuntu2                             all          Language package for pavucontrol-qt
ii  pci.ids                                       0.0~2020.03.20-1                            all          PCI ID Repository
ii  pciutils                                      1:3.6.4-1                                   amd64        PCI utilities
ii  pcmanfm-qt                                    0.14.1-0ubuntu3                             amd64        extremely fast and lightweight file and desktop icon manager
ii  pcmanfm-qt-l10n                               0.14.1-0ubuntu3                             all          Language package for pcmanfm-qt
ii  pcmciautils                                   018-11                                      amd64        PCMCIA utilities for Linux 2.6
ii  perl                                          5.30.0-9build1                              amd64        Larry Wall's Practical Extraction and Report Language
ii  perl-base                                     5.30.0-9build1                              amd64        minimal Perl system
ii  perl-modules-5.30                             5.30.0-9build1                              all          Core Perl modules
ii  perl-openssl-defaults:amd64                   4                                           amd64        version compatibility baseline for Perl OpenSSL packages
ii  phonon-backend-gstreamer-common:amd64         4:4.10.0-1build1                            amd64        Phonon GStreamer 1.0.x backend icons
ii  phonon4qt5:amd64                              4:4.11.1-3build1                            amd64        multimedia framework from KDE using Qt 5 - metapackage
ii  phonon4qt5-backend-gstreamer:amd64            4:4.10.0-1build1                            amd64        Phonon Qt5 GStreamer 1.0 backend
ii  pim-data-exporter                             4:19.12.3-0ubuntu1                          amd64        back up and archive PIM data
ii  pim-sieve-editor                              4:19.12.3-0ubuntu1                          amd64        IMAP Sieve filter editor
ii  pinentry-gnome3                               1.1.0-3build1                               amd64        GNOME 3 PIN or pass-phrase entry dialog for GnuPG
ii  pinentry-qt                                   1.1.0-3build1                               amd64        Qt-based PIN or pass-phrase entry dialog for GnuPG
ii  pkg-config                                    0.29.1-0ubuntu4                             amd64        manage compile and link flags for libraries
ii  plasma-browser-integration                    5.18.4.1-0ubuntu1                           amd64        Chromium, Google Chrome, Firefox integration for Plasma
ii  plasma-calendar-addons                        4:5.18.4.1-0ubuntu2                         amd64        additional calendar plugins for Plasma 5
ii  plasma-dataengines-addons                     4:5.18.4.1-0ubuntu2                         amd64        additional data engines for Plasma
ii  plasma-desktop                                4:5.18.4.1-0ubuntu1                         amd64        Tools and widgets for the desktop
ii  plasma-desktop-data                           4:5.18.4.1-0ubuntu1                         all          Tools and widgets for the desktop data files
ii  plasma-discover                               5.18.4.1-0ubuntu1                           amd64        Discover software management suite
ii  plasma-discover-backend-fwupd                 5.18.4.1-0ubuntu1                           amd64        Discover software management suite - fwupd backend
ii  plasma-discover-backend-snap                  5.18.4.1-0ubuntu1                           amd64        Discover software management suite - Snap backend
ii  plasma-discover-common                        5.18.4.1-0ubuntu1                           all          Discover software manager suite (common data files)
ii  plasma-discover-snap-backend                  5.18.4.1-0ubuntu1                           all          Discover Flatpak backend - transitional package
ii  plasma-framework                              5.68.0-0ubuntu1                             amd64        Plasma Runtime components
ii  plasma-integration                            5.18.4.1-0ubuntu2                           amd64        Qt Platform Theme integration plugins for KDE Plasma
ii  plasma-nm                                     4:5.18.4.1-0ubuntu1                         amd64        Plasma5 networkmanager library.
ii  plasma-pa                                     4:5.18.4.1-0ubuntu1                         amd64        Plasma 5 Volume controller
ii  plasma-runners-addons                         4:5.18.4.1-0ubuntu2                         amd64        additional runners for Plasma 5 and Krunner
ii  plasma-thunderbolt                            5.18.4.1-0ubuntu1                           amd64        Plasma addons for managing Thunderbolt devices
ii  plasma-vault                                  5.18.4.1-0ubuntu1                           amd64        Plasma applet and services for creating encrypted vaults
ii  plasma-wallpapers-addons                      4:5.18.4.1-0ubuntu2                         amd64        additional wallpaper plugins for Plasma 5
ii  plasma-widgets-addons                         4:5.18.4.1-0ubuntu2                         amd64        additional widgets for Plasma 5
ii  plasma-workspace                              4:5.18.4.1-0ubuntu1                         amd64        Plasma Workspace for KF5
ii  plasma-workspace-wallpapers                   4:5.18.4.1-0ubuntu1                         all          Wallpapers for Plasma 5
ii  plymouth                                      0.9.4git20200323-0ubuntu6                   amd64        boot animation, logger and I/O multiplexer
ii  plymouth-label                                0.9.4git20200323-0ubuntu6                   amd64        boot animation, logger and I/O multiplexer - label control
ii  plymouth-theme-kubuntu-logo                   1:20.04.9                                   all          graphical boot animation and logger - kubuntu-logo theme
ii  plymouth-theme-kubuntu-text                   1:20.04.9                                   all          graphical boot animation and logger - kubuntu-text theme
ii  plymouth-theme-ubuntu-text                    0.9.4git20200323-0ubuntu6                   amd64        boot animation, logger and I/O multiplexer - ubuntu text theme
ii  policykit-1                                   0.105-26ubuntu1                             amd64        framework for managing administrative policies and privileges
ii  policykit-desktop-privileges                  0.21                                        all          run common desktop actions without password
ii  polkit-kde-agent-1                            4:5.18.4.1-0ubuntu1                         amd64        KDE dialogs for PolicyKit
ii  poppler-data                                  0.4.9-2                                     all          encoding data for the poppler PDF rendering library
ii  poppler-utils                                 0.86.1-0ubuntu1                             amd64        PDF utilities (based on Poppler)
ii  popularity-contest                            1.69ubuntu1                                 all          Vote for your favourite packages automatically
ii  powerdevil                                    4:5.18.4.1-0ubuntu1                         amd64        Global power saver settings.
ii  powerdevil-data                               4:5.18.4.1-0ubuntu1                         all          Global power saver settings data files.
ii  powermgmt-base                                1.36                                        all          common utils for power management
ii  ppp                                           2.4.7-2+4.1ubuntu5                          amd64        Point-to-Point Protocol (PPP) - daemon
ii  pptp-linux                                    1.10.0-1build1                              amd64        Point-to-Point Tunneling Protocol (PPTP) Client
ii  preload                                       0.6.4-5                                     amd64        adaptive readahead daemon
ii  print-manager                                 4:19.12.3-0ubuntu1                          amd64        printer configuration and monitoring tools
ii  printer-driver-brlaser                        6-1build1                                   amd64        printer driver for (some) Brother laser printers
ii  printer-driver-c2esp                          27-6                                        amd64        printer driver for Kodak ESP AiO color inkjet Series
ii  printer-driver-foo2zjs                        20171202dfsg0-4                             amd64        printer driver for ZjStream-based printers
ii  printer-driver-foo2zjs-common                 20171202dfsg0-4                             all          printer driver for ZjStream-based printers - common files
ii  printer-driver-hpcups                         3.20.3+dfsg0-2                              amd64        HP Linux Printing and Imaging - CUPS Raster driver (hpcups)
ii  printer-driver-m2300w                         0.51-14                                     amd64        printer driver for Minolta magicolor 2300W/2400W color laser printers
ii  printer-driver-min12xxw                       0.0.9-11                                    amd64        printer driver for KonicaMinolta PagePro 1[234]xxW
ii  printer-driver-pnm2ppa                        1.13+nondbs-0ubuntu6                        amd64        printer driver for HP-GDI printers
ii  printer-driver-postscript-hp                  3.20.3+dfsg0-2                              amd64        HP Printers PostScript Descriptions
ii  printer-driver-ptouch                         1.4.2-3                                     amd64        printer driver Brother P-touch label printers
ii  printer-driver-pxljr                          1.4+repack0-5                               amd64        printer driver for HP Color LaserJet 35xx/36xx
ii  printer-driver-sag-gdi                        0.1-7                                       all          printer driver for Ricoh Aficio SP 1000s/SP 1100s
ii  printer-driver-splix                          2.0.0+svn315-7fakesync1build1               amd64        Driver for Samsung and Xerox SPL2 and SPLc laser printers
ii  procps                                        2:3.3.16-1ubuntu2                           amd64        /proc file system utilities
ii  psmisc                                        23.3-1                                      amd64        utilities that use the proc file system
ii  publicsuffix                                  20200303.0012-1                             all          accurate, machine-readable list of domain name suffixes
ii  pulseaudio                                    1:13.99.1-1ubuntu3                          amd64        PulseAudio sound server
ii  pulseaudio-module-bluetooth                   1:13.99.1-1ubuntu3                          amd64        Bluetooth module for PulseAudio sound server
ii  pulseaudio-utils                              1:13.99.1-1ubuntu3                          amd64        Command line tools for the PulseAudio sound server
rc  python                                        2.7.17-1                                    amd64        interactive high-level object-oriented language (Python2 version)
ii  python-apt-common                             2.0.0                                       all          Python interface to libapt-pkg (locales)
ii  python-is-python2                             2.7.17-4                                    all          symlinks /usr/bin/python to the DEPRECATED python2
ii  python2                                       2.7.17-2ubuntu4                             amd64        interactive high-level object-oriented language (Python2 version)
ii  python2-minimal                               2.7.17-2ubuntu4                             amd64        minimal subset of the Python2 language
ii  python2.7                                     2.7.18~rc1-2                                amd64        Interactive high-level object-oriented language (version 2.7)
ii  python2.7-minimal                             2.7.18~rc1-2                                amd64        Minimal subset of the Python language (version 2.7)
ii  python3                                       3.8.2-0ubuntu2                              amd64        interactive high-level object-oriented language (default python3 version)
ii  python3-apport                                2.20.11-0ubuntu27                           all          Python 3 library for Apport crash report handling
ii  python3-apt                                   2.0.0                                       amd64        Python 3 interface to libapt-pkg
ii  python3-aptdaemon                             1.1.1+bzr982-0ubuntu32                      all          Python 3 module for the server and client of aptdaemon
ii  python3-aptdaemon.gtk3widgets                 1.1.1+bzr982-0ubuntu32                      all          Python 3 GTK+ 3 widgets to run an aptdaemon client
ii  python3-blinker                               1.4+dfsg1-0.3ubuntu1                        all          fast, simple object-to-object and broadcast signaling library
ii  python3-bs4                                   4.8.2-1                                     all          error-tolerant HTML parser for Python 3
ii  python3-cairo:amd64                           1.16.2-2ubuntu2                             amd64        Python3 bindings for the Cairo vector graphics library
ii  python3-certifi                               2019.11.28-1                                all          root certificates for validating SSL certs and verifying TLS hosts (python3)
ii  python3-cffi-backend                          1.14.0-1build1                              amd64        Foreign Function Interface for Python 3 calling C code - runtime
ii  python3-chardet                               3.0.4-4build1                               all          universal character encoding detector for Python3
ii  python3-commandnotfound                       20.04.2                                     all          Python 3 bindings for command-not-found.
ii  python3-compizconfig:amd64                    1:0.9.14.1+20.04.20200211-0ubuntu1          amd64        Compizconfig bindings for Python
ii  python3-crypto                                2.6.1-13ubuntu2                             amd64        cryptographic algorithms and protocols for Python 3
ii  python3-cryptography                          2.8-3                                       amd64        Python library exposing cryptographic recipes and primitives (Python 3)
ii  python3-cups                                  1.9.73-3build1                              amd64        Python3 bindings for CUPS
ii  python3-cupshelpers                           1.5.12-0ubuntu1                             all          Python utility modules around the CUPS printing system
ii  python3-dbus                                  1.2.16-1build1                              amd64        simple interprocess messaging system (Python 3 interface)
ii  python3-dbus.mainloop.pyqt5                   5.14.1+dfsg-3build1                         amd64        D-Bus Qt main loop support for Python 3
ii  python3-debian                                0.1.36ubuntu1                               all          Python 3 modules to work with Debian-related data formats
ii  python3-defer                                 1.0.6-2.1                                   all          Small framework for asynchronous programming (Python 3)
ii  python3-distro                                1.4.0-1                                     all          Linux OS platform information API
ii  python3-distro-info                           0.23ubuntu1                                 all          information about distributions' releases (Python 3 module)
ii  python3-distupgrade                           1:20.04.18                                  all          manage release upgrades
ii  python3-dnspython                             1.16.0-1build1                              all          DNS toolkit for Python 3
ii  python3-entrypoints                           0.3-2ubuntu1                                all          Discover and load entry points from installed packages (Python 3)
ii  python3-gdbm:amd64                            3.8.2-1ubuntu1                              amd64        GNU dbm database support for Python 3.x
ii  python3-gi                                    3.36.0-1                                    amd64        Python 3 bindings for gobject-introspection libraries
ii  python3-gi-cairo                              3.36.0-1                                    amd64        Python 3 Cairo bindings for the GObject library
ii  python3-gpg                                   1.13.1-7ubuntu2                             amd64        Python interface to the GPGME GnuPG encryption library (Python 3)
ii  python3-html5lib                              1.0.1-2                                     all          HTML parser/tokenizer based on the WHATWG HTML5 specification
ii  python3-httplib2                              0.14.0-1ubuntu1                             all          comprehensive HTTP client library written for Python3
ii  python3-ibus-1.0                              1.5.22-2ubuntu2                             all          Intelligent Input Bus - introspection overrides for Python (Python 3)
ii  python3-idna                                  2.8-1                                       all          Python IDNA2008 (RFC 5891) handling (Python 3)
ii  python3-jwt                                   1.7.1-2ubuntu2                              all          Python 3 implementation of JSON Web Token
ii  python3-keyring                               18.0.1-2ubuntu1                             all          store and access your passwords safely - Python 3 version of the package
ii  python3-launchpadlib                          1.10.13-1                                   all          Launchpad web services client library (Python 3)
ii  python3-lazr.restfulclient                    0.14.2-2build1                              all          client for lazr.restful-based web services (Python 3)
ii  python3-lazr.uri                              1.0.3-4build1                               all          library for parsing, manipulating, and generating URIs
ii  python3-ldb                                   2:2.0.8-2                                   amd64        Python 3 bindings for LDB
ii  python3-lxml:amd64                            4.5.0-1                                     amd64        pythonic binding for the libxml2 and libxslt libraries
ii  python3-macaroonbakery                        1.3.1-1                                     all          Higher-level macaroon operations for Python 3
ii  python3-markdown                              3.1.1-3                                     all          text-to-HTML conversion library/tool (Python 3 version)
ii  python3-minimal                               3.8.2-0ubuntu2                              amd64        minimal subset of the Python language (default python3 version)
ii  python3-nacl                                  1.3.0-5                                     amd64        Python bindings to libsodium (Python 3)
ii  python3-netifaces                             0.10.4-1ubuntu4                             amd64        portable network interface information - Python 3.x
ii  python3-oauthlib                              3.1.0-1ubuntu2                              all          generic, spec-compliant implementation of OAuth for Python3
ii  python3-olefile                               0.46-2                                      all          Python module to read/write MS OLE2 files
ii  python3-packaging                             20.3-1                                      all          core utilities for python3 packages
rc  python3-pbr                                   5.1.1-0ubuntu3                              all          inject useful and sensible default behaviors into setuptools - Python 3.x
ii  python3-pexpect                               4.6.0-1build1                               all          Python 3 module for automating interactive applications
ii  python3-pil:amd64                             7.0.0-4build1                               amd64        Python Imaging Library (Python3)
ii  python3-pkg-resources                         45.2.0-1                                    all          Package Discovery and Resource Access using pkg_resources
ii  python3-problem-report                        2.20.11-0ubuntu27                           all          Python 3 library to handle problem reports
ii  python3-protobuf                              3.6.1.3-2ubuntu5                            amd64        Python 3 bindings for protocol buffers
ii  python3-ptyprocess                            0.6.0-1ubuntu1                              all          Run a subprocess in a pseudo terminal from Python 3
ii  python3-pygments                              2.3.1+dfsg-1ubuntu2                         all          syntax highlighting package written in Python 3
ii  python3-pymacaroons                           0.13.0-3                                    all          Macaroon library for Python 3
ii  python3-pyparsing                             2.4.6-1                                     all          alternative to creating and executing simple grammars - Python 3.x
ii  python3-pyqt5                                 5.14.1+dfsg-3build1                         amd64        Python 3 bindings for Qt5
ii  python3-pyxattr                               0.6.1-2                                     amd64        module for manipulating filesystem extended attributes (Python3)
ii  python3-renderpm:amd64                        3.5.34-1ubuntu1                             amd64        python low level render interface
ii  python3-reportlab                             3.5.34-1ubuntu1                             all          ReportLab library to create PDF documents using Python3
ii  python3-reportlab-accel:amd64                 3.5.34-1ubuntu1                             amd64        C coded extension accelerator for the ReportLab Toolkit
ii  python3-requests                              2.22.0-2ubuntu1                             all          elegant and simple HTTP library for Python3, built for human beings
ii  python3-requests-unixsocket                   0.2.0-2                                     all          Use requests to talk HTTP via a UNIX domain socket - Python 3.x
ii  python3-rfc3339                               1.1-2                                       all          parser and generator of RFC 3339-compliant timestamps (Python 3)
ii  python3-samba                                 2:4.11.6+dfsg-0ubuntu1                      amd64        Python 3 bindings for Samba
ii  python3-secretstorage                         2.3.1-2ubuntu1                              all          Python module for storing secrets - Python 3.x version
ii  python3-simplejson                            3.16.0-2ubuntu2                             amd64        simple, fast, extensible JSON encoder/decoder for Python 3.x
ii  python3-sip                                   4.19.21+dfsg-1build1                        amd64        Python 3/C++ bindings generator runtime library
ii  python3-six                                   1.14.0-2                                    all          Python 2 and 3 compatibility library (Python 3 interface)
ii  python3-software-properties                   0.98.9                                      all          manage the repositories that you install software from
ii  python3-soupsieve                             1.9.5+dfsg-1                                all          modern CSS selector implementation for BeautifulSoup (Python 3)
ii  python3-systemd                               234-3build2                                 amd64        Python 3 bindings for systemd
ii  python3-talloc:amd64                          2.3.0-3ubuntu1                              amd64        hierarchical pool based memory allocator - Python3 bindings
ii  python3-tdb                                   1.4.2-3build1                               amd64        Python3 bindings for TDB
ii  python3-tz                                    2019.3-1                                    all          Python3 version of the Olson timezone database
ii  python3-uno                                   1:6.4.2-0ubuntu3                            amd64        Python-UNO bridge
ii  python3-update-manager                        1:20.04.9                                   all          python 3.x module for update-manager
ii  python3-urllib3                               1.25.8-2                                    all          HTTP library with thread-safe connection pooling for Python3
ii  python3-wadllib                               1.3.3-3build1                               all          Python 3 library for navigating WADL files
ii  python3-webencodings                          0.5.1-1ubuntu1                              all          Python implementation of the WHATWG Encoding standard
ii  python3-xapian                                1.4.14-1ubuntu2                             amd64        Xapian search engine interface for Python3
ii  python3-xdg                                   0.26-1ubuntu1                               all          Python 3 library to access freedesktop.org standards
ii  python3-xkit                                  0.5.0ubuntu4                                all          library for the manipulation of xorg.conf files (Python 3)
ii  python3-yaml                                  5.3.1-1                                     amd64        YAML parser and emitter for Python3
ii  python3.8                                     3.8.2-1ubuntu1                              amd64        Interactive high-level object-oriented language (version 3.8)
ii  python3.8-minimal                             3.8.2-1ubuntu1                              amd64        Minimal subset of the Python language (version 3.8)
ii  qapt-batch                                    3.0.5-1ubuntu1                              amd64        Batch package manager for KDE
ii  qapt-deb-installer                            3.0.5-1ubuntu1                              amd64        tool for installing deb files
ii  qdbus-qt5                                     5.12.8-0ubuntu1                             amd64        Qt 5 D-Bus tool
ii  qml-module-org-kde-activities:amd64           5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE Frameworks
ii  qml-module-org-kde-bluezqt:amd64              5.68.0-0ubuntu1                             amd64        QML wrapper for bluez
ii  qml-module-org-kde-draganddrop:amd64          5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE frameworks - draganddrop
ii  qml-module-org-kde-kaccounts:amd64            4:19.12.3-0ubuntu1                          amd64        KAccounts QtDeclarative QML Support
ii  qml-module-org-kde-kcm:amd64                  5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE Frameworks - kcm
ii  qml-module-org-kde-kconfig:amd64              5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE Frameworks - kconfig
ii  qml-module-org-kde-kcoreaddons:amd64          5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE frameworks - kcoreaddons
ii  qml-module-org-kde-kholidays:amd64            1:5.68.0-0ubuntu1                           amd64        holidays calculation library - qml files
ii  qml-module-org-kde-kio:amd64                  5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE Frameworks - kio
ii  qml-module-org-kde-kirigami2                  5.68.0-0ubuntu2                             amd64        set of QtQuick components targeted for mobile use
ii  qml-module-org-kde-kquickcontrols:amd64       5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE frameworks - kquickcontrols
ii  qml-module-org-kde-kquickcontrolsaddons:amd64 5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE Frameworks - kquickcontrolsaddons
ii  qml-module-org-kde-kwindowsystem:amd64        5.68.0-0ubuntu2                             amd64        provides integration of QML and KDE frameworks - kwindowsystem
ii  qml-module-org-kde-newstuff:amd64             5.68.0-0ubuntu2                             amd64        Support for downloading application assets from the network.
ii  qml-module-org-kde-people:amd64               5.68.0-0ubuntu1                             amd64        framework providing unified access to contacts aggregated by person
ii  qml-module-org-kde-prison:amd64               5.68.0-0ubuntu1                             amd64        barcode API for Qt
ii  qml-module-org-kde-purpose:amd64              5.68.0-0ubuntu1                             amd64        abstraction to provide and leverage actions of a specific kind, qml bindings
ii  qml-module-org-kde-qqc2desktopstyle           5.68.0-0ubuntu1                             amd64        Qt Quick Controls 2: Desktop Style
ii  qml-module-org-kde-quickcharts                5.68.0-0ubuntu2                             amd64        Quick Charts
ii  qml-module-org-kde-runnermodel                5.68.0-0ubuntu1                             amd64        Used to write plugins loaded at runtime called "Runners".
ii  qml-module-org-kde-solid:amd64                5.68.0-0ubuntu1                             amd64        Qt library to query and control hardware plugin
ii  qml-module-qt-labs-folderlistmodel:amd64      5.12.8-0ubuntu1                             amd64        Qt 5 folderlistmodel QML module
ii  qml-module-qt-labs-platform:amd64             5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 qt.labs.platform QML module
ii  qml-module-qt-labs-settings:amd64             5.12.8-0ubuntu1                             amd64        Qt 5 settings QML module
ii  qml-module-qtgraphicaleffects:amd64           5.12.8-0ubuntu1                             amd64        Qt 5 Graphical Effects module
ii  qml-module-qtmultimedia:amd64                 5.12.8-0ubuntu1                             amd64        Qt 5 Multimedia QML module
ii  qml-module-qtqml-models2:amd64                5.12.8-0ubuntu1                             amd64        Qt 5 Models2 QML module
ii  qml-module-qtquick-controls:amd64             5.12.8-0ubuntu2                             amd64        Qt 5 Quick Controls QML module
ii  qml-module-qtquick-controls2:amd64            5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 Qt Quick Controls 2 QML module
ii  qml-module-qtquick-dialogs:amd64              5.12.8-0ubuntu2                             amd64        Qt 5 Dialogs QML module
ii  qml-module-qtquick-layouts:amd64              5.12.8-0ubuntu1                             amd64        Qt 5 Quick Layouts QML module
ii  qml-module-qtquick-privatewidgets:amd64       5.12.8-0ubuntu2                             amd64        Qt 5 Private Widgets QML module
ii  qml-module-qtquick-templates2:amd64           5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 Qt Quick Templates 2 QML module
ii  qml-module-qtquick-virtualkeyboard:amd64      5.12.8+dfsg-0ubuntu1                        amd64        Qt virtual keyboard - QML module
ii  qml-module-qtquick-window2:amd64              5.12.8-0ubuntu1                             amd64        Qt 5 window 2 QML module
ii  qml-module-qtquick-xmllistmodel:amd64         5.12.8-0ubuntu1                             amd64        Qt 5 xmllistmodel QML module
ii  qml-module-qtquick2:amd64                     5.12.8-0ubuntu1                             amd64        Qt 5 Qt Quick 2 QML module
ii  qml-module-qtwebengine:amd64                  5.12.8+dfsg-0ubuntu1                        amd64        Qt WebEngine QML module
ii  qml-module-qtwebkit:amd64                     5.212.0~alpha4-1ubuntu2                     amd64        Qt WebKit QML module
ii  qml-module-ubuntu-onlineaccounts:amd64        0.6+17.04.20170405-0ubuntu4                 amd64        Expose the Online Accounts API to QML applications
ii  qpdfview                                      0.4.18-1build1                              amd64        tabbed document viewer
ii  qpdfview-djvu-plugin                          0.4.18-1build1                              amd64        tabbed document viewer - DjVu plugin
ii  qpdfview-ps-plugin                            0.4.18-1build1                              amd64        tabbed document viewer - PostScript plugin
ii  qpdfview-translations                         0.4.18-1build1                              all          tabbed document viewer - translations
ii  qps                                           2.0.0-1ubuntu2                              amd64        Qt process manager
ii  qsynth                                        0.6.1-1build1                               amd64        fluidsynth MIDI sound synthesiser front-end
ii  qt5-gtk-platformtheme:amd64                   5.12.8+dfsg-0ubuntu1                        amd64        Qt 5 GTK+ 3 platform theme
ii  qt5-image-formats-plugins:amd64               5.12.8-0ubuntu1                             amd64        Qt 5 Image Formats module
ii  qtchooser                                     66-2build1                                  amd64        Wrapper to select between Qt development binary versions
ii  qterminal                                     0.14.1-0ubuntu2                             amd64        Lightweight Qt terminal emulator
ii  qterminal-l10n                                0.14.1-0ubuntu2                             all          Language package for qterminal
ii  qtermwidget5-data                             0.14.1-3ubuntu1                             all          Terminal emulator widget for Qt 5 (data files)
ii  qtgstreamer-plugins-qt5:amd64                 1.2.0-5                                     amd64        GStreamer plugins from QtGStreamer - Qt 5 build
ii  qtspeech5-flite-plugin:amd64                  5.12.8-0ubuntu1                             amd64        Speech library for Qt - Flite plugin
ii  qttranslations5-l10n                          5.12.8-0ubuntu1                             all          translations for Qt 5
ii  qtvirtualkeyboard-plugin:amd64                5.12.8+dfsg-0ubuntu1                        amd64        Qt virtual keyboard
ii  qtwayland5:amd64                              5.12.8-0ubuntu1                             amd64        QtWayland platform plugin
ii  quassel                                       1:0.13.1-3ubuntu2                           amd64        distributed IRC client - monolithic core+client
ii  quassel-data                                  1:0.13.1-3ubuntu2                           all          distributed IRC client - shared data
ii  readline-common                               8.0-4                                       all          GNU readline and history libraries, common files
ii  rfkill                                        2.34-0.1ubuntu9                             amd64        tool for enabling and disabling wireless devices
ii  rsync                                         3.1.3-8                                     amd64        fast, versatile, remote (and local) file-copying tool
ii  rsyslog                                       8.2001.0-1ubuntu1                           amd64        reliable system and kernel logging daemon
ii  rtkit                                         0.12-4                                      amd64        Realtime Policy and Watchdog Daemon
ii  rtmpdump                                      2.4+20151223.gitfa8646d.1-2build1           amd64        small dumper for media content streamed over the RTMP protocol
ii  rygel                                         0.38.3-1ubuntu1                             amd64        GNOME UPnP/DLNA services
ii  samba                                         2:4.11.6+dfsg-0ubuntu1                      amd64        SMB/CIFS file, print, and login server for Unix
ii  samba-common                                  2:4.11.6+dfsg-0ubuntu1                      all          common files used by both the Samba server and client
ii  samba-common-bin                              2:4.11.6+dfsg-0ubuntu1                      amd64        Samba common files used by both the server and the client
ii  samba-dsdb-modules:amd64                      2:4.11.6+dfsg-0ubuntu1                      amd64        Samba Directory Services Database
ii  samba-libs:amd64                              2:4.11.6+dfsg-0ubuntu1                      amd64        Samba core libraries
ii  samba-vfs-modules:amd64                       2:4.11.6+dfsg-0ubuntu1                      amd64        Samba Virtual FileSystem plugins
ii  sane-utils                                    1.0.29-0ubuntu5                             amd64        API library for scanners -- utilities
ii  sbsigntool                                    0.9.2-2ubuntu1                              amd64        Tools to manipulate signatures on UEFI binaries and drivers
ii  screengrab                                    2.0.0-1                                     amd64        Crossplatform tool for getting screenshots
ii  sddm                                          0.18.1-1ubuntu2                             amd64        modern display manager for X11
ii  sddm-theme-breeze                             4:5.18.4.1-0ubuntu1                         amd64        Breeze SDDM theme
ii  secureboot-db                                 1.5                                         amd64        Secure Boot updates for DB and DBX
ii  sed                                           4.7-1                                       amd64        GNU stream editor for filtering/transforming text
ii  sensible-utils                                0.0.12+nmu1                                 all          Utilities for sensible alternative selection
ii  session-migration                             0.3.5                                       amd64        Tool to migrate in user session settings
ii  sgml-base                                     1.29.1                                      all          SGML infrastructure and SGML catalog file support
ii  sgml-data                                     2.0.11                                      all          common SGML and XML data
ii  shared-mime-info                              1.15-1                                      amd64        FreeDesktop.org shared MIME database and spec
ii  signon-kwallet-extension                      4:19.12.3-0ubuntu1                          amd64        KWallet extension for signond
ii  signon-plugin-oauth2                          0.24+16.10.20160818-0ubuntu2                amd64        Single Signon oauth2 plugin
ii  signon-plugin-password                        8.59+17.10.20170606-0ubuntu2                amd64        Plain Password plugin for Single Sign On
ii  signon-ui-service                             0.17+18.04.20171027+really20160406-0ubuntu2 all          D-Bus service file for signon-ui
ii  signon-ui-x11                                 0.17+18.04.20171027+really20160406-0ubuntu2 amd64        Single Sign-on UI
ii  signond                                       8.59+17.10.20170606-0ubuntu2                amd64        Single Sign On framework
ii  skanlite                                      2.1.0.1-2                                   amd64        image scanner based on the KSane backend
ii  skypeforlinux                                 8.51.0.92                                   amd64        Skype keeps the world talking, for free.
ii  smbclient                                     2:4.11.6+dfsg-0ubuntu1                      amd64        command-line SMB/CIFS clients for Unix
ii  smplayer                                      19.10.2~ds0-1build1                         amd64        Complete front-end for MPlayer and mpv
ii  smplayer-l10n                                 19.10.2~ds0-1build1                         all          Complete front-end for MPlayer and mpv - translation files
ii  smplayer-themes                               1:18.6.0-1                                  all          complete front-end for MPlayer - icon themes
ii  smtube                                        18.3.0-1build1                              amd64        YouTube videos browser
ii  snapd                                         2.44.3+20.04                                amd64        Daemon and tooling that enable snap packages
rc  sni-qt:amd64                                  0.2.7+17.04.20170112-0ubuntu1               amd64        indicator support for Qt
ii  socat                                         1.7.3.3-2                                   amd64        multipurpose relay for bidirectional data transfer
ii  software-properties-common                    0.98.9                                      all          manage the repositories that you install software from (common)
ii  software-properties-qt                        0.98.9                                      all          manage the repositories that you install software from (Qt)
ii  sonnet-plugins                                5.68.0-0ubuntu1                             amd64        spell checking library for Qt, plugins
ii  sound-theme-freedesktop                       0.8-2ubuntu1                                all          freedesktop.org sound theme
ii  spice-vdagent                                 0.19.0-2                                    amd64        Spice agent for Linux
ii  squashfs-tools                                1:4.4-1                                     amd64        Tool to create and append to squashfs filesystems
ii  sshfs                                         3.6.0+repack+really2.10-0ubuntu1            amd64        filesystem client based on SSH File Transfer Protocol
ii  ssl-cert                                      1.0.39                                      all          simple debconf wrapper for OpenSSL
ii  stellarium                                    0.19.3-1build1                              amd64        real-time photo-realistic sky generator
ii  stellarium-data                               0.19.3-1build1                              all          Stellarium data files
ii  strace                                        4.26-0.2ubuntu3                             amd64        System call tracer
ii  sudo                                          1.8.31-1ubuntu1                             amd64        Provide limited super user privileges to specific users
ii  switcheroo-control                            2.1-1                                       amd64        D-Bus service to check the availability of dual-GPU
ii  synaptic                                      0.84.6ubuntu5                               amd64        Graphical package manager
ii  syslinux                                      3:6.04~git20190206.bf6db5b4+dfsg1-2         amd64        collection of bootloaders (DOS FAT and NTFS bootloader)
ii  syslinux-common                               3:6.04~git20190206.bf6db5b4+dfsg1-2         all          collection of bootloaders (common)
ii  syslinux-legacy                               2:3.63+dfsg-2ubuntu9                        amd64        Bootloader for Linux/i386 using MS-DOS floppies
ii  system-config-printer                         1.5.12-0ubuntu1                             all          graphical interface to configure the printing system
ii  system-config-printer-common                  1.5.12-0ubuntu1                             all          backend and the translation files for system-config-printer
ii  system-config-printer-udev                    1.5.12-0ubuntu1                             amd64        Utilities to detect and configure printers automatically
ii  systemd                                       245.4-4ubuntu3                              amd64        system and service manager
ii  systemd-sysv                                  245.4-4ubuntu3                              amd64        system and service manager - SysV links
ii  systemd-timesyncd                             245.4-4ubuntu3                              amd64        minimalistic service to synchronize local time with NTP servers
ii  systemsettings                                4:5.18.4.1-0ubuntu1                         amd64        System Settings interface
ii  sysvinit-utils                                2.96-2.1ubuntu1                             amd64        System-V-like utilities
ii  tar                                           1.30+dfsg-7                                 amd64        GNU version of the tar archiving utility
ii  tcl                                           8.6.9+1                                     amd64        Tool Command Language (default version) - shell
ii  tcl8.6                                        8.6.10+dfsg-1                               amd64        Tcl (the Tool Command Language) v8.6 - shell
ii  tcpdump                                       4.9.3-4                                     amd64        command-line network traffic analyzer
ii  tdb-tools                                     1.4.2-3build1                               amd64        Trivial Database - bundled binaries
ii  telnet                                        0.17-41.2build1                             amd64        basic telnet client
ii  thermald                                      1.9.1-1build1                               amd64        Thermal monitoring and controlling daemon
ii  thunderbird                                   1:68.7.0+build1-0ubuntu2                    amd64        Email, RSS and newsgroup client with integrated spam filter
ii  thunderbird-locale-de                         1:68.7.0+build1-0ubuntu2                    amd64        German language pack for Thunderbird
ii  time                                          1.7-25.1build1                              amd64        GNU time program for measuring CPU resource usage
ii  timgm6mb-soundfont                            1.3-3                                       all          TimGM6mb SoundFont from MuseScore 1.3
ii  tint2                                         16.7-1                                      amd64        lightweight taskbar
ii  tk                                            8.6.9+1                                     amd64        Toolkit for Tcl and X11 (default version) - windowing shell
ii  tk8.6                                         8.6.10-1                                    amd64        Tk toolkit for Tcl and X11 v8.6 - windowing shell
ii  tpm-udev                                      0.4                                         all          udev rules for TPM modules
ii  trans-de-en                                   1.8.1-8                                     all          German-English translation dictionary
ii  tre-agrep                                     0.8.0-6                                     amd64        approximate grep utility based on the tre library
ii  tree                                          1.8.0-1                                     amd64        displays an indented directory tree, in color
ii  tzdata                                        2019c-3ubuntu1                              all          time zone and daylight-saving time data
ii  ubuntu-advantage-tools                        20.3                                        amd64        management tools for Ubuntu Advantage
ii  ubuntu-docs                                   20.04.2                                     all          Ubuntu Desktop Guide
ii  ubuntu-drivers-common                         1:0.8.1                                     amd64        Detect and install additional Ubuntu driver packages
ii  ubuntu-keyring                                2020.02.11.2                                all          GnuPG keys of the Ubuntu archive
ii  ubuntu-minimal                                1.450                                       amd64        Minimal core of Ubuntu
ii  ubuntu-mono                                   19.04-0ubuntu3                              all          Ubuntu Mono Icon theme
ii  ubuntu-release-upgrader-core                  1:20.04.18                                  all          manage release upgrades
ii  ubuntu-release-upgrader-qt                    1:20.04.18                                  all          manage release upgrades
ii  ubuntu-session                                3.36.0-2ubuntu1                             all          Ubuntu session with GNOME Shell
ii  ubuntu-standard                               1.450                                       amd64        The Ubuntu standard system
ii  ubuntu-wallpapers                             20.04.2-0ubuntu1                            all          Ubuntu Wallpapers
ii  ubuntu-wallpapers-focal                       20.04.2-0ubuntu1                            all          Ubuntu 20.04 Wallpapers
ii  ucf                                           3.0038+nmu1                                 all          Update Configuration File(s): preserve user changes to config files
ii  udev                                          245.4-4ubuntu3                              amd64        /dev/ and hotplug management daemon
ii  udisks2                                       2.8.4-1ubuntu1                              amd64        D-Bus service to access and manipulate storage devices
ii  ufw                                           0.36-6                                      all          program for managing a Netfilter firewall
ii  unar                                          1.10.1-2build7                              amd64        Unarchiver for a variety of file formats
ii  unattended-upgrades                           2.3                                         all          automatic installation of security upgrades
ii  uno-libs-private                              1:6.4.2-0ubuntu3                            amd64        LibreOffice UNO runtime environment -- private libraries used by public ones
ii  unzip                                         6.0-25ubuntu1                               amd64        De-archiver for .zip files
ii  update-inetd                                  4.50                                        all          inetd configuration file updater
ii  update-manager-core                           1:20.04.9                                   all          manage release upgrades
ii  upower                                        0.99.11-1build2                             amd64        abstraction for power management
ii  ure                                           1:6.4.2-0ubuntu3                            amd64        LibreOffice UNO runtime environment
ii  usb-creator-common                            0.3.7                                       amd64        create a startup disk using a CD or disc image (common files)
ii  usb-creator-kde                               0.3.7                                       amd64        create a startup disk using a CD or disc image (for KDE)
ii  usb-modeswitch                                2.5.2+repack0-2ubuntu3                      amd64        mode switching tool for controlling "flip flop" USB devices
ii  usb-modeswitch-data                           20191128-3                                  all          mode switching data for usb-modeswitch
ii  usb.ids                                       2020.03.19-1                                all          USB ID Repository
ii  usbmuxd                                       1.1.1~git20191130.9af2b12-1                 amd64        USB multiplexor daemon for iPhone and iPod Touch devices
ii  usbutils                                      1:012-2                                     amd64        Linux USB utilities
ii  user-manager                                  4:5.18.4.1-0ubuntu1                         amd64        user management tool for the Plasma workspace
ii  util-linux                                    2.34-0.1ubuntu9                             amd64        miscellaneous system utilities
ii  uuid-runtime                                  2.34-0.1ubuntu9                             amd64        runtime components for the Universally Unique ID library
ii  va-driver-all:amd64                           2.7.0-2                                     amd64        Video Acceleration (VA) API -- driver metapackage
ii  va-driver-all:i386                            2.7.0-2                                     i386         Video Acceleration (VA) API -- driver metapackage
ii  vcdimager                                     2.0.1+dfsg-3                                amd64        VideoCD (VCD) image mastering and ripping tool
ii  vdpau-driver-all:amd64                        1.3-1ubuntu2                                amd64        Video Decode and Presentation API for Unix (driver metapackage)
ii  vdpau-driver-all:i386                         1.3-1ubuntu2                                i386         Video Decode and Presentation API for Unix (driver metapackage)
ii  vim-common                                    2:8.1.2269-1ubuntu5                         all          Vi IMproved - Common files
ii  vim-tiny                                      2:8.1.2269-1ubuntu5                         amd64        Vi IMproved - enhanced vi editor - compact version
ii  virtualbox-guest-dkms                         6.1.6-dfsg-1                                all          x86 virtualization solution - guest addition module source for dkms
ii  virtualbox-guest-utils                        6.1.6-dfsg-1                                amd64        x86 virtualization solution - non-X11 guest utilities
ii  virtualbox-guest-x11                          6.1.6-dfsg-1                                amd64        x86 virtualization solution - X11 guest utilities
ii  vlc                                           3.0.9.2-1                                   amd64        multimedia player and streamer
ii  vlc-bin                                       3.0.9.2-1                                   amd64        binaries from VLC
ii  vlc-data                                      3.0.9.2-1                                   all          common data for VLC
ii  vlc-l10n                                      3.0.9.2-1                                   all          translations for VLC
ii  vlc-plugin-base:amd64                         3.0.9.2-1                                   amd64        multimedia player and streamer (base plugins)
ii  vlc-plugin-fluidsynth:amd64                   3.0.9.2-1                                   amd64        FluidSynth plugin for VLC
ii  vlc-plugin-jack:amd64                         3.0.9.2-1                                   amd64        JACK audio plugins for VLC
ii  vlc-plugin-notify:amd64                       3.0.9.2-1                                   amd64        LibNotify plugin for VLC
ii  vlc-plugin-qt:amd64                           3.0.9.2-1                                   amd64        multimedia player and streamer (Qt plugin)
ii  vlc-plugin-samba:amd64                        3.0.9.2-1                                   amd64        Samba plugin for VLC
ii  vlc-plugin-skins2:amd64                       3.0.9.2-1                                   amd64        multimedia player and streamer (Skins2 plugin)
ii  vlc-plugin-video-output:amd64                 3.0.9.2-1                                   amd64        multimedia player and streamer (video output plugins)
ii  vlc-plugin-video-splitter:amd64               3.0.9.2-1                                   amd64        multimedia player and streamer (video splitter plugins)
ii  vlc-plugin-visualization:amd64                3.0.9.2-1                                   amd64        multimedia player and streamer (visualization plugins)
ii  wamerican                                     2018.04.16-1                                all          American English dictionary words for /usr/share/dict
ii  wbritish                                      2018.04.16-1                                all          British English dictionary words for /usr/share/dict
ii  wget                                          1.20.3-1ubuntu1                             amd64        retrieves files from the web
ii  whiptail                                      0.52.21-4ubuntu2                            amd64        Displays user-friendly dialog boxes from shell scripts
ii  whoopsie                                      0.2.69                                      amd64        Ubuntu error tracker submission
ii  whoopsie-preferences                          22                                          amd64        System preferences for error reporting
ii  wine                                          5.0-3ubuntu1                                all          Windows API implementation - standard suite
ii  wine32:i386                                   5.0-3ubuntu1                                i386         Windows API implementation - 32-bit binary loader
ii  wine64                                        5.0-3ubuntu1                                amd64        Windows API implementation - 64-bit binary loader
ii  wireless-regdb                                2018.05.09-0ubuntu1                         all          wireless regulatory database
ii  wireless-tools                                30~pre9-13ubuntu1                           amd64        Tools for manipulating Linux Wireless Extensions
ii  wngerman                                      20161207-7                                  all          New German orthography wordlist
ii  wodim                                         9:1.1.11-3.1ubuntu1                         amd64        command line CD/DVD writing tool
ii  wogerman                                      1:2-35                                      all          Traditional German wordlist
ii  wpasupplicant                                 2:2.9-1ubuntu4                              amd64        client support for WPA and WPA2 (IEEE 802.11i)
ii  wswiss                                        20161207-7                                  all          Swiss (German) orthography wordlist
ii  x11-apps                                      7.7+8                                       amd64        X applications
ii  x11-common                                    1:7.7+19ubuntu14                            all          X Window System (X.Org) infrastructure
ii  x11-session-utils                             7.7+4                                       amd64        X session utilities
ii  x11-utils                                     7.7+5                                       amd64        X11 utilities
ii  x11-xkb-utils                                 7.7+5                                       amd64        X11 XKB utilities
ii  x11-xserver-utils                             7.7+8                                       amd64        X server utilities
ii  xauth                                         1:1.1-0ubuntu1                              amd64        X authentication utility
ii  xbindkeys                                     1.8.6-2                                     amd64        Associate a combination of keys or mouse buttons with a shell command
ii  xbitmaps                                      1.1.1-2                                     all          Base X bitmaps
ii  xdg-dbus-proxy                                0.1.2-1                                     amd64        filtering D-Bus proxy
ii  xdg-desktop-portal                            1.6.0-1                                     amd64        desktop integration portal for Flatpak and Snap
ii  xdg-desktop-portal-kde                        5.18.4.1-0ubuntu2                           amd64        backend implementation for xdg-desktop-portal using Qt
ii  xdg-user-dirs                                 0.17-2ubuntu1                               amd64        tool to manage well known user directories
ii  xdg-utils                                     1.1.3-2ubuntu1                              all          desktop integration utilities from freedesktop.org
ii  xfce4-clipman                                 2:1.4.4-1                                   amd64        clipboard history utility
ii  xfconf                                        4.14.1-1                                    amd64        utilities for managing settings in Xfce
ii  xfonts-base                                   1:1.0.5                                     all          standard fonts for X
ii  xfonts-encodings                              1:1.0.5-0ubuntu1                            all          Encodings for X.Org fonts
ii  xfonts-scalable                               1:1.0.3-1.1                                 all          scalable fonts for X
ii  xfonts-utils                                  1:7.7+6                                     amd64        X Window System font utility programs
ii  xfwm4                                         4.14.1-0ubuntu1                             amd64        window manager of the Xfce project
ii  xfwm4-theme-breeze                            0.1.0-4                                     all          Breeze theme files for xfwm4
ii  xinit                                         1.4.1-0ubuntu2                              amd64        X server initialisation tool
ii  xinput                                        1.6.3-1                                     amd64        Runtime configuration and test of XInput devices
ii  xkb-data                                      2.29-2                                      all          X Keyboard Extension (XKB) configuration data
ii  xml-core                                      0.18+nmu1                                   all          XML infrastructure and XML catalog file support
ii  xorg                                          1:7.7+19ubuntu14                            amd64        X.Org X Window System
ii  xorg-docs-core                                1:1.7.1-1.1                                 all          Core documentation for the X.org X Window System
ii  xsane                                         0.999-8ubuntu2                              amd64        featureful graphical frontend for SANE (Scanner Access Now Easy)
ii  xsane-common                                  0.999-8ubuntu2                              all          xsane architecture independent files
ii  xscreensaver                                  5.42+dfsg1-1ubuntu1                         amd64        Screensaver daemon and frontend for X11
ii  xscreensaver-data                             5.42+dfsg1-1ubuntu1                         amd64        Screen saver modules for screensaver frontends
ii  xserver-common                                2:1.20.8-2ubuntu2                           all          common files used by various X servers
ii  xserver-xephyr                                2:1.20.8-2ubuntu2                           amd64        nested X server
ii  xserver-xorg                                  1:7.7+19ubuntu14                            amd64        X.Org X server
ii  xserver-xorg-core                             2:1.20.8-2ubuntu2                           amd64        Xorg X server - core server
ii  xserver-xorg-input-all                        1:7.7+19ubuntu14                            amd64        X.Org X server -- input driver metapackage
ii  xserver-xorg-input-libinput                   0.29.0-1                                    amd64        X.Org X server -- libinput input driver
ii  xserver-xorg-input-wacom                      1:0.39.0-0ubuntu1                           amd64        X.Org X server -- Wacom input driver
ii  xserver-xorg-legacy                           2:1.20.8-2ubuntu2                           amd64        setuid root Xorg server wrapper
ii  xserver-xorg-video-all                        1:7.7+19ubuntu14                            amd64        X.Org X server -- output driver metapackage
ii  xserver-xorg-video-amdgpu                     19.1.0-1                                    amd64        X.Org X server -- AMDGPU display driver
ii  xserver-xorg-video-ati                        1:19.1.0-1                                  amd64        X.Org X server -- AMD/ATI display driver wrapper
ii  xserver-xorg-video-fbdev                      1:0.5.0-1ubuntu1                            amd64        X.Org X server -- fbdev display driver
ii  xserver-xorg-video-intel                      2:2.99.917+git20200226-1                    amd64        X.Org X server -- Intel i8xx, i9xx display driver
ii  xserver-xorg-video-nouveau                    1:1.0.16-1                                  amd64        X.Org X server -- Nouveau display driver
ii  xserver-xorg-video-qxl                        0.1.5+git20200331-1                         amd64        X.Org X server -- QXL display driver
ii  xserver-xorg-video-radeon                     1:19.1.0-1                                  amd64        X.Org X server -- AMD/ATI Radeon display driver
ii  xserver-xorg-video-vesa                       1:2.4.0-2                                   amd64        X.Org X server -- VESA display driver
ii  xserver-xorg-video-vmware                     1:13.3.0-3                                  amd64        X.Org X server -- VMware display driver
ii  xsettingsd                                    0.0.20171105+1+ge4cf9969-1build1            amd64        Provides settings to X11 applications
ii  xsltproc                                      1.1.34-4                                    amd64        XSLT 1.0 command line processor
ii  xul-ext-ubufox                                3.4-0ubuntu1.17.10.1                        all          Ubuntu modifications for Firefox
ii  xwayland                                      2:1.20.8-2ubuntu2                           amd64        Xwayland X server
ii  xxd                                           2:8.1.2269-1ubuntu5                         amd64        tool to make (or reverse) a hex dump
ii  xz-utils                                      5.2.4-1                                     amd64        XZ-format compression utilities
ii  yakuake                                       19.12.3-0ubuntu1                            amd64        Quake-style terminal emulator based on KDE Konsole technology
ii  yaru-theme-gnome-shell                        20.04.6                                     all          Yaru GNOME Shell desktop theme from the Ubuntu Community
ii  yelp                                          3.36.0-1                                    amd64        Help browser for GNOME
ii  yelp-xsl                                      3.36.0-1                                    all          XSL stylesheets for the yelp help browser
ii  youtube-dl                                    2020.03.24-1                                all          downloader of videos from YouTube and other sites
ii  zenity                                        3.32.0-5                                    amd64        Display graphical dialog boxes from shell scripts
ii  zenity-common                                 3.32.0-5                                    all          Display graphical dialog boxes from shell scripts (common files)
ii  zip                                           3.0-11build1                                amd64        Archiver for .zip files
ii  zlib1g:amd64                                  1:1.2.11.dfsg-2ubuntu1                      amd64        compression library - runtime
ii  zlib1g:i386                                   1:1.2.11.dfsg-2ubuntu1                      i386         compression library - runtime