-
Notifications
You must be signed in to change notification settings - Fork 27
/
packages11.txt
1498 lines (1498 loc) · 199 KB
/
packages11.txt
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
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 acl 2.2.53-10 armhf access control list - utilities
ii adduser 3.118 all add and remove users and groups
ii adwaita-icon-theme 3.38.0-1 all default icon theme of GNOME
ii alsa-utils 1.2.4-1 armhf Utilities for configuring and using ALSA
ii alsaplayer-alsa 0.99.81-2 armhf alsaplayer output module for ALSA
ii alsaplayer-common 0.99.81-2 armhf audio player (common files)
ii alsaplayer-daemon 0.99.81-2 armhf alsaplayer daemon
ii alsaplayer-gtk 0.99.81-2 armhf alsaplayer gtk interface
ii alsaplayer-jack 0.99.81-2 armhf alsaplayer output module for JACK
ii alsaplayer-nas 0.99.81-2 armhf alsaplayer output module for NAS
ii alsaplayer-oss 0.99.81-2 armhf alsaplayer output module for OSS
ii alsaplayer-text 0.99.81-2 armhf alsaplayer text interface
ii alsaplayer-xosd 0.99.81-2 armhf alsaplayer XOSD display module
ii apache2 2.4.54-1~deb11u1 armhf Apache HTTP Server
ii apache2-bin 2.4.54-1~deb11u1 armhf Apache HTTP Server (modules and other binary files)
ii apache2-data 2.4.54-1~deb11u1 all Apache HTTP Server (common files)
ii apache2-utils 2.4.54-1~deb11u1 armhf Apache HTTP Server (utility programs for web servers)
ii apt 2.2.4 armhf commandline package manager
ii apt-transport-https 2.2.4 all transitional package for https support
ii apt-utils 2.2.4 armhf package management related utility programs
ii aptitude 0.8.13-3 armhf terminal-based package manager
ii aptitude-common 0.8.13-3 all architecture independent files for the aptitude package manager
ii at-spi2-core 2.38.0-4 armhf Assistive Technology Service Provider Interface (dbus core)
ii attr 1:2.4.48-6 armhf utilities for manipulating filesystem extended attributes
ii autoconf 2.69-14 all automatic configure script builder
ii autofs 5.1.7-1 armhf kernel-based automounter for Linux
ii automake 1:1.16.3-2 all Tool for generating GNU Standards-compliant Makefiles
ii autopoint 0.21-4 all tool for setting up gettext infrastructure in a source package
ii autotools-dev 20180224.1+nmu1 all Update infrastructure for config.{guess,sub} files
ii avahi-daemon 0.8-5+deb11u1 armhf Avahi mDNS/DNS-SD daemon
ii base-files 11.1+rpi1+deb11u6 armhf Debian base system miscellaneous files
ii base-passwd 3.5.51 armhf Debian base system master password and group files
ii bash 5.1-2+deb11u1 armhf GNU Bourne Again SHell
ii bash-completion 1:2.11-2 all programmable completion for the bash shell
ii bc 1.07.1-2+b1 armhf GNU bc arbitrary precision calculator language
ii bind9-dnsutils 1:9.16.37-1~deb11u1 armhf Clients provided with BIND 9
ii bind9-host 1:9.16.37-1~deb11u1 armhf DNS Lookup Utility
ii bind9-libs:armhf 1:9.16.37-1~deb11u1 armhf Shared Libraries used by BIND 9
ii binutils 2.35.2-2+rpi1 armhf GNU assembler, linker and binary utilities
ii binutils-arm-linux-gnueabihf 2.35.2-2+rpi1 armhf GNU binary utilities, for arm-linux-gnueabihf target
ii binutils-common:armhf 2.35.2-2+rpi1 armhf Common files for the GNU assembler, linker and binary utilities
ii blends-tasks 0.7.2 all Debian Pure Blends tasks for new installations
ii bluez 5.55-3.1 armhf Bluetooth tools and daemons
ii bluez-firmware 1.2-4 all Firmware for Bluetooth devices
ii bsd-mailx 8.1.2-0.20180807cvs-2 armhf simple mail user agent
ii bsdextrautils 2.36.1-8+deb11u1 armhf extra utilities from 4.4BSD-Lite
ii bsdutils 1:2.36.1-8+deb11u1 armhf basic utilities from 4.4BSD-Lite
ii bzip2 1.0.8-4 armhf high-quality block-sorting file compressor - utilities
ii ca-certificates 20210119 all Common CA certificates
ii cifs-utils 2:6.11-3.1+deb11u1 armhf Common Internet File System utilities
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 armhf GNU core utilities
ii cpanminus 1.7044-2 all script to get, unpack, build and install modules from CPAN
ii cpio 2.13+dfsg-4 armhf GNU cpio -- a program to manage archives of files
ii cpp 4:10.2.1-1+rpi1 armhf GNU C preprocessor (cpp)
ii cpp-10 10.2.1-6+rpi1 armhf GNU C preprocessor
ii cpp-4.9 4.9.4-2+rpi1+b19 armhf GNU C preprocessor
ii cpp-6 6.5.0-1+rpi1+b1 armhf GNU C preprocessor
ii cpp-8 8.4.0-7+rpi1 armhf GNU C preprocessor
ii crda 4.14+git20191112.9856751-1 armhf wireless Central Regulatory Domain Agent
ii cron 3.0pl1-137 armhf process scheduling daemon
ii curl 7.74.0-1.3+deb11u7 armhf command line tool for transferring data with URL syntax
ii dash 0.5.11+git20200708+dd9ef66-5 armhf POSIX-compliant shell
ii dbus 1.12.24-0+deb11u1 armhf simple interprocess messaging system (daemon and utilities)
ii dbus-user-session 1.12.24-0+deb11u1 armhf simple interprocess messaging system (systemd --user integration)
ii dc 1.07.1-2+b1 armhf GNU dc arbitrary precision reverse-polish calculator
ii dconf-gsettings-backend:armhf 0.38.0-2 armhf simple configuration storage system - GSettings back-end
ii dconf-service 0.38.0-2 armhf 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 debconf-utils 1.5.77 all debconf utilities
ii debianutils 4.11.2 armhf Miscellaneous utilities specific to Debian
ii default-mysql-client 1.0.7 all MySQL database client binaries (metapackage)
ii device-tree-compiler 1.6.0-1 armhf Device Tree Compiler for Flat Device Trees
ii dh-python 4.20201102+nmu1 all Debian helper tools for packaging Python libraries and applications
ii dhcpcd5 1:6.11.5-1+rpt7 armhf DHCPv4, IPv6RA and DHCPv6 client with IPv4LL support
ii dialog 1.3-20201126-1 armhf Displays user-friendly dialog boxes from shell scripts
ii diffutils 1:3.7-5 armhf File comparison utilities
ii dirmngr 2.2.27-2+deb11u2 armhf GNU privacy guard - network certificate management service
ii distro-info-data 0.51+deb11u3 all information about the distributions' releases (data files)
ii dmidecode 3.3-2 armhf SMBIOS/DMI table decoder
ii dmsetup 2:1.02.175-2.1 armhf Linux Kernel Device Mapper userspace library
ii dnsutils 1:9.16.37-1~deb11u1 all Transitional package for bind9-dnsutils
ii dos2unix 7.4.1-1 armhf convert text file line endings between CRLF and LF
ii dosfstools 4.2-1 armhf utilities for making and checking MS-DOS FAT filesystems
ii dphys-swapfile 20100506-7 all Autogenerate and use a swap file
ii dpkg 1.20.12+rpi1 armhf Debian package management system
ii dpkg-dev 1.20.12+rpi1 all Debian package development tools
ii e2fslibs:armhf 1.44.5-1+deb10u3 armhf transitional package
ii e2fsprogs 1.46.2-2 armhf ext2/ext3/ext4 file system utilities
ii e2fsprogs-l10n 1.46.2-2 all ext2/ext3/ext4 file system utilities - translations
ii ed 1.17-1 armhf classic UNIX line editor
ii esound-common 0.2.41-11 all Enlightened Sound Daemon - Common files
ii exfat-fuse 1.3.0-2 armhf read and write exFAT driver for FUSE
ii exfat-utils 1.3.0-2 armhf utilities to create, check, label and dump exFAT filesystem
ii expect 5.45.4-2 armhf Automates interactive applications
ii fake-hwclock 0.12 all Save/restore system clock on machines without working RTC hardware
ii fakeroot 1.25.3-1.1 armhf tool for simulating superuser privileges
ii fbset 2.1-32 armhf framebuffer device maintenance program
ii fdisk 2.36.1-8+deb11u1 armhf collection of partitioning utilities
ii ffmpeg 7:4.3.5-0+deb11u1 armhf Tools for transcoding, streaming and playing of multimedia files
ii file 1:5.39-3 armhf Recognize the type of data in a file using "magic" numbers
ii findutils 4.8.0-1 armhf utilities for finding files--find, xargs
ii firmware-atheros 1:20161130-3+rpt4 all Binary firmware for Atheros wireless cards
ii firmware-brcm80211 1:20161130-3+rpt4 all Binary firmware for Broadcom 802.11 wireless cards
ii firmware-libertas 1:20161130-3+rpt4 all Binary firmware for Marvell wireless cards
ii firmware-misc-nonfree 1:20161130-3+rpt4 all Binary firmware for various drivers in the Linux kernel
ii firmware-realtek 1:20161130-3+rpt4 all Binary firmware for Realtek wired/wifi/BT adapters
ii fontconfig 2.13.1-4.2 armhf generic font configuration library - support binaries
ii fontconfig-config 2.13.1-4.2 all generic font configuration library - configuration
ii fonts-dejavu-core 2.37-2 all Vera font family derivate with additional characters
ii fonts-droid-fallback 1:6.0.1r16-1.1 all handheld device font with extensive style and language support (fallback)
ii fonts-noto-mono 20201225-1 all "No Tofu" monospaced font family with large Unicode coverage
ii fonts-urw-base35 20200910-1 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts
ii fuse 2.9.9-5 armhf Filesystem in Userspace
ii galera-3 25.3.36-0+deb11u1 armhf Replication framework for transactional applications
ii gawk 1:5.1.0-1 armhf GNU awk, a pattern scanning and processing language
ii gcc 4:10.2.1-1+rpi1 armhf GNU C compiler
ii gcc-10 10.2.1-6+rpi1 armhf GNU C compiler
ii gcc-10-base:armhf 10.2.1-6+rpi1 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-4.6-base:armhf 4.6.4-5+rpi1 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-4.7-base:armhf 4.7.3-11+rpi1 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-4.8-base:armhf 4.8.5-4 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-4.9 4.9.4-2+rpi1+b19 armhf GNU C compiler
ii gcc-4.9-base:armhf 4.9.4-2+rpi1+b19 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-5-base:armhf 5.5.0-8 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-6 6.5.0-1+rpi1+b1 armhf GNU C compiler
ii gcc-6-base:armhf 6.5.0-1+rpi1+b1 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-7-base:armhf 7.5.0-6+rpi1+b2 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-8 8.4.0-7+rpi1 armhf GNU C compiler
ii gcc-8-base:armhf 8.4.0-7+rpi1 armhf GCC, the GNU Compiler Collection (base package)
ii gcc-9-base:armhf 9.3.0-22+rpi1 armhf GCC, the GNU Compiler Collection (base package)
ii gdb 10.1-1.7 armhf GNU Debugger
ii gdbserver 10.1-1.7 armhf GNU Debugger (remote server)
ii geoclue-2.0 2.5.7-3 armhf geoinformation service
ii geoip-database 20191224-3 all IP lookup command line tools that use the GeoIP library (country database)
ii gettext 0.21-4 armhf GNU Internationalization utilities
ii gettext-base 0.21-4 armhf GNU Internationalization utilities for the base system
ii ghostscript 9.53.3~dfsg-7+deb11u2 armhf interpreter for the PostScript language and for PDF
ii gir1.2-glib-2.0:armhf 1.66.1-1+b1 armhf Introspection data for GLib, GObject, Gio and GModule
ii git 1:2.30.2-1+deb11u2 armhf fast, scalable, distributed revision control system
ii git-man 1:2.30.2-1+deb11u2 all fast, scalable, distributed revision control system (manual pages)
ii glib-networking:armhf 2.66.0-2 armhf network-related giomodules for GLib
ii glib-networking-common 2.66.0-2 all network-related giomodules for GLib - data files
ii glib-networking-services 2.66.0-2 armhf network-related giomodules for GLib - D-Bus services
ii gnome-icon-theme 3.12.0-3 all GNOME Desktop icon theme
ii gnupg 2.2.27-2+deb11u2 all GNU privacy guard - a free PGP replacement
ii gnupg-l10n 2.2.27-2+deb11u2 all GNU privacy guard - localization files
ii gnupg-utils 2.2.27-2+deb11u2 armhf GNU privacy guard - utility programs
ii gpg 2.2.27-2+deb11u2 armhf GNU Privacy Guard -- minimalist public key operations
ii gpg-agent 2.2.27-2+deb11u2 armhf GNU privacy guard - cryptographic agent
ii gpg-wks-client 2.2.27-2+deb11u2 armhf GNU privacy guard - Web Key Service client
ii gpg-wks-server 2.2.27-2+deb11u2 armhf GNU privacy guard - Web Key Service server
ii gpgconf 2.2.27-2+deb11u2 armhf GNU privacy guard - core configuration utilities
ii gpgsm 2.2.27-2+deb11u2 armhf GNU privacy guard - S/MIME version
ii gpgv 2.2.27-2+deb11u2 armhf GNU privacy guard - signature verification tool
ii grep 3.6-1 armhf GNU grep, egrep and fgrep
ii groff-base 1.22.4-6 armhf GNU troff text-formatting system (base system components)
ii gsasl-common 1.10.0-4+deb11u1 all GNU SASL platform independent files
ii gsettings-desktop-schemas 3.38.0-2 all GSettings desktop-wide schemas
ii gsfonts 1:8.11+urwcyr1.0.7~pre44-4.5 all Fonts for the Ghostscript interpreter(s)
ii gstreamer1.0-plugins-base:armhf 1.18.4-2 armhf GStreamer plugins from the "base" set
ii gtk-update-icon-cache 3.24.24-4+deb11u2 armhf icon theme caching utility
ii gzip 1.10-4+deb11u1 armhf GNU compression utilities
ii hardlink 0.3.2+b1 armhf Hardlinks multiple copies of the same file
ii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes
ii hostname 3.23 armhf utility to set/show the host name or domain name
ii htop 3.0.5-7 armhf interactive processes viewer
ii i2c-tools 4.2-1+b1 armhf heterogeneous set of I2C tools for Linux
ii ibverbs-providers:armhf 33.2-1 armhf User space provider drivers for libibverbs
ii icc-profiles-free 2.0.1+dfsg-1.1 all ICC color profiles for use with color profile aware software
ii ifplugd 0.28-19.5 armhf configuration daemon for ethernet devices
ii ifupdown 0.8.36 armhf high level tools to configure network interfaces
ii iio-sensor-proxy 3.0-2 armhf IIO sensors to D-Bus proxy
ii imagemagick 8:6.9.11.60+dfsg-1.3+deb11u1 armhf image manipulation programs -- binaries
ii imagemagick-6-common 8:6.9.11.60+dfsg-1.3+deb11u1 all image manipulation programs -- infrastructure
ii imagemagick-6.q16 8:6.9.11.60+dfsg-1.3+deb11u1 armhf image manipulation programs -- quantum depth Q16
ii imagemagick-common 8:6.9.11.60+dfsg-1.3+deb11u1 all image manipulation programs -- infrastructure dummy package
ii info 6.7.0.dfsg.2-6 armhf Standalone GNU Info documentation browser
ii init 1.60 armhf 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 2.96-7+deb11u1 all scripts for initializing and shutting down the system
ii insserv 1.21.0-1.1 armhf boot sequence organizer using LSB init.d script dependency information
ii install-info 6.7.0.dfsg.2-6 armhf Manage installed documentation in info format
ii iproute2 5.10.0-4 armhf networking and traffic control tools
ii iptables 1.8.7-1 armhf administration tools for packet filtering and NAT
ii iputils-ping 3:20210202-1 armhf Tools to test the reachability of network hosts
ii isc-dhcp-client 4.4.1-2.3+deb11u1 armhf DHCP client for automatically obtaining an IP address
ii isc-dhcp-common 4.4.1-2.3+deb11u1 armhf common manpages relevant to all of the isc-dhcp packages
ii iso-codes 4.6.0-1 all ISO language, territory, currency, script codes and their translations
ii iw 5.9-3 armhf tool for configuring Linux wireless devices
ii javascript-common 11+nmu1 all Base support for JavaScript library packages
ii jq 1.6-2.1 armhf lightweight and flexible command-line JSON processor
ii kbd 2.3.0-3 armhf Linux console font and keytable utilities
ii keyboard-configuration 1.205 all system-wide keyboard preferences
ii keyutils 1.6.1-2 armhf Linux Key Management Utilities
ii klibc-utils 2.0.8-6.1+rpi1 armhf small utilities built with klibc for early boot
ii kmod 28-1 armhf tools for managing Linux kernel modules
ii krb5-locales 1.18.3-6+deb11u3 all internationalization support for MIT Kerberos
ii less 551-2 armhf pager program similar to more
ii liba52-0.7.4:armhf 0.7.4-20 armhf library for decoding ATSC A/52 streams
ii libaacs0:armhf 0.9.0-2 armhf free-and-libre implementation of AACS
ii libacl1:armhf 2.2.53-10 armhf access control list - shared library
ii libaio1:armhf 0.3.112-9+rpi1 armhf Linux kernel AIO access library - shared library
ii libalgorithm-c3-perl 0.11-1 all Perl module for merging hierarchies using the C3 algorithm
ii libalgorithm-diff-perl 1.201-1 all module to find differences between files
ii libalgorithm-diff-xs-perl 0.04-6+b1 armhf module to find differences between files (XS accelerated)
ii libalgorithm-merge-perl 0.08-3 all Perl module for three-way merge of textual data
ii libalsaplayer-dev 0.99.81-2 armhf alsaplayer plugin library (development files)
ii libalsaplayer0:armhf 0.99.81-2 armhf alsaplayer plugin library
ii libany-uri-escape-perl 0.01-3 all module to load URI::Escape::XS preferentially over URI::Escape
ii libaom0:armhf 1.0.0.errata1-3 armhf AV1 Video Codec Library
rc libapache2-mod-php7.0 7.0.33-0+deb9u1 armhf server-side, HTML-embedded scripting language (Apache 2 module)
rc libapache2-mod-php7.3 7.3.31-1~deb10u3 armhf server-side, HTML-embedded scripting language (Apache 2 module)
ii libapache2-mod-php7.4 7.4.33-1+deb11u1 armhf server-side, HTML-embedded scripting language (Apache 2 module)
ii libapparmor1:armhf 2.13.6-10 armhf changehat AppArmor library
ii libapr1:armhf 1.7.0-6+deb11u1 armhf Apache Portable Runtime Library
ii libaprutil1:armhf 1.6.1-5+deb11u1 armhf Apache Portable Runtime Utility Library
ii libaprutil1-dbd-sqlite3:armhf 1.6.1-5+deb11u1 armhf Apache Portable Runtime Utility Library - SQLite3 Driver
ii libaprutil1-ldap:armhf 1.6.1-5+deb11u1 armhf Apache Portable Runtime Utility Library - LDAP Driver
ii libapt-inst2.0:armhf 1.8.2.3 armhf deb package format runtime library
ii libapt-pkg5.0:armhf 1.8.2.3 armhf package management runtime library
ii libapt-pkg6.0:armhf 2.2.4 armhf package management runtime library
ii libarchive-extract-perl 0.86-1 all generic archive extracting module
ii libarchive13:armhf 3.4.3-2+deb11u1 armhf Multi-format archive and compression library (shared library)
ii libargon2-1:armhf 0~20171227-0.2 armhf memory-hard hashing function - runtime library
ii libasan1:armhf 4.9.4-2+rpi1+b19 armhf AddressSanitizer -- a fast memory error detector
ii libasan3:armhf 6.5.0-1+rpi1+b1 armhf AddressSanitizer -- a fast memory error detector
ii libasan5:armhf 9.3.0-22+rpi1 armhf AddressSanitizer -- a fast memory error detector
ii libasan6:armhf 10.2.1-6+rpi1 armhf AddressSanitizer -- a fast memory error detector
ii libasn1-8-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - ASN.1 library
ii libasound2:armhf 1.2.4-1.1 armhf shared library for ALSA applications
ii libasound2-data 1.2.4-1.1 all Configuration files and profiles for ALSA drivers
ii libasprintf-dev:armhf 0.21-4 armhf use fprintf and friends in C++ - static libraries and headers
ii libasprintf0v5:armhf 0.21-4 armhf use fprintf and friends in C++ - shared library
ii libass5:armhf 1:0.13.4-2 armhf library for SSA/ASS subtitles rendering
ii libass9:armhf 1:0.15.0-2 armhf library for SSA/ASS subtitles rendering
ii libassuan-dev 2.5.3-7.1 armhf IPC library for the GnuPG components -- header files
ii libassuan0:armhf 2.5.3-7.1 armhf IPC library for the GnuPG components
ii libasyncns0:armhf 0.8-6 armhf Asynchronous name service query library
ii libatk-bridge2.0-0:armhf 2.38.0-1 armhf AT-SPI 2 toolkit bridge - shared library
ii libatk1.0-0:armhf 2.36.0-2 armhf ATK accessibility toolkit
ii libatk1.0-data 2.36.0-2 all Common files for the ATK accessibility toolkit
ii libatomic1:armhf 10.2.1-6+rpi1 armhf support library providing __atomic built-in functions
ii libatopology2:armhf 1.2.4-1.1 armhf shared library for handling ALSA topology definitions
ii libatspi2.0-0:armhf 2.38.0-4 armhf Assistive Technology Service Provider Interface - shared library
ii libattr1:armhf 1:2.4.48-6 armhf extended attribute handling - shared library
ii libaudio2:armhf 1.9.4-7 armhf Network Audio System - shared libraries
ii libaudiofile1:armhf 0.3.6-5 armhf Open-source version of SGI's audiofile library
ii libaudit-common 1:3.0-2 all Dynamic library for security auditing - common files
ii libaudit1:armhf 1:3.0-2 armhf Dynamic library for security auditing
ii libauthen-pam-perl 0.16-3+b8 armhf Perl interface to PAM library
ii libauthen-sasl-perl 2.1600-1.1 all Authen::SASL - SASL Authentication framework
ii libavahi-client3:armhf 0.8-5+deb11u1 armhf Avahi client library
ii libavahi-common-data:armhf 0.8-5+deb11u1 armhf Avahi common data files
ii libavahi-common3:armhf 0.8-5+deb11u1 armhf Avahi common library
ii libavahi-core7:armhf 0.8-5+deb11u1 armhf Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1:armhf 0.8-5+deb11u1 armhf Avahi GLib integration library
ii libavc1394-0:armhf 0.5.4-5 armhf control IEEE 1394 audio/video devices
ii libavcodec-dev:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library with de/encoders for audio/video codecs - development files
ii libavcodec57:armhf 7:3.2.10-1~deb9u1+rpt2 armhf FFmpeg library with de/encoders for audio/video codecs - runtime files
ii libavcodec58:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library with de/encoders for audio/video codecs - runtime files
ii libavdevice57:armhf 7:3.2.10-1~deb9u1+rpt2 armhf FFmpeg library for handling input and output devices - runtime files
ii libavdevice58:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library for handling input and output devices - runtime files
ii libavfilter6:armhf 7:3.2.10-1~deb9u1+rpt2 armhf FFmpeg library containing media filters - runtime files
ii libavfilter7:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library containing media filters - runtime files
ii libavformat-dev:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library with (de)muxers for multimedia containers - development files
ii libavformat57:armhf 7:3.2.10-1~deb9u1+rpt2 armhf FFmpeg library with (de)muxers for multimedia containers - runtime files
ii libavformat58:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library with (de)muxers for multimedia containers - runtime files
ii libavresample-dev:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg compatibility library for resampling - development files
ii libavresample3:armhf 7:3.2.10-1~deb9u1+rpt2 armhf FFmpeg compatibility library for resampling - runtime files
ii libavresample4:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg compatibility library for resampling - runtime files
ii libavutil-dev:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library with functions for simplifying programming - development files
ii libavutil55:armhf 7:3.2.10-1~deb9u1+rpt2 armhf FFmpeg library with functions for simplifying programming - runtime files
ii libavutil56:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library with functions for simplifying programming - runtime files
ii libb-hooks-endofscope-perl 0.24-1.1 all module for executing code after a scope finished compilation
ii libb-hooks-op-check-perl 0.22-1+b4 armhf Perl wrapper for OP check callbacks
ii libbabeltrace-ctf1 1.5.8-1 all Babeltrace conversion libraries (transitional package)
ii libbabeltrace1:armhf 1.5.8-1+b1 armhf Babeltrace conversion libraries
ii libbdplus0:armhf 0.1.2-3 armhf implementation of BD+ for reading Blu-ray Discs
ii libbind9-140:armhf 1:9.10.3.dfsg.P4-12.3+deb9u4 armhf BIND9 Shared Library used by BIND
ii libbinutils:armhf 2.35.2-2+rpi1 armhf GNU binary utilities (private shared library)
ii libblas-common 3.7.0-2 armhf Dependency package for all BLAS implementations
ii libblas3:armhf 3.9.0-3 armhf Basic Linear Algebra Reference implementations, shared library
ii libblkid-dev:armhf 2.36.1-8+deb11u1 armhf block device ID library - headers
ii libblkid1:armhf 2.36.1-8+deb11u1 armhf block device ID library
ii libbluetooth3:armhf 5.55-3.1 armhf Library to use the BlueZ Linux Bluetooth stack
ii libbluray1:armhf 1:0.9.3-4 armhf Blu-ray disc playback support library (shared library)
ii libbluray2:armhf 1:1.2.1-4+deb11u2 armhf Blu-ray disc playback support library (shared library)
ii libboost-filesystem1.62.0:armhf 1.62.0+dfsg-10+b3 armhf filesystem operations (portable paths, iteration over directories, etc) in C++
ii libboost-iostreams1.58.0:armhf 1.58.0+dfsg-5.1+rpi1+b4 armhf Boost.Iostreams Library
ii libboost-iostreams1.60.0:armhf 1.60.0+dfsg-6+b2 armhf Boost.Iostreams Library
ii libboost-iostreams1.62.0:armhf 1.62.0+dfsg-10+b3 armhf Boost.Iostreams Library
ii libboost-iostreams1.74.0:armhf 1.74.0-9 armhf Boost.Iostreams Library
ii libboost-regex1.71.0:armhf 1.71.0-7+b1 armhf regular expression library for C++
ii libboost-regex1.74.0:armhf 1.74.0-9 armhf regular expression library for C++
ii libboost-system1.62.0:armhf 1.62.0+dfsg-10+b3 armhf Operating system (e.g. diagnostics support) library
ii libboost-thread1.74.0:armhf 1.74.0-9 armhf portable C++ multi-threading
ii libbpf0:armhf 1:0.3-2+rpi1 armhf eBPF helper library (shared library)
ii libbrotli-dev:armhf 1.0.9-2+b1 armhf library implementing brotli encoder and decoder (development files)
ii libbrotli1:armhf 1.0.9-2+b1 armhf library implementing brotli encoder and decoder (shared libraries)
ii libbs2b0:armhf 3.1.0+dfsg-2.2 armhf Bauer stereophonic-to-binaural DSP library
ii libbsd-resource-perl 1.2911-1+b5 armhf BSD process resource limit and priority functions
ii libbsd0:armhf 0.11.3-1 armhf utility functions from BSD systems - shared library
ii libbz2-1.0:armhf 1.0.8-4 armhf high-quality block-sorting file compressor library - runtime
ii libc-bin 2.31-13+rpi1+deb11u3 armhf GNU C Library: Binaries
ii libc-dev-bin 2.31-13+rpi1+deb11u3 armhf GNU C Library: Development binaries
ii libc-l10n 2.31-13+rpi1+deb11u3 all GNU C Library: localization files
ii libc6:armhf 2.31-13+rpi1+deb11u3 armhf GNU C Library: Shared libraries
ii libc6-dbg:armhf 2.31-13+rpi1+deb11u3 armhf GNU C Library: detached debugging symbols
ii libc6-dev:armhf 2.31-13+rpi1+deb11u3 armhf GNU C Library: Development Libraries and Header Files
ii libcaca0:armhf 0.99.beta19-2.2 armhf colour ASCII art library
ii libcairo-gobject2:armhf 1.16.0-5 armhf Cairo 2D vector graphics library (GObject library)
ii libcairo-script-interpreter2:armhf 1.16.0-5 armhf Cairo 2D vector graphics library (script interpreter)
ii libcairo2:armhf 1.16.0-5 armhf Cairo 2D vector graphics library
ii libcairo2-dev:armhf 1.16.0-5 armhf Development files for the Cairo 2D graphics library
ii libcap-ng0:armhf 0.7.9-2.2+b1 armhf An alternate POSIX capabilities library
ii libcap2:armhf 1:2.44-1 armhf POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.44-1 armhf POSIX 1003.1e capabilities (utilities)
ii libcapture-tiny-perl 0.48-1 all module to capture STDOUT and STDERR
ii libcbor0:armhf 0.5.0+dfsg-2 armhf library for parsing and generating CBOR (RFC 7049)
ii libcc1-0:armhf 10.2.1-6+rpi1 armhf GCC cc1 plugin for GDB
ii libcdio-cdda1:armhf 0.83-4.3 armhf library to read and control digital audio CDs
ii libcdio-cdda2:armhf 10.2+2.0.0-1+b1 armhf library to read and control digital audio CDs
ii libcdio-paranoia1:armhf 0.83-4.3 armhf library to read digital audio CDs with error correction
ii libcdio-paranoia2:armhf 10.2+2.0.0-1+b1 armhf library to read digital audio CDs with error correction
ii libcdio13:armhf 0.83-4.3 armhf library to read and control CD-ROM
ii libcdio19:armhf 2.1.0-2 armhf library to read and control CD-ROM
ii libcdparanoia0:armhf 3.10.2+debian-13.1 armhf audio extraction tool for sampling CDs (library)
ii libcephfs2 14.2.21-1+rpi1 armhf Ceph distributed file system client library
ii libcgi-fast-perl 1:2.15-1 all CGI subclass for work with FCGI
ii libcgi-pm-perl 4.51-1 all module for Common Gateway Interface applications
ii libcgi-session-perl 4.48-3 all persistent session data in CGI applications
ii libcgi-simple-perl 1.115-2 all simple CGI.pm compatible OO CGI interface
ii libchromaprint1:armhf 1.5.0-2 armhf audio fingerprint library
ii libcjson1:armhf 1.7.14-1 armhf Ultralightweight JSON parser in ANSI C
ii libclass-accessor-perl 0.51-1 all Perl module that automatically generates accessors
ii libclass-c3-perl 0.35-1 all pragma for using the C3 method resolution order
ii libclass-c3-xs-perl 0.15-1+b1 armhf Perl module to accelerate Class::C3
ii libclass-data-inheritable-perl 0.08-3 all Perl module to create accessors to class data
ii libclass-inspector-perl 1.36-1 all Perl module that provides information about classes
ii libclass-load-perl 0.25-1 all module for loading modules by name
ii libclass-method-modifiers-perl 2.13-1 all Perl module providing method modifiers
ii libclass-singleton-perl 1.6-1 all implementation of a "Singleton" class
ii libclass-xsaccessor-perl 1.19-3+b17 armhf Perl module providing fast XS accessors
ii libclone-choose-perl 0.010-1 all Choose appropriate clone utility (Perl library)
ii libcloog-isl4:armhf 0.18.4-2 armhf Chunky Loop Generator (runtime library)
ii libcodec2-0.9:armhf 0.9.2-4 armhf Codec2 runtime library
ii libcolord2:armhf 1.4.5-3 armhf system service to manage device colour profiles -- runtime
ii libcom-err2:armhf 1.46.2-2 armhf common error description library
ii libcomerr2:armhf 1.44.5-1+deb10u3 armhf transitional package
ii libcommon-sense-perl 3.75-1+b4 armhf module that implements some sane defaults for Perl programs
ii libconfig-crontab-perl 1.45-1 all module to read/write Vixie-compatible crontab(5) files
ii libconfig-inifiles-perl 3.000003-1 all read .ini-style configuration files
ii libconfig-simple-perl 4.59-6.1 all simple configuration file class
ii libcpan-changes-perl 0.400002-1.1 all module for reading and writing CPAN Changes files
ii libcpan-distnameinfo-perl 0.12-2.1 all module to extract distribution name and version from a filename
ii libcpan-meta-check-perl 0.014-1 all verify requirements in a CPAN::Meta object
ii libcpan-meta-perl 2.150010-2 all Perl module to access CPAN distributions metadata
ii libcroco3:armhf 0.6.13-1 armhf Cascading Style Sheet (CSS) parsing and manipulation toolkit
ii libcrypt-dev:armhf 1:4.4.18-4 armhf libcrypt development files
ii libcrypt1:armhf 1:4.4.18-4 armhf libcrypt shared library
ii libcryptsetup12:armhf 2:2.3.7-1+deb11u1 armhf disk encryption support - shared library
ii libcryptsetup4:armhf 2:1.7.3-4 armhf disk encryption support - shared library
ii libctf-nobfd0:armhf 2.35.2-2+rpi1 armhf Compact C Type Format library (runtime, no BFD dependency)
ii libctf0:armhf 2.35.2-2+rpi1 armhf Compact C Type Format library (runtime, BFD dependency)
ii libcups2:armhf 2.3.3op2-3+deb11u2 armhf Common UNIX Printing System(tm) - Core library
ii libcupsfilters1:armhf 1.28.7-1+deb11u1 armhf OpenPrinting CUPS Filters - Shared library
ii libcupsimage2:armhf 2.3.3op2-3+deb11u2 armhf Common UNIX Printing System(tm) - Raster image library
ii libcurl3-gnutls:armhf 7.74.0-1.3+deb11u7 armhf easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libcurl4:armhf 7.74.0-1.3+deb11u7 armhf easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libcwidget3v5:armhf 0.5.17-11 armhf high-level terminal interface library for C++ (runtime files)
ii libcwidget4:armhf 0.5.18-5 armhf high-level terminal interface library for C++ (runtime files)
ii libdaemon0:armhf 0.14-7.1 armhf lightweight C library for daemons - runtime library
ii libdata-dump-perl 1.23-1.1 all Perl module to help dump data structures
ii libdata-optlist-perl 0.110-1.1 all module to parse and validate simple name/value option pairs
ii libdata-perl-perl 0.002011-1 all classes wrapping fundamental Perl data types
ii libdata-section-perl 0.200007-1 all module to read chunks of data from a module's DATA section
ii libdata-uuid-perl 1.226-1+b1 armhf globally/universally unique identifiers (GUIDs/UUIDs)
ii libdata-validate-ip-perl 0.30-1 all Perl module for IP validation
ii libdatetime-locale-perl 1:1.31-1 all Perl extension providing localization support for DateTime
ii libdatetime-perl:armhf 2:1.54-1 armhf module for manipulating dates, times and timestamps
ii libdatetime-timezone-perl 1:2.47-1+2022g all framework exposing the Olson time zone database to Perl
ii libdatrie1:armhf 0.2.13-1+b1 armhf Double-array trie library
ii libdav1d4:armhf 0.7.1-3+rpi1 armhf fast and small AV1 video stream decoder (shared library)
ii libdb5.3:armhf 5.3.28+dfsg1-0.8 armhf Berkeley v5.3 Database Libraries [runtime]
ii libdbd-mysql-perl:armhf 4.050-3+b1 armhf Perl5 database interface to the MariaDB/MySQL database
ii libdbd-pg-perl 3.14.2-1+b1 armhf Perl DBI driver for the PostgreSQL database server
ii libdbd-sqlite3-perl:armhf 1.66-1+b1 armhf Perl DBI driver with a self-contained RDBMS
ii libdbi-perl:armhf 1.643-3+b1 armhf Perl Database Interface (DBI)
ii libdbus-1-3:armhf 1.12.24-0+deb11u1 armhf simple interprocess messaging system (library)
ii libdc1394-22:armhf 2.2.5-2.1 armhf high level programming interface for IEEE 1394 digital cameras
ii libdc1394-25:armhf 2.2.6-3 armhf high level programming interface for IEEE 1394 digital cameras
ii libdca0:armhf 0.0.7-2 armhf decoding library for DTS Coherent Acoustics streams
ii libdconf1:armhf 0.38.0-2 armhf simple configuration storage system - runtime library
ii libde265-0:armhf 1.0.11-0+deb11u1+rpi1 armhf Open H.265 video codec implementation
ii libdebconfclient0:armhf 0.260 armhf Debian Configuration Management System (C-implementation library)
ii libdebuginfod1:armhf 0.183-1 armhf library to interact with debuginfod (development files)
ii libdeflate0:armhf 1.7-1 armhf fast, whole-buffer DEFLATE-based compression and decompression
ii libdevel-callchecker-perl 0.008-1+b2 armhf custom op checking attached to subroutines
ii libdevel-caller-perl 2.06-2+b3 armhf module providing enhanced caller() support
ii libdevel-globaldestruction-perl 0.14-1.1 all module to expose the flag that marks global destruction
ii libdevel-lexalias-perl 0.05-2+b3 armhf Perl module that provides alias lexical variables
ii libdevel-stacktrace-perl 2.0400-1 all Perl module containing stack trace and related objects
ii libdevice-serialport-perl 1.04-3+b8 armhf emulation of Win32::SerialPort for Linux/POSIX
ii libdevmapper1.02.1:armhf 2:1.02.175-2.1 armhf Linux Kernel Device Mapper userspace library
ii libdirectfb-1.2-9:armhf 1.2.10.0-8+deb9u1 armhf direct frame buffer graphics (shared libraries)
ii libdjvulibre-text 3.5.28-2 all Linguistic support files for libdjvulibre
ii libdjvulibre21:armhf 3.5.28-2 armhf Runtime support for the DjVu image format
ii libdlt2:armhf 2.18.6-1+deb11u1 armhf Diagnostic Log and Trace (DLT) library
ii libdns-export1110 1:9.11.19+dfsg-2.1 armhf Exported DNS Shared Library
ii libdns-export162 1:9.10.3.dfsg.P4-12.3+deb9u4 armhf Exported DNS Shared Library
ii libdns162:armhf 1:9.10.3.dfsg.P4-12.3+deb9u4 armhf DNS Shared Library used by BIND
ii libdouble-conversion3:armhf 3.1.5-6.1 armhf routines to convert IEEE floats to and from strings
ii libdpkg-perl 1.20.12+rpi1 all Dpkg perl modules
ii libdrm-amdgpu1:armhf 2.4.104-1+rpi1 armhf Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii libdrm-common 2.4.104-1+rpi1 all Userspace interface to kernel DRM services -- common files
ii libdrm-freedreno1:armhf 2.4.104-1+rpi1 armhf Userspace interface to msm/kgsl kernel DRM services -- runtime
ii libdrm-nouveau2:armhf 2.4.104-1+rpi1 armhf Userspace interface to nouveau-specific kernel DRM services -- runtime
ii libdrm-radeon1:armhf 2.4.104-1+rpi1 armhf Userspace interface to radeon-specific kernel DRM services -- runtime
ii libdrm2:armhf 2.4.104-1+rpi1 armhf Userspace interface to kernel DRM services -- runtime
ii libdv4:armhf 1.0.0-13 armhf software library for DV format digital video (runtime lib)
ii libdvdnav4:armhf 6.1.0-1+b1 armhf DVD navigation library
ii libdvdread4:armhf 6.0.1-1 armhf library for reading DVDs
ii libdvdread8:armhf 6.1.1-2 armhf library for reading DVDs
ii libdw1:armhf 0.183-1 armhf library that provides access to the DWARF debug information
ii libdynaloader-functions-perl 0.003-1.1 all deconstructed dynamic C library loading
ii libebur128-1:armhf 1.2.5-1 armhf implementation of the EBU R128 loudness standard
ii libedit2:armhf 3.1-20191231-2 armhf BSD editline and history libraries
ii libegl-mesa0:armhf 20.3.5-1+rpi1 armhf free implementation of the EGL API -- Mesa vendor library
ii libegl1:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library -- EGL support
ii libelf1:armhf 0.183-1 armhf library to read and write ELF files
ii libemail-abstract-perl 3.008-2 all unified interface to mail representations
ii libemail-address-xs-perl 1.04-1+b4 armhf Perl library for RFC 5322 address/group parsing and formatting
ii libemail-date-format-perl 1.005-1.1 all Module to generate RFC-2822-valid date strings
ii libemail-messageid-perl 1.406-1 all Perl library for unique mail Message-ID generation
ii libemail-mime-contenttype-perl 1.026-1 all Perl module to parse a MIME Content-Type header
ii libemail-mime-encodings-perl 1.315-2 all unified interface to MIME encoding and decoding
ii libemail-mime-perl 1.949-1 all module for simple MIME message parsing
ii libemail-sender-perl 1.300035-1 all Perl module for sending email
ii libemail-simple-perl 2.216-1 all module to parse RFC2822 headers and message format
ii libenca0:armhf 1.19-1 armhf Extremely Naive Charset Analyser - shared library files
ii libencode-locale-perl 1.05-1.1 all utility to determine the locale encoding
ii libepoxy0:armhf 1.5.5-1 armhf OpenGL function pointer management library
ii liberror-perl 0.17029-1 all Perl module for error/exception handling in an OO-ish way
ii libesd0:armhf 0.2.41-11+b1 armhf Enlightened Sound Daemon - Shared libraries
ii libestr0:armhf 0.1.10-2.1 armhf Helper functions for handling strings (lib)
ii libev4:armhf 1:4.33-1 armhf high-performance event loop library modelled after libevent
ii libeval-closure-perl 0.14-1 all Perl module to safely and cleanly create closures via string eval
ii libevdev2:armhf 1.11.0+dfsg-1+rpi1 armhf wrapper library for evdev devices
ii libevent-2.0-5:armhf 2.0.21-stable-3 armhf Asynchronous event notification library
ii libevent-2.1-7:armhf 2.1.12-stable-1 armhf Asynchronous event notification library
ii libexception-class-perl 1.44-1 all module that allows you to declare real exception classes in Perl
ii libexif12:armhf 0.6.22-3 armhf library to parse EXIF files
ii libexpat1:armhf 2.2.10-2+deb11u5 armhf XML parsing C library - runtime library
ii libexpat1-dev:armhf 2.2.10-2+deb11u5 armhf XML parsing C library - development kit
ii libexporter-tiny-perl 1.002002-1 all tiny exporter similar to Sub::Exporter
ii libext2fs2:armhf 1.46.2-2 armhf ext2/ext3/ext4 file system libraries
ii libfaad2:armhf 2.10.0-1 armhf freeware Advanced Audio Decoder - runtime files
ii libfakeroot:armhf 1.25.3-1.1 armhf tool for simulating superuser privileges - shared libraries
ii libfam0:armhf 2.7.0-17.3+b2 armhf Client library to control the FAM daemon
ii libfastjson4:armhf 0.99.9-1 armhf fast json library for C
ii libfcgi-perl:armhf 0.79+ds-2 armhf helper module for FastCGI
ii libfcgi0ldbl:armhf 2.4.2-2 armhf shared library of FastCGI
ii libfdisk1:armhf 2.36.1-8+deb11u1 armhf fdisk partitioning library
ii libfdt1:armhf 1.6.0-1 armhf Flat Device Trees manipulation library
ii libffi-dev:armhf 3.3-6 armhf Foreign Function Interface library (development files)
ii libffi6:armhf 3.2.1-9+rpi1 armhf Foreign Function Interface library runtime
ii libffi7:armhf 3.3-6 armhf Foreign Function Interface library runtime
ii libfftw3-double3:armhf 3.3.8-2 armhf Library for computing Fast Fourier Transforms - Double precision
ii libfftw3-single3:armhf 3.3.8-2 armhf Library for computing Fast Fourier Transforms - Single precision
ii libfido2-1:armhf 1.6.0-2 armhf library for generating and verifying FIDO 2.0 objects
ii libfile-basedir-perl 0.08-1 all Perl module to use the freedesktop basedir specification
ii libfile-copy-recursive-perl 0.45-1 all Perl extension for recursively copying files and directories
ii libfile-desktopentry-perl 0.22-2 all Perl module to handle freedesktop .desktop files
ii libfile-fcntllock-perl 0.22-3+b7 armhf Perl module for file locking with fcntl(2)
ii libfile-find-rule-perl 0.34-1 all module to search for files based on rules
ii libfile-homedir-perl 1.006-1 all Perl module for finding user directories across platforms
ii libfile-listing-perl 6.14-1 all module to parse directory listings
ii libfile-mimeinfo-perl 0.30-1 all Perl module to determine file types
ii libfile-monitor-perl 1.00-1.1 all module to monitor file and directory changes
ii libfile-pushd-perl 1.016-1 all module for changing directory temporarily for a limited scope
ii libfile-sharedir-perl 1.118-1 all module to locate non-code files during run-time
ii libfile-slurp-perl 9999.32-1 all single call read & write file routines
ii libfile-slurp-tiny-perl 0.004-1 all simple, sane and efficient file slurper
ii libfile-which-perl 1.23-1 all Perl module for searching paths for executable programs
ii libflac-dev:armhf 1.3.3-2+deb11u1 armhf Free Lossless Audio Codec - C development library
ii libflac8:armhf 1.3.3-2+deb11u1 armhf Free Lossless Audio Codec - runtime C library
ii libflite1:armhf 2.2-2 armhf Small run-time speech synthesis engine - shared libraries
ii libfont-afm-perl 1.20-3 all Perl interface to Adobe Font Metrics files
ii libfontconfig-dev:armhf 2.13.1-4.2 armhf generic font configuration library - development
ii libfontconfig1:armhf 2.13.1-4.2 armhf generic font configuration library - runtime
ii libfontconfig1-dev:armhf 2.13.1-4.2 armhf generic font configuration library - dummy package
ii libfontenc1:armhf 1:1.1.4-1 armhf X11 font encoding library
ii libfreetype-dev:armhf 2.10.4+dfsg-1+deb11u1 armhf FreeType 2 font engine, development files
ii libfreetype6:armhf 2.10.4+dfsg-1+deb11u1 armhf FreeType 2 font engine, shared library files
ii libfreetype6-dev:armhf 2.10.4+dfsg-1+deb11u1 armhf FreeType 2 font engine, development files (transitional package)
ii libfreezethaw-perl 0.5001-2.1 all module to serialize and deserialize Perl data structures
ii libfribidi0:armhf 1.0.8-2+deb11u1 armhf Free Implementation of the Unicode BiDi algorithm
ii libfstrm0:armhf 0.6.0-1+b1 armhf Frame Streams (fstrm) library
ii libfuse2:armhf 2.9.9-5 armhf Filesystem in Userspace (library)
ii libgail-common:armhf 2.24.33-2 armhf GNOME Accessibility Implementation Library -- common modules
ii libgail18:armhf 2.24.33-2 armhf GNOME Accessibility Implementation Library -- shared libraries
ii libgbm1:armhf 20.3.5-1+rpi1 armhf generic buffer management API -- runtime
ii libgcc-10-dev:armhf 10.2.1-6+rpi1 armhf GCC support library (development files)
ii libgcc-4.9-dev:armhf 4.9.4-2+rpi1+b19 armhf GCC support library (development files)
ii libgcc-6-dev:armhf 6.5.0-1+rpi1+b1 armhf GCC support library (development files)
ii libgcc-8-dev:armhf 8.4.0-7+rpi1 armhf GCC support library (development files)
ii libgcc-s1:armhf 10.2.1-6+rpi1 armhf GCC support library
ii libgcrypt20:armhf 1.8.7-6 armhf LGPL Crypto library - runtime library
ii libgd3:armhf 2.3.0-2 armhf GD Graphics Library
ii libgdbm-compat4:armhf 1.19-2 armhf GNU dbm database routines (legacy support runtime version)
ii libgdbm3:armhf 1.8.3-14 armhf GNU dbm database routines (runtime version)
ii libgdbm6:armhf 1.19-2 armhf GNU dbm database routines (runtime version)
ii libgdk-pixbuf-2.0-0:armhf 2.42.2+dfsg-1+deb11u1 armhf GDK Pixbuf library
ii libgdk-pixbuf-xlib-2.0-0:armhf 2.40.2-2 armhf GDK Pixbuf library (deprecated Xlib integration)
ii libgdk-pixbuf2.0-0:armhf 2.40.2-2 armhf GDK Pixbuf library (transitional package)
ii libgdk-pixbuf2.0-bin 2.42.2+dfsg-1+deb11u1 armhf GDK Pixbuf library (thumbnailer)
ii libgdk-pixbuf2.0-common 2.42.2+dfsg-1+deb11u1 all GDK Pixbuf library - data files
ii libgeoip1:armhf 1.6.12-7+b1 armhf non-DNS IP-to-country resolver library
ii libgetopt-long-descriptive-perl 0.105-1 all module that handles command-line arguments with usage text
ii libgettextpo-dev:armhf 0.21-4 armhf process PO files - static libraries and headers
ii libgettextpo0:armhf 0.21-4 armhf process PO files - shared library
ii libgfapi0:armhf 9.2-1 armhf GlusterFS gfapi shared library
ii libgfortran3:armhf 6.5.0-1+rpi1+b1 armhf Runtime library for GNU Fortran applications
ii libgfortran5:armhf 10.2.1-6+rpi1 armhf Runtime library for GNU Fortran applications
ii libgfrpc0:armhf 9.2-1 armhf GlusterFS libgfrpc shared library
ii libgfxdr0:armhf 9.2-1 armhf GlusterFS libgfxdr shared library
ii libgif-dev 5.1.9-2 armhf library for GIF images (development)
ii libgif7:armhf 5.1.9-2 armhf library for GIF images (library)
ii libgirepository-1.0-1:armhf 1.66.1-1+b1 armhf Library for handling GObject introspection data (runtime library)
ii libgl1:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library -- legacy GL support
ii libgl1-mesa-dri:armhf 20.3.5-1+rpi1 armhf free implementation of the OpenGL API -- DRI modules
ii libgl1-mesa-glx:armhf 20.3.5-1+rpi1 armhf transitional dummy package
ii libglapi-mesa:armhf 20.3.5-1+rpi1 armhf free implementation of the GL API -- shared library
ii libgles2:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library -- GLESv2 support
ii libgles2-mesa:armhf 20.3.5-1+rpi1 armhf transitional dummy package
ii libglib2.0-0:armhf 2.66.8-1 armhf GLib library of C routines
ii libglib2.0-bin 2.66.8-1 armhf Programs for the GLib library
ii libglib2.0-data 2.66.8-1 all Common files for GLib library
ii libglib2.0-dev:armhf 2.66.8-1 armhf Development files for the GLib library
ii libglib2.0-dev-bin 2.66.8-1 armhf Development utilities for the GLib library
ii libglusterfs0:armhf 9.2-1 armhf GlusterFS shared library
ii libglvnd0:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library
ii libglx-mesa0:armhf 20.3.5-1+rpi1 armhf free implementation of the OpenGL API -- GLX vendor library
ii libglx0:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library -- GLX support
ii libgme0:armhf 0.6.3-2 armhf Playback library for video game music files - shared library
ii libgmp10:armhf 2:6.2.1+dfsg-1+deb11u1 armhf Multiprecision arithmetic library
ii libgnutls-openssl27:armhf 3.7.1-5+deb11u3 armhf GNU TLS library - OpenSSL wrapper
ii libgnutls30:armhf 3.7.1-5+deb11u3 armhf GNU TLS library - main runtime library
ii libgomp1:armhf 10.2.1-6+rpi1 armhf GCC OpenMP (GOMP) support library
ii libgpg-error-dev 1.38-2 armhf GnuPG development runtime library (developer tools)
ii libgpg-error-l10n 1.38-2 all library of error values and messages in GnuPG (localization files)
ii libgpg-error0:armhf 1.38-2 armhf GnuPG development runtime library
ii libgpgme-dev 1.14.0-1+b1 armhf GPGME - GnuPG Made Easy (development files)
ii libgpgme11:armhf 1.14.0-1+b1 armhf GPGME - GnuPG Made Easy (library)
ii libgpm2:armhf 1.20.7-8 armhf General Purpose Mouse - shared library
ii libgraphite2-3:armhf 1.3.14-1 armhf Font rendering engine for Complex Scripts -- library
ii libgs9:armhf 9.53.3~dfsg-7+deb11u2 armhf interpreter for the PostScript language and for PDF - Library
ii libgs9-common 9.53.3~dfsg-7+deb11u2 all interpreter for the PostScript language and for PDF - common files
ii libgsasl7:armhf 1.10.0-4+deb11u1 armhf GNU SASL library
ii libgsm1:armhf 1.0.18-2 armhf Shared libraries for GSM speech compressor
ii libgssapi-krb5-2:armhf 1.18.3-6+deb11u3 armhf MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgstreamer-plugins-base1.0-0:armhf 1.18.4-2 armhf GStreamer libraries from the "base" set
ii libgstreamer1.0-0:armhf 1.18.4-2.1 armhf Core GStreamer libraries and elements
ii libgtk-3-0:armhf 3.24.24-4+deb11u2 armhf GTK graphical user interface library
ii libgtk-3-bin 3.24.24-4+deb11u2 armhf programs for the GTK graphical user interface library
ii libgtk-3-common 3.24.24-4+deb11u2 all common files for the GTK graphical user interface library
ii libgtk2.0-0:armhf 2.24.33-2 armhf GTK graphical user interface library - old version
ii libgtk2.0-bin 2.24.33-2 armhf programs for the GTK graphical user interface library
ii libgtk2.0-common 2.24.33-2 all common files for the GTK graphical user interface library
ii libgudev-1.0-0:armhf 234-1 armhf GObject-based wrapper library for libudev
ii libharfbuzz0b:armhf 2.7.4-1 armhf OpenType text shaping engine (shared library)
ii libhash-flatten-perl 1.19-2 all flatten/unflatten complex data hashes
ii libhash-merge-perl 0.302-1 all Perl module for merging arbitrarily deep hashes into a single hash
ii libhcrypto4-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - crypto library
ii libhdb9-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - kadmin server library
ii libheif1:armhf 1.11.0-1 armhf ISO/IEC 23008-12:2017 HEIF file format decoder - shared library
ii libheimbase1-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - Base library
ii libhogweed4:armhf 3.4.1-1+deb10u1 armhf low level cryptographic library (public-key cryptos)
ii libhogweed6:armhf 3.7.3-1 armhf low level cryptographic library (public-key cryptos)
ii libhtml-form-perl 6.07-1 all module that represents an HTML form element
ii libhtml-format-perl 2.12-1.1 all module for transforming HTML into various formats
ii libhtml-parser-perl 3.75-1+b1 armhf collection of modules that parse HTML text documents
ii libhtml-tagset-perl 3.20-4 all data tables pertaining to HTML
ii libhtml-template-perl 2.97-1.1 all module for using HTML templates with Perl
ii libhtml-tree-perl 5.07-2 all Perl module to represent and create HTML syntax trees
ii libhttp-cookies-perl 6.10-1 all HTTP cookie jars
ii libhttp-daemon-perl 6.12-1+deb11u1 all simple http server class
ii libhttp-date-perl 6.05-1 all module of date conversion routines
ii libhttp-message-perl 6.28-1 all perl interface to HTTP style messages
ii libhttp-negotiate-perl 6.01-1 all implementation of content negotiation
ii libhx509-5-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - X509 support library
ii libhyphen0:armhf 2.8.8-7 armhf ALTLinux hyphenation library - shared library
ii libi2c0:armhf 4.2-1+b1 armhf userspace I2C programming library
ii libibverbs1:armhf 33.2-1 armhf Library for direct userspace use of RDMA (InfiniBand/iWARP)
ii libice-dev:armhf 2:1.0.10-1 armhf X11 Inter-Client Exchange library (development headers)
ii libice6:armhf 2:1.0.10-1 armhf X11 Inter-Client Exchange library
ii libicu57:armhf 57.1-6+deb9u2 armhf International Components for Unicode
ii libicu67:armhf 67.1-7 armhf International Components for Unicode
ii libid3tag0:armhf 0.15.1b-14 armhf ID3 tag reading library from the MAD project
ii libident 0.22-3.1 armhf simple RFC1413 client library - runtime
ii libidn11:armhf 1.33-3 armhf GNU Libidn library, implementation of IETF IDN specifications
ii libidn2-0:armhf 2.3.0-5 armhf Internationalized domain names (IDNA2008/TR46) library
ii libiec61883-0:armhf 1.2.0-4 armhf partial implementation of IEC 61883 (shared lib)
ii libijs-0.35:armhf 0.35-15 armhf IJS raster image transport protocol: shared library
ii libilmbase12:armhf 2.2.0-12 armhf several utility libraries from ILM used by OpenEXR
ii libilmbase25:armhf 2.5.4-1 armhf several utility libraries from ILM used by OpenEXR
ii libimport-into-perl 1.002005-1 all module for importing packages into other packages
ii libinput-bin 1.16.4-3 armhf input device management and event handling library - udev quirks
ii libinput10:armhf 1.16.4-3 armhf input device management and event handling library - shared library
ii libio-all-lwp-perl 0.14-2.1 all Perl module to use HTTP and FTP URLs with IO::All
ii libio-all-perl 0.87-1 all Perl module for unified IO operations
ii libio-html-perl 1.004-2 all open an HTML file with automatic charset detection
ii libio-interface-perl 1.09-2 armhf socket methods to get/set interface characteristics
ii libio-socket-multicast-perl 1.12-2+b7 armhf module for sending and receiving multicast messages
ii libio-socket-ssl-perl 2.069-1 all Perl module implementing object oriented interface to SSL sockets
ii libio-socket-timeout-perl 0.32-1 all IO::Socket with read/write timeout
ii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)
ii libip4tc0:armhf 1.8.2-4 armhf netfilter libip4tc library
ii libip4tc2:armhf 1.8.7-1 armhf netfilter libip4tc library
ii libip6tc0:armhf 1.8.2-4 armhf netfilter libip6tc library
ii libip6tc2:armhf 1.8.7-1 armhf netfilter libip6tc library
ii libipc-run3-perl 0.048-2 all run a subprocess with input/output redirection
ii libipc-system-simple-perl 1.30-1 all Perl module to run commands simply, with detailed diagnostics
ii libiptc0:armhf 1.8.7-1 armhf transitional dummy package
ii libisc-export1105:armhf 1:9.11.19+dfsg-2.1 armhf Exported ISC Shared Library
ii libisc-export160 1:9.10.3.dfsg.P4-12.3+deb9u4 armhf Exported ISC Shared Library
ii libisc160:armhf 1:9.10.3.dfsg.P4-12.3+deb9u4 armhf ISC Shared Library used by BIND
ii libisccc140:armhf 1:9.10.3.dfsg.P4-12.3+deb9u4 armhf Command Channel Library used by BIND
ii libisccfg140:armhf 1:9.10.3.dfsg.P4-12.3+deb9u4 armhf Config File Handling Library used by BIND
ii libisl15:armhf 0.18-4 armhf manipulating sets and relations of integer points bounded by linear constraints
ii libisl19:armhf 0.20-2 armhf manipulating sets and relations of integer points bounded by linear constraints
ii libisl23:armhf 0.23-1 armhf manipulating sets and relations of integer points bounded by linear constraints
ii libiw30:armhf 30~pre9-13.1 armhf Wireless tools - library
ii libjack-jackd2-0:armhf 1.9.17~dfsg-1 armhf JACK Audio Connection Kit (libraries)
ii libjansson4:armhf 2.13.1-1.1 armhf C library for encoding, decoding and manipulating JSON data
ii libjasper1:armhf 1.900.1-debian1-2.4+deb8u1+b1 armhf JasPer JPEG-2000 runtime library
ii libjbig0:armhf 2.1-3.1+b2 armhf JBIGkit libraries
ii libjbig2dec0:armhf 0.19-2 armhf JBIG2 decoder library - shared libraries
ii libjemalloc1 3.6.0-9.1 armhf general-purpose scalable concurrent malloc(3) implementation
ii libjim0.76:armhf 0.76-2 armhf small-footprint implementation of Tcl - shared library
ii libjim0.79:armhf 0.79+dfsg0-2 armhf small-footprint implementation of Tcl - shared library
ii libjpeg-dev:armhf 1:2.0.6-4 armhf Development files for the JPEG library [dummy package]
ii libjpeg62-turbo:armhf 1:2.0.6-4 armhf libjpeg-turbo JPEG runtime library
ii libjpeg62-turbo-dev:armhf 1:2.0.6-4 armhf Development files for the libjpeg-turbo JPEG library
ii libjpeg8:armhf 8d1-2 armhf Independent JPEG Group's JPEG runtime library
ii libjq1:armhf 1.6-2.1 armhf lightweight and flexible command-line JSON processor - shared library
ii libjs-jquery 3.5.1+dfsg+~3.5.5-7 all JavaScript library for dynamic web applications
ii libjs-sphinxdoc 3.4.3-2 all JavaScript support for Sphinx documentation
ii libjs-underscore 1.9.1~dfsg-3 all JavaScript's functional programming helper library
ii libjson-c5:armhf 0.15-2 armhf JSON manipulation library - shared library
ii libjson-glib-1.0-0:armhf 1.6.2-1 armhf GLib JSON manipulation library
ii libjson-glib-1.0-common 1.6.2-1 all GLib JSON manipulation library (common files)
ii libjson-perl 4.03000-1 all module for manipulating JSON-formatted data
ii libjson-xs-perl 4.030-1+b1 armhf module for manipulating JSON-formatted data (C/XS-accelerated)
ii libjxr-tools 1.1-6 armhf JPEG-XR lib - command line apps
ii libjxr0:armhf 1.1-6 armhf JPEG-XR lib - libraries
ii libk5crypto3:armhf 1.18.3-6+deb11u3 armhf MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1:armhf 1.6.1-2 armhf Linux Key Management Utilities (library)
ii libklibc:armhf 2.0.8-6.1+rpi1 armhf minimal libc subset for use with initramfs
ii libkmod2:armhf 28-1 armhf libkmod shared library
ii libkrb5-26-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - libraries
ii libkrb5-3:armhf 1.18.3-6+deb11u3 armhf MIT Kerberos runtime libraries
ii libkrb5support0:armhf 1.18.3-6+deb11u3 armhf MIT Kerberos runtime libraries - Support library
ii libksba8:armhf 1.5.0-3+deb11u2 armhf X.509 and CMS support library
ii liblapack3:armhf 3.9.0-3 armhf Library of linear algebra routines 3 - shared version
ii liblcms2-2:armhf 2.12~rc1-2 armhf Little CMS 2 color management library
ii libldap-2.4-2:armhf 2.4.57+dfsg-3+deb11u1 armhf OpenLDAP libraries
ii libldap-common 2.4.57+dfsg-3+deb11u1 all OpenLDAP common files for libraries
ii libldb2:armhf 2:2.2.3-2~deb11u2 armhf LDAP-like embedded database - shared library
ii liblilv-0-0:armhf 0.24.12-2 armhf library for simple use of LV2 plugins
ii liblinear3:armhf 2.1.0+dfsg-4 armhf Library for Large Linear Classification
ii liblinear4:armhf 2.3.0+dfsg-5 armhf Library for Large Linear Classification
ii liblirc-client0:armhf 0.10.1-6.3 armhf infra-red remote control support - client library
ii liblircclient0 0.10.1-6.3 armhf Transitional placeholder for obsoleted liblircclient0
ii liblist-allutils-perl 0.18-1 all Perl wrapper for modules List::Util and List::MoreUtils
ii liblist-moreutils-perl 0.430-2 all Perl module with additional list functions not found in List::Util
ii liblist-moreutils-xs-perl 0.430-2 armhf Perl module providing compiled List::MoreUtils functions
ii liblist-someutils-perl 0.58-1 all module that provides the stuff missing in List::Util
ii liblist-utilsby-perl 0.11-1 all higher-order list utility functions
ii libllvm11:armhf 1:11.0.1-2+rpi1 armhf Modular compiler and toolchain technologies, runtime library
ii libllvm3.7:armhf 1:3.7.1-5 armhf Modular compiler and toolchain technologies, runtime library
ii liblmdb0:armhf 0.9.24-1 armhf Lightning Memory-Mapped Database shared library
ii liblocal-lib-perl 2.000024-1 all module to use a local path for Perl modules
ii liblocale-gettext-perl 1.07-4+b1 armhf module using libc functions for internationalization in Perl
ii liblockfile-bin 1.17-1 armhf support binaries for and cli utilities based on liblockfile
ii liblockfile1:armhf 1.17-1 armhf NFS-safe locking library
ii liblog-message-perl 0.8-1.1 all powerful and flexible message logging mechanism
ii liblog-message-simple-perl 0.10-3 all simplified interface to Log::Message
ii liblog-trace-perl 1.070-3 all Perl module to provide a unified approach to tracing
ii liblogging-stdlog0:armhf 1.0.6-3 armhf easy to use and lightweight logging library
ii liblognorm5:armhf 2.0.5-1.1 armhf log normalizing library
ii liblqr-1-0:armhf 0.4.2-2.1 armhf converts plain array images into multi-size representation
ii libltdl-dev:armhf 2.4.6-15 armhf System independent dlopen wrapper for GNU libtool
ii libltdl7:armhf 2.4.6-15 armhf System independent dlopen wrapper for GNU libtool
ii liblua5.1-0:armhf 5.1.5-8.1+b2 armhf Shared library for the Lua interpreter version 5.1
ii liblua5.2-0:armhf 5.2.4-1.1+b2 armhf Shared library for the Lua interpreter version 5.2
ii liblua5.3-0:armhf 5.3.3-1.1+b1 armhf Shared library for the Lua interpreter version 5.3
ii libluajit-5.1-2:armhf 2.1.0~beta3+dfsg-5.3 armhf Just in time compiler for Lua - library version
ii libluajit-5.1-common 2.1.0~beta3+dfsg-5.3 all Just in time compiler for Lua - common files
ii liblwp-mediatypes-perl 6.04-1 all module to guess media type for a file or a URL
ii liblwp-protocol-https-perl 6.10-1 all HTTPS driver for LWP::UserAgent
ii liblwres141:armhf 1:9.10.3.dfsg.P4-12.3+deb9u4 armhf Lightweight Resolver Library used by BIND
ii liblz4-1:armhf 1.9.3-2 armhf Fast LZ compression algorithm library - runtime
ii liblzma5:armhf 5.2.5-2.1~deb11u1 armhf XZ-format compression library
ii liblzo2-2:armhf 2.10-2 armhf data compression library
ii libmad0:armhf 0.15.1b-10 armhf MPEG audio decoder library
ii libmagic-mgc 1:5.39-3 armhf File type determination library using "magic" numbers (compiled magic file)
ii libmagic1:armhf 1:5.39-3 armhf Recognize the type of data in a file using "magic" numbers - library
ii libmagickcore-6.q16-3:armhf 8:6.9.7.4+dfsg-11+deb9u6 armhf low-level image manipulation library -- quantum depth Q16
ii libmagickcore-6.q16-3-extra:armhf 8:6.9.7.4+dfsg-11+deb9u6 armhf low-level image manipulation library - extra codecs (Q16)
ii libmagickcore-6.q16-6:armhf 8:6.9.11.60+dfsg-1.3+deb11u1 armhf low-level image manipulation library -- quantum depth Q16
ii libmagickcore-6.q16-6-extra:armhf 8:6.9.11.60+dfsg-1.3+deb11u1 armhf low-level image manipulation library - extra codecs (Q16)
ii libmagickwand-6.q16-3:armhf 8:6.9.7.4+dfsg-11+deb9u6 armhf image manipulation library -- quantum depth Q16
ii libmagickwand-6.q16-6:armhf 8:6.9.11.60+dfsg-1.3+deb11u1 armhf image manipulation library -- quantum depth Q16
ii libmailtools-perl 2.21-1 all modules to manipulate email in perl programs
ii libmariadb3:armhf 1:10.5.15-0+deb11u1 armhf MariaDB database client library
ii libmath-base85-perl 0.5+dfsg-1 all Perl extension for base 85 numbers, as referenced by RFC 1924
ii libmath-bigint-perl 1.999818-1 all arbitrary size integer/float math package
ii libmaxminddb0:armhf 1.5.2-1 armhf IP geolocation database library
ii libmbim-glib4:armhf 1.24.6-0.1 armhf Support library to use the MBIM protocol
ii libmbim-proxy 1.24.6-0.1 armhf Proxy to communicate with MBIM ports
ii libmcrypt4 2.5.8-3.4 armhf De-/Encryption Library
ii libmd0:armhf 1.0.3-3 armhf message digest functions from BSD systems - shared library
ii libmd4c0:armhf 0.4.7-2 armhf Markdown for C
ii libmikmod3:armhf 3.3.11.1-6 armhf Portable sound library
ii libmime-types-perl 2.18-1 all Perl extension for determining MIME types and Transfer Encoding
ii libmm-glib0:armhf 1.14.12-0.2 armhf D-Bus service for managing modems - shared libraries
ii libmnl-dev:armhf 1.0.4-3 armhf minimalistic Netlink communication library (devel)
ii libmnl0:armhf 1.0.4-3 armhf minimalistic Netlink communication library
ii libmodule-build-perl 0.423100-1 all framework for building and installing Perl modules
ii libmodule-cpanfile-perl 1.1004-1 all format for describing CPAN dependencies of Perl applications
ii libmodule-implementation-perl 0.09-1.1 all module for loading one of several alternate implementations of a module
ii libmodule-load-conditional-perl 0.74-1 all module for looking up information about modules
ii libmodule-pluggable-perl 5.2-1 all module for giving modules the ability to have plugins
ii libmodule-runtime-perl 0.016-1 all Perl module for runtime module handling
ii libmodule-signature-perl 0.87-1 all module to manipulate CPAN SIGNATURE files
ii libmoo-perl 2.004004-1 all Minimalist Object Orientation library (with Moose compatibility)
ii libmoox-handlesvia-perl 0.001009-1 all Moose Native Traits-like behavior for Moo
ii libmoox-types-mooselike-perl 0.29-1.1 all module providing some Moosish types and a type builder
ii libmosquitto1:armhf 2.0.11-1 armhf MQTT version 5.0/3.1.1/3.1 client library
ii libmount-dev:armhf 2.36.1-8+deb11u1 armhf device mounting library - headers
ii libmount1:armhf 2.36.1-8+deb11u1 armhf device mounting library
ii libmp3lame0:armhf 3.100-3 armhf MP3 encoding library
ii libmpc3:armhf 1.2.0-1 armhf multiple precision complex floating-point library
ii libmpdec2:armhf 2.4.2-2 armhf library for decimal floating point arithmetic (runtime library)
ii libmpdec3:armhf 2.5.1-1+rpi1 armhf library for decimal floating point arithmetic (runtime library)
ii libmpfr4:armhf 3.1.5-1 armhf multiple precision floating-point computation
ii libmpfr6:armhf 4.1.0-3 armhf multiple precision floating-point computation
ii libmpg123-0:armhf 1.26.4-1 armhf MPEG layer 1/2/3 audio decoder (shared library)
ii libmro-compat-perl 0.13-1 all mro::* interface compatibility for Perls < 5.9.5
ii libmtdev1:armhf 1.1.6-1 armhf Multitouch Protocol Translation Library - shared library
ii libmtp-common 1.1.17-3 all Media Transfer Protocol (MTP) common files
ii libmtp-runtime 1.1.17-3 armhf Media Transfer Protocol (MTP) runtime tools
ii libmtp9:armhf 1.1.17-3 armhf Media Transfer Protocol (MTP) library
ii libmysofa1:armhf 1.2~dfsg0-1 armhf library to read HRTFs stored in the AES69-2015 SOFA format
ii libnamespace-autoclean-perl 0.29-1 all module to remove imported symbols after compilation
ii libnamespace-clean-perl 0.27-1 all module for keeping imports and functions out of the current namespace
ii libncurses5:armhf 6.2+20201114-2 armhf shared libraries for terminal handling (legacy version)
ii libncurses6:armhf 6.2+20201114-2 armhf shared libraries for terminal handling
ii libncursesw5:armhf 6.2+20201114-2 armhf shared libraries for terminal handling (wide character legacy version)
ii libncursesw6:armhf 6.2+20201114-2 armhf shared libraries for terminal handling (wide character support)
ii libnet-dbus-perl 1.2.0-1+b1 armhf Perl extension for the DBus bindings
ii libnet-http-perl 6.20-1 all module providing low-level HTTP connection client
ii libnet-ipv6addr-perl 1.01-1 all module to validate/manipulate IPv6 addresses
ii libnet-libidn-perl 0.12.ds-3+b4 armhf Perl bindings for GNU Libidn
ii libnet-netmask-perl 1.9104-2 all module to parse, manipulate and lookup IP network blocks
ii libnet-smtp-ssl-perl 1.04-1 all Perl module providing SSL support to Net::SMTP
ii libnet-ssleay-perl 1.88-3+b1 armhf Perl module for Secure Sockets Layer (SSL)
ii libnet-subnet-perl 1.03-1.1 all Fast IP-in-subnet matcher module for IPv4 and IPv6
ii libnetaddr-ip-perl 4.079+dfsg-1+b5 armhf IP address manipulation module
ii libnetfilter-conntrack3:armhf 1.0.8-3 armhf Netfilter netlink-conntrack library
ii libnetpbm10 2:10.0-15.4 armhf Graphics conversion tools shared libraries
ii libnettle6:armhf 3.4.1-1+deb10u1 armhf low level cryptographic library (symmetric and one-way cryptos)
ii libnettle8:armhf 3.7.3-1 armhf low level cryptographic library (symmetric and one-way cryptos)
ii libnetwork-ipv4addr-perl 0.10.ds-3.1 all Perl extension for manipulating IPv4 addresses
ii libnewt0.52:armhf 0.52.21-4+b2 armhf Not Erik's Windowing Toolkit - text mode windowing with slang
ii libnfnetlink0:armhf 1.0.1-3+b1 armhf Netfilter netlink library
ii libnfsidmap2:armhf 0.25-6 armhf NFS idmapping library
ii libnftables1:armhf 0.9.8-3.1+deb11u1 armhf Netfilter nftables high level userspace API library
ii libnftnl11:armhf 1.1.9-1 armhf Netfilter nftables userspace API library
ii libnghttp2-14:armhf 1.43.0-1 armhf library implementing HTTP/2 protocol (shared library)
ii libnih-dbus1 1.0.3-11 armhf NIH D-Bus Bindings Library
ii libnih1 1.0.3-11 armhf NIH Utility Library
ii libnl-3-200:armhf 3.4.0-1 armhf library for dealing with netlink sockets
ii libnl-genl-3-200:armhf 3.4.0-1 armhf library for dealing with netlink sockets - generic netlink
ii libnl-route-3-200:armhf 3.4.0-1 armhf library for dealing with netlink sockets - route interface
ii libnorm1:armhf 1.5.9+dfsg-2 armhf NACK-Oriented Reliable Multicast (NORM) library
ii libnotify4:armhf 0.7.9-3 armhf sends desktop notifications to a notification daemon
ii libnpth0:armhf 1.6-3 armhf replacement for GNU Pth using system threads
ii libnsl-dev:armhf 1.3.0-2 armhf libnsl development files
ii libnsl2:armhf 1.3.0-2 armhf Public client interface for NIS(YP) and NIS+
ii libnspr4:armhf 2:4.29-1 armhf NetScape Portable Runtime Library
ii libnss-mdns:armhf 0.14.1-2 armhf NSS module for Multicast DNS name resolution
ii libnss-systemd:armhf 247.3-7+rpi1+deb11u1 armhf nss module providing dynamic user and group name resolution
ii libnss3:armhf 2:3.61-1+deb11u3 armhf Network Security Service libraries
ii libntdb1:armhf 1.0-9 armhf New Trivial Database - shared library
ii libntfs-3g883 1:2017.3.23AR.3-4+deb11u3 armhf read/write NTFS driver for FUSE (runtime library)
ii libntlm0:armhf 1.6-3 armhf NTLM authentication library
ii libnumber-compare-perl 0.03-1.1 all module for performing numeric comparisons in Perl
ii libogg-dev:armhf 1.3.4-0.1 armhf Ogg bitstream library development files
ii libogg0:armhf 1.3.4-0.1 armhf Ogg bitstream library
ii libonig5:armhf 6.9.6-1.1 armhf regular expressions library
ii libopenal-data 1:1.19.1-2 all Software implementation of the OpenAL audio API (data files)
ii libopenal1:armhf 1:1.19.1-2 armhf Software implementation of the OpenAL audio API (shared library)
ii libopencv-core2.4v5:armhf 2.4.9.1+dfsg1-2 armhf computer vision core library
ii libopencv-imgproc2.4v5:armhf 2.4.9.1+dfsg1-2 armhf computer vision Image Processing library
ii libopenexr22:armhf 2.2.0-11 armhf runtime files for the OpenEXR image library
ii libopenexr25:armhf 2.5.4-2+deb11u1 armhf runtime files for the OpenEXR image library
ii libopenjp2-7:armhf 2.4.0-3 armhf JPEG 2000 image compression/decompression library
ii libopenjpeg5:armhf 1:1.5.2-3.1+b5 armhf JPEG 2000 image compression/decompression library - runtime
ii libopenmpt0:armhf 0.4.11-1 armhf module music library based on OpenMPT -- shared library
ii libopus0:armhf 1.3.1-0.1 armhf Opus codec runtime library
ii liborc-0.4-0:armhf 1:0.4.32-1 armhf Library of Optimized Inner Loops Runtime Compiler
ii libout123-0:armhf 1.26.4-1 armhf MPEG layer 1/2/3 audio decoder (libout123 shared library)
ii libp11-kit0:armhf 0.23.22-1 armhf library for loading and coordinating access to PKCS#11 modules - runtime
ii libpackage-constants-perl 0.06-1 all module to list constants defined in a package
ii libpackage-stash-perl 0.39-1 all module providing routines for manipulating stashes
ii libpackage-stash-xs-perl 0.29-1+b2 armhf Perl module providing routines for manipulating stashes (XS version)
ii libpadwalker-perl 2.5-1+b1 armhf module to inspect and manipulate lexical variables
ii libpam-chksshpwd:armhf 1.1.8-3.6+rpi1 armhf PAM module to enable SSH password checking support
ii libpam-modules:armhf 1.4.0-9+deb11u1 armhf Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.4.0-9+deb11u1 armhf Pluggable Authentication Modules for PAM - helper binaries
ii libpam-runtime 1.4.0-9+deb11u1 all Runtime support for the PAM library
ii libpam-systemd:armhf 247.3-7+rpi1+deb11u1 armhf system and service manager - PAM module
ii libpam0g:armhf 1.4.0-9+deb11u1 armhf Pluggable Authentication Modules library
ii libpango-1.0-0:armhf 1.46.2-3 armhf Layout and rendering of internationalized text
ii libpangocairo-1.0-0:armhf 1.46.2-3 armhf Layout and rendering of internationalized text
ii libpangoft2-1.0-0:armhf 1.46.2-3 armhf Layout and rendering of internationalized text
ii libpaper-utils 1.1.28 armhf library for handling paper characteristics (utilities)
ii libpaper1:armhf 1.1.28 armhf library for handling paper characteristics
ii libparams-classify-perl 0.015-1+b3 armhf Perl module for argument type classification
ii libparams-util-perl 1.102-1+b1 armhf Perl extension for simple stand-alone param checking functions
ii libparams-validate-perl:armhf 1.30-1+b1 armhf Perl module to validate parameters to Perl method/function calls
ii libparams-validationcompiler-perl 0.30-1 all module to build an optimized subroutine parameter validator
ii libparse-pmfile-perl 0.43-1 all module to parse .pm file as PAUSE does
ii libparted2:armhf 3.4-1 armhf disk partition manipulator - shared library
ii libpath-tiny-perl 0.118-1 all file path utility
ii libpcap0.8:armhf 1.10.0-2 armhf system interface for user-level packet capture
ii libpci3:armhf 1:3.7.0-5 armhf PCI utilities (shared library)
ii libpcre16-3:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - 16 bit runtime files
ii libpcre2-16-0:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library - 16 bit runtime files
ii libpcre2-32-0:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library - 32 bit runtime files
ii libpcre2-8-0:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library- 8 bit runtime files
ii libpcre2-dev:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library - development files
ii libpcre2-posix2:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library - posix-compatible runtime files
ii libpcre3:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - runtime files
ii libpcre3-dev:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - development files
ii libpcre32-3:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - 32 bit runtime files
ii libpcrecpp0v5:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - C++ runtime files
ii libpcsclite1:armhf 1.9.1-1 armhf Middleware to access a smart card using PC/SC (library)
ii libperl4-corelibs-perl 0.004-2 all libraries historically supplied with Perl 4
ii libperl5.32:armhf 5.32.1-4+deb11u2 armhf shared Perl library
ii libperlio-via-timeout-perl 0.32-1 all PerlIO layer that adds read & write timeout to a handle
ii libpgm-5.2-0:armhf 5.2.122~dfsg-3 armhf OpenPGM shared library
ii libpgm-5.3-0:armhf 5.3.128~dfsg-2 armhf OpenPGM shared library
ii libpipeline1:armhf 1.5.3-1 armhf Unix process pipeline manipulation library
ii libpixman-1-0:armhf 0.40.0-1.1~deb11u1 armhf pixel-manipulation library for X and cairo
ii libpixman-1-dev:armhf 0.40.0-1.1~deb11u1 armhf pixel-manipulation library for X and cairo (development files)
ii libpkcs11-helper1:armhf 1.27-1 armhf library that simplifies the interaction with PKCS#11
ii libplymouth4:armhf 0.9.4-1.1 armhf graphical boot animation and logger - shared libraries
ii libplymouth5:armhf 0.9.5-3 armhf graphical boot animation and logger - shared libraries
ii libpng-dev:armhf 1.6.37-3 armhf PNG library - development (version 1.6)
ii libpng-tools 1.6.37-3 armhf PNG library - tools (version 1.6)
ii libpng12-0:armhf 1.2.54-6 armhf PNG library - runtime
ii libpng16-16:armhf 1.6.37-3 armhf PNG library - runtime (version 1.6)
ii libpocketsphinx3:armhf 0.8+5prealpha+1-13 armhf Speech recognition tool - front-end library
rc libpod-latex-perl 0.61-3 all module to convert Pod data to formatted LaTeX
ii libpod-markdown-perl 3.300000-1 all module to convert POD to the Markdown file format
ii libpod-readme-perl 1.2.3-1 all Perl module to convert POD to README file
ii libpolkit-agent-1-0:armhf 0.105-31+deb11u1 armhf PolicyKit Authentication Agent API
ii libpolkit-gobject-1-0:armhf 0.105-31+deb11u1 armhf PolicyKit Authorization API
ii libpopt0:armhf 1.18-2 armhf lib for parsing cmdline parameters
ii libportaudio2:armhf 19.6.0-1.1 armhf Portable audio I/O - shared library
ii libpostproc52 6:0.git20120821-4 armhf FFmpeg derived postprocessing library
ii libpostproc54:armhf 7:3.2.10-1~deb9u1+rpt2 armhf FFmpeg library for post processing - runtime files
ii libpostproc55:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library for post processing - runtime files
ii libpq5:armhf 13.9-0+deb11u1 armhf PostgreSQL C client library
ii libprocps6:armhf 2:3.3.12-3+deb9u1 armhf library for accessing process information from /proc
ii libprocps8:armhf 2:3.3.17-5 armhf library for accessing process information from /proc
ii libprotobuf-c1:armhf 1.3.3-1+b2 armhf Protocol Buffers C shared library (protobuf-c)
ii libproxy1v5:armhf 0.4.17-1 armhf automatic proxy configuration management library (shared)
ii libpsl5:armhf 0.21.0-1.2 armhf Library for Public Suffix List (shared libraries)
ii libpthread-stubs0-dev:armhf 0.4-1 armhf pthread stubs not provided by native libc, development files
ii libpulse0:armhf 14.2-2 armhf PulseAudio client libraries
ii libpython2-dev:armhf 2.7.18-3 armhf header files and a static library for Python2
ii libpython2-stdlib:armhf 2.7.18-3 armhf interactive high-level object-oriented language (Python2)
ii libpython2.7:armhf 2.7.18-8 armhf Shared Python runtime library (version 2.7)
ii libpython2.7-dev:armhf 2.7.18-8 armhf Header files and a static library for Python (v2.7)
ii libpython2.7-minimal:armhf 2.7.18-8 armhf Minimal subset of the Python language (version 2.7)
ii libpython2.7-stdlib:armhf 2.7.18-8 armhf Interactive high-level object-oriented language (standard library, version 2.7)
ii libpython3-dev:armhf 3.9.2-3 armhf header files and a static library for Python (default)
ii libpython3-stdlib:armhf 3.9.2-3 armhf interactive high-level object-oriented language (default python3 version)
ii libpython3.5:armhf 3.5.4-4 armhf Shared Python runtime library (version 3.5)
ii libpython3.5-minimal:armhf 3.5.4-4 armhf Minimal subset of the Python language (version 3.5)
ii libpython3.5-stdlib:armhf 3.5.4-4 armhf Interactive high-level object-oriented language (standard library, version 3.5)
ii libpython3.9:armhf 3.9.2-1+rpi1 armhf Shared Python runtime library (version 3.9)
ii libpython3.9-dev:armhf 3.9.2-1+rpi1 armhf Header files and a static library for Python (v3.9)
ii libpython3.9-minimal:armhf 3.9.2-1+rpi1 armhf Minimal subset of the Python language (version 3.9)
ii libpython3.9-stdlib:armhf 3.9.2-1+rpi1 armhf Interactive high-level object-oriented language (standard library, version 3.9)
ii libqdbm14 1.8.78-10 armhf QDBM Database Libraries without GDBM wrapper[runtime]
ii libqmi-glib5:armhf 1.26.10-0.1 armhf Support library to use the Qualcomm MSM Interface (QMI) protocol
ii libqmi-proxy 1.26.10-0.1 armhf Proxy to communicate with QMI ports
ii libqt5core5a:armhf 5.15.2+dfsg-9+rpi1 armhf Qt 5 core module
ii libqt5dbus5:armhf 5.15.2+dfsg-9+rpi1 armhf Qt 5 D-Bus module
ii libqt5gui5:armhf 5.15.2+dfsg-9+rpi1 armhf Qt 5 GUI module
ii libqt5network5:armhf 5.15.2+dfsg-9+rpi1 armhf Qt 5 network module
ii libqt5positioning5:armhf 5.15.2+dfsg-2 armhf Qt Positioning module
ii libqt5printsupport5:armhf 5.15.2+dfsg-9+rpi1 armhf Qt 5 print support module
ii libqt5qml5:armhf 5.15.2+dfsg-6+rpi1 armhf Qt 5 QML module
ii libqt5qmlmodels5:armhf 5.15.2+dfsg-6+rpi1 armhf Qt 5 QML Models library
ii libqt5quick5:armhf 5.15.2+dfsg-6+rpi1 armhf Qt 5 Quick library
ii libqt5sensors5:armhf 5.15.2-2 armhf Qt Sensors module
ii libqt5svg5:armhf 5.15.2-3 armhf Qt 5 SVG module
ii libqt5webchannel5:armhf 5.15.2-2 armhf Web communication library for Qt
ii libqt5webkit5:armhf 5.212.0~alpha4-11+rpi1 armhf Web content engine library for Qt
ii libqt5widgets5:armhf 5.15.2+dfsg-9+rpi1 armhf Qt 5 widgets module
ii librabbitmq4:armhf 0.10.0-1 armhf AMQP client library written in C
ii librados2 14.2.21-1+rpi1 armhf RADOS distributed object store client library
ii libraspberrypi-bin 1.20181112-1 armhf Miscellaneous Raspberry Pi utilities
ii libraspberrypi-dev 1.20181112-1 armhf EGL/GLES/OpenVG/etc. libraries for the Raspberry Pi's VideoCore IV (headers)
ii libraspberrypi-doc 1.20181112-1 armhf EGL/GLES/OpenVG/etc. libraries for the Raspberry Pi's VideoCore IV (headers)
ii libraspberrypi0 1.20181112-1 armhf EGL/GLES/OpenVG/etc. libraries for the Raspberry Pi's VideoCore IV
ii libraw1394-11:armhf 2.1.2-2 armhf library for direct access to IEEE 1394 bus (aka FireWire)
ii librdmacm1:armhf 33.2-1 armhf Library for managing RDMA connections
ii libreadline5:armhf 5.2+dfsg-3 armhf GNU readline and history libraries, run-time libraries
ii libreadline6:armhf 6.3-9 armhf GNU readline and history libraries, run-time libraries
ii libreadline7:armhf 7.0-5 armhf GNU readline and history libraries, run-time libraries
ii libreadline8:armhf 8.1-1 armhf GNU readline and history libraries, run-time libraries
ii libreadonly-perl 2.050-3 all facility for creating read-only scalars, arrays and hashes
ii libref-util-perl 0.204-1 all set of utility functions for checking references
ii libref-util-xs-perl 0.117-1+b3 armhf XS implementation for Ref::Util
ii libregexp-common-perl 2017060201-1 all module with common regular expressions
ii librest-0.7-0:armhf 0.8.1-1.1 armhf REST service access library
ii libroken18-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - roken support library
ii librole-tiny-perl 2.002004-1 all Perl module for minimalist role composition
ii librsvg2-2:armhf 2.50.3+dfsg-1 armhf SAX-based renderer library for SVG files (runtime)
ii librsvg2-common:armhf 2.50.3+dfsg-1 armhf SAX-based renderer library for SVG files (extra runtime)
ii librtmp1:armhf 2.4+20151223.gitfa8646d.1-2+b2 armhf toolkit for RTMP streams (shared library)
ii librubberband2:armhf 1.9.0-1 armhf audio time-stretching and pitch-shifting library
ii libsamplerate0:armhf 0.2.1+ds0-1 armhf Audio sample rate conversion library
ii libsasl2-2:armhf 2.1.27+dfsg-2.1+deb11u1 armhf Cyrus SASL - authentication abstraction library
ii libsasl2-modules:armhf 2.1.27+dfsg-2.1+deb11u1 armhf Cyrus SASL - pluggable authentication modules
ii libsasl2-modules-db:armhf 2.1.27+dfsg-2.1+deb11u1 armhf Cyrus SASL - pluggable authentication modules (DB)
ii libscalar-list-utils-perl 1:1.55-1+b1 armhf modules providing common scalar and list utility subroutines
ii libschroedinger-1.0-0:armhf 1.0.11-2.1 armhf library for encoding/decoding of Dirac video streams
ii libsdl1.2debian:armhf 1.2.15+dfsg2-6 armhf Simple DirectMedia Layer
ii libsdl2-2.0-0:armhf 2.0.14+dfsg2-3+deb11u1 armhf Simple DirectMedia Layer
ii libseccomp2:armhf 2.5.1-1+rpi1+deb11u1 armhf high level interface to Linux seccomp filter
ii libsecret-1-0:armhf 0.20.4-2 armhf Secret store
ii libsecret-common 0.20.4-2 all Secret store (common files)
ii libselinux1:armhf 3.1-3 armhf SELinux runtime shared libraries
ii libselinux1-dev:armhf 3.1-3 armhf SELinux development headers
ii libsemanage-common 3.1-1 all Common files for SELinux policy management libraries
ii libsemanage1:armhf 3.1-1+b1 armhf SELinux policy management library
ii libsensors-config 1:3.6.0-7 all lm-sensors configuration files
rc libsensors4:armhf 1:3.4.0-4 armhf library to read temperature/voltage/fan sensors
ii libsensors5:armhf 1:3.6.0-7 armhf library to read temperature/voltage/fan sensors
ii libsepol1:armhf 3.1-1 armhf SELinux library for manipulating binary security policies
ii libsepol1-dev:armhf 3.1-1 armhf SELinux binary policy manipulation library and development files
ii libserd-0-0:armhf 0.30.10-2 armhf lightweight RDF syntax library
ii libshine3:armhf 3.1.1-2+b1 armhf Fixed-point MP3 encoding library - runtime files
ii libsigc++-1.2-5c2 1.2.7-2+b1 armhf type-safe Signal Framework for C++ - runtime
ii libsigc++-2.0-0v5:armhf 2.10.4-2 armhf type-safe Signal Framework for C++ - runtime
ii libsigsegv2:armhf 2.13-1 armhf Library for handling page faults in a portable way
ii libslang2:armhf 2.3.2-5 armhf S-Lang programming library - runtime version
ii libsm-dev:armhf 2:1.2.3-1 armhf X11 Session Management library (development headers)
ii libsm6:armhf 2:1.2.3-1 armhf X11 Session Management library
ii libsmartcols1:armhf 2.36.1-8+deb11u1 armhf smart column output alignment library
ii libsmbclient:armhf 2:4.13.13+dfsg-1~deb11u4 armhf shared library for communication with SMB/CIFS servers
ii libsnappy1v5:armhf 1.1.8-1 armhf fast compression/decompression library
ii libsndfile1:armhf 1.0.31-2 armhf Library for reading/writing audio files
ii libsndio6.1:armhf 1.1.0-3 armhf Small audio and MIDI framework from OpenBSD, runtime libraries
ii libsndio7.0:armhf 1.5.0-3 armhf Small audio and MIDI framework from OpenBSD, runtime libraries
ii libsocket6-perl 0.29-1+b3 armhf Perl extensions for IPv6
ii libsodium18:armhf 1.0.11-2 armhf Network communication, cryptography and signaturing library
ii libsodium23:armhf 1.0.18-1 armhf Network communication, cryptography and signaturing library
ii libsoftware-license-perl 0.103014-2 all module providing templated software licenses
ii libsord-0-0:armhf 0.16.8-2 armhf library for storing RDF data in memory
ii libsoup-gnome2.4-1:armhf 2.72.0-2 armhf HTTP library implementation in C -- GNOME support library
ii libsoup2.4-1:armhf 2.72.0-2 armhf 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 armhf source highlighting library
ii libsoxr0:armhf 0.1.3-4+rpi1 armhf High quality 1D sample-rate conversion library
ii libspecio-perl 0.47-1 all Perl module providing type constraints and coercions
ii libspeex1:armhf 1.2~rc1.2-1.1 armhf The Speex codec runtime library
ii libsphinxbase3:armhf 0.8+5prealpha+1-12 armhf Speech recognition tool - shared library
ii libspiffy-perl 0.46-1 all Spiffy Perl Interface Framework For You
ii libsqlite0 2.8.17-15+b1 armhf SQLite 2 shared library
ii libsqlite3-0:armhf 3.34.1-3 armhf SQLite 3 shared library
ii libsratom-0-0:armhf 0.6.8-1 armhf library for serialising LV2 atoms to/from Turtle