summaryrefslogtreecommitdiff
path: root/linaro-sid-alip.packages
blob: ae7af3c0fcabb0d9cb7e446b695e857181ebc6c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                                          Version                               Architecture Description
+++-=============================================-=====================================-============-===============================================================================
ii  96boards-artwork                              0.6-0linaro1                          all          artwork for 96Boards
ii  96boards-tools-common                         0.9                                   all          common files used by 96boards
ii  adduser                                       3.118                                 all          add and remove users and groups
ii  adwaita-icon-theme                            41.0-1                                all          default icon theme of GNOME
ii  alsa-ucm-conf                                 1.2.5.1-1                             all          ALSA Use Case Manager configuration files
ii  alsa-utils                                    1.2.5.1-1                             arm64        Utilities for configuring and using ALSA
ii  anacron                                       2.3-31                                arm64        cron-like program that doesn't go by time
ii  apt                                           2.3.9                                 arm64        commandline package manager
ii  apt-utils                                     2.3.9                                 arm64        package management related utility programs
ii  base-files                                    12                                    arm64        Debian base system miscellaneous files
ii  base-passwd                                   3.5.52                                arm64        Debian base system master password and group files
ii  bash                                          5.1-3+b2                              arm64        GNU Bourne Again SHell
ii  bc                                            1.07.1-3                              arm64        GNU bc arbitrary precision calculator language
ii  binutils                                      2.37-7                                arm64        GNU assembler, linker and binary utilities
ii  binutils-aarch64-linux-gnu                    2.37-7                                arm64        GNU binary utilities, for aarch64-linux-gnu target
ii  binutils-common:arm64                         2.37-7                                arm64        Common files for the GNU assembler, linker and binary utilities
ii  bluedevil                                     4:5.21.5-2                            arm64        KDE Bluetooth stack
ii  bluez                                         5.61-1                                arm64        Bluetooth tools and daemons
ii  bluez-obexd                                   5.61-1                                arm64        bluez obex daemon
ii  breeze                                        4:5.21.5-2                            arm64        Default Plasma theme (Metapackage)
ii  breeze-cursor-theme                           4:5.21.5-2                            all          Default Plasma cursor theme
ii  breeze-icon-theme                             4:5.86.0-1                            all          Default Plasma icon theme
ii  bsdutils                                      1:2.37.2-3                            arm64        basic utilities from 4.4BSD-Lite
ii  build-essential                               12.9                                  arm64        Informational list of build-essential packages
ii  bzip2                                         1.0.8-4                               arm64        high-quality block-sorting file compressor - utilities
ii  ca-certificates                               20210119                              all          Common CA certificates
ii  ca-certificates-java                          20190909                              all          Common CA certificates (JKS keystore)
ii  chromium                                      93.0.4577.82-1                        arm64        web browser
ii  chromium-common                               93.0.4577.82-1                        arm64        web browser - common resources used by the chromium packages
ii  console-setup                                 1.205                                 all          console font and keymap setup program
ii  console-setup-linux                           1.205                                 all          Linux specific part of console-setup
ii  coreutils                                     8.32-4                                arm64        GNU core utilities
ii  cpio                                          2.13+dfsg-7                           arm64        GNU cpio -- a program to manage archives of files
ii  cpp                                           4:10.2.1-1                            arm64        GNU C preprocessor (cpp)
ii  cpp-10                                        10.3.0-11                             arm64        GNU C preprocessor
ii  cpufrequtils                                  008-2                                 arm64        utilities to deal with the cpufreq Linux kernel feature
ii  cron                                          3.0pl1-137                            arm64        process scheduling daemon
ii  curl                                          7.74.0-1.3+b1                         arm64        command line tool for transferring data with URL syntax
ii  dash                                          0.5.11+git20210120+802ebd4-1          arm64        POSIX-compliant shell
ii  dbus                                          1.12.20-2                             arm64        simple interprocess messaging system (daemon and utilities)
ii  dbus-x11                                      1.12.20-2                             arm64        simple interprocess messaging system (X11 deps)
ii  dconf-gsettings-backend:arm64                 0.40.0-2                              arm64        simple configuration storage system - GSettings back-end
ii  dconf-service                                 0.40.0-2                              arm64        simple configuration storage system - D-Bus service
ii  debconf                                       1.5.77                                all          Debian configuration management system
ii  debconf-i18n                                  1.5.77                                all          full internationalization support for debconf
ii  debian-archive-keyring                        2021.1.1                              all          GnuPG archive keys of the Debian archive
ii  debian-keyring                                2021.09.25                            all          GnuPG keys of Debian Developers and Maintainers
ii  debianutils                                   5.5-1                                 arm64        Miscellaneous utilities specific to Debian
ii  default-jre                                   2:1.11-72                             arm64        Standard Java or Java compatible Runtime
ii  default-jre-headless                          2:1.11-72                             arm64        Standard Java or Java compatible Runtime (headless)
ii  desktop-file-utils                            0.26-1                                arm64        Utilities for .desktop files
ii  diffutils                                     1:3.7-5                               arm64        File comparison utilities
ii  dirmngr                                       2.2.27-2                              arm64        GNU privacy guard - network certificate management service
ii  distro-info-data                              0.51                                  all          information about the distributions' releases (data files)
ii  dmidecode                                     3.3-3                                 arm64        SMBIOS/DMI table decoder
ii  dmsetup                                       2:1.02.175-2.1                        arm64        Linux Kernel Device Mapper userspace library
ii  dmz-cursor-theme                              0.4.5                                 all          Style neutral, scalable cursor theme
ii  dnsmasq-base                                  2.86-1                                arm64        Small caching DNS proxy and DHCP/TFTP server
ii  dpkg                                          1.20.9                                arm64        Debian package management system
ii  dpkg-dev                                      1.20.9                                all          Debian package development tools
ii  drkonqi                                       5.21.5-2                              arm64        Crash handler for Qt applications
ii  e2fsprogs                                     1.46.4-1                              arm64        ext2/ext3/ext4 file system utilities
ii  eject                                         2.37.2-3                              arm64        ejects CDs and operates CD-Changers under Linux
ii  evtest                                        1:1.34-1                              arm64        utility to monitor Linux input device events
ii  fastrpc                                       0.1-1                                 arm64        Qualcomm FastRPC applications and library
ii  fbset                                         2.1-32                                arm64        framebuffer device maintenance program
ii  fdisk                                         2.37.2-3                              arm64        collection of partitioning utilities
ii  file                                          1:5.39-3                              arm64        Recognize the type of data in a file using "magic" numbers
ii  findutils                                     4.8.0-1                               arm64        utilities for finding files--find, xargs
ii  firmware-atheros                              20210818-1                            all          Binary firmware for Qualcomm Atheros wireless cards
ii  firmware-qcom-dragonboard820c                 01700.1-4                             all          Binary firmware for various Qualcomm drivers used on Dragonboard 820c
ii  firmware-qcom-soc                             20210818-1                            all          Binary firmware for Qualcomm SoCs
ii  fontconfig                                    2.13.1-4.2                            arm64        generic font configuration library - support binaries
ii  fontconfig-config                             2.13.1-4.2                            all          generic font configuration library - configuration
ii  fonts-arphic-ukai                             0.2.20080216.2-5                      all          "AR PL UKai" Chinese Unicode TrueType font collection Kaiti style
ii  fonts-arphic-uming                            0.2.20080216.2-11                     all          "AR PL UMing" Chinese Unicode TrueType font collection Mingti style
ii  fonts-dejavu-core                             2.37-2                                all          Vera font family derivate with additional characters
ii  fonts-freefont-ttf                            20120503-10                           all          Freefont Serif, Sans and Mono Truetype fonts
ii  fonts-ipafont-gothic                          00303-23                              all          Japanese OpenType font set, IPA Gothic and IPA P Gothic Fonts
ii  fonts-ipafont-mincho                          00303-23                              all          Japanese OpenType font set, IPA Mincho and IPA P Mincho Fonts
ii  fonts-lyx                                     2.3.6-1                               all          TrueType versions of some TeX fonts used by LyX
ii  fonts-unfonts-core                            1:1.0.2-080608-16                     all          Un series Korean TrueType fonts
ii  frameworkintegration                          5.86.0-1                              arm64        KF5 cross-framework integration plugins
ii  g++                                           4:10.2.1-1                            arm64        GNU C++ compiler
ii  g++-10                                        10.3.0-11                             arm64        GNU C++ compiler
ii  gcc                                           4:10.2.1-1                            arm64        GNU C compiler
ii  gcc-10                                        10.3.0-11                             arm64        GNU C compiler
ii  gcc-10-base:arm64                             10.3.0-11                             arm64        GCC, the GNU Compiler Collection (base package)
ii  gcc-11-base:arm64                             11.2.0-8                              arm64        GCC, the GNU Compiler Collection (base package)
ii  gcc-9-base:arm64                              9.4.0-3                               arm64        GCC, the GNU Compiler Collection (base package)
ii  gcr                                           3.40.0-3+b1                           arm64        GNOME crypto services (daemon and tools)
ii  gdb                                           10.1-2                                arm64        GNU Debugger
ii  gdbserver                                     10.1-2                                arm64        GNU Debugger (remote server)
ii  gdisk                                         1.0.8-3                               arm64        GPT fdisk text-mode partitioning tool
ii  gir1.2-atk-1.0:arm64                          2.36.0-2                              arm64        ATK accessibility toolkit (GObject introspection)
ii  gir1.2-freedesktop:arm64                      1.70.0-2                              arm64        Introspection data for some FreeDesktop components
ii  gir1.2-gdkpixbuf-2.0:arm64                    2.42.6+dfsg-2                         arm64        GDK Pixbuf library - GObject-Introspection
ii  gir1.2-glib-2.0:arm64                         1.70.0-2                              arm64        Introspection data for GLib, GObject, Gio and GModule
ii  gir1.2-gtk-3.0:arm64                          3.24.30-3                             arm64        GTK graphical user interface library -- gir bindings
ii  gir1.2-harfbuzz-0.0:arm64                     2.7.4-1                               arm64        OpenType text shaping engine (GObject introspection data)
ii  gir1.2-pango-1.0:arm64                        1.48.10+ds1-1                         arm64        Layout and rendering of internationalized text - gir bindings
ii  git                                           1:2.33.0-1                            arm64        fast, scalable, distributed revision control system
ii  git-man                                       1:2.33.0-1                            all          fast, scalable, distributed revision control system (manual pages)
ii  glib-networking:arm64                         2.70.0-1                              arm64        network-related giomodules for GLib
ii  glib-networking-common                        2.70.0-1                              all          network-related giomodules for GLib - data files
ii  glib-networking-services                      2.70.0-1                              arm64        network-related giomodules for GLib - D-Bus services
ii  glmark2                                       2014.03+git20150611.fa71af2d-1linaro2 arm64        OpenGL 2.0 X11 benchmark
ii  glmark2-data                                  2014.03+git20150611.fa71af2d-1linaro2 all          data files for the glmark2 OpenGL (ES) 2.0 benchmark
ii  glshim                                        0.42-0linarostretch1                  arm64        Shim that translates OpenGL 1.x into OpenGL ES.
ii  gnome-icon-theme                              3.12.0-4                              all          GNOME Desktop icon theme
ii  gnome-keyring                                 40.0-3                                arm64        GNOME keyring services (daemon and tools)
ii  gnupg                                         2.2.27-2                              all          GNU privacy guard - a free PGP replacement
ii  gnupg-l10n                                    2.2.27-2                              all          GNU privacy guard - localization files
ii  gnupg-utils                                   2.2.27-2                              arm64        GNU privacy guard - utility programs
ii  gpg                                           2.2.27-2                              arm64        GNU Privacy Guard -- minimalist public key operations
ii  gpg-agent                                     2.2.27-2                              arm64        GNU privacy guard - cryptographic agent
ii  gpg-wks-client                                2.2.27-2                              arm64        GNU privacy guard - Web Key Service client
ii  gpg-wks-server                                2.2.27-2                              arm64        GNU privacy guard - Web Key Service server
ii  gpgconf                                       2.2.27-2                              arm64        GNU privacy guard - core configuration utilities
ii  gpgsm                                         2.2.27-2                              arm64        GNU privacy guard - S/MIME version
ii  gpgv                                          2.2.27-2                              arm64        GNU privacy guard - signature verification tool
ii  gpsd                                          3.22-4+linaro1                        arm64        Global Positioning System - daemon
ii  gpsd-clients                                  3.22-4+linaro1                        arm64        Global Positioning System - clients
ii  gpsd-tools                                    3.22-4+linaro1                        arm64        Global Positioning System - tools
ii  grep                                          3.7-1                                 arm64        GNU grep, egrep and fgrep
ii  gsettings-desktop-schemas                     41.0-1                                all          GSettings desktop-wide schemas
ii  gstreamer1.0-alsa:arm64                       1.18.5-1                              arm64        GStreamer plugin for ALSA
ii  gstreamer1.0-gl:arm64                         1.18.5-1                              arm64        GStreamer plugins for GL
ii  gstreamer1.0-libav:arm64                      1.18.5-1                              arm64        ffmpeg plugin for GStreamer
ii  gstreamer1.0-plugins-bad:arm64                1.18.5-1+b1                           arm64        GStreamer plugins from the "bad" set
ii  gstreamer1.0-plugins-base:arm64               1.18.5-1                              arm64        GStreamer plugins from the "base" set
ii  gstreamer1.0-plugins-base-apps                1.18.5-1                              arm64        GStreamer helper programs from the "base" set
ii  gstreamer1.0-plugins-good:arm64               1.18.5-1                              arm64        GStreamer plugins from the "good" set
ii  gstreamer1.0-pulseaudio:arm64                 1.18.5-1                              arm64        GStreamer plugin for PulseAudio (transitional package)
ii  gstreamer1.0-tools                            1.18.5-1                              arm64        Tools for use with GStreamer
ii  gtk-update-icon-cache                         3.24.30-3                             arm64        icon theme caching utility
ii  gtk2-engines:arm64                            1:2.20.2-5+b1                         arm64        theme engines for GTK+ 2.x
ii  gtk2-engines-murrine:arm64                    0.98.2-3+b1                           arm64        cairo-based gtk+-2.0 theme engine
ii  gtk2-engines-pixbuf:arm64                     2.24.33-2                             arm64        pixbuf-based theme for GTK 2
ii  gvfs:arm64                                    1.48.1-2                              arm64        userspace virtual filesystem - GIO module
ii  gvfs-common                                   1.48.1-2                              all          userspace virtual filesystem - common data files
ii  gvfs-daemons                                  1.48.1-2                              arm64        userspace virtual filesystem - servers
ii  gvfs-libs:arm64                               1.48.1-2                              arm64        userspace virtual filesystem - private libraries
ii  gzip                                          1.10-4                                arm64        GNU compression utilities
ii  hicolor-icon-theme                            0.17-2                                all          default fallback theme for FreeDesktop.org icon themes
ii  hostname                                      3.23                                  arm64        utility to set/show the host name or domain name
ii  htop                                          3.0.5-7                               arm64        interactive processes viewer
ii  hwdata                                        0.351-1                               all          hardware identification / configuration data
ii  i2c-tools                                     4.2-2                                 arm64        heterogeneous set of I2C tools for Linux
ii  idlestat                                      0.8-5                                 arm64        measure CPU time in idle and operating states
ii  ifupdown                                      0.8.36+nmu1                           arm64        high level tools to configure network interfaces
ii  init                                          1.60                                  arm64        metapackage ensuring an init system is installed
ii  init-system-helpers                           1.60                                  all          helper tools for all init systems
ii  initramfs-tools                               0.140                                 all          generic modular initramfs generator (automation)
ii  initramfs-tools-core                          0.140                                 all          generic modular initramfs generator (core tools)
ii  initscripts                                   3.00-1                                all          scripts for initializing and shutting down the system
ii  insserv                                       1.23.0-1                              arm64        boot sequence organizer using LSB init.d script dependency information
ii  iotop                                         0.6-24-g733f3f8-1.1                   arm64        simple top-like I/O monitor
ii  iperf                                         2.1.2+dfsg1-1                         arm64        Internet Protocol bandwidth measuring tool
ii  iproute2                                      5.14.0-1                              arm64        networking and traffic control tools
ii  iptables                                      1.8.7-1                               arm64        administration tools for packet filtering and NAT
ii  iputils-ping                                  3:20210202-1                          arm64        Tools to test the reachability of network hosts
ii  isc-dhcp-client                               4.4.1-2.3                             arm64        DHCP client for automatically obtaining an IP address
ii  isc-dhcp-common                               4.4.1-2.3                             arm64        common manpages relevant to all of the isc-dhcp packages
ii  iso-codes                                     4.7.0-1                               all          ISO language, territory, currency, script codes and their translations
ii  iw                                            5.9-3                                 arm64        tool for configuring Linux wireless devices
ii  java-common                                   0.72                                  all          Base package for Java runtimes
ii  kactivitymanagerd                             5.21.5-2                              arm64        System service to manage user's activities
ii  kbd                                           2.3.0-3                               arm64        Linux console font and keytable utilities
ii  kde-config-sddm                               4:5.21.5-2                            arm64        KCM module for SDDM
ii  kde-style-breeze                              4:5.21.5-2                            arm64        Widget style for Qt and KDE Software
ii  kded5                                         5.86.0-1                              arm64        Extensible daemon for providing session services
ii  keyboard-configuration                        1.205                                 all          system-wide keyboard preferences
ii  kinit                                         5.86.0-1                              arm64        process launcher to speed up launching KDE applications
ii  kio                                           5.86.0-1                              arm64        resource and network access abstraction
ii  klibc-utils                                   2.0.8-6.1                             arm64        small utilities built with klibc for early boot
ii  kmod                                          29-1                                  arm64        tools for managing Linux kernel modules
ii  kmscube                                       0.0.0~git20210103-1                   arm64        Example KMS/GBM/EGL application
ii  kpackagetool5                                 5.86.0-1                              arm64        command line kpackage tool
ii  ktexteditor-data                              5.86.0-1                              all          provide advanced plain text editing services
ii  kwayland-data                                 4:5.86.0-1                            all          Qt library wrapper for Wayland libraries - data files
ii  kwin-common                                   4:5.21.5-2                            arm64        KDE window manager, common files
ii  kwin-data                                     4:5.21.5-2                            all          KDE window manager data files
ii  kwin-style-breeze                             4:5.21.5-2                            arm64        KWin Breeze Style
ii  kwin-x11                                      4:5.21.5-2                            arm64        KDE window manager, X11 version
ii  less                                          551-2                                 arm64        pager program similar to more
ii  libaa1:arm64                                  1.4p5-50                              arm64        ASCII art library
ii  libacl1:arm64                                 2.3.1-1                               arm64        access control list - shared library
ii  libaom0:arm64                                 1.0.0.errata1-3                       arm64        AV1 Video Codec Library
ii  libapparmor1:arm64                            3.0.3-2                               arm64        changehat AppArmor library
ii  libappstream4:arm64                           0.14.5-1                              arm64        Library to access AppStream services
ii  libappstreamqt2:arm64                         0.14.5-1                              arm64        Qt5 library to access AppStream services
ii  libapt-pkg6.0:arm64                           2.3.9                                 arm64        package management runtime library
ii  libargon2-1:arm64                             0~20171227-0.2                        arm64        memory-hard hashing function - runtime library
ii  libasan6:arm64                                11.2.0-8                              arm64        AddressSanitizer -- a fast memory error detector
ii  libasound2:arm64                              1.2.5.1-1                             arm64        shared library for ALSA applications
ii  libasound2-data                               1.2.5.1-1                             all          Configuration files and profiles for ALSA drivers
ii  libasound2-plugins:arm64                      1.2.5-2                               arm64        ALSA library additional plugins
ii  libass9:arm64                                 1:0.15.2-1                            arm64        library for SSA/ASS subtitles rendering
ii  libassuan0:arm64                              2.5.5-1                               arm64        IPC library for the GnuPG components
ii  libasyncns0:arm64                             0.8-6+b2                              arm64        Asynchronous name service query library
ii  libatasmart4:arm64                            0.19-5                                arm64        ATA S.M.A.R.T. reading and parsing library
ii  libatk-bridge2.0-0:arm64                      2.38.0-2                              arm64        AT-SPI 2 toolkit bridge - shared library
ii  libatk1.0-0:arm64                             2.36.0-2                              arm64        ATK accessibility toolkit
ii  libatk1.0-data                                2.36.0-2                              all          Common files for the ATK accessibility toolkit
ii  libatomic1:arm64                              11.2.0-8                              arm64        support library providing __atomic built-in functions
ii  libatopology2:arm64                           1.2.5.1-1                             arm64        shared library for handling ALSA topology definitions
ii  libatspi2.0-0:arm64                           2.42.0-1                              arm64        Assistive Technology Service Provider Interface - shared library
ii  libattr1:arm64                                1:2.5.1-1                             arm64        extended attribute handling - shared library
ii  libaudit-common                               1:3.0.5-1                             all          Dynamic library for security auditing - common files
ii  libaudit1:arm64                               1:3.0.5-1                             arm64        Dynamic library for security auditing
ii  libavahi-client3:arm64                        0.8-5                                 arm64        Avahi client library
ii  libavahi-common-data:arm64                    0.8-5                                 arm64        Avahi common data files
ii  libavahi-common3:arm64                        0.8-5                                 arm64        Avahi common library
ii  libavc1394-0:arm64                            0.5.4-5                               arm64        control IEEE 1394 audio/video devices
ii  libavcodec58:arm64                            7:4.4-6+b2                            arm64        FFmpeg library with de/encoders for audio/video codecs - runtime files
ii  libavfilter7:arm64                            7:4.4-6+b2                            arm64        FFmpeg library containing media filters - runtime files
ii  libavformat58:arm64                           7:4.4-6+b2                            arm64        FFmpeg library with (de)muxers for multimedia containers - runtime files
ii  libavutil56:arm64                             7:4.4-6+b2                            arm64        FFmpeg library with functions for simplifying programming - runtime files
ii  libayatana-appindicator3-1                    0.5.5-3                               arm64        Ayatana Application Indicators (GTK-3+ version)
ii  libayatana-ido3-0.4-0:arm64                   0.8.2-2                               arm64        Widgets and other objects used for Ayatana Indicators
ii  libayatana-indicator3-7:arm64                 0.8.4-1                               arm64        panel indicator applet - shared library (GTK-3+ variant)
ii  libbabeltrace1:arm64                          1.5.8-1+b3                            arm64        Babeltrace conversion libraries
ii  libbinutils:arm64                             2.37-7                                arm64        GNU binary utilities (private shared library)
ii  libblas3:arm64                                3.10.0-1                              arm64        Basic Linear Algebra Reference implementations, shared library
ii  libblkid1:arm64                               2.37.2-3                              arm64        block device ID library
ii  libblockdev-fs2:arm64                         2.26-1                                arm64        file system plugin for libblockdev
ii  libblockdev-loop2:arm64                       2.26-1                                arm64        Loop device plugin for libblockdev
ii  libblockdev-part-err2:arm64                   2.26-1                                arm64        Partition error utility functions for libblockdev
ii  libblockdev-part2:arm64                       2.26-1                                arm64        Partitioning plugin for libblockdev
ii  libblockdev-swap2:arm64                       2.26-1                                arm64        Swap plugin for libblockdev
ii  libblockdev-utils2:arm64                      2.26-1                                arm64        Utility functions for libblockdev
ii  libblockdev2:arm64                            2.26-1                                arm64        Library for manipulating block devices
ii  libbluetooth3:arm64                           5.61-1                                arm64        Library to use the BlueZ Linux Bluetooth stack
ii  libbluray2:arm64                              1:1.3.0-3                             arm64        Blu-ray disc playback support library (shared library)
ii  libboost-regex1.74.0:arm64                    1.74.0-11                             arm64        regular expression library for C++
ii  libbpf0:arm64                                 1:0.5.0-1                             arm64        eBPF helper library (shared library)
ii  libbrotli1:arm64                              1.0.9-2+b2                            arm64        library implementing brotli encoder and decoder (shared libraries)
ii  libbs2b0:arm64                                3.1.0+dfsg-2.2+b1                     arm64        Bauer stereophonic-to-binaural DSP library
ii  libbsd0:arm64                                 0.11.3-1                              arm64        utility functions from BSD systems - shared library
ii  libbz2-1.0:arm64                              1.0.8-4                               arm64        high-quality block-sorting file compressor library - runtime
ii  libc-bin                                      2.32-4                                arm64        GNU C Library: Binaries
ii  libc-dev-bin                                  2.32-4                                arm64        GNU C Library: Development binaries
ii  libc-l10n                                     2.32-4                                all          GNU C Library: localization files
ii  libc6:arm64                                   2.32-4                                arm64        GNU C Library: Shared libraries
ii  libc6-dev:arm64                               2.32-4                                arm64        GNU C Library: Development Libraries and Header Files
ii  libcaca0:arm64                                0.99.beta19-2.2                       arm64        colour ASCII art library
ii  libcairo-gobject2:arm64                       1.16.0-5                              arm64        Cairo 2D vector graphics library (GObject library)
ii  libcairo2:arm64                               1.16.0-5                              arm64        Cairo 2D vector graphics library
ii  libcap-ng0:arm64                              0.7.9-2.2+b1                          arm64        An alternate POSIX capabilities library
ii  libcap2:arm64                                 1:2.44-1                              arm64        POSIX 1003.1e capabilities (library)
ii  libcap2-bin                                   1:2.44-1                              arm64        POSIX 1003.1e capabilities (utilities)
ii  libcbor0:arm64                                0.5.0+dfsg-2                          arm64        library for parsing and generating CBOR (RFC 7049)
ii  libcc1-0:arm64                                11.2.0-8                              arm64        GCC cc1 plugin for GDB
ii  libcdparanoia0:arm64                          3.10.2+debian-14                      arm64        audio extraction tool for sampling CDs (library)
ii  libchromaprint1:arm64                         1.5.0-2                               arm64        audio fingerprint library
ii  libcodec2-0.9:arm64                           0.9.2-4                               arm64        Codec2 runtime library
ii  libcolorcorrect5                              4:5.21.5-3+b1                         arm64        Plasma Workspace for KF5 library
ii  libcolord2:arm64                              1.4.5-3                               arm64        system service to manage device colour profiles -- runtime
ii  libcom-err2:arm64                             1.46.4-1                              arm64        common error description library
ii  libcpufreq0                                   008-2                                 arm64        shared library to deal with the cpufreq Linux kernel feature
ii  libcrypt-dev:arm64                            1:4.4.25-2                            arm64        libcrypt development files
ii  libcrypt1:arm64                               1:4.4.25-2                            arm64        libcrypt shared library
ii  libcryptsetup12:arm64                         2:2.4.0-1                             arm64        disk encryption support - shared library
ii  libctf-nobfd0:arm64                           2.37-7                                arm64        Compact C Type Format library (runtime, no BFD dependency)
ii  libctf0:arm64                                 2.37-7                                arm64        Compact C Type Format library (runtime, BFD dependency)
ii  libcups2:arm64                                2.3.3op2-7                            arm64        Common UNIX Printing System(tm) - Core library
ii  libcurl3-gnutls:arm64                         7.74.0-1.3+b1                         arm64        easy-to-use client-side URL transfer library (GnuTLS flavour)
ii  libcurl4:arm64                                7.74.0-1.3+b1                         arm64        easy-to-use client-side URL transfer library (OpenSSL flavour)
ii  libdatrie1:arm64                              0.2.13-1                              arm64        Double-array trie library
ii  libdav1d5:arm64                               0.9.2-1+b1                            arm64        fast and small AV1 video stream decoder (shared library)
ii  libdb5.3:arm64                                5.3.28+dfsg1-0.8                      arm64        Berkeley v5.3 Database Libraries [runtime]
ii  libdbus-1-3:arm64                             1.12.20-2                             arm64        simple interprocess messaging system (library)
ii  libdbusmenu-glib4:arm64                       18.10.20180917~bzr492+repack1-2+b1    arm64        library for passing menus over DBus
ii  libdbusmenu-gtk3-4:arm64                      18.10.20180917~bzr492+repack1-2+b1    arm64        library for passing menus over DBus - GTK-3+ version
ii  libdbusmenu-qt5-2:arm64                       0.9.3+16.04.20160218-2+b1             arm64        Qt implementation of the DBusMenu protocol
ii  libdc1394-25:arm64                            2.2.6-4                               arm64        high level programming interface for IEEE 1394 digital cameras
ii  libdca0:arm64                                 0.0.7-2                               arm64        decoding library for DTS Coherent Acoustics streams
ii  libdconf1:arm64                               0.40.0-2                              arm64        simple configuration storage system - runtime library
ii  libde265-0:arm64                              1.0.8-1                               arm64        Open H.265 video codec implementation
ii  libdebconfclient0:arm64                       0.260                                 arm64        Debian Configuration Management System (C-implementation library)
ii  libdebuginfod-common                          0.185-2                               all          configuration to enable the Debian debug info server
ii  libdebuginfod1:arm64                          0.185-2                               arm64        library to interact with debuginfod (development files)
ii  libdeflate0:arm64                             1.7-2                                 arm64        fast, whole-buffer DEFLATE-based compression and decompression
ii  libdevmapper1.02.1:arm64                      2:1.02.175-2.1                        arm64        Linux Kernel Device Mapper userspace library
ii  libdmtx0b:arm64                               0.7.5-3+b1                            arm64        Data Matrix barcodes (runtime library)
ii  libdns-export1110                             1:9.11.19+dfsg-2.1                    arm64        Exported DNS Shared Library
ii  libdouble-conversion3:arm64                   3.1.5-6.1                             arm64        routines to convert IEEE floats to and from strings
ii  libdpkg-perl                                  1.20.9                                all          Dpkg perl modules
ii  libdrm-amdgpu1:arm64                          2.4.107-8                             arm64        Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii  libdrm-common                                 2.4.107-8                             all          Userspace interface to kernel DRM services -- common files
ii  libdrm-nouveau2:arm64                         2.4.107-8                             arm64        Userspace interface to nouveau-specific kernel DRM services -- runtime
ii  libdrm-radeon1:arm64                          2.4.107-8                             arm64        Userspace interface to radeon-specific kernel DRM services -- runtime
ii  libdrm2:arm64                                 2.4.107-8                             arm64        Userspace interface to kernel DRM services -- runtime
ii  libdv4:arm64                                  1.0.0-14                              arm64        software library for DV format digital video (runtime lib)
ii  libdvdnav4:arm64                              6.1.1-1                               arm64        DVD navigation library
ii  libdvdread8:arm64                             6.1.2-1                               arm64        library for reading DVDs
ii  libdw1:arm64                                  0.185-2                               arm64        library that provides access to the DWARF debug information
ii  libedit2:arm64                                3.1-20210910-1                        arm64        BSD editline and history libraries
ii  libeditorconfig0:arm64                        0.12.1-1.1                            arm64        coding style indenter across editors - library
ii  libegl-mesa0:arm64                            21.2.3-1                              arm64        free implementation of the EGL API -- Mesa vendor library
ii  libegl1:arm64                                 1.3.4-2+b1                            arm64        Vendor neutral GL dispatch library -- EGL support
ii  libelf1:arm64                                 0.185-2                               arm64        library to read and write ELF files
ii  libencode-locale-perl                         1.05-1.1                              all          utility to determine the locale encoding
ii  libepoxy0:arm64                               1.5.9-1                               arm64        OpenGL function pointer management library
ii  liberror-perl                                 0.17029-1                             all          Perl module for error/exception handling in an OO-ish way
ii  libestr0:arm64                                0.1.10-2.1+b1                         arm64        Helper functions for handling strings (lib)
ii  libevdev2:arm64                               1.11.0+dfsg-1                         arm64        wrapper library for evdev devices
ii  libevent-2.1-7:arm64                          2.1.12-stable-1                       arm64        Asynchronous event notification library
ii  libexif12:arm64                               0.6.23-1                              arm64        library to parse EXIF files
ii  libexpat1:arm64                               2.4.1-2+b1                            arm64        XML parsing C library - runtime library
ii  libext2fs2:arm64                              1.46.4-1                              arm64        ext2/ext3/ext4 file system libraries
ii  libfaad2:arm64                                2.10.0-1                              arm64        freeware Advanced Audio Decoder - runtime files
ii  libfam0:arm64                                 2.7.0-17.3                            arm64        Client library to control the FAM daemon
ii  libfastjson4:arm64                            0.99.9-1                              arm64        fast json library for C
ii  libfdisk1:arm64                               2.37.2-3                              arm64        fdisk partitioning library
ii  libffi8:arm64                                 3.4.2-2                               arm64        Foreign Function Interface library runtime
ii  libfftw3-double3:arm64                        3.3.8-2                               arm64        Library for computing Fast Fourier Transforms - Double precision
ii  libfftw3-single3:arm64                        3.3.8-2                               arm64        Library for computing Fast Fourier Transforms - Single precision
ii  libfido2-1:arm64                              1.8.0-1                               arm64        library for generating and verifying FIDO 2.0 objects
ii  libfile-basedir-perl                          0.09-1                                all          Perl module to use the freedesktop basedir specification
ii  libfile-desktopentry-perl                     0.22-2                                all          Perl module to handle freedesktop .desktop files
ii  libfile-mimeinfo-perl                         0.30-1                                all          Perl module to determine file types
ii  libflac8:arm64                                1.3.3-2                               arm64        Free Lossless Audio Codec - runtime C library
ii  libflite1:arm64                               2.2-2                                 arm64        Small run-time speech synthesis engine - shared libraries
ii  libfluidsynth2:arm64                          2.1.7-1.1                             arm64        Real-time MIDI software synthesizer (runtime library)
ii  libfm-extra4:arm64                            1.3.2-1                               arm64        file management support (extra library)
ii  libfm-qt8:arm64                               0.16.0-3                              arm64        file management support for pcmanfm-qt
ii  libfontconfig1:arm64                          2.13.1-4.2                            arm64        generic font configuration library - runtime
ii  libfontenc1:arm64                             1:1.1.4-1                             arm64        X11 font encoding library
ii  libfreetype6:arm64                            2.10.4+dfsg-1                         arm64        FreeType 2 font engine, shared library files
ii  libfribidi0:arm64                             1.0.8-2                               arm64        Free Implementation of the Unicode BiDi algorithm
ii  libgbm1:arm64                                 21.2.3-1                              arm64        generic buffer management API -- runtime
ii  libgcc-10-dev:arm64                           10.3.0-11                             arm64        GCC support library (development files)
ii  libgcc-s1:arm64                               11.2.0-8                              arm64        GCC support library
ii  libgck-1-0:arm64                              3.40.0-3+b1                           arm64        Glib wrapper library for PKCS#11 - runtime
ii  libgcr-base-3-1:arm64                         3.40.0-3+b1                           arm64        Library for Crypto related tasks
ii  libgcr-ui-3-1:arm64                           3.40.0-3+b1                           arm64        Library for Crypto UI related tasks
ii  libgcrypt20:arm64                             1.9.4-3+b1                            arm64        LGPL Crypto library - runtime library
ii  libgdbm-compat4:arm64                         1.21-1                                arm64        GNU dbm database routines (legacy support runtime version) 
ii  libgdbm6:arm64                                1.21-1                                arm64        GNU dbm database routines (runtime version) 
ii  libgdk-pixbuf-2.0-0:arm64                     2.42.6+dfsg-2                         arm64        GDK Pixbuf library
ii  libgdk-pixbuf2.0-common                       2.42.6+dfsg-2                         all          GDK Pixbuf library - data files
ii  libgfortran5:arm64                            11.2.0-8                              arm64        Runtime library for GNU Fortran applications
ii  libgif7:arm64                                 5.1.9-2                               arm64        library for GIF images (library)
ii  libgirepository-1.0-1:arm64                   1.70.0-2                              arm64        Library for handling GObject introspection data (runtime library)
ii  libgit2-1.1:arm64                             1.1.0+dfsg.1-4.1                      arm64        low-level Git library
ii  libgl1:arm64                                  1.3.4-2+b1                            arm64        Vendor neutral GL dispatch library -- legacy GL support
ii  libgl1-mesa-dri:arm64                         21.2.3-1                              arm64        free implementation of the OpenGL API -- DRI modules
ii  libglapi-mesa:arm64                           21.2.3-1                              arm64        free implementation of the GL API -- shared library
ii  libgles2:arm64                                1.3.4-2+b1                            arm64        Vendor neutral GL dispatch library -- GLESv2 support
ii  libglib2.0-0:arm64                            2.70.0-1+b1                           arm64        GLib library of C routines
ii  libglib2.0-bin                                2.70.0-1+b1                           arm64        Programs for the GLib library
ii  libglib2.0-data                               2.70.0-1                              all          Common files for GLib library
ii  libglvnd0:arm64                               1.3.4-2+b1                            arm64        Vendor neutral GL dispatch library
ii  libglx-mesa0:arm64                            21.2.3-1                              arm64        free implementation of the OpenGL API -- GLX vendor library
ii  libglx0:arm64                                 1.3.4-2+b1                            arm64        Vendor neutral GL dispatch library -- GLX support
ii  libgme0:arm64                                 0.6.3-2                               arm64        Playback library for video game music files - shared library
ii  libgmp10:arm64                                2:6.2.1+dfsg-2                        arm64        Multiprecision arithmetic library
ii  libgnutls30:arm64                             3.7.2-2                               arm64        GNU TLS library - main runtime library
ii  libgomp1:arm64                                11.2.0-8                              arm64        GCC OpenMP (GOMP) support library
ii  libgpg-error0:arm64                           1.42-3                                arm64        GnuPG development runtime library
ii  libgpgme11:arm64                              1.16.0-1.1                            arm64        GPGME - GnuPG Made Easy (library)
ii  libgpgmepp6:arm64                             1.16.0-1.1                            arm64        C++ wrapper library for GPGME
ii  libgpm2:arm64                                 1.20.7-9                              arm64        General Purpose Mouse - shared library
ii  libgps28:arm64                                3.22-4+linaro1                        arm64        Global Positioning System - library
ii  libgraphene-1.0-0:arm64                       1.10.6+dfsg1-2                        arm64        library of graphic data types
ii  libgraphite2-3:arm64                          1.3.14-1                              arm64        Font rendering engine for Complex Scripts -- library
ii  libgsm1:arm64                                 1.0.18-2                              arm64        Shared libraries for GSM speech compressor
ii  libgssapi-krb5-2:arm64                        1.18.3-7                              arm64        MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii  libgssdp-1.2-0:arm64                          1.4.0.1-2                             arm64        GObject-based library for SSDP
ii  libgstreamer-gl1.0-0:arm64                    1.18.5-1                              arm64        GStreamer GL libraries
ii  libgstreamer-plugins-bad1.0-0:arm64           1.18.5-1+b1                           arm64        GStreamer libraries from the "bad" set
ii  libgstreamer-plugins-base1.0-0:arm64          1.18.5-1                              arm64        GStreamer libraries from the "base" set
ii  libgstreamer1.0-0:arm64                       1.18.5-1                              arm64        Core GStreamer libraries and elements
ii  libgtk-3-0:arm64                              3.24.30-3                             arm64        GTK graphical user interface library
ii  libgtk-3-common                               3.24.30-3                             all          common files for the GTK graphical user interface library
ii  libgudev-1.0-0:arm64                          237-2                                 arm64        GObject-based wrapper library for libudev
ii  libgupnp-1.2-1:arm64                          1.4.0-2                               arm64        GObject-based library for UPnP
ii  libgupnp-igd-1.0-4:arm64                      1.2.0-1+b1                            arm64        library to handle UPnP IGD port mapping
ii  libharfbuzz0b:arm64                           2.7.4-1                               arm64        OpenType text shaping engine (shared library)
ii  libhogweed6:arm64                             3.7.3-1                               arm64        low level cryptographic library (public-key cryptos)
ii  libhttp-parser2.9:arm64                       2.9.4-4                               arm64        parser for HTTP messages written in C
ii  libi2c0:arm64                                 4.2-2                                 arm64        userspace I2C programming library
ii  libical3:arm64                                3.0.10-1                              arm64        iCalendar library implementation in C (runtime)
ii  libice6:arm64                                 2:1.0.10-1                            arm64        X11 Inter-Client Exchange library
ii  libicu67:arm64                                67.1-7                                arm64        International Components for Unicode
ii  libidn2-0:arm64                               2.3.2-2                               arm64        Internationalized domain names (IDNA2008/TR46) library
ii  libiec61883-0:arm64                           1.2.0-4                               arm64        partial implementation of IEC 61883 (shared lib)
ii  libilmbase25:arm64                            2.5.7-2                               arm64        several utility libraries from ILM used by OpenEXR
ii  libimagequant0:arm64                          2.12.2-1.1                            arm64        palette quantization library
ii  libimobiledevice6:arm64                       1.3.0-6                               arm64        Library for communicating with iPhone and other Apple devices
ii  libinput-bin                                  1.19.1-1                              arm64        input device management and event handling library - udev quirks
ii  libinput10:arm64                              1.19.1-1                              arm64        input device management and event handling library - shared library
ii  libinstpatch-1.0-2:arm64                      1.1.6-1                               arm64        MIDI instrument editing library
ii  libip4tc2:arm64                               1.8.7-1                               arm64        netfilter libip4tc library
ii  libip6tc2:arm64                               1.8.7-1                               arm64        netfilter libip6tc library
ii  libipc-system-simple-perl                     1.30-1                                all          Perl module to run commands simply, with detailed diagnostics
ii  libisc-export1105:arm64                       1:9.11.19+dfsg-2.1                    arm64        Exported ISC Shared Library
ii  libisl23:arm64                                0.23-1                                arm64        manipulating sets and relations of integer points bounded by linear constraints
ii  libitm1:arm64                                 11.2.0-8                              arm64        GNU Transactional Memory Library
ii  libiw30:arm64                                 30~pre9-13.1                          arm64        Wireless tools - library
ii  libjack-jackd2-0:arm64                        1.9.19~dfsg-2                         arm64        JACK Audio Connection Kit (libraries)
ii  libjansson4:arm64                             2.13.1-1.1                            arm64        C library for encoding, decoding and manipulating JSON data
ii  libjbig0:arm64                                2.1-3.1+b2                            arm64        JBIGkit libraries
ii  libjim0.79:arm64                              0.79+dfsg0-3                          arm64        small-footprint implementation of Tcl - shared library
ii  libjpeg62-turbo:arm64                         1:2.0.6-4                             arm64        libjpeg-turbo JPEG runtime library
ii  libjs-jquery                                  3.5.1+dfsg+~3.5.5-7                   all          JavaScript library for dynamic web applications
ii  libjs-jquery-ui                               1.12.1+dfsg-8                         all          JavaScript UI library for dynamic web applications
ii  libjs-underscore                              1.9.1~dfsg-4                          all          JavaScript's functional programming helper library
ii  libjson-c4:arm64                              0.13.1+dfsg-9                         arm64        JSON manipulation library - shared library
ii  libjson-c5:arm64                              0.15-2                                arm64        JSON manipulation library - shared library
ii  libjsoncpp24:arm64                            1.9.4-5                               arm64        library for reading and writing JSON for C++
ii  libk5crypto3:arm64                            1.18.3-7                              arm64        MIT Kerberos runtime libraries - Crypto Library
ii  libkate1:arm64                                0.4.1-11                              arm64        Codec for karaoke and text encapsulation
ii  libkdecorations2-5v5:arm64                    4:5.21.5-2                            arm64        library to create window decorations
ii  libkdecorations2private8:arm64                4:5.21.5-2                            arm64        library to create window decorations - private library
ii  libkeyutils1:arm64                            1.6.1-2                               arm64        Linux Key Management Utilities (library)
ii  libkf5activities5:arm64                       5.86.0-1                              arm64        Library to organize the user work in separate activities.
ii  libkf5activitiesstats1:arm64                  5.86.0-1                              arm64        usage data collected by the activities system
ii  libkf5archive5:arm64                          5.86.0-1                              arm64        Qt 5 addon providing access to numerous types of archives
ii  libkf5attica5:arm64                           5.86.0-2                              arm64        Qt library that implements the Open Collaboration Services API
ii  libkf5auth-data                               5.86.0-1                              all          Abstraction to system policy and authentication features
ii  libkf5auth5:arm64                             5.86.0-1                              arm64        Abstraction to system policy and authentication features
ii  libkf5authcore5:arm64                         5.86.0-1                              arm64        Abstraction to system policy and authentication features
ii  libkf5baloo5                                  5.86.0-1                              arm64        framework for searching and managing metadata core lib.
ii  libkf5balooengine5                            5.86.0-1                              arm64        framework for searching and managing metadata plugins
ii  libkf5bluezqt-data                            5.86.0-1                              all          data files for bluez-qt
ii  libkf5bluezqt6:arm64                          5.86.0-1                              arm64        Qt wrapper for bluez
ii  libkf5bookmarks-data                          5.86.0-1                              all          Qt library with support for bookmarks and the XBEL format.
ii  libkf5bookmarks5:arm64                        5.86.0-1                              arm64        Qt library with support for bookmarks and the XBEL format.
ii  libkf5calendarevents5:arm64                   5.86.0-1                              arm64        provides integration of QML and KDE frameworks -- calendarevents
ii  libkf5codecs-data                             5.86.0-1                              all          collection of methods to manipulate strings
ii  libkf5codecs5:arm64                           5.86.0-1                              arm64        collection of methods to manipulate strings
ii  libkf5completion-data                         5.86.0-1                              all          Widgets with advanced auto-completion features.
ii  libkf5completion5:arm64                       5.86.0-1                              arm64        Widgets with advanced auto-completion features.
ii  libkf5config-bin                              5.86.0-1                              arm64        configuration settings framework for Qt
ii  libkf5config-data                             5.86.0-1                              all          configuration settings framework for Qt
ii  libkf5configcore5:arm64                       5.86.0-1                              arm64        configuration settings framework for Qt
ii  libkf5configgui5:arm64                        5.86.0-1                              arm64        configuration settings framework for Qt
ii  libkf5configwidgets-data                      5.86.0-1                              all          Extra widgets for easier configuration support.
ii  libkf5configwidgets5:arm64                    5.86.0-1                              arm64        Extra widgets for easier configuration support.
ii  libkf5coreaddons-data                         5.86.0-1                              all          KDE Frameworks 5 addons to QtCore - data files
ii  libkf5coreaddons5:arm64                       5.86.0-1                              arm64        KDE Frameworks 5 addons to QtCore
ii  libkf5crash5:arm64                            5.86.0-1                              arm64        Support for application crash analysis and bug report from apps
ii  libkf5dbusaddons-data                         5.86.0-1                              all          class library for qtdbus
ii  libkf5dbusaddons5:arm64                       5.86.0-1                              arm64        class library for qtdbus
ii  libkf5declarative-data                        5.86.0-1                              all          provides integration of QML and KDE frameworks
ii  libkf5declarative5:arm64                      5.86.0-1                              arm64        provides integration of QML and KDE frameworks
ii  libkf5doctools5:arm64                         5.86.0-1                              arm64        Tools to generate documentation in various formats from DocBook
ii  libkf5filemetadata-data                       5.86.0-1                              all          library for extracting file metadata
ii  libkf5filemetadata3:arm64                     5.86.0-1                              arm64        library for extracting file metadata
ii  libkf5globalaccel-bin                         5.86.0-1                              arm64        Configurable global shortcut support.
ii  libkf5globalaccel-data                        5.86.0-1                              all          Configurable global shortcut support.
ii  libkf5globalaccel5:arm64                      5.86.0-1                              arm64        Configurable global shortcut support.
ii  libkf5globalaccelprivate5:arm64               5.86.0-1                              arm64        Configurable global shortcut support - private runtime library
ii  libkf5guiaddons5:arm64                        5.86.0-1                              arm64        additional addons for QtGui
ii  libkf5holidays-data                           1:5.86.0-1                            all          holidays calculation library
ii  libkf5holidays5:arm64                         1:5.86.0-1                            arm64        holidays calculation library
ii  libkf5i18n-data                               5.86.0-1                              all          Advanced internationalization framework.
ii  libkf5i18n5:arm64                             5.86.0-1                              arm64        Advanced internationalization framework.
ii  libkf5iconthemes-data                         5.86.0-1                              all          Support for icon themes.
ii  libkf5iconthemes5:arm64                       5.86.0-1                              arm64        Support for icon themes.
ii  libkf5idletime5:arm64                         5.86.0-1                              arm64        library to provide information about idle time
ii  libkf5itemmodels5:arm64                       5.86.0-1                              arm64        additional item/view models for Qt Itemview
ii  libkf5itemviews-data                          5.86.0-1                              all          Qt library with additional widgets for ItemModels
ii  libkf5itemviews5:arm64                        5.86.0-1                              arm64        Qt library with additional widgets for ItemModels
ii  libkf5jobwidgets-data                         5.86.0-1                              all          Widgets for tracking KJob instances
ii  libkf5jobwidgets5:arm64                       5.86.0-1                              arm64        Widgets for tracking KJob instances
ii  libkf5kcmutils-data                           5.86.0-1                              all          Extra APIs to write KConfig modules.
ii  libkf5kcmutils5:arm64                         5.86.0-1                              arm64        Extra APIs to write KConfig modules.
ii  libkf5kdelibs4support-data                    5.86.0-1                              all          Porting aid from KDELibs4.
ii  libkf5kdelibs4support5:arm64                  5.86.0-1                              arm64        Porting aid from KDELibs4.
ii  libkf5kiocore5:arm64                          5.86.0-1                              arm64        resource and network access abstraction (KIO core library)
ii  libkf5kiofilewidgets5:arm64                   5.86.0-1                              arm64        resource and network access abstraction (KIO file widgets library)
ii  libkf5kiogui5:arm64                           5.86.0-1                              arm64        resource and network access abstraction (KIO gui library)
ii  libkf5kiontlm5:arm64                          5.86.0-1                              arm64        resource and network access abstraction (KIO NTLM library)
ii  libkf5kiowidgets5:arm64                       5.86.0-1                              arm64        resource and network access abstraction (KIO widgets library)
ii  libkf5kirigami2-5                             5.86.0-1                              arm64        set of QtQuick components targeted for mobile use
ii  libkf5modemmanagerqt6:arm64                   5.86.0-1                              arm64        Qt wrapper library for ModemManager
ii  libkf5networkmanagerqt6                       5.86.0-1                              arm64        Qt wrapper for NetworkManager - library
ii  libkf5newstuff-data                           5.86.0-3                              all          Support for downloading application assets from the network.
ii  libkf5newstuff5:arm64                         5.86.0-3                              arm64        Support for downloading application assets from the network.
ii  libkf5newstuffcore5:arm64                     5.86.0-3                              arm64        Support for downloading application assets from the network.
ii  libkf5notifications-data                      5.86.0-1                              all          Framework for desktop notifications
ii  libkf5notifications5:arm64                    5.86.0-1                              arm64        Framework for desktop notifications
ii  libkf5notifyconfig-data                       5.86.0-1                              all          Configuration system for KNotify.
ii  libkf5notifyconfig5:arm64                     5.86.0-1                              arm64        Configuration system for KNotify.
ii  libkf5package-data                            5.86.0-1                              all          non-binary asset management framework
ii  libkf5package5:arm64                          5.86.0-1                              arm64        non-binary asset management framework
ii  libkf5parts-data                              5.86.0-1                              all          Document centric plugin system.
ii  libkf5parts5:arm64                            5.86.0-1                              arm64        Document centric plugin system.
ii  libkf5people-data                             5.86.0-1                              all          data files for kpeople
ii  libkf5people5:arm64                           5.86.0-1                              arm64        framework providing unified access to contacts aggregated by person
ii  libkf5peoplebackend5:arm64                    5.86.0-1                              arm64        framework providing unified access to contacts aggregated by person
ii  libkf5peoplewidgets5:arm64                    5.86.0-1                              arm64        framework providing unified access to contacts aggregated by person
ii  libkf5plasma5:arm64                           5.86.0-1                              arm64        Plasma Runtime components
ii  libkf5plasmaquick5:arm64                      5.86.0-1                              arm64        Plasma Runtime components
ii  libkf5prison5:arm64                           5.86.0-1                              arm64        barcode API for Qt
ii  libkf5quickaddons5:arm64                      5.86.0-1                              arm64        provides integration of QML and KDE frameworks -- quickaddons
ii  libkf5runner5:arm64                           5.86.0-1                              arm64        Used to write plugins loaded at runtime called "Runners".
ii  libkf5screen-bin                              4:5.21.5-2                            arm64        library for screen management - helpers
ii  libkf5screen7:arm64                           4:5.21.5-2                            arm64        library for screen management - shared library
ii  libkf5service-bin                             5.86.0-1                              arm64        Advanced plugin and service introspection
ii  libkf5service-data                            5.86.0-1                              all          Advanced plugin and service introspection
ii  libkf5service5:arm64                          5.86.0-1                              arm64        Advanced plugin and service introspection
ii  libkf5solid5:arm64                            5.86.0-1                              arm64        Qt library to query and control hardware
ii  libkf5solid5-data                             5.86.0-1                              all          Qt library to query and control hardware
ii  libkf5sonnet5-data                            5.86.0-1                              all          spell checking library for Qt, data files
ii  libkf5sonnetcore5:arm64                       5.86.0-1                              arm64        spell checking library for Qt, core lib
ii  libkf5sonnetui5:arm64                         5.86.0-1                              arm64        spell checking library for Qt, ui lib
ii  libkf5style5:arm64                            5.86.0-1                              arm64        KF5 cross-framework integration plugins - KStyle
ii  libkf5syntaxhighlighting-data                 5.86.0-1                              all          Syntax highlighting Engine - translations
ii  libkf5syntaxhighlighting5:arm64               5.86.0-1                              arm64        Syntax highlighting Engine
ii  libkf5sysguard-data                           4:5.21.5-3                            all          library for system monitoring - data files
ii  libkf5texteditor-bin                          5.86.0-1                              arm64        provide advanced plain text editing services (binaries)
ii  libkf5texteditor5:arm64                       5.86.0-1                              arm64        provide advanced plain text editing services
ii  libkf5textwidgets-data                        5.86.0-1                              all          Advanced text editing widgets.
ii  libkf5textwidgets5:arm64                      5.86.0-1                              arm64        Advanced text editing widgets.
ii  libkf5threadweaver5:arm64                     5.86.0-1                              arm64        ThreadWeaver library to help multithreaded programming in Qt
ii  libkf5wallet-bin                              5.86.0-1                              arm64        Secure and unified container for user passwords.
ii  libkf5wallet-data                             5.86.0-1                              all          Secure and unified container for user passwords.
ii  libkf5wallet5:arm64                           5.86.0-1                              arm64        Secure and unified container for user passwords.
ii  libkf5waylandclient5:arm64                    4:5.86.0-1                            arm64        Qt library wrapper for Wayland libraries
ii  libkf5waylandserver5:arm64                    4:5.86.0-1                            arm64        Qt library wrapper for Wayland libraries
ii  libkf5widgetsaddons-data                      5.86.0-1                              all          add-on widgets and classes for applications that use the Qt Widgets module
ii  libkf5widgetsaddons5:arm64                    5.86.0-1                              arm64        add-on widgets and classes for applications that use the Qt Widgets module
ii  libkf5windowsystem-data                       5.86.0-1                              all          Convenience access to certain properties and features of the window manager
ii  libkf5windowsystem5:arm64                     5.86.0-1                              arm64        Convenience access to certain properties and features of the window manager
ii  libkf5xmlgui-data                             5.86.0-1                              all          User configurable main windows.
ii  libkf5xmlgui5:arm64                           5.86.0-1                              arm64        User configurable main windows.
ii  libkfontinst5                                 4:5.21.5-3+b1                         arm64        Tools and widgets for the desktop library
ii  libkfontinstui5                               4:5.21.5-3+b1                         arm64        Tools and widgets for the desktop library
ii  libklibc:arm64                                2.0.8-6.1                             arm64        minimal libc subset for use with initramfs
ii  libkmod2:arm64                                29-1                                  arm64        libkmod shared library
ii  libkrb5-3:arm64                               1.18.3-7                              arm64        MIT Kerberos runtime libraries
ii  libkrb5support0:arm64                         1.18.3-7                              arm64        MIT Kerberos runtime libraries - Support library
ii  libksba8:arm64                                1.6.0-2                               arm64        X.509 and CMS support library
ii  libkscreenlocker5:arm64                       5.21.5-2                              arm64        Secure lock screen architecture
ii  libksgrd9                                     4:5.21.5-3                            arm64        library for system monitoring - ksgrd shared library
ii  libksysguardformatter1                        4:5.21.5-3                            arm64        library for system monitoring - ksysguardformatter shared library
ii  libksysguardsensorfaces1                      4:5.21.5-3                            arm64        library for system monitoring - ksysguardsensorfaces shared library
ii  libksysguardsensors1                          4:5.21.5-3                            arm64        library for system monitoring - ksysguardsensors shared library
ii  libkuserfeedbackcore1:arm64                   1.0.0-3                               arm64        user feedback for applications - core library
ii  libkwalletbackend5-5:arm64                    5.86.0-1                              arm64        Secure and unified container for user passwords.
ii  libkwaylandserver5:arm64                      5.21.5-2                              arm64        Qt library wrapper for Wayland libraries
ii  libkwin4-effect-builtins1                     4:5.21.5-2                            arm64        KDE window manager effect builtins library
ii  libkwineffects13                              4:5.21.5-2                            arm64        KDE window manager effects library
ii  libkwinglutils13                              4:5.21.5-2                            arm64        KDE window manager gl utils library
ii  libkwinxrenderutils13                         4:5.21.5-2                            arm64        KDE window manager render utils library
ii  libkworkspace5-5                              4:5.21.5-3+b1                         arm64        Plasma Workspace for KF5 library
ii  liblapack3:arm64                              3.10.0-1                              arm64        Library of linear algebra routines 3 - shared version
ii  liblcms2-2:arm64                              2.12~rc1-2                            arm64        Little CMS 2 color management library
ii  libldap-2.4-2:arm64                           2.4.59+dfsg-1                         arm64        OpenLDAP libraries
ii  liblilv-0-0:arm64                             0.24.12-2                             arm64        library for simple use of LV2 plugins
ii  libllvm13:arm64                               1:13.0.0-2                            arm64        Modular compiler and toolchain technologies, runtime library
ii  liblmdb0:arm64                                0.9.24-1                              arm64        Lightning Memory-Mapped Database shared library
ii  liblocale-gettext-perl                        1.07-4+b1                             arm64        module using libc functions for internationalization in Perl
ii  liblognorm5:arm64                             2.0.5-1.1                             arm64        log normalizing library
ii  liblsan0:arm64                                11.2.0-8                              arm64        LeakSanitizer -- a memory leak detector (runtime)
ii  libltc11:arm64                                1.3.1-1                               arm64        linear timecode library
ii  libltdl7:arm64                                2.4.6-15                              arm64        System independent dlopen wrapper for GNU libtool
ii  liblxqt-globalkeys-ui0:arm64                  0.16.0-1                              arm64        daemon used to register global keyboard shortcuts (ui files)
ii  liblxqt-globalkeys0:arm64                     0.16.0-1                              arm64        daemon used to register global keyboard shortcuts (shared libs)
ii  liblxqt0                                      0.16.0-1                              arm64        Shared libraries for LXQt desktop environment (libs)
ii  liblz4-1:arm64                                1.9.3-2                               arm64        Fast LZ compression algorithm library - runtime
ii  liblzma5:arm64                                5.2.5-2                               arm64        XZ-format compression library
ii  libmad0:arm64                                 0.15.1b-10                            arm64        MPEG audio decoder library
ii  libmagic-mgc                                  1:5.39-3                              arm64        File type determination library using "magic" numbers (compiled magic file)
ii  libmagic1:arm64                               1:5.39-3                              arm64        Recognize the type of data in a file using "magic" numbers - library
ii  libmbedcrypto3:arm64                          2.16.9-0.1                            arm64        lightweight crypto and SSL/TLS library - crypto library
ii  libmbedtls12:arm64                            2.16.9-0.1                            arm64        lightweight crypto and SSL/TLS library - tls library
ii  libmbedx509-0:arm64                           2.16.9-0.1                            arm64        lightweight crypto and SSL/TLS library - x509 certificate library
ii  libmbim-glib4:arm64                           1.24.6-0.1                            arm64        Support library to use the MBIM protocol
ii  libmbim-proxy                                 1.24.6-0.1                            arm64        Proxy to communicate with MBIM ports
ii  libmd0:arm64                                  1.0.4-1                               arm64        message digest functions from BSD systems - shared library
ii  libmd4c0:arm64                                0.4.8-1                               arm64        Markdown for C
ii  libmenu-cache-bin                             1.1.0-1.1                             arm64        LXDE implementation of the freedesktop Menu's cache (libexec)
ii  libmenu-cache3:arm64                          1.1.0-1.1                             arm64        LXDE implementation of the freedesktop Menu's cache
ii  libminizip1:arm64                             1.1-8+b1                              arm64        compression library - minizip library
ii  libmjpegutils-2.1-0:arm64                     1:2.1.0+debian-6                      arm64        MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii  libmm-glib0:arm64                             1.14.12-0.2                           arm64        D-Bus service for managing modems - shared libraries
ii  libmms0:arm64                                 0.6.4-3                               arm64        MMS stream protocol library - shared library
ii  libmnl0:arm64                                 1.0.4-3                               arm64        minimalistic Netlink communication library
ii  libmodplug1:arm64                             1:0.8.9.0-3                           arm64        shared libraries for mod music based on ModPlug
ii  libmount1:arm64                               2.37.2-3                              arm64        device mounting library
ii  libmp3lame0:arm64                             3.100-3                               arm64        MP3 encoding library
ii  libmpc3:arm64                                 1.2.0-1                               arm64        multiple precision complex floating-point library
ii  libmpcdec6:arm64                              2:0.1~r495-2                          arm64        MusePack decoder - library
ii  libmpdec3:arm64                               2.5.1-2                               arm64        library for decimal floating point arithmetic (runtime library)
ii  libmpeg2encpp-2.1-0:arm64                     1:2.1.0+debian-6                      arm64        MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii  libmpfr6:arm64                                4.1.0-3                               arm64        multiple precision floating-point computation
ii  libmpg123-0:arm64                             1.29.0-1+b1                           arm64        MPEG layer 1/2/3 audio decoder (shared library)
ii  libmplex2-2.1-0:arm64                         1:2.1.0+debian-6                      arm64        MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii  libmraa1                                      1.9.0-1                               arm64        userspace I/O library (runtime)
ii  libmtdev1:arm64                               1.1.6-1                               arm64        Multitouch Protocol Translation Library - shared library
ii  libmuparser2v5:arm64                          2.2.6.1+dfsg-1                        arm64        fast mathematical expressions parser library (runtime)
ii  libmysofa1:arm64                              1.2~dfsg0-1                           arm64        library to read HRTFs stored in the AES69-2015 SOFA format
ii  libncurses6:arm64                             6.2+20210905-1                        arm64        shared libraries for terminal handling
ii  libncursesw6:arm64                            6.2+20210905-1                        arm64        shared libraries for terminal handling (wide character support)
ii  libndp0:arm64                                 1.6-1+b1                              arm64        Library for Neighbor Discovery Protocol
ii  libnetfilter-conntrack3:arm64                 1.0.8-3                               arm64        Netfilter netlink-conntrack library
ii  libnettle8:arm64                              3.7.3-1                               arm64        low level cryptographic library (symmetric and one-way cryptos)
ii  libnewt0.52:arm64                             0.52.21-5                             arm64        Not Erik's Windowing Toolkit - text mode windowing with slang
ii  libnfnetlink0:arm64                           1.0.1-3+b1                            arm64        Netfilter netlink library
ii  libnftables1:arm64                            1.0.0-1                               arm64        Netfilter nftables high level userspace API library
ii  libnftnl11:arm64                              1.2.0-1                               arm64        Netfilter nftables userspace API library
ii  libnghttp2-14:arm64                           1.43.0-1                              arm64        library implementing HTTP/2 protocol (shared library)
ii  libnice10:arm64                               0.1.18-1                              arm64        ICE library (shared library)
ii  libnl-3-200:arm64                             3.4.0-1+b1                            arm64        library for dealing with netlink sockets
ii  libnl-genl-3-200:arm64                        3.4.0-1+b1                            arm64        library for dealing with netlink sockets - generic netlink
ii  libnl-route-3-200:arm64                       3.4.0-1+b1                            arm64        library for dealing with netlink sockets - route interface
ii  libnm0:arm64                                  1.32.12-1                             arm64        GObject-based client library for NetworkManager
ii  libnma-common                                 1.8.32-1                              all          NetworkManager GUI library - translations
ii  libnma0:arm64                                 1.8.32-1                              arm64        NetworkManager GUI library
ii  libnorm1:arm64                                1.5.9+dfsg-2                          arm64        NACK-Oriented Reliable Multicast (NORM) library
ii  libnotificationmanager1                       4:5.21.5-3+b1                         arm64        Plasma Workspace for KF5 library
ii  libnotify4:arm64                              0.7.9-3                               arm64        sends desktop notifications to a notification daemon
ii  libnpth0:arm64                                1.6-3                                 arm64        replacement for GNU Pth using system threads
ii  libnsl-dev:arm64                              1.3.0-2                               arm64        libnsl development files
ii  libnsl2:arm64                                 1.3.0-2                               arm64        Public client interface for NIS(YP) and NIS+
ii  libnspr4:arm64                                2:4.32-1                              arm64        NetScape Portable Runtime Library
ii  libnss3:arm64                                 2:3.70-1                              arm64        Network Security Service libraries
ii  libnuma1:arm64                                2.0.14-3                              arm64        Libraries for controlling NUMA policy
ii  libofa0:arm64                                 0.9.3-21                              arm64        library for acoustic fingerprinting
ii  libogg0:arm64                                 1.3.4-0.1                             arm64        Ogg bitstream library
ii  libopenal-data                                1:1.19.1-2                            all          Software implementation of the OpenAL audio API (data files)
ii  libopenal1:arm64                              1:1.19.1-2                            arm64        Software implementation of the OpenAL audio API (shared library)
ii  libopenconnect5:arm64                         8.10-2+b1                             arm64        open client for Cisco AnyConnect, Pulse, GlobalProtect VPN - shared library
ii  libopenexr25:arm64                            2.5.7-1                               arm64        runtime files for the OpenEXR image library
ii  libopengl0:arm64                              1.3.4-2+b1                            arm64        Vendor neutral GL dispatch library -- OpenGL support
ii  libopenjp2-7:arm64                            2.4.0-3                               arm64        JPEG 2000 image compression/decompression library
ii  libopenmpt0:arm64                             0.4.22-1                              arm64        module music library based on OpenMPT -- shared library
ii  libopenni2-0:arm64                            2.2.0.33+dfsg-15                      arm64        framework for sensor-based 'Natural Interaction'
ii  libopus0:arm64                                1.3.1-0.1                             arm64        Opus codec runtime library
ii  liborc-0.4-0:arm64                            1:0.4.32-1                            arm64        Library of Optimized Inner Loops Runtime Compiler
ii  libp11-kit0:arm64                             0.24.0-3                              arm64        library for loading and coordinating access to PKCS#11 modules - runtime
ii  libpackagekitqt5-1:arm64                      1.0.2-1                               arm64        Library for accessing PackageKit using Qt5
ii  libpam-modules:arm64                          1.4.0-10                              arm64        Pluggable Authentication Modules for PAM
ii  libpam-modules-bin                            1.4.0-10                              arm64        Pluggable Authentication Modules for PAM - helper binaries
ii  libpam-runtime                                1.4.0-10                              all          Runtime support for the PAM library
ii  libpam-systemd:arm64                          247.9-4                               arm64        system and service manager - PAM module
ii  libpam0g:arm64                                1.4.0-10                              arm64        Pluggable Authentication Modules library
ii  libpango-1.0-0:arm64                          1.48.10+ds1-1                         arm64        Layout and rendering of internationalized text
ii  libpangocairo-1.0-0:arm64                     1.48.10+ds1-1                         arm64        Layout and rendering of internationalized text
ii  libpangoft2-1.0-0:arm64                       1.48.10+ds1-1                         arm64        Layout and rendering of internationalized text
ii  libpangoxft-1.0-0:arm64                       1.48.10+ds1-1                         arm64        Layout and rendering of internationalized text
ii  libparted-fs-resize0:arm64                    3.4-1                                 arm64        disk partition manipulator - shared FS resizing library
ii  libparted2:arm64                              3.4-1                                 arm64        disk partition manipulator - shared library
ii  libpcap0.8:arm64                              1.10.1-4                              arm64        system interface for user-level packet capture
ii  libpci3:arm64                                 1:3.7.0-6                             arm64        PCI utilities (shared library)
ii  libpciaccess0:arm64                           0.16-1                                arm64        Generic PCI access library for X
ii  libpcre2-16-0:arm64                           10.36-2                               arm64        New Perl Compatible Regular Expression Library - 16 bit runtime files
ii  libpcre2-8-0:arm64                            10.36-2                               arm64        New Perl Compatible Regular Expression Library- 8 bit runtime files
ii  libpcre3:arm64                                2:8.39-13                             arm64        Old Perl 5 Compatible Regular Expression Library - runtime files
ii  libpcsclite1:arm64                            1.9.4-1                               arm64        Middleware to access a smart card using PC/SC (library)
ii  libperl5.32:arm64                             5.32.1-6                              arm64        shared Perl library
ii  libpgm-5.3-0:arm64                            5.3.128~dfsg-2                        arm64        OpenPGM shared library
ii  libphonon4qt5-4:arm64                         4:4.11.1-4                            arm64        multimedia framework from KDE using Qt 5 - core library
ii  libphonon4qt5-data                            4:4.11.1-4                            all          multimedia framework from KDE using Qt 5 - core library data
ii  libpipewire-0.3-0:arm64                       0.3.38-2                              arm64        libraries for the PipeWire multimedia server
ii  libpixman-1-0:arm64                           0.40.0-1                              arm64        pixel-manipulation library for X and cairo
ii  libplasma-geolocation-interface5              4:5.21.5-3+b1                         arm64        Plasma Workspace for KF5 library
ii  libplist3:arm64                               2.2.0-6                               arm64        Library for handling Apple binary and XML property lists
ii  libpng16-16:arm64                             1.6.37-3                              arm64        PNG library - runtime (version 1.6)
ii  libpocketsphinx3:arm64                        0.8+5prealpha+1-13                    arm64        Speech recognition tool - front-end library
ii  libpolkit-agent-1-0:arm64                     0.105-31                              arm64        PolicyKit Authentication Agent API
ii  libpolkit-gobject-1-0:arm64                   0.105-31                              arm64        PolicyKit Authorization API
ii  libpolkit-qt5-1-1:arm64                       0.114.0-2                             arm64        PolicyKit-qt5-1 library
ii  libpopt0:arm64                                1.18-3                                arm64        lib for parsing cmdline parameters
ii  libpostproc55:arm64                           7:4.4-6+b2                            arm64        FFmpeg library for post processing - runtime files
ii  libprocesscore9                               4:5.21.5-3                            arm64        library for system monitoring - processcore shared library
ii  libprocessui9                                 4:5.21.5-3                            arm64        library for system monitoring - processui shared library
ii  libprocps8:arm64                              2:3.3.17-5                            arm64        library for accessing process information from /proc
ii  libproxy1v5:arm64                             0.4.17-1                              arm64        automatic proxy configuration management library (shared)
ii  libpsl5:arm64                                 0.21.0-1.2                            arm64        Library for Public Suffix List (shared libraries)
ii  libpulse-mainloop-glib0:arm64                 15.0+dfsg1-2                          arm64        PulseAudio client libraries (glib support)
ii  libpulse0:arm64                               15.0+dfsg1-2                          arm64        PulseAudio client libraries
ii  libpulsedsp:arm64                             15.0+dfsg1-2                          arm64        PulseAudio OSS pre-load library
ii  libpython2-stdlib:arm64                       2.7.18-3                              arm64        interactive high-level object-oriented language (Python2)
ii  libpython2.7:arm64                            2.7.18-9                              arm64        Shared Python runtime library (version 2.7)
ii  libpython2.7-minimal:arm64                    2.7.18-9                              arm64        Minimal subset of the Python language (version 2.7)
ii  libpython2.7-stdlib:arm64                     2.7.18-9                              arm64        Interactive high-level object-oriented language (standard library, version 2.7)
ii  libpython3-stdlib:arm64                       3.9.2-3                               arm64        interactive high-level object-oriented language (default python3 version)
ii  libpython3.9:arm64                            3.9.7-4                               arm64        Shared Python runtime library (version 3.9)
ii  libpython3.9-minimal:arm64                    3.9.7-4                               arm64        Minimal subset of the Python language (version 3.9)
ii  libpython3.9-stdlib:arm64                     3.9.7-4                               arm64        Interactive high-level object-oriented language (standard library, version 3.9)
ii  libqalculate-data                             3.20.1-2                              all          Powerful and easy to use desktop calculator - data
ii  libqalculate22:arm64                          3.20.1-2                              arm64        Powerful and easy to use desktop calculator - library
ii  libqca-qt5-2:arm64                            2.3.4-1                               arm64        libraries for the Qt Cryptographic Architecture
ii  libqmi-glib5:arm64                            1.26.10-0.1                           arm64        Support library to use the Qualcomm MSM Interface (QMI) protocol
ii  libqmi-proxy                                  1.26.10-0.1                           arm64        Proxy to communicate with QMI ports
ii  libqrencode4:arm64                            4.1.1-1                               arm64        QR Code encoding library
ii  libqrtr1                                      0.3+47g9dc7a88-1                      arm64        QRTR library
ii  libqt5core5a:arm64                            5.15.2+dfsg-12                        arm64        Qt 5 core module
ii  libqt5dbus5:arm64                             5.15.2+dfsg-12                        arm64        Qt 5 D-Bus module
ii  libqt5gui5:arm64                              5.15.2+dfsg-12                        arm64        Qt 5 GUI module
ii  libqt5multimedia5:arm64                       5.15.2-3                              arm64        Qt 5 Multimedia module
ii  libqt5multimediaquick5:arm64                  5.15.2-3                              arm64        Qt 5 Multimedia Quick module
ii  libqt5network5:arm64                          5.15.2+dfsg-12                        arm64        Qt 5 network module
ii  libqt5opengl5:arm64                           5.15.2+dfsg-12                        arm64        Qt 5 OpenGL module
ii  libqt5positioning5:arm64                      5.15.2+dfsg-2                         arm64        Qt Positioning module
ii  libqt5printsupport5:arm64                     5.15.2+dfsg-12                        arm64        Qt 5 print support module
ii  libqt5qml5:arm64                              5.15.2+dfsg-8                         arm64        Qt 5 QML module
ii  libqt5qmlmodels5:arm64                        5.15.2+dfsg-8                         arm64        Qt 5 QML Models library
ii  libqt5qmlworkerscript5:arm64                  5.15.2+dfsg-8                         arm64        Qt 5 QML Worker Script library
ii  libqt5quick5:arm64                            5.15.2+dfsg-8                         arm64        Qt 5 Quick library
ii  libqt5quickcontrols2-5:arm64                  5.15.2+dfsg-4                         arm64        Qt 5 Quick Controls 2 library
ii  libqt5quicktemplates2-5:arm64                 5.15.2+dfsg-4                         arm64        Qt 5 Quick Templates 2 library
ii  libqt5quickwidgets5:arm64                     5.15.2+dfsg-8                         arm64        Qt 5 Quick Widgets library
ii  libqt5script5:arm64                           5.15.2+dfsg-2                         arm64        Qt 5 script module
ii  libqt5sql5:arm64                              5.15.2+dfsg-12                        arm64        Qt 5 SQL module
ii  libqt5sql5-sqlite:arm64                       5.15.2+dfsg-12                        arm64        Qt 5 SQLite 3 database driver
ii  libqt5svg5:arm64                              5.15.2-3                              arm64        Qt 5 SVG module
ii  libqt5texttospeech5:arm64                     5.15.2-2                              arm64        Speech library for Qt - libraries
ii  libqt5waylandclient5:arm64                    5.15.2-4                              arm64        QtWayland client library
ii  libqt5webchannel5:arm64                       5.15.2-2                              arm64        Web communication library for Qt
ii  libqt5webengine-data                          5.15.6+dfsg-2                         all          Web content engine library for Qt - Data
ii  libqt5webenginecore5:arm64                    5.15.6+dfsg-2                         arm64        Web content engine library for Qt - Core
ii  libqt5webenginewidgets5:arm64                 5.15.6+dfsg-2                         arm64        Web content engine library for Qt - Widget
ii  libqt5widgets5:arm64                          5.15.2+dfsg-12                        arm64        Qt 5 widgets module
ii  libqt5x11extras5:arm64                        5.15.2-2                              arm64        Qt 5 X11 extras
ii  libqt5xdg3:arm64                              3.6.0-1                               arm64        Implementation of the XDG Specifications for Qt (shared lib)
ii  libqt5xdgiconloader3:arm64                    3.6.0-1                               arm64        Implementation of the XDG Iconloader for Qt (shared lib)
ii  libqt5xml5:arm64                              5.15.2+dfsg-12                        arm64        Qt 5 XML module
ii  libqtermwidget5-0:arm64                       0.16.1-1                              arm64        Terminal emulator widget for Qt 5 (shared libraries)
ii  librabbitmq4:arm64                            0.10.0-1                              arm64        AMQP client library written in C
ii  libraw1394-11:arm64                           2.1.2-2                               arm64        library for direct access to IEEE 1394 bus (aka FireWire)
ii  libre2-9:arm64                                20210901+dfsg-1                       arm64        efficient, principled regular expression library
ii  libreadline8:arm64                            8.1-2                                 arm64        GNU readline and history libraries, run-time libraries
ii  librsvg2-2:arm64                              2.50.7+dfsg-2                         arm64        SAX-based renderer library for SVG files (runtime)
ii  librsvg2-common:arm64                         2.50.7+dfsg-2                         arm64        SAX-based renderer library for SVG files (extra runtime)
ii  librtmp1:arm64                                2.4+20151223.gitfa8646d.1-2+b2        arm64        toolkit for RTMP streams (shared library)
ii  librubberband2:arm64                          1.9.2-3                               arm64        audio time-stretching and pitch-shifting library
ii  libsamplerate0:arm64                          0.2.2-1                               arm64        Audio sample rate conversion library
ii  libsasl2-2:arm64                              2.1.27+dfsg-2.1                       arm64        Cyrus SASL - authentication abstraction library
ii  libsasl2-modules-db:arm64                     2.1.27+dfsg-2.1                       arm64        Cyrus SASL - pluggable authentication modules (DB)
ii  libsbc1:arm64                                 1.5-3                                 arm64        Sub Band CODEC library - runtime
ii  libsdl2-2.0-0:arm64                           2.0.16+dfsg1-4                        arm64        Simple DirectMedia Layer
ii  libseccomp2:arm64                             2.5.2-2                               arm64        high level interface to Linux seccomp filter
ii  libsecret-1-0:arm64                           0.20.4-2                              arm64        Secret store
ii  libsecret-common                              0.20.4-2                              all          Secret store (common files)
ii  libselinux1:arm64                             3.1-3                                 arm64        SELinux runtime shared libraries
ii  libsemanage-common                            3.1-1                                 all          Common files for SELinux policy management libraries
ii  libsemanage1:arm64                            3.1-1+b2                              arm64        SELinux policy management library
ii  libsensors-config                             1:3.6.0-7                             all          lm-sensors configuration files
ii  libsensors5:arm64                             1:3.6.0-7                             arm64        library to read temperature/voltage/fan sensors
ii  libsepol1:arm64                               3.1-1                                 arm64        SELinux library for manipulating binary security policies
ii  libserd-0-0:arm64                             0.30.10-2                             arm64        lightweight RDF syntax library
ii  libshine3:arm64                               3.1.1-2                               arm64        Fixed-point MP3 encoding library - runtime files
ii  libshout3:arm64                               2.4.5-1+b1                            arm64        MP3/Ogg Vorbis broadcast streaming library
ii  libslang2:arm64                               2.3.2-5                               arm64        S-Lang programming library - runtime version
ii  libsm6:arm64                                  2:1.2.3-1                             arm64        X11 Session Management library
ii  libsmartcols1:arm64                           2.37.2-3                              arm64        smart column output alignment library
ii  libsnappy1v5:arm64                            1.1.8-1                               arm64        fast compression/decompression library
ii  libsndfile1:arm64                             1.0.31-2                              arm64        Library for reading/writing audio files
ii  libsndio7.0:arm64                             1.5.0-3                               arm64        Small audio and MIDI framework from OpenBSD, runtime libraries
ii  libsoc2                                       0.8.2-2                               arm64        C library to interface with common peripherals (runtime)
ii  libsodium23:arm64                             1.0.18-1                              arm64        Network communication, cryptography and signaturing library
ii  libsord-0-0:arm64                             0.16.8-2                              arm64        library for storing RDF data in memory
ii  libsoundtouch1:arm64                          2.3.1+ds1-1+b1                        arm64        Sound stretching library
ii  libsoup2.4-1:arm64                            2.74.0-2                              arm64        HTTP library implementation in C -- Shared library
ii  libsource-highlight-common                    3.1.9-3                               all          architecture-independent files for source highlighting library
ii  libsource-highlight4v5                        3.1.9-3+b1                            arm64        source highlighting library
ii  libsoxr0:arm64                                0.1.3-4                               arm64        High quality 1D sample-rate conversion library
ii  libspa-0.2-modules:arm64                      0.3.38-2                              arm64        libraries for the PipeWire multimedia server Simple Plugin API - modules
ii  libspandsp2:arm64                             0.0.6+dfsg-2                          arm64        Telephony signal processing library
ii  libspeex1:arm64                               1.2~rc1.2-1.1                         arm64        The Speex codec runtime library
ii  libspeexdsp1:arm64                            1.2~rc1.2-1.1                         arm64        The Speex extended runtime library
ii  libsphinxbase3:arm64                          0.8+5prealpha+1-12                    arm64        Speech recognition tool - shared library
ii  libsqlite3-0:arm64                            3.36.0-2                              arm64        SQLite 3 shared library
ii  libsratom-0-0:arm64                           0.6.8-1                               arm64        library for serialising LV2 atoms to/from Turtle
ii  libsrt1.4-gnutls:arm64                        1.4.2-1.4                             arm64        Secure Reliable Transport UDP streaming library (GnuTLS flavour)
ii  libsrtp2-1:arm64                              2.4.1-1                               arm64        Secure RTP (SRTP) and UST Reference Implementations - shared library
ii  libss2:arm64                                  1.46.4-1                              arm64        command-line interface parsing library
ii  libssh-gcrypt-4:arm64                         0.9.6-1                               arm64        tiny C SSH library (gcrypt flavor)
ii  libssh2-1:arm64                               1.10.0-2                              arm64        SSH2 client-side library
ii  libssl1.1:arm64                               1.1.1l-1                              arm64        Secure Sockets Layer toolkit - shared libraries
ii  libstatgrab10                                 0.92-2                                arm64        library being useful interface to system statistics
ii  libstdc++-10-dev:arm64                        10.3.0-11                             arm64        GNU Standard C++ Library v3 (development files)
ii  libstdc++6:arm64                              11.2.0-8                              arm64        GNU Standard C++ Library v3
ii  libstemmer0d:arm64                            2.1.0-2                               arm64        Snowball stemming algorithms for use in Information Retrieval
ii  libstoken1:arm64                              0.92-1                                arm64        Software Token for cryptographic authentication - shared library
ii  libswresample3:arm64                          7:4.4-6+b2                            arm64        FFmpeg library for audio resampling, rematrixing etc. - runtime files
ii  libswscale5:arm64                             7:4.4-6+b2                            arm64        FFmpeg library for image scaling and various conversions - runtime files
ii  libsysstat-qt5-0:arm64                        0.4.4-1                               arm64        Qt-based interface to system statistics
ii  libsystemd0:arm64                             247.9-4                               arm64        systemd utility library
ii  libtag1v5:arm64                               1.12-1                                arm64        audio meta-data library
ii  libtag1v5-vanilla:arm64                       1.12-1                                arm64        audio meta-data library - vanilla flavour
ii  libtaskmanager6abi1                           4:5.21.5-3+b1                         arm64        Plasma Workspace for KF5 library
ii  libtasn1-6:arm64                              4.17.0-2                              arm64        Manage ASN.1 structures (runtime)
ii  libtdb1:arm64                                 1.4.3-1+b1                            arm64        Trivial Database - shared library
ii  libteamdctl0:arm64                            1.31-1                                arm64        library for communication with `teamd` process
ii  libtext-charwidth-perl                        0.04-10+b1                            arm64        get display widths of characters on the terminal
ii  libtext-iconv-perl                            1.7-7+b1                              arm64        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-4.1                            all          Data files for Thai language support library
ii  libthai0:arm64                                0.1.28-4.1                            arm64        Thai language support library
ii  libtheora0:arm64                              1.1.1+dfsg.1-15                       arm64        Theora Video Compression Codec
ii  libtiff5:arm64                                4.3.0-2                               arm64        Tag Image File Format (TIFF) library
ii  libtinfo6:arm64                               6.2+20210905-1                        arm64        shared low-level terminfo library for terminal handling
ii  libtirpc-common                               1.3.2-2                               all          transport-independent RPC library - common files
ii  libtirpc-dev:arm64                            1.3.2-2                               arm64        transport-independent RPC library - development files
ii  libtirpc3:arm64                               1.3.2-2                               arm64        transport-independent RPC library
ii  libtomcrypt1:arm64                            1.18.2-5                              arm64        public domain open source cryptographic toolkit
ii  libtommath1:arm64                             1.2.0-6                               arm64        multiple-precision integer library [runtime]
ii  libtsan0:arm64                                11.2.0-8                              arm64        ThreadSanitizer -- a Valgrind-based detector of data races (runtime)
ii  libtss2-esys-3.0.2-0:arm64                    3.1.0-3                               arm64        TPM2 Software stack library - TSS and TCTI libraries
ii  libtss2-mu0:arm64                             3.1.0-3                               arm64        TPM2 Software stack library - TSS and TCTI libraries
ii  libtss2-sys1:arm64                            3.1.0-3                               arm64        TPM2 Software stack library - TSS and TCTI libraries
ii  libtss2-tcti-cmd0:arm64                       3.1.0-3                               arm64        TPM2 Software stack library - TSS and TCTI libraries
ii  libtss2-tcti-device0:arm64                    3.1.0-3                               arm64        TPM2 Software stack library - TSS and TCTI libraries
ii  libtss2-tcti-mssim0:arm64                     3.1.0-3                               arm64        TPM2 Software stack library - TSS and TCTI libraries
ii  libtss2-tcti-swtpm0:arm64                     3.1.0-3                               arm64        TPM2 Software stack library - TSS and TCTI libraries
ii  libtwolame0:arm64                             0.4.0-2                               arm64        MPEG Audio Layer 2 encoding library
ii  libubsan1:arm64                               11.2.0-8                              arm64        UBSan -- undefined behaviour sanitizer (runtime)
ii  libudev1:arm64                                247.9-4                               arm64        libudev shared library
ii  libudfread0:arm64                             1.1.2-1                               arm64        UDF reader library
ii  libudisks2-0:arm64                            2.9.4-1                               arm64        GObject based library to access udisks2
ii  libunistring2:arm64                           0.9.10-6                              arm64        Unicode string library for C
ii  libunwind8:arm64                              1.3.2-2                               arm64        library to determine the call-chain of a program - runtime
ii  libupm0                                       1.6.0-2                               arm64        Sensor/Actuator repository for MRAA (runtime)
ii  libupower-glib3:arm64                         0.99.13-1                             arm64        abstraction for power management - shared library
ii  liburi-perl                                   5.08-1                                all          module to manipulate and access URI strings
ii  libusb-1.0-0:arm64                            2:1.0.24-3                            arm64        userspace USB programming library
ii  libusbmuxd6:arm64                             2.0.2-3                               arm64        USB multiplexor daemon for iPhone and iPod Touch devices - library
ii  libutempter0:arm64                            1.2.1-2                               arm64        privileged helper for utmp/wtmp updates (runtime)
ii  libutf8proc2:arm64                            2.5.0-1                               arm64        C library for processing UTF-8 Unicode data (shared library)
ii  libuuid1:arm64                                2.37.2-3                              arm64        Universally Unique ID library
ii  libv4l-0:arm64                                1.20.0-4                              arm64        Collection of video4linux support libraries
ii  libv4lconvert0:arm64                          1.20.0-4                              arm64        Video4linux frame format conversion library
ii  libva-drm2:arm64                              2.13.0-1                              arm64        Video Acceleration (VA) API for Linux -- DRM runtime
ii  libva-x11-2:arm64                             2.13.0-1                              arm64        Video Acceleration (VA) API for Linux -- X11 runtime
ii  libva2:arm64                                  2.13.0-1                              arm64        Video Acceleration (VA) API for Linux -- runtime
ii  libvdpau1:arm64                               1.4-3                                 arm64        Video Decode and Presentation API for Unix (libraries)
ii  libvidstab1.1:arm64                           1.1.0-2+b1                            arm64        video stabilization library (shared library)
ii  libvisual-0.4-0:arm64                         0.4.0-17                              arm64        audio visualization framework
ii  libvo-aacenc0:arm64                           0.1.3-2                               arm64        VisualOn AAC encoder library
ii  libvo-amrwbenc0:arm64                         0.1.3-2                               arm64        VisualOn AMR-WB encoder library
ii  libvorbis0a:arm64                             1.3.7-1                               arm64        decoder library for Vorbis General Audio Compression Codec
ii  libvorbisenc2:arm64                           1.3.7-1                               arm64        encoder library for Vorbis General Audio Compression Codec
ii  libvorbisfile3:arm64                          1.3.7-1                               arm64        high-level API for Vorbis General Audio Compression Codec
ii  libvpx6:arm64                                 1.10.0-2                              arm64        VP8 and VP9 video codec (shared library)
ii  libvulkan1:arm64                              1.2.189.0-2                           arm64        Vulkan loader library
ii  libwacom-common                               1.11-1                                all          Wacom model feature query library (common files)
ii  libwacom2:arm64                               1.11-1                                arm64        Wacom model feature query library
ii  libwavpack1:arm64                             5.4.0-1                               arm64        audio codec (lossy and lossless) - library
ii  libwayland-client0:arm64                      1.19.0-2+b1                           arm64        wayland compositor infrastructure - client library
ii  libwayland-cursor0:arm64                      1.19.0-2+b1                           arm64        wayland compositor infrastructure - cursor library
ii  libwayland-egl1:arm64                         1.19.0-2+b1                           arm64        wayland compositor infrastructure - EGL library
ii  libwayland-server0:arm64                      1.19.0-2+b1                           arm64        wayland compositor infrastructure - server library
ii  libweather-ion7                               4:5.21.5-3+b1                         arm64        Plasma Workspace for KF5 library
ii  libwebp6:arm64                                0.6.1-2.1                             arm64        Lossy compression of digital photographic images.
ii  libwebpdemux2:arm64                           0.6.1-2.1                             arm64        Lossy compression of digital photographic images.
ii  libwebpmux3:arm64                             0.6.1-2.1                             arm64        Lossy compression of digital photographic images.
ii  libwebrtc-audio-processing1:arm64             0.3-1+b1                              arm64        AudioProcessing module from the WebRTC project.
ii  libwildmidi2:arm64                            0.4.3-1                               arm64        software MIDI player library
ii  libwrap0:arm64                                7.6.q-31                              arm64        Wietse Venema's TCP wrappers library
ii  libx11-6:arm64                                2:1.7.2-2+b1                          arm64        X11 client-side library
ii  libx11-data                                   2:1.7.2-2                             all          X11 client-side library
ii  libx11-xcb1:arm64                             2:1.7.2-2+b1                          arm64        Xlib/XCB interface library
ii  libx264-160:arm64                             2:0.160.3011+gitcde9a93-2.1           arm64        x264 video coding library
ii  libx265-199:arm64                             3.5-2                                 arm64        H.265/HEVC video stream encoder (shared library)
ii  libxau6:arm64                                 1:1.0.9-1                             arm64        X11 authorisation library
ii  libxaw7:arm64                                 2:1.0.13-1.1                          arm64        X11 Athena Widget library
ii  libxcb-composite0:arm64                       1.14-3                                arm64        X C Binding, composite extension
ii  libxcb-cursor0:arm64                          0.1.1-4                               arm64        utility libraries for X C Binding -- cursor
ii  libxcb-damage0:arm64                          1.14-3                                arm64        X C Binding, damage extension
ii  libxcb-dri2-0:arm64                           1.14-3                                arm64        X C Binding, dri2 extension
ii  libxcb-dri3-0:arm64                           1.14-3                                arm64        X C Binding, dri3 extension
ii  libxcb-glx0:arm64                             1.14-3                                arm64        X C Binding, glx extension
ii  libxcb-icccm4:arm64                           0.4.1-1.1                             arm64        utility libraries for X C Binding -- icccm
ii  libxcb-image0:arm64                           0.4.0-1+b3                            arm64        utility libraries for X C Binding -- image
ii  libxcb-keysyms1:arm64                         0.4.0-1+b2                            arm64        utility libraries for X C Binding -- keysyms
ii  libxcb-present0:arm64                         1.14-3                                arm64        X C Binding, present extension
ii  libxcb-randr0:arm64                           1.14-3                                arm64        X C Binding, randr extension
ii  libxcb-render-util0:arm64                     0.3.9-1+b1                            arm64        utility libraries for X C Binding -- render-util
ii  libxcb-render0:arm64                          1.14-3                                arm64        X C Binding, render extension
ii  libxcb-res0:arm64                             1.14-3                                arm64        X C Binding, res extension
ii  libxcb-shape0:arm64                           1.14-3                                arm64        X C Binding, shape extension
ii  libxcb-shm0:arm64                             1.14-3                                arm64        X C Binding, shm extension
ii  libxcb-sync1:arm64                            1.14-3                                arm64        X C Binding, sync extension
ii  libxcb-util1:arm64                            0.4.0-1+b1                            arm64        utility libraries for X C Binding -- atom, aux and event
ii  libxcb-xfixes0:arm64                          1.14-3                                arm64        X C Binding, xfixes extension
ii  libxcb-xinerama0:arm64                        1.14-3                                arm64        X C Binding, xinerama extension
ii  libxcb-xinput0:arm64                          1.14-3                                arm64        X C Binding, xinput extension
ii  libxcb-xkb1:arm64                             1.14-3                                arm64        X C Binding, XKEYBOARD extension
ii  libxcb1:arm64                                 1.14-3                                arm64        X C Binding
ii  libxcomposite1:arm64                          1:0.4.5-1                             arm64        X11 Composite extension library
ii  libxcursor1:arm64                             1:1.2.0-2                             arm64        X cursor management library
ii  libxdamage1:arm64                             1:1.1.5-2                             arm64        X11 damaged region extension library
ii  libxdmcp6:arm64                               1:1.1.2-3                             arm64        X11 Display Manager Control Protocol library
ii  libxext6:arm64                                2:1.3.4-1                             arm64        X11 miscellaneous extension library
ii  libxfixes3:arm64                              1:5.0.3-2                             arm64        X11 miscellaneous 'fixes' extension library
ii  libxfont2:arm64                               1:2.0.4-1                             arm64        X11 font rasterisation library
ii  libxft2:arm64                                 2.3.2-2                               arm64        FreeType-based font drawing library for X
ii  libxi6:arm64                                  2:1.8-1                               arm64        X11 Input extension library
ii  libxinerama1:arm64                            2:1.1.4-2                             arm64        X11 Xinerama extension library
ii  libxkbcommon-x11-0:arm64                      1.0.3-2                               arm64        library to create keymaps with the XKB X11 protocol
ii  libxkbcommon0:arm64                           1.0.3-2                               arm64        library interface to the XKB compiler - shared library
ii  libxkbfile1:arm64                             1:1.1.0-1                             arm64        X11 keyboard file manipulation library
ii  libxml2:arm64                                 2.9.12+dfsg-5                         arm64        GNOME XML library
ii  libxmmsclient6                                0.8+dfsg-21                           arm64        XMMS2 - client library
ii  libxmu6:arm64                                 2:1.1.2-2+b3                          arm64        X11 miscellaneous utility library
ii  libxmuu1:arm64                                2:1.1.2-2+b3                          arm64        X11 miscellaneous micro-utility library
ii  libxpm4:arm64                                 1:3.5.12-1                            arm64        X11 pixmap library
ii  libxrandr2:arm64                              2:1.5.2-1                             arm64        X11 RandR extension library
ii  libxrender1:arm64                             1:0.9.10-1                            arm64        X Rendering Extension client library
ii  libxres1:arm64                                2:1.2.0-4                             arm64        X11 Resource extension library
ii  libxshmfence1:arm64                           1.3-1                                 arm64        X shared memory fences - shared library
ii  libxslt1.1:arm64                              1.1.34-4                              arm64        XSLT 1.0 processing library - runtime library
ii  libxss1:arm64                                 1:1.2.3-1                             arm64        X11 Screen Saver extension library
ii  libxt6:arm64                                  1:1.2.0-1                             arm64        X11 toolkit intrinsics library
ii  libxtables12:arm64                            1.8.7-1                               arm64        netfilter xtables library
ii  libxtst6:arm64                                2:1.2.3-1                             arm64        X11 Testing -- Record extension library
ii  libxv1:arm64                                  2:1.0.11-1                            arm64        X11 Video extension library
ii  libxvidcore4:arm64                            2:1.3.7-1                             arm64        Open source MPEG-4 video codec (library)
ii  libxxf86dga1:arm64                            2:1.1.4-1+b3                          arm64        X11 Direct Graphics Access extension library
ii  libxxf86vm1:arm64                             1:1.1.4-1+b2                          arm64        X11 XFree86 video mode extension library
ii  libxxhash0:arm64                              0.8.0-2                               arm64        shared library for xxhash
ii  libyaml-0-2:arm64                             0.2.2-1                               arm64        Fast YAML 1.1 parser and emitter library
ii  libz3-4:arm64                                 4.8.12-1+b1                           arm64        theorem prover from Microsoft Research - runtime libraries
ii  libzbar0:arm64                                0.23.92-3                             arm64        QR code / bar code scanner and decoder (library)
ii  libzimg2:arm64                                3.0.3+ds1-1+b1                        arm64        scaling, colorspace, depth conversion library (shared library)
ii  libzmq5:arm64                                 4.3.4-1                               arm64        lightweight messaging kernel (shared library)
ii  libzstd1:arm64                                1.4.8+dfsg-2.1                        arm64        fast lossless compression algorithm
ii  libzvbi-common                                0.2.35-18                             all          Vertical Blanking Interval decoder (VBI) - common files
ii  libzvbi0:arm64                                0.2.35-18                             arm64        Vertical Blanking Interval decoder (VBI) - runtime files
ii  linaro-artwork                                0.6-0linaro1                          all          artwork for Linaro
ii  linaro-icon-theme                             0.6-0linaro1                          all          icon theme for Linaro
ii  linaro-lxpanel-icons                          0.6-0linaro1                          all          panel specific icons for Linaro artwork
ii  linaro-overlay-minimal                        1112.14                               all          Linaro Overlay for Linaro headless/minimal images
ii  linux-base                                    4.6                                   all          Linux image base package
ii  linux-image-5.13.0-qcomlt-arm64               5.13.9-00291-g7644c86e7429-208        arm64        Linux kernel, version 5.13.0-qcomlt-arm64
ii  linux-libc-dev:arm64                          5.15.0~rc4-00170-gf2982e4459f9-212    arm64        Linux support headers for userspace development
ii  lm-sensors                                    1:3.6.0-7                             arm64        utilities to read temperature/voltage/fan sensors
ii  locales                                       2.32-4                                all          GNU C Library: National Language (locale) data [support]
ii  login                                         1:4.8.1-1                             arm64        system login tools
ii  logrotate                                     3.18.1-2                              arm64        Log rotation utility
ii  logsave                                       1.46.4-1                              arm64        save the output of a command in a log file
ii  lsb-base                                      11.1.0                                all          Linux Standard Base init script functionality
ii  lsb-release                                   11.1.0                                all          Linux Standard Base version reporting utility
ii  lsof                                          4.93.2+dfsg-1.1                       arm64        utility to list open files
ii  lximage-qt                                    0.16.0-1                              arm64        Image viewer for LXQt
ii  lxmenu-data                                   0.1.5-2.1                             all          LXDE freedesktop.org menu specification
ii  lxqt-about                                    0.16.0-1                              arm64        About screen for LXQt
ii  lxqt-admin                                    0.16.0-1                              arm64        Admin tools for LXQt
ii  lxqt-config                                   0.16.1-1                              arm64        LXQt system settings center
ii  lxqt-core                                     30                                    all          Metapackage for the LXQt core
ii  lxqt-globalkeys                               0.16.0-1                              arm64        daemon used to register global keyboard shortcuts (appl.)
ii  lxqt-notificationd                            0.16.0-1                              arm64        LXQt notification daemon
ii  lxqt-openssh-askpass                          0.16.0-1                              arm64        OpenSSH user/password GUI dialog for LXQt
ii  lxqt-panel                                    0.16.1-1                              arm64        LXQt desktop panel
ii  lxqt-policykit                                0.16.0-1                              arm64        LXQt authentication agent for PolicyKit
ii  lxqt-powermanagement                          0.16.0-1                              arm64        power management module for LXQt
ii  lxqt-qtplugin:arm64                           0.16.0-1                              arm64        LXQt system integration plugin for Qt
ii  lxqt-runner                                   0.16.0-1                              arm64        LXQt program launcher
ii  lxqt-session                                  0.16.0-1                              arm64        session manager component for LXQt
ii  lxqt-sudo                                     0.16.0-1                              arm64        Graphical QT frontend for plain sudo
ii  lxqt-system-theme                             0.16.0-1                              all          System theme for LXQt
ii  lxqt-themes                                   0.16.0-1                              all          Themes for LXQt
ii  mailcap                                       3.70                                  all          Debian's mailcap system, and support programs
ii  make                                          4.3-4.1                               arm64        utility for directing compilation
ii  makedev                                       2.3.1-94.1                            all          creates device files in /dev
ii  mawk                                          1.3.4.20200120-2                      arm64        Pattern scanning and text processing language
ii  media-types                                   4.0.0                                 all          List of standard media types and their usual file extension
ii  mesa-utils                                    8.4.0-1+b2                            arm64        Miscellaneous Mesa GL utilities
ii  mesa-utils-extra                              8.4.0-1+b2                            arm64        Miscellaneous Mesa utilies (opengles, egl)
ii  milou                                         4:5.21.5-2                            arm64        Dedicated search plasmoid
ii  mime-support                                  3.66                                  all          transitional package
ii  mobile-broadband-provider-info                20210805-1                            all          database of mobile broadband service providers
ii  modemmanager                                  1.14.12-0.2                           arm64        D-Bus service for managing modems
ii  mount                                         2.37.2-3                              arm64        tools for mounting and manipulating filesystems
ii  nano                                          5.8-2                                 arm64        small, friendly text editor inspired by Pico
ii  ncurses-base                                  6.2+20210905-1                        all          basic terminal type definitions
ii  ncurses-bin                                   6.2+20210905-1                        arm64        terminal-related programs and man pages
ii  net-tools                                     1.60+git20181103.0eebece-1            arm64        NET-3 networking toolkit
ii  netbase                                       6.3                                   all          Basic TCP/IP networking system
ii  network-manager                               1.32.12-1                             arm64        network management framework (daemon and userspace tools)
ii  network-manager-gnome                         1.24.0-1                              arm64        network management framework (GNOME frontend)
ii  nftables                                      1.0.0-1                               arm64        Program to control packet filtering rules by Netfilter project
ii  ntpdate                                       1:4.2.8p15+dfsg-1                     arm64        client for setting system time from NTP servers (deprecated)
ii  ocl-icd-libopencl1:arm64                      2.2.14-3                              arm64        Generic OpenCL ICD Loader
ii  openjdk-11-jre:arm64                          11.0.12+7-2                           arm64        OpenJDK Java runtime, using Hotspot JIT
ii  openjdk-11-jre-headless:arm64                 11.0.12+7-2                           arm64        OpenJDK Java runtime, using Hotspot JIT (headless)
ii  openssh-client                                1:8.4p1-6                             arm64        secure shell (SSH) client, for secure access to remote machines
ii  openssh-server                                1:8.4p1-6                             arm64        secure shell (SSH) server, for secure access from remote machines
ii  openssh-sftp-server                           1:8.4p1-6                             arm64        secure shell (SSH) sftp server module, for SFTP access from remote machines
ii  openssl                                       1.1.1l-1                              arm64        Secure Sockets Layer toolkit - cryptographic utility
ii  p11-kit                                       0.24.0-3                              arm64        p11-glue utilities
ii  p11-kit-modules:arm64                         0.24.0-3                              arm64        p11-glue proxy and trust modules
ii  parted                                        3.4-1                                 arm64        disk partition manipulator
ii  passwd                                        1:4.8.1-1                             arm64        change and administer password and group data
ii  patch                                         2.7.6-7                               arm64        Apply a diff file to an original
ii  pavucontrol-qt                                0.16.0-1                              arm64        Qt port of volume control pavucontrol
ii  pci.ids                                       0.0~2021.08.22-1                      all          PCI ID Repository
ii  pcmanfm-qt                                    0.16.0-1                              arm64        extremely fast and lightweight file and desktop icon manager
ii  perl                                          5.32.1-6                              arm64        Larry Wall's Practical Extraction and Report Language
ii  perl-base                                     5.32.1-6                              arm64        minimal Perl system
ii  perl-modules-5.32                             5.32.1-6                              all          Core Perl modules
ii  phonon-backend-gstreamer-common:arm64         4:4.10.0-1                            arm64        Phonon GStreamer 1.0.x backend icons
ii  phonon4qt5:arm64                              4:4.11.1-4                            arm64        multimedia framework from KDE using Qt 5 - metapackage
ii  phonon4qt5-backend-gstreamer:arm64            4:4.10.0-1                            arm64        Phonon Qt5 GStreamer 1.0 backend
ii  pinentry-curses                               1.1.0-4                               arm64        curses-based PIN or pass-phrase entry dialog for GnuPG
ii  pinentry-gnome3                               1.1.0-4                               arm64        GNOME 3 PIN or pass-phrase entry dialog for GnuPG
ii  pinentry-qt                                   1.1.0-4                               arm64        Qt-based PIN or pass-phrase entry dialog for GnuPG
ii  plasma-framework                              5.86.0-1                              arm64        Plasma Runtime components
ii  plasma-integration                            5.21.5-2                              arm64        Qt Platform Theme integration plugins for KDE Plasma
ii  plasma-nm                                     4:5.21.5-2                            arm64        Plasma network connections management
ii  plasma-workspace                              4:5.21.5-3+b1                         arm64        Plasma Workspace for KF5
ii  plasma-workspace-data                         4:5.21.5-3                            all          Plasma Workspace for KF5 - data files
ii  policykit-1                                   0.105-31                              arm64        framework for managing administrative policies and privileges
ii  policykit-1-gnome                             0.105-7+b1                            arm64        authentication agent for PolicyKit
ii  powerdebug                                    0.7.0-2013.08-1+b3                    arm64        tool to display regulator, sensor and clock information
ii  powertop                                      2.13-2                                arm64        diagnose issues with power consumption and management
ii  ppp                                           2.4.9-1+1                             arm64        Point-to-Point Protocol (PPP) - daemon
ii  procps                                        2:3.3.17-5                            arm64        /proc file system utilities
ii  psmisc                                        23.4-2                                arm64        utilities that use the proc file system
ii  pulseaudio                                    15.0+dfsg1-2                          arm64        PulseAudio sound server
ii  pulseaudio-module-bluetooth                   15.0+dfsg1-2                          arm64        Bluetooth module for PulseAudio sound server
ii  pulseaudio-utils                              15.0+dfsg1-2                          arm64        Command line tools for the PulseAudio sound server
ii  python-libsoc                                 0.8.2-2                               arm64        Python binding for libsoc
ii  python-matplotlib-data                        3.3.4-2                               all          Python based plotting system (data package)
ii  python-mraa                                   1.9.0-1                               arm64        Python binding for mraa
ii  python-upm                                    1.6.0-2                               arm64        Python binding for UPM
ii  python2                                       2.7.18-3                              arm64        interactive high-level object-oriented language (Python2 version)
ii  python2-minimal                               2.7.18-3                              arm64        minimal subset of the Python2 language
ii  python2.7                                     2.7.18-9                              arm64        Interactive high-level object-oriented language (version 2.7)
ii  python2.7-minimal                             2.7.18-9                              arm64        Minimal subset of the Python language (version 2.7)
ii  python3                                       3.9.2-3                               arm64        interactive high-level object-oriented language (default python3 version)
ii  python3-cairo:arm64                           1.16.2-4+b2                           arm64        Python3 bindings for the Cairo vector graphics library
ii  python3-certifi                               2020.6.20-1                           all          root certificates for validating SSL certs and verifying TLS hosts (python3)
ii  python3-chardet                               4.0.0-1                               all          universal character encoding detector for Python3
ii  python3-cycler                                0.10.0-3                              all          composable kwarg iterator (Python 3)
ii  python3-dateutil                              2.8.1-6                               all          powerful extensions to the standard Python 3 datetime module
ii  python3-distro                                1.6.0-2                               all          Linux OS platform information API
ii  python3-gi                                    3.42.0-1+b1                           arm64        Python 3 bindings for gobject-introspection libraries
ii  python3-gi-cairo                              3.42.0-1+b1                           arm64        Python 3 Cairo bindings for the GObject library
ii  python3-gps                                   3.22-4+linaro1                        arm64        Global Positioning System - Python 3 libraries
ii  python3-idna                                  2.10-1                                all          Python IDNA2008 (RFC 5891) handling (Python 3)
ii  python3-kiwisolver                            1.3.1-2                               arm64        fast implementation of the Cassowary constraint solver - Python 3.X
ii  python3-matplotlib                            3.3.4-2                               arm64        Python based plotting system in a style similar to Matlab (Python 3)
ii  python3-minimal                               3.9.2-3                               arm64        minimal subset of the Python language (default python3 version)
ii  python3-numpy                                 1:1.19.5-1                            arm64        Fast array facility to the Python 3 language
ii  python3-pexpect                               4.8.0-2                               all          Python 3 module for automating interactive applications
ii  python3-pil:arm64                             8.1.2+dfsg-0.3                        arm64        Python Imaging Library (Python3)
ii  python3-pkg-resources                         52.0.0-4                              all          Package Discovery and Resource Access using pkg_resources
ii  python3-ptyprocess                            0.7.0-2                               all          Run a subprocess in a pseudo terminal from Python 3
ii  python3-pyparsing                             2.4.7-1                               all          alternative to creating and executing simple grammars - Python 3.x
ii  python3-requests                              2.25.1+dfsg-2                         all          elegant and simple HTTP library for Python3, built for human beings
ii  python3-serial                                3.5~b0-1                              all          pyserial - module encapsulating access for the serial port
ii  python3-six                                   1.16.0-2                              all          Python 2 and 3 compatibility library (Python 3 interface)
ii  python3-urllib3                               1.26.5-1~exp1                         all          HTTP library with thread-safe connection pooling for Python3
ii  python3-yaml                                  5.3.1-5                               arm64        YAML parser and emitter for Python3
ii  python3.9                                     3.9.7-4                               arm64        Interactive high-level object-oriented language (version 3.9)
ii  python3.9-minimal                             3.9.7-4                               arm64        Minimal subset of the Python language (version 3.9)
ii  qdbus-qt5                                     5.15.2-5                              arm64        Qt 5 D-Bus tool
ii  qml-module-org-kde-bluezqt:arm64              5.86.0-1                              arm64        QML wrapper for bluez
ii  qml-module-org-kde-draganddrop:arm64          5.86.0-1                              arm64        provides integration of QML and KDE frameworks - draganddrop
ii  qml-module-org-kde-kcm:arm64                  5.86.0-1                              arm64        provides integration of QML and KDE Frameworks - kcm
ii  qml-module-org-kde-kconfig:arm64              5.86.0-1                              arm64        provides integration of QML and KDE Frameworks - kconfig
ii  qml-module-org-kde-kcoreaddons:arm64          5.86.0-1                              arm64        provides integration of QML and KDE frameworks - kcoreaddons
ii  qml-module-org-kde-kholidays:arm64            1:5.86.0-1                            arm64        holidays calculation library - qml files
ii  qml-module-org-kde-kio:arm64                  5.86.0-1                              arm64        provides integration of QML and KDE Frameworks - kio
ii  qml-module-org-kde-kirigami2                  5.86.0-1                              arm64        set of QtQuick components targeted for mobile use
ii  qml-module-org-kde-kitemmodels:arm64          5.86.0-1                              arm64        additional item/view models for Qt Itemview (QML Bindings)
ii  qml-module-org-kde-kquickcontrols:arm64       5.86.0-1                              arm64        provides integration of QML and KDE frameworks - kquickcontrols
ii  qml-module-org-kde-kquickcontrolsaddons:arm64 5.86.0-1                              arm64        provides integration of QML and KDE Frameworks - kquickcontrolsaddons
ii  qml-module-org-kde-ksysguard                  4:5.21.5-3                            arm64        KSysGuard QtDeclarative QML Support
ii  qml-module-org-kde-kwindowsystem:arm64        5.86.0-1                              arm64        provides integration of QML and KDE frameworks - kwindowsystem
ii  qml-module-org-kde-newstuff                   5.86.0-3                              arm64        Support for downloading application assets from the network.
ii  qml-module-org-kde-prison:arm64               5.86.0-1                              arm64        barcode API for Qt
ii  qml-module-org-kde-qqc2desktopstyle           5.86.0-1                              arm64        Qt Quick Controls 2: Desktop Style
ii  qml-module-org-kde-quickcharts                5.86.0-1                              arm64        Quick Charts
ii  qml-module-org-kde-solid:arm64                5.86.0-1                              arm64        Qt library to query and control hardware plugin
ii  qml-module-org-kde-userfeedback:arm64         1.0.0-3                               arm64        user feedback for applications - QML module
ii  qml-module-qt-labs-folderlistmodel:arm64      5.15.2+dfsg-8                         arm64        Qt 5 folderlistmodel QML module
ii  qml-module-qt-labs-settings:arm64             5.15.2+dfsg-8                         arm64        Qt 5 settings QML module
ii  qml-module-qtgraphicaleffects:arm64           5.15.2-2                              arm64        Qt 5 Graphical Effects module
ii  qml-module-qtmultimedia:arm64                 5.15.2-3                              arm64        Qt 5 Multimedia QML module
ii  qml-module-qtqml:arm64                        5.15.2+dfsg-8                         arm64        Qt 5 QtQml QML module
ii  qml-module-qtqml-models2:arm64                5.15.2+dfsg-8                         arm64        Qt 5 Models2 QML module
ii  qml-module-qtquick-controls:arm64             5.15.2-2                              arm64        Qt 5 Quick Controls QML module
ii  qml-module-qtquick-controls2:arm64            5.15.2+dfsg-4                         arm64        Qt 5 Qt Quick Controls 2 QML module
ii  qml-module-qtquick-dialogs:arm64              5.15.2-2                              arm64        Qt 5 Dialogs QML module
ii  qml-module-qtquick-layouts:arm64              5.15.2+dfsg-8                         arm64        Qt 5 Quick Layouts QML module
ii  qml-module-qtquick-privatewidgets:arm64       5.15.2-2                              arm64        Qt 5 Private Widgets QML module
ii  qml-module-qtquick-templates2:arm64           5.15.2+dfsg-4                         arm64        Qt 5 Qt Quick Templates 2 QML module
ii  qml-module-qtquick-window2:arm64              5.15.2+dfsg-8                         arm64        Qt 5 window 2 QML module
ii  qml-module-qtquick2:arm64                     5.15.2+dfsg-8                         arm64        Qt 5 Qt Quick 2 QML module
ii  qrtr                                          0.3+47g9dc7a88-1                      arm64        QRTR applications
ii  qtchooser                                     66-2                                  arm64        Wrapper to select between Qt development binary versions
ii  qterminal                                     0.16.1-1                              arm64        Lightweight Qt terminal emulator
ii  qtermwidget5-data                             0.16.1-1                              all          Terminal emulator widget for Qt 5 (data files)
ii  read-edid                                     3.0.2-1.1                             arm64        hardware information-gathering tool for VESA PnP monitors
ii  readline-common                               8.1-2                                 all          GNU readline and history libraries, common files
ii  resolvconf                                    1.87                                  all          name server information handler
ii  rfkill                                        2.37.2-3                              arm64        tool for enabling and disabling wireless devices
ii  rmtfs                                         0.2+36g293ab8b-1                      arm64        RMTFS QMI service
ii  rpcsvc-proto                                  1.4.2-4                               arm64        RPC protocol compiler and definitions
ii  rsync                                         3.2.3-8                               arm64        fast, versatile, remote (and local) file-copying tool
ii  rsyslog                                       8.2108.0-1                            arm64        reliable system and kernel logging daemon
ii  runit-helper                                  2.10.3                                all          dh-runit implementation detail
ii  sddm                                          0.19.0-3                              arm64        modern display manager for X11
ii  sddm-theme-breeze                             4:5.21.5-3+b1                         arm64        Breeze SDDM theme
ii  sed                                           4.8-1                                 arm64        GNU stream editor for filtering/transforming text
ii  sensible-utils                                0.0.17                                all          Utilities for sensible alternative selection
ii  shared-mime-info                              2.0-1                                 arm64        FreeDesktop.org shared MIME database and spec
ii  ssh-import-id                                 5.10-1                                all          securely retrieve an SSH public key and install it locally
ii  startpar                                      0.65-1                                arm64        run processes in parallel and multiplex their output
ii  strace                                        5.10-1                                arm64        System call tracer
ii  sudo                                          1.9.5p2-3                             arm64        Provide limited super user privileges to specific users
ii  systemd                                       247.9-4                               arm64        system and service manager
ii  systemd-sysv                                  247.9-4                               arm64        system and service manager - SysV links
ii  systemsettings                                4:5.21.5-3                            arm64        System Settings interface
ii  sysv-rc                                       3.00-1                                all          System-V-like runlevel change mechanism
ii  sysvinit-utils                                3.00-1                                arm64        System-V-like utilities
ii  tar                                           1.34+dfsg-1                           arm64        GNU version of the tar archiving utility
ii  tasksel                                       3.68                                  all          tool for selecting tasks for installation on Debian systems
ii  tasksel-data                                  3.68                                  all          official tasks used for installation of Debian systems
ii  timgm6mb-soundfont                            1.3-5                                 all          TimGM6mb SoundFont from MuseScore 1.3
ii  tpm-udev                                      0.5                                   all          udev rules for TPM modules
ii  ttf-bitstream-vera                            1.10-8.1                              all          The Bitstream Vera family of free TrueType fonts
ii  tzdata                                        2021c-1                               all          time zone and daylight-saving time data
ii  ucf                                           3.0043                                all          Update Configuration File(s): preserve user changes to config files
ii  udev                                          247.9-4                               arm64        /dev/ and hotplug management daemon
ii  udisks2                                       2.9.4-1                               arm64        D-Bus service to access and manipulate storage devices
ii  unzip                                         6.0-26                                arm64        De-archiver for .zip files
ii  upower                                        0.99.13-1                             arm64        abstraction for power management
ii  usb-modeswitch                                2.6.1-2                               arm64        mode switching tool for controlling "flip flop" USB devices
ii  usb-modeswitch-data                           20191128-4                            all          mode switching data for usb-modeswitch
ii  usb.ids                                       2021.07.19-1                          all          USB ID Repository
ii  usbutils                                      1:014-1                               arm64        Linux USB utilities
ii  user-setup                                    1.88                                  all          Set up initial user and password
ii  util-linux                                    2.37.2-3                              arm64        miscellaneous system utilities
ii  vim                                           2:8.2.3455-2                          arm64        Vi IMproved - enhanced vi editor
ii  vim-common                                    2:8.2.3455-2                          all          Vi IMproved - Common files
ii  vim-runtime                                   2:8.2.3455-2                          all          Vi IMproved - Runtime files
ii  vim-tiny                                      2:8.2.3455-2                          arm64        Vi IMproved - enhanced vi editor - compact version
ii  wamerican                                     2019.10.06-1                          all          American English dictionary words for /usr/share/dict
ii  wget                                          1.21-1                                arm64        retrieves files from the web
ii  whiptail                                      0.52.21-5                             arm64        Displays user-friendly dialog boxes from shell scripts
ii  wireless-tools                                30~pre9-13.1                          arm64        Tools for manipulating Linux Wireless Extensions
ii  wpasupplicant                                 2:2.9.0-22+b1                         arm64        client support for WPA and WPA2 (IEEE 802.11i)
ii  x11-common                                    1:7.7+23                              all          X Window System (X.Org) infrastructure
ii  x11-utils                                     7.7+5                                 arm64        X11 utilities
ii  x11-xkb-utils                                 7.7+5                                 arm64        X11 XKB utilities
ii  x11-xserver-utils                             7.7+8                                 arm64        X server utilities
ii  xauth                                         1:1.1-1                               arm64        X authentication utility
ii  xbitmaps                                      1.1.1-2.1                             all          Base X bitmaps
ii  xdg-user-dirs                                 0.17-2                                arm64        tool to manage well known user directories
ii  xdg-utils                                     1.1.3-4.1                             all          desktop integration utilities from freedesktop.org
ii  xinit                                         1.4.0-1                               arm64        X server initialisation tool
ii  xkb-data                                      2.33-1                                all          X Keyboard Extension (XKB) configuration data
ii  xmms2-client-cli                              0.8+dfsg-21                           arm64        XMMS2 - cli client
ii  xmms2-core                                    0.8+dfsg-21                           arm64        XMMS2 - core package
ii  xmms2-plugin-mad                              0.8+dfsg-21                           arm64        XMMS2 - libmad based mp3 decoder
ii  xmms2-plugin-pulse                            0.8+dfsg-21                           arm64        XMMS2 - PulseAudio output plug-in
ii  xmms2-plugin-vorbis                           0.8+dfsg-21                           arm64        XMMS2 - vorbis decoder
ii  xserver-common                                2:1.20.11-1                           all          common files used by various X servers
ii  xserver-xorg                                  1:7.7+23                              arm64        X.Org X server
ii  xserver-xorg-core                             2:1.20.11-1                           arm64        Xorg X server - core server
ii  xserver-xorg-input-evdev                      1:2.10.6-2                            arm64        X.Org X server -- evdev input driver
ii  xserver-xorg-video-fbdev                      1:0.5.0-1                             arm64        X.Org X server -- fbdev display driver
ii  xterm                                         369-1                                 arm64        X terminal emulator
ii  xxd                                           2:8.2.3455-2                          arm64        tool to make (or reverse) a hex dump
ii  xz-utils                                      5.2.5-2                               arm64        XZ-format compression utilities
ii  zip                                           3.0-12                                arm64        Archiver for .zip files
ii  zlib1g:arm64                                  1:1.2.11.dfsg-2                       arm64        compression library - runtime