-
Notifications
You must be signed in to change notification settings - Fork 27
/
packages12.txt
1414 lines (1414 loc) · 199 KB
/
packages12.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 2to3 3.11.2-1 all 2to3 binary using python3
ii acl 2.3.1-3 arm64 access control list - utilities
ii adduser 3.134 all add and remove users and groups
ii adwaita-icon-theme 43-1 all default icon theme of GNOME
ii alsa-utils 1.2.8-1+rpt1 arm64 Utilities for configuring and using ALSA
ii alsaplayer-alsa 0.99.81-2+b3 arm64 alsaplayer output module for ALSA
ii alsaplayer-common 0.99.81-2+b3 arm64 audio player (common files)
ii alsaplayer-daemon 0.99.81-2+b3 arm64 alsaplayer daemon
ii alsaplayer-gtk 0.99.81-2+b3 arm64 alsaplayer gtk interface
ii alsaplayer-jack 0.99.81-2+b3 arm64 alsaplayer output module for JACK
ii alsaplayer-nas 0.99.81-2+b3 arm64 alsaplayer output module for NAS
ii alsaplayer-oss 0.99.81-2+b3 arm64 alsaplayer output module for OSS
ii alsaplayer-text 0.99.81-2+b3 arm64 alsaplayer text interface
ii alsaplayer-xosd 0.99.81-2+b3 arm64 alsaplayer XOSD display module
ii apache2 2.4.57-2 arm64 Apache HTTP Server
ii apache2-bin 2.4.57-2 arm64 Apache HTTP Server (modules and other binary files)
ii apache2-data 2.4.57-2 all Apache HTTP Server (common files)
ii apache2-utils 2.4.57-2 arm64 Apache HTTP Server (utility programs for web servers)
ii apt 2.6.1 arm64 commandline package manager
ii apt-transport-https 2.6.1 all transitional package for https support
ii apt-utils 2.6.1 arm64 package management related utility programs
ii aptitude 0.8.13-5 arm64 terminal-based package manager
ii aptitude-common 0.8.13-5 all architecture independent files for the aptitude package manager
ii at-spi2-common 2.46.0-5 all Assistive Technology Service Provider Interface (common files)
ii at-spi2-core 2.46.0-5 arm64 Assistive Technology Service Provider Interface (D-Bus core)
ii attr 1:2.5.1-4 arm64 utilities for manipulating filesystem extended attributes
ii autoconf 2.71-3 all automatic configure script builder
ii autofs 5.1.8-2+deb12u2 arm64 kernel-based automounter for Linux
ii automake 1:1.16.5-1.3 all Tool for generating GNU Standards-compliant Makefiles
ii autopoint 0.21-12 all tool for setting up gettext infrastructure in a source package
ii autotools-dev 20220109.1 all Update infrastructure for config.{guess,sub} files
ii avahi-daemon 0.8-10 arm64 Avahi mDNS/DNS-SD daemon
ii base-files 12.4+deb12u2 arm64 Debian base system miscellaneous files
ii base-passwd 3.6.1 arm64 Debian base system master password and group files
ii bash 5.2.15-2+b2 arm64 GNU Bourne Again SHell
ii bash-completion 1:2.11-6 all programmable completion for the bash shell
ii bc 1.07.1-3 arm64 GNU bc arbitrary precision calculator language
ii bind9-dnsutils 1:9.18.19-1~deb12u1 arm64 Clients provided with BIND 9
ii bind9-host 1:9.18.19-1~deb12u1 arm64 DNS Lookup Utility
ii bind9-libs:arm64 1:9.18.19-1~deb12u1 arm64 Shared Libraries used by BIND 9
ii binutils 2.40-2 arm64 GNU assembler, linker and binary utilities
ii binutils-aarch64-linux-gnu 2.40-2 arm64 GNU binary utilities, for aarch64-linux-gnu target
ii binutils-arm-linux-gnueabihf 2.40-2 arm64 GNU binary utilities, for arm-linux-gnueabihf target
ii binutils-common:arm64 2.40-2 arm64 Common files for the GNU assembler, linker and binary utilities
ii binutils-x86-64-linux-gnu 2.40-2 arm64 GNU binary utilities, for x86-64-linux-gnu target
ii blends-tasks 0.7.5 all Debian Pure Blends tasks for new installations
ii blt 2.5.3+dfsg-4.1 arm64 graphics extension library for Tcl/Tk - run-time
ii bluez 5.66-1+rpt1 arm64 Bluetooth tools and daemons
ii bluez-firmware 1.2-9+rpt2 all Firmware for Bluetooth devices
ii bsd-mailx 8.1.2-0.20220412cvs-1 arm64 simple mail user agent
ii bsdextrautils 2.38.1-5+b1 arm64 extra utilities from 4.4BSD-Lite
ii bsdutils 1:2.38.1-5+b1 arm64 basic utilities from 4.4BSD-Lite
ii bzip2 1.0.8-5+b1 arm64 high-quality block-sorting file compressor - utilities
ii ca-certificates 20230311 all Common CA certificates
ii cifs-utils 2:7.0-2 arm64 Common Internet File System utilities
ii console-setup 1.221rpt1 all console font and keymap setup program
ii console-setup-linux 1.221rpt1 all Linux specific part of console-setup
ii coreutils 9.1-1 arm64 GNU core utilities
ii cpanminus 1.7046-1 all script to get, unpack, build and install modules from CPAN
ii cpio 2.13+dfsg-7.1 arm64 GNU cpio -- a program to manage archives of files
ii cpp 4:12.2.0-3 arm64 GNU C preprocessor (cpp)
ii cpp-12 12.2.0-14 arm64 GNU C preprocessor
ii cron 3.0pl1-162 arm64 process scheduling daemon
ii cron-daemon-common 3.0pl1-162 all process scheduling daemon's configuration files
ii curl 7.88.1-10+deb12u4 arm64 command line tool for transferring data with URL syntax
ii dash 0.5.12-2 arm64 POSIX-compliant shell
ii dbus 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (system message bus)
ii dbus-bin 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (command line utilities)
ii dbus-daemon 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (reference message bus)
ii dbus-session-bus-common 1.14.10-1~deb12u1 all simple interprocess messaging system (session bus configuration)
ii dbus-system-bus-common 1.14.10-1~deb12u1 all simple interprocess messaging system (system bus configuration)
ii dbus-user-session 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (systemd --user integration)
ii dc 1.07.1-3 arm64 GNU dc arbitrary precision reverse-polish calculator
ii dconf-gsettings-backend:arm64 0.40.0-4 arm64 simple configuration storage system - GSettings back-end
ii dconf-service 0.40.0-4 arm64 simple configuration storage system - D-Bus service
ii debconf 1.5.82 all Debian configuration management system
ii debconf-i18n 1.5.82 all full internationalization support for debconf
ii debconf-utils 1.5.82 all debconf utilities
ii debian-archive-keyring 2023.3+deb12u1 all GnuPG archive keys of the Debian archive
ii debianutils 5.7-0.5~deb12u1 arm64 Miscellaneous utilities specific to Debian
ii default-mysql-client 1.1.0 all MySQL database client binaries (metapackage)
ii device-tree-compiler 1.6.1-4+b1 arm64 Device Tree Compiler for Flat Device Trees
ii dh-python 5.20230130+deb12u1 all Debian helper tools for packaging Python libraries and applications
ii dialog 1.3-20230209-1 arm64 Displays user-friendly dialog boxes from shell scripts
ii diffutils 1:3.8-4 arm64 File comparison utilities
ii dirmngr 2.2.40-1.1 arm64 GNU privacy guard - network certificate management service
ii distro-info-data 0.58 all information about the distributions' releases (data files)
ii dmidecode 3.4-1 arm64 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.185-2 arm64 Linux Kernel Device Mapper userspace library
ii dnsutils 1:9.18.19-1~deb12u1 all Transitional package for bind9-dnsutils
ii dos2unix 7.4.3-1 arm64 convert text file line endings between CRLF and LF
ii dosfstools 4.2-1 arm64 utilities for making and checking MS-DOS FAT filesystems
ii dphys-swapfile 20100506-7.1+rpt2 all Autogenerate and use a swap file
ii dpkg 1.21.22 arm64 Debian package management system
ii dpkg-dev 1.21.22 all Debian package development tools
ii e2fsprogs 1.47.0-2 arm64 ext2/ext3/ext4 file system utilities
ii e2fsprogs-l10n 1.47.0-2 all ext2/ext3/ext4 file system utilities - translations
ii ed 1.19-1 arm64 classic UNIX line editor
ii ethtool 1:6.1-1 arm64 display or change Ethernet device settings
ii exfat-fuse 1.3.0+git20220115-2 arm64 read and write exFAT driver for FUSE
ii expect 5.45.4-2+b1 arm64 Automates interactive applications
ii fake-hwclock 0.12+nmu1 all Save/restore system clock on machines without working RTC hardware
ii fakeroot 1.31-1.2 arm64 tool for simulating superuser privileges
ii fbset 2.1-33 arm64 framebuffer device maintenance program
ii fdisk 2.38.1-5+b1 arm64 collection of partitioning utilities
ii ffmpeg 8:5.1.4-0+rpt1+deb12u1 arm64 Tools for transcoding, streaming and playing of multimedia files
ii file 1:5.44-3 arm64 Recognize the type of data in a file using "magic" numbers
ii findutils 4.9.0-4 arm64 utilities for finding files--find, xargs
ii firmware-atheros 1:20230210-5+rpt2 all Binary firmware for Qualcomm Atheros wireless cards
ii firmware-brcm80211 1:20230210-5+rpt2 all Binary firmware for Broadcom/Cypress 802.11 wireless cards
ii firmware-iwlwifi 1:20230210-5+rpt2 all Binary firmware for Intel Wireless cards
ii firmware-libertas 1:20230210-5+rpt2 all Binary firmware for Marvell wireless cards
ii firmware-linux-free 20200122-1 all Binary firmware for various drivers in the Linux kernel
ii firmware-misc-nonfree 1:20230210-5+rpt2 all Binary firmware for various drivers in the Linux kernel
ii firmware-realtek 1:20230210-5+rpt2 all Binary firmware for Realtek wired/wifi/BT adapters
ii fontconfig 2.14.1-4 arm64 generic font configuration library - support binaries
ii fontconfig-config 2.14.1-4 arm64 generic font configuration library - configuration
ii fonts-dejavu-core 2.37-6 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-mathjax 2.7.9+dfsg-1 all JavaScript display engine for LaTeX and MathML (fonts)
ii fonts-noto-mono 20201225-1 all "No Tofu" monospaced font family with large Unicode coverage
ii fonts-urw-base35 20200910-7 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts
ii fuse3 3.14.0-4 arm64 Filesystem in Userspace (3.x version)
ii galera-3 25.3.37-1 arm64 Replication framework for transactional applications
ii gawk 1:5.2.1-2 arm64 GNU awk, a pattern scanning and processing language
ii gcc 4:12.2.0-3 arm64 GNU C compiler
ii gcc-11-base:arm64 11.3.0-12 arm64 GCC, the GNU Compiler Collection (base package)
ii gcc-12 12.2.0-14 arm64 GNU C compiler
ii gcc-12-base:arm64 12.2.0-14 arm64 GCC, the GNU Compiler Collection (base package)
ii gdb 13.1-3 arm64 GNU Debugger
ii gdbserver 13.1-3 arm64 GNU Debugger (remote server)
ii geoclue-2.0 2.6.0-2 arm64 geoinformation service
ii geoip-database 20230203-1 all IP lookup command line tools that use the GeoIP library (country database)
ii gettext 0.21-12 arm64 GNU Internationalization utilities
ii gettext-base 0.21-12 arm64 GNU Internationalization utilities for the base system
ii ghostscript 10.0.0~dfsg-11+deb12u2 arm64 interpreter for the PostScript language and for PDF
ii gir1.2-glib-2.0:arm64 1.74.0-3 arm64 Introspection data for GLib, GObject, Gio and GModule
ii git 1:2.39.2-1.1 arm64 fast, scalable, distributed revision control system
ii git-man 1:2.39.2-1.1 all fast, scalable, distributed revision control system (manual pages)
ii glib-networking:arm64 2.74.0-4 arm64 network-related giomodules for GLib
ii glib-networking-common 2.74.0-4 all network-related giomodules for GLib - data files
ii glib-networking-services 2.74.0-4 arm64 network-related giomodules for GLib - D-Bus services
ii gnome-icon-theme 3.12.0-5 all This package contains the default icon theme used by the GNOME
ii gnupg 2.2.40-1.1 all GNU privacy guard - a free PGP replacement
ii gnupg-l10n 2.2.40-1.1 all GNU privacy guard - localization files
ii gnupg-utils 2.2.40-1.1 arm64 GNU privacy guard - utility programs
ii gpg 2.2.40-1.1 arm64 GNU Privacy Guard -- minimalist public key operations
ii gpg-agent 2.2.40-1.1 arm64 GNU privacy guard - cryptographic agent
ii gpg-wks-client 2.2.40-1.1 arm64 GNU privacy guard - Web Key Service client
ii gpg-wks-server 2.2.40-1.1 arm64 GNU privacy guard - Web Key Service server
ii gpgconf 2.2.40-1.1 arm64 GNU privacy guard - core configuration utilities
ii gpgsm 2.2.40-1.1 arm64 GNU privacy guard - S/MIME version
ii gpgv 2.2.40-1.1 arm64 GNU privacy guard - signature verification tool
ii grep 3.8-5 arm64 GNU grep, egrep and fgrep
ii groff-base 1.22.4-10 arm64 GNU troff text-formatting system (base system components)
ii grub-common 2.06-13+deb12u1 arm64 GRand Unified Bootloader (common files)
ii grub2-common 2.06-13+deb12u1 arm64 GRand Unified Bootloader (common files for version 2)
ii gsasl-common 2.2.0-1 all GNU SASL platform independent files
ii gsettings-desktop-schemas 43.0-1+rpt1 all GSettings desktop-wide schemas
ii gsfonts 2:20200910-7 all transitional dummy package (gsfonts -> fonts-urw-base35)
ii gstreamer1.0-plugins-base:arm64 1.22.0-3+deb12u1 arm64 GStreamer plugins from the "base" set
ii gtk-update-icon-cache 1:3.24.38-2~deb12u1+rpt1+rpi1 arm64 icon theme caching utility
ii gzip 1.12-1 arm64 GNU compression utilities
ii hdparm 9.65+ds-1 arm64 tune hard disk parameters for high performance
ii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes
ii hostname 3.23+nmu1 arm64 utility to set/show the host name or domain name
ii htop 3.2.2-2 arm64 interactive processes viewer
ii i2c-tools 4.3-2+b3 arm64 heterogeneous set of I2C tools for Linux
ii ibverbs-providers:arm64 44.0-2 arm64 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 idle 3.11.2-1 all IDE for Python using Tkinter (default version)
ii idle-python3.11 3.11.2-6 all IDE for Python (v3.11) using Tkinter
ii ifplugd 0.28-19.5 arm64 configuration daemon for ethernet devices
ii ifupdown 0.8.41 arm64 high level tools to configure network interfaces
ii iio-sensor-proxy 3.0-2 arm64 IIO sensors to D-Bus proxy
ii imagemagick 8:6.9.11.60+dfsg-1.6 arm64 image manipulation programs -- binaries
ii imagemagick-6-common 8:6.9.11.60+dfsg-1.6 all image manipulation programs -- infrastructure
ii imagemagick-6.q16 8:6.9.11.60+dfsg-1.6 arm64 image manipulation programs -- quantum depth Q16
ii imagemagick-common 8:6.9.11.60+dfsg-1.6 all image manipulation programs -- infrastructure dummy package
ii info 6.8-6+b1 arm64 Standalone GNU Info documentation browser
ii init 1.65.2 arm64 metapackage ensuring an init system is installed
ii init-system-helpers 1.65.2 all helper tools for all init systems
ii initramfs-tools 0.142 all generic modular initramfs generator (automation)
ii initramfs-tools-core 0.142 all generic modular initramfs generator (core tools)
ii initscripts 3.06-4 all scripts for initializing and shutting down the system
ii insserv 1.24.0-1 arm64 boot sequence organizer using LSB init.d script dependency information
ii install-info 6.8-6+b1 arm64 Manage installed documentation in info format
ii iproute2 6.1.0-3 arm64 networking and traffic control tools
ii iptables 1.8.9-2 arm64 administration tools for packet filtering and NAT
ii iputils-ping 3:20221126-1 arm64 Tools to test the reachability of network hosts
ii isc-dhcp-client 4.4.3-P1-2 arm64 DHCP client for automatically obtaining an IP address
ii isc-dhcp-common 4.4.3-P1-2 arm64 common manpages relevant to all of the isc-dhcp packages
ii iso-codes 4.15.0-1 all ISO language, territory, currency, script codes and their translations
ii iw 5.19-1 arm64 tool for configuring Linux wireless devices
ii javascript-common 11+nmu1 all Base support for JavaScript library packages
ii jq 1.6-2.1 arm64 lightweight and flexible command-line JSON processor
ii kbd 2.5.1-1+b1 arm64 Linux console font and keytable utilities
ii keyboard-configuration 1.221rpt1 all system-wide keyboard preferences
ii keyutils 1.6.3-2 arm64 Linux Key Management Utilities
ii klibc-utils 2.0.12-1 arm64 small utilities built with klibc for early boot
ii kmod 30+20221128-1 arm64 tools for managing Linux kernel modules
ii krb5-locales 1.20.1-2+deb12u1 all internationalization support for MIT Kerberos
ii less 590-2 arm64 pager program similar to more
ii liba52-0.7.4:arm64 0.7.4-20 arm64 library for decoding ATSC A/52 streams
ii libaacs0:arm64 0.11.1-2 arm64 free-and-libre implementation of AACS
ii libabsl20220623:arm64 20220623.1-1 arm64 extensions to the C++ standard library
ii libacl1:arm64 2.3.1-3 arm64 access control list - shared library
ii libaio1:arm64 0.3.113-4 arm64 Linux kernel AIO access library - shared library
ii libalgorithm-c3-perl 0.11-2 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:arm64 0.04-8+b1 arm64 module to find differences between files (XS accelerated)
ii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data
ii libalsaplayer-dev 0.99.81-2+b3 arm64 alsaplayer plugin library (development files)
ii libalsaplayer0:arm64 0.99.81-2+b3 arm64 alsaplayer plugin library
ii libany-uri-escape-perl 0.01-4 all module to load URI::Escape::XS preferentially over URI::Escape
ii libaom3:arm64 3.6.0-1 arm64 AV1 Video Codec Library
ii libapache2-mod-php7.4 1:7.4.33-8+0~20230904.88+debian12~1.gbp87c414 arm64 server-side, HTML-embedded scripting language (Apache 2 module)
ii libapache2-mod-php8.2 8.2.13-1+0~20231124.37+debian12~1.gbp42a939 arm64 server-side, HTML-embedded scripting language (Apache 2 module)
ii libapparmor1:arm64 3.0.8-3 arm64 changehat AppArmor library
ii libapr1:arm64 1.7.2-3 arm64 Apache Portable Runtime Library
ii libaprutil1:arm64 1.6.3-1 arm64 Apache Portable Runtime Utility Library
ii libaprutil1-dbd-sqlite3:arm64 1.6.3-1 arm64 Apache Portable Runtime Utility Library - SQLite3 Driver
ii libaprutil1-ldap:arm64 1.6.3-1 arm64 Apache Portable Runtime Utility Library - LDAP Driver
ii libapt-pkg6.0:arm64 2.6.1 arm64 package management runtime library
ii libarchive-extract-perl 0.88-1 all generic archive extracting module
ii libarchive13:arm64 3.6.2-1 arm64 Multi-format archive and compression library (shared library)
ii libargon2-1:arm64 0~20171227-0.3+deb12u1 arm64 memory-hard hashing function - runtime library
ii libasan6:arm64 11.3.0-12 arm64 AddressSanitizer -- a fast memory error detector
ii libasan8:arm64 12.2.0-14 arm64 AddressSanitizer -- a fast memory error detector
ii libasn1-8-heimdal:arm64 7.8.git20221117.28daf24+dfsg-2 arm64 Heimdal Kerberos - ASN.1 library
ii libasound2:arm64 1.2.8-1+rpt1 arm64 shared library for ALSA applications
ii libasound2-data 1.2.8-1+rpt1 all Configuration files and profiles for ALSA drivers
ii libasprintf-dev:arm64 0.21-12 arm64 use fprintf and friends in C++ - static libraries and headers
ii libasprintf0v5:arm64 0.21-12 arm64 use fprintf and friends in C++ - shared library
ii libass9:arm64 1:0.17.1-1 arm64 library for SSA/ASS subtitles rendering
ii libassuan-dev 2.5.5-5 arm64 IPC library for the GnuPG components -- header files
ii libassuan0:arm64 2.5.5-5 arm64 IPC library for the GnuPG components
ii libasyncns0:arm64 0.8-6+b3 arm64 Asynchronous name service query library
ii libatk-bridge2.0-0:arm64 2.46.0-5 arm64 AT-SPI 2 toolkit bridge - shared library
ii libatk1.0-0:arm64 2.46.0-5 arm64 ATK accessibility toolkit
ii libatomic1:arm64 12.2.0-14 arm64 support library providing __atomic built-in functions
ii libatopology2:arm64 1.2.8-1+rpt1 arm64 shared library for handling ALSA topology definitions
ii libatspi2.0-0:arm64 2.46.0-5 arm64 Assistive Technology Service Provider Interface - shared library
ii libattr1:arm64 1:2.5.1-4 arm64 extended attribute handling - shared library
ii libaudio2:arm64 1.9.4-7 arm64 Network Audio System - shared libraries
ii libaudiofile1:arm64 0.3.6-5+b1 arm64 Open-source version of SGI's audiofile library
ii libaudit-common 1:3.0.9-1 all Dynamic library for security auditing - common files
ii libaudit1:arm64 1:3.0.9-1 arm64 Dynamic library for security auditing
ii libauthen-pam-perl 0.16-5+b1 arm64 Perl interface to PAM library
ii libauthen-sasl-perl 2.1600-3 all Authen::SASL - SASL Authentication framework
ii libavahi-client3:arm64 0.8-10 arm64 Avahi client library
ii libavahi-common-data:arm64 0.8-10 arm64 Avahi common data files
ii libavahi-common3:arm64 0.8-10 arm64 Avahi common library
ii libavahi-core7:arm64 0.8-10 arm64 Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1:arm64 0.8-10 arm64 Avahi GLib integration library
ii libavc1394-0:arm64 0.5.4-5 arm64 control IEEE 1394 audio/video devices
ii libavcodec-dev:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library with de/encoders for audio/video codecs - development files
ii libavcodec59:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library with de/encoders for audio/video codecs - runtime files
ii libavdevice59:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library for handling input and output devices - runtime files
ii libavfilter8:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library containing media filters - runtime files
ii libavformat-dev:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library with (de)muxers for multimedia containers - development files
ii libavformat59:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library with (de)muxers for multimedia containers - runtime files
ii libavif15:arm64 0.11.1-1 arm64 Library for handling .avif files
ii libavutil-dev:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library with functions for simplifying programming - development files
ii libavutil57:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library with functions for simplifying programming - runtime files
ii libb-hooks-endofscope-perl 0.26-1 all module for executing code after a scope finished compilation
ii libb-hooks-op-check-perl:arm64 0.22-2+b1 arm64 Perl wrapper for OP check callbacks
ii libbabeltrace-ctf1 1.5.11-1 all Babeltrace conversion libraries (transitional package)
ii libbabeltrace1:arm64 1.5.11-1+b2 arm64 Babeltrace conversion libraries
ii libbdplus0:arm64 0.2.0-3 arm64 implementation of BD+ for reading Blu-ray Discs
ii libbinutils:arm64 2.40-2 arm64 GNU binary utilities (private shared library)
ii libblas3:arm64 3.11.0-2 arm64 Basic Linear Algebra Reference implementations, shared library
ii libblkid-dev:arm64 2.38.1-5+b1 arm64 block device ID library - headers
ii libblkid1:arm64 2.38.1-5+b1 arm64 block device ID library
ii libbluetooth3:arm64 5.66-1+rpt1 arm64 Library to use the BlueZ Linux Bluetooth stack
ii libbluray2:arm64 1:1.3.4-1 arm64 Blu-ray disc playback support library (shared library)
ii libboost-iostreams1.74.0:arm64 1.74.0+ds1-21 arm64 Boost.Iostreams Library
ii libboost-regex1.74.0:arm64 1.74.0+ds1-21 arm64 regular expression library for C++
ii libboost-thread1.74.0:arm64 1.74.0+ds1-21 arm64 portable C++ multi-threading
ii libbpf1:arm64 1:1.1.0-1 arm64 eBPF helper library (shared library)
ii libbrotli-dev:arm64 1.0.9-2+b6 arm64 library implementing brotli encoder and decoder (development files)
ii libbrotli1:arm64 1.0.9-2+b6 arm64 library implementing brotli encoder and decoder (shared libraries)
ii libbs2b0:arm64 3.1.0+dfsg-7 arm64 Bauer stereophonic-to-binaural DSP library
ii libbsd-resource-perl 1.2911-2+b1 arm64 BSD process resource limit and priority functions
ii libbsd0:arm64 0.11.7-2 arm64 utility functions from BSD systems - shared library
ii libbz2-1.0:arm64 1.0.8-5+b1 arm64 high-quality block-sorting file compressor library - runtime
ii libc-ares2:arm64 1.18.1-3 arm64 asynchronous name resolver
ii libc-bin 2.36-9+rpt2+deb12u3 arm64 GNU C Library: Binaries
ii libc-dev-bin 2.36-9+rpt2+deb12u3 arm64 GNU C Library: Development binaries
ii libc-l10n 2.36-9+rpt2+deb12u3 all GNU C Library: localization files
ii libc6:arm64 2.36-9+rpt2+deb12u3 arm64 GNU C Library: Shared libraries
ii libc6-dbg:arm64 2.36-9+rpt2+deb12u3 arm64 GNU C Library: detached debugging symbols
ii libc6-dev:arm64 2.36-9+rpt2+deb12u3 arm64 GNU C Library: Development Libraries and Header Files
ii libcaca0:arm64 0.99.beta20-3 arm64 colour ASCII art library
ii libcairo-gobject2:arm64 1.16.0-7+rpt1 arm64 Cairo 2D vector graphics library (GObject library)
ii libcairo-script-interpreter2:arm64 1.16.0-7+rpt1 arm64 Cairo 2D vector graphics library (script interpreter)
ii libcairo2:arm64 1.16.0-7+rpt1 arm64 Cairo 2D vector graphics library
ii libcairo2-dev:arm64 1.16.0-7+rpt1 arm64 Development files for the Cairo 2D graphics library
ii libcap-ng0:arm64 0.8.3-1+b3 arm64 alternate POSIX capabilities library
ii libcap2:arm64 1:2.66-4 arm64 POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.66-4 arm64 POSIX 1003.1e capabilities (utilities)
ii libcapture-tiny-perl 0.48-2 all module to capture STDOUT and STDERR
ii libcbor0.8:arm64 0.8.0-2+b1 arm64 library for parsing and generating CBOR (RFC 7049)
ii libcc1-0:arm64 12.2.0-14 arm64 GCC cc1 plugin for GDB
ii libcdio-cdda2:arm64 10.2+2.0.1-1 arm64 library to read and control digital audio CDs
ii libcdio-paranoia2:arm64 10.2+2.0.1-1 arm64 library to read digital audio CDs with error correction
ii libcdio19:arm64 2.1.0-4 arm64 library to read and control CD-ROM
ii libcdparanoia0:arm64 3.10.2+debian-14 arm64 audio extraction tool for sampling CDs (library)
ii libcephfs2 16.2.11+ds-2 arm64 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.55-1 all module for Common Gateway Interface applications
ii libcgi-session-perl 4.48-4 all persistent session data in CGI applications
ii libcgi-simple-perl 1.280-2 all simple CGI.pm compatible OO CGI interface
ii libchromaprint1:arm64 1.5.1-2+b1 arm64 audio fingerprint library
ii libcjson1:arm64 1.7.15-1 arm64 Ultralightweight JSON parser in ANSI C
ii libclass-accessor-perl 0.51-2 all Perl module that automatically generates accessors
ii libclass-c3-perl 0.35-2 all pragma for using the C3 method resolution order
ii libclass-c3-xs-perl 0.15-1+b3 arm64 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-3 all Perl module that provides information about classes
ii libclass-load-perl 0.25-2 all module for loading modules by name
ii libclass-method-modifiers-perl 2.14-1 all Perl module providing method modifiers
ii libclass-singleton-perl 1.6-2 all implementation of a "Singleton" class
ii libclass-xsaccessor-perl 1.19-4+b1 arm64 Perl module providing fast XS accessors
ii libclone-choose-perl 0.010-2 all Choose appropriate clone utility (Perl library)
ii libclone-perl:arm64 0.46-1 arm64 module for recursively copying Perl datatypes
ii libcodec2-1.0:arm64 1.0.5-1 arm64 Codec2 runtime library
ii libcolord2:arm64 1.4.6-2.2 arm64 system service to manage device colour profiles -- runtime
ii libcom-err2:arm64 1.47.0-2 arm64 common error description library
ii libcommon-sense-perl:arm64 3.75-3 arm64 module that implements some sane defaults for Perl programs
ii libconfig-crontab-perl 1.45-3 all module to read/write Vixie-compatible crontab(5) files
ii libconfig-inifiles-perl 3.000003-2 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-3 all module for reading and writing CPAN Changes files
ii libcpan-distnameinfo-perl 0.12-3 all module to extract distribution name and version from a filename
ii libcpan-meta-check-perl 0.017-1 all verify requirements in a CPAN::Meta object
ii libcrypt-dev:arm64 1:4.4.33-2 arm64 libcrypt development files
ii libcrypt1:arm64 1:4.4.33-2 arm64 libcrypt shared library
ii libcryptsetup12:arm64 2:2.6.1-4~deb12u1 arm64 disk encryption support - shared library
ii libctf-nobfd0:arm64 2.40-2 arm64 Compact C Type Format library (runtime, no BFD dependency)
ii libctf0:arm64 2.40-2 arm64 Compact C Type Format library (runtime, BFD dependency)
ii libcups2:arm64 2.4.2-3+deb12u4 arm64 Common UNIX Printing System(tm) - Core library
ii libcupsfilters1:arm64 1.28.17-3 arm64 OpenPrinting CUPS Filters - Shared library
ii libcupsimage2:arm64 2.4.2-3+deb12u4 arm64 Common UNIX Printing System(tm) - Raster image library
ii libcurl3-gnutls:arm64 7.88.1-10+deb12u4 arm64 easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libcurl4:arm64 7.88.1-10+deb12u4 arm64 easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libcurl4-openssl-dev:arm64 7.88.1-10+deb12u4 arm64 development files and documentation for libcurl (OpenSSL flavour)
ii libcwidget4:arm64 0.5.18-6 arm64 high-level terminal interface library for C++ (runtime files)
ii libdaemon0:arm64 0.14-7.1 arm64 lightweight C library for daemons - runtime library
ii libdata-dump-perl 1.25-1 all Perl module to help dump data structures
ii libdata-optlist-perl 0.113-1 all module to parse and validate simple name/value option pairs
ii libdata-perl-perl 0.002011-2 all classes wrapping fundamental Perl data types
ii libdata-section-perl 0.200008-1 all module to read chunks of data from a module's DATA section
ii libdata-uuid-perl 1.226-3 arm64 globally/universally unique identifiers (GUIDs/UUIDs)
ii libdata-validate-ip-perl 0.31-1 all Perl module for IP validation
ii libdatetime-locale-perl 1:1.37-1 all Perl extension providing localization support for DateTime
ii libdatetime-perl 2:1.59-1 arm64 module for manipulating dates, times and timestamps
ii libdatetime-timezone-perl 1:2.60-1+2023c all framework exposing the Olson time zone database to Perl
ii libdatrie1:arm64 0.2.13-2+b1 arm64 Double-array trie library
ii libdav1d6:arm64 1.0.0-2 arm64 fast and small AV1 video stream decoder (shared library)
ii libdb5.3:arm64 5.3.28+dfsg2-1 arm64 Berkeley v5.3 Database Libraries [runtime]
ii libdbd-mysql-perl:arm64 4.050-5+b1 arm64 Perl5 database interface to the MariaDB/MySQL database
ii libdbd-pg-perl 3.16.0-2 arm64 Perl DBI driver for the PostgreSQL database server
ii libdbd-sqlite3-perl:arm64 1.72-1 arm64 Perl DBI driver with a self-contained RDBMS
ii libdbi-perl:arm64 1.643-4 arm64 Perl Database Interface (DBI)
ii libdbus-1-3:arm64 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (library)
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-4 arm64 simple configuration storage system - runtime library
ii libde265-0:arm64 1.0.11-1 arm64 Open H.265 video codec implementation
ii libdebconfclient0:arm64 0.270 arm64 Debian Configuration Management System (C-implementation library)
ii libdebuginfod-common 0.188-2.1 all configuration to enable the Debian debug info server
ii libdebuginfod1:arm64 0.188-2.1 arm64 library to interact with debuginfod (development files)
ii libdecor-0-0:arm64 0.1.1-2 arm64 client-side window decoration library
ii libdeflate0:arm64 1.14-1 arm64 fast, whole-buffer DEFLATE-based compression and decompression
ii libdevel-callchecker-perl:arm64 0.008-2 arm64 custom op checking attached to subroutines
ii libdevel-caller-perl:arm64 2.06-3+b1 arm64 module providing enhanced caller() support
ii libdevel-globaldestruction-perl 0.14-4 all module to expose the flag that marks global destruction
ii libdevel-lexalias-perl 0.05-3+b1 arm64 Perl module that provides alias lexical variables
ii libdevel-stacktrace-perl 2.0400-2 all Perl module containing stack trace and related objects
ii libdevice-serialport-perl 1.04-4+b1 arm64 emulation of Win32::SerialPort for Linux/POSIX
ii libdevmapper1.02.1:arm64 2:1.02.185-2 arm64 Linux Kernel Device Mapper userspace library
ii libdjvulibre-text 3.5.28-2 all Linguistic support files for libdjvulibre
ii libdjvulibre21:arm64 3.5.28-2+b1 arm64 Runtime support for the DjVu image format
ii libdlt2:arm64 2.18.8-6 arm64 Diagnostic Log and Trace (DLT) library
ii libdouble-conversion3:arm64 3.2.1-1 arm64 routines to convert IEEE floats to and from strings
ii libdpkg-perl 1.21.22 all Dpkg perl modules
ii libdrm-amdgpu1:arm64 2.4.114-1+b1 arm64 Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii libdrm-common 2.4.114-1 all Userspace interface to kernel DRM services -- common files
ii libdrm-nouveau2:arm64 2.4.114-1+b1 arm64 Userspace interface to nouveau-specific kernel DRM services -- runtime
ii libdrm-radeon1:arm64 2.4.114-1+b1 arm64 Userspace interface to radeon-specific kernel DRM services -- runtime
ii libdrm2:arm64 2.4.114-1+b1 arm64 Userspace interface to kernel DRM services -- runtime
ii libduktape207:arm64 2.7.0-2 arm64 embeddable Javascript engine, library
ii libdv4:arm64 1.0.0-15 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.3-1 arm64 library for reading DVDs
ii libdw1:arm64 0.188-2.1 arm64 library that provides access to the DWARF debug information
ii libdynaloader-functions-perl 0.003-3 all deconstructed dynamic C library loading
ii libebur128-1:arm64 1.2.6-1+b1 arm64 implementation of the EBU R128 loudness standard
ii libedit2:arm64 3.1-20221030-2 arm64 BSD editline and history libraries
ii libefiboot1:arm64 37-6 arm64 Library to manage UEFI variables
ii libefivar1:arm64 37-6 arm64 Library to manage UEFI variables
ii libegl-mesa0:arm64 23.2.1-1~bpo12+rpt2 arm64 free implementation of the EGL API -- Mesa vendor library
ii libegl1:arm64 1.6.0-1 arm64 Vendor neutral GL dispatch library -- EGL support
ii libelf1:arm64 0.188-2.1 arm64 library to read and write ELF files
ii libemail-abstract-perl 3.009-2 all unified interface to mail representations
ii libemail-address-xs-perl 1.05-1+b1 arm64 Perl library for RFC 5322 address/group parsing and formatting
ii libemail-date-format-perl 1.008-1 all Module to generate RFC-2822-valid date strings
ii libemail-messageid-perl 1.408-1 all Perl library for unique mail Message-ID generation
ii libemail-mime-contenttype-perl 1.028-1 all Perl module to parse a MIME Content-Type header
ii libemail-mime-encodings-perl 1.317-1 all unified interface to MIME encoding and decoding
ii libemail-mime-perl 1.953-1 all module for simple MIME message parsing
ii libemail-sender-perl 2.600-1 all Perl module for sending email
ii libemail-simple-perl 2.218-1 all module to parse RFC2822 headers and message format
ii libenca0:arm64 1.19-1.1 arm64 Extremely Naive Charset Analyser - shared library files
ii libencode-locale-perl 1.05-3 all utility to determine the locale encoding
ii libepoxy0:arm64 1.5.10-1 arm64 OpenGL function pointer management library
ii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way
ii libestr0:arm64 0.1.11-1 arm64 Helper functions for handling strings (lib)
ii libev4:arm64 1:4.33-1 arm64 high-performance event loop library modelled after libevent
ii libeval-closure-perl 0.14-3 all Perl module to safely and cleanly create closures via string eval
ii libevdev2:arm64 1.13.0+dfsg-1 arm64 wrapper library for evdev devices
ii libevent-2.1-7:arm64 2.1.12-stable-8 arm64 Asynchronous event notification library
ii libevent-core-2.1-7:arm64 2.1.12-stable-8 arm64 Asynchronous event notification library (core)
ii libexception-class-perl 1.45-1 all module that allows you to declare real exception classes in Perl
ii libexif12:arm64 0.6.24-1+b1 arm64 library to parse EXIF files
ii libexpat1:arm64 2.5.0-1 arm64 XML parsing C library - runtime library
ii libexpat1-dev:arm64 2.5.0-1 arm64 XML parsing C library - development kit
ii libexporter-tiny-perl 1.006000-1 all tiny exporter similar to Sub::Exporter
ii libext2fs2:arm64 1.47.0-2 arm64 ext2/ext3/ext4 file system libraries
ii libfaad2:arm64 2.10.1-1 arm64 freeware Advanced Audio Decoder - runtime files
ii libfakeroot:arm64 1.31-1.2 arm64 tool for simulating superuser privileges - shared libraries
ii libfastjson4:arm64 1.2304.0-1 arm64 fast json library for C
ii libfcgi-perl 0.82+ds-2 arm64 helper module for FastCGI
ii libfcgi0ldbl:arm64 2.4.2-2 arm64 shared library of FastCGI
ii libfdisk1:arm64 2.38.1-5+b1 arm64 fdisk partitioning library
ii libfdt1:arm64 1.6.1-4+b1 arm64 Flat Device Trees manipulation library
ii libffi-dev:arm64 3.4.4-1 arm64 Foreign Function Interface library (development files)
ii libffi8:arm64 3.4.4-1 arm64 Foreign Function Interface library runtime
ii libfftw3-double3:arm64 3.3.10-1 arm64 Library for computing Fast Fourier Transforms - Double precision
ii libfftw3-single3:arm64 3.3.10-1 arm64 Library for computing Fast Fourier Transforms - Single precision
ii libfido2-1:arm64 1.12.0-2+b1 arm64 library for generating and verifying FIDO 2.0 objects
ii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification
ii libfile-copy-recursive-perl 0.45-4 all Perl extension for recursively copying files and directories
ii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files
ii libfile-fcntllock-perl 0.22-4+b1 arm64 Perl module for file locking with fcntl(2)
ii libfile-find-rule-perl 0.34-3 all module to search for files based on rules
ii libfile-homedir-perl 1.006-2 all Perl module for finding user directories across platforms
ii libfile-listing-perl 6.15-1 all module to parse directory listings
ii libfile-mimeinfo-perl 0.33-1 all Perl module to determine file types
ii libfile-monitor-perl 1.00-3 all module to monitor file and directory changes
ii libfile-pushd-perl 1.016-2 all module for changing directory temporarily for a limited scope
ii libfile-sharedir-perl 1.118-3 all module to locate non-code files during run-time
ii libfile-slurp-perl 9999.32-2 all single call read & write file routines
ii libfile-slurp-tiny-perl 0.004-2 all simple, sane and efficient file slurper
ii libfile-which-perl 1.27-2 all Perl module for searching paths for executable programs
ii libflac-dev:arm64 1.4.2+ds-2 arm64 Free Lossless Audio Codec - C development library
ii libflac12:arm64 1.4.2+ds-2 arm64 Free Lossless Audio Codec - runtime C library
ii libflite1:arm64 2.2-5 arm64 Small run-time speech synthesis engine - shared libraries
ii libfmt9:arm64 9.1.0+ds1-2 arm64 fast type-safe C++ formatting library -- library
ii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files
ii libfontconfig-dev:arm64 2.14.1-4 arm64 generic font configuration library - development
ii libfontconfig1:arm64 2.14.1-4 arm64 generic font configuration library - runtime
ii libfontconfig1-dev:arm64 2.14.1-4 arm64 generic font configuration library - dummy package
ii libfontenc1:arm64 1:1.1.4-1 arm64 X11 font encoding library
ii libfreetype-dev:arm64 2.12.1+dfsg-5 arm64 FreeType 2 font engine, development files
ii libfreetype6:arm64 2.12.1+dfsg-5 arm64 FreeType 2 font engine, shared library files
ii libfreetype6-dev:arm64 2.12.1+dfsg-5 arm64 FreeType 2 font engine, development files (transitional package)
ii libfreezethaw-perl 0.5001-3 all module to serialize and deserialize Perl data structures
ii libfribidi0:arm64 1.0.8-2.1 arm64 Free Implementation of the Unicode BiDi algorithm
ii libfstrm0:arm64 0.6.1-1 arm64 Frame Streams (fstrm) library
ii libfuse2:arm64 2.9.9-6+b1 arm64 Filesystem in Userspace (library)
ii libfuse3-3:arm64 3.14.0-4 arm64 Filesystem in Userspace (library) (3.x version)
ii libgail-common:arm64 2.24.33-2+rpt1 arm64 GNOME Accessibility Implementation Library -- common modules
ii libgail18:arm64 2.24.33-2+rpt1 arm64 GNOME Accessibility Implementation Library -- shared libraries
ii libgav1-1:arm64 0.18.0-1+b1 arm64 AV1 decoder developed by Google -- runtime library
ii libgbm1:arm64 23.2.1-1~bpo12+rpt2 arm64 generic buffer management API -- runtime
ii libgcc-12-dev:arm64 12.2.0-14 arm64 GCC support library (development files)
ii libgcc-s1:arm64 12.2.0-14 arm64 GCC support library
ii libgcrypt20:arm64 1.10.1-3 arm64 LGPL Crypto library - runtime library
ii libgd3:arm64 2.3.3-9 arm64 GD Graphics Library
ii libgdbm-compat4:arm64 1.23-3 arm64 GNU dbm database routines (legacy support runtime version)
ii libgdbm6:arm64 1.23-3 arm64 GNU dbm database routines (runtime version)
ii libgdk-pixbuf-2.0-0:arm64 2.42.10+dfsg-1+b1 arm64 GDK Pixbuf library
ii libgdk-pixbuf-xlib-2.0-0:arm64 2.40.2-2 arm64 GDK Pixbuf library (deprecated Xlib integration)
ii libgdk-pixbuf2.0-0:arm64 2.40.2-2 arm64 GDK Pixbuf library (transitional package)
ii libgdk-pixbuf2.0-bin 2.42.10+dfsg-1+b1 arm64 GDK Pixbuf library (thumbnailer)
ii libgdk-pixbuf2.0-common 2.42.10+dfsg-1 all GDK Pixbuf library - data files
ii libgeoip1:arm64 1.6.12-10 arm64 non-DNS IP-to-country resolver library
ii libgetopt-long-descriptive-perl 0.111-1 all module that handles command-line arguments with usage text
ii libgettextpo-dev:arm64 0.21-12 arm64 process PO files - static libraries and headers
ii libgettextpo0:arm64 0.21-12 arm64 process PO files - shared library
ii libgfapi0:arm64 10.3-5 arm64 GlusterFS gfapi shared library
ii libgfortran5:arm64 12.2.0-14 arm64 Runtime library for GNU Fortran applications
ii libgfrpc0:arm64 10.3-5 arm64 GlusterFS libgfrpc shared library
ii libgfxdr0:arm64 10.3-5 arm64 GlusterFS libgfxdr shared library
ii libgif-dev:arm64 5.2.1-2.5 arm64 library for GIF images (development)
ii libgif7:arm64 5.2.1-2.5 arm64 library for GIF images (library)
ii libgirepository-1.0-1:arm64 1.74.0-3 arm64 Library for handling GObject introspection data (runtime library)
ii libgl1:arm64 1.6.0-1 arm64 Vendor neutral GL dispatch library -- legacy GL support
ii libgl1-mesa-dri:arm64 23.2.1-1~bpo12+rpt2 arm64 free implementation of the OpenGL API -- DRI modules
ii libgl1-mesa-glx:arm64 22.3.6-1+rpt2+deb12u1 arm64 transitional dummy package
ii libglapi-mesa:arm64 23.2.1-1~bpo12+rpt2 arm64 free implementation of the GL API -- shared library
ii libgles2:arm64 1.6.0-1 arm64 Vendor neutral GL dispatch library -- GLESv2 support
ii libgles2-mesa:arm64 22.3.6-1+rpt2+deb12u1 arm64 transitional dummy package
ii libglib2.0-0:arm64 2.74.6-2 arm64 GLib library of C routines
ii libglib2.0-bin 2.74.6-2 arm64 Programs for the GLib library
ii libglib2.0-data 2.74.6-2 all Common files for GLib library
ii libglib2.0-dev:arm64 2.74.6-2 arm64 Development files for the GLib library
ii libglib2.0-dev-bin 2.74.6-2 arm64 Development utilities for the GLib library
ii libglusterfs0:arm64 10.3-5 arm64 GlusterFS shared library
ii libglvnd0:arm64 1.6.0-1 arm64 Vendor neutral GL dispatch library
ii libglx-mesa0:arm64 23.2.1-1~bpo12+rpt2 arm64 free implementation of the OpenGL API -- GLX vendor library
ii libglx0:arm64 1.6.0-1 arm64 Vendor neutral GL dispatch library -- GLX support
ii libgme0:arm64 0.6.3-6 arm64 Playback library for video game music files - shared library
ii libgmp10:arm64 2:6.2.1+dfsg1-1.1 arm64 Multiprecision arithmetic library
ii libgnutls-openssl27:arm64 3.7.9-2 arm64 GNU TLS library - OpenSSL wrapper
ii libgnutls30:arm64 3.7.9-2 arm64 GNU TLS library - main runtime library
ii libgomp1:arm64 12.2.0-14 arm64 GCC OpenMP (GOMP) support library
ii libgpg-error-dev 1.46-1 arm64 GnuPG development runtime library (developer tools)
ii libgpg-error-l10n 1.46-1 all library of error values and messages in GnuPG (localization files)
ii libgpg-error0:arm64 1.46-1 arm64 GnuPG development runtime library
ii libgpgme-dev 1.18.0-3+b1 arm64 GPGME - GnuPG Made Easy (development files)
ii libgpgme11:arm64 1.18.0-3+b1 arm64 GPGME - GnuPG Made Easy (library)
ii libgpm2:arm64 1.20.7-10+b1 arm64 General Purpose Mouse - shared library
ii libgprofng0:arm64 2.40-2 arm64 GNU Next Generation profiler (runtime library)
ii libgraphite2-3:arm64 1.3.14-1 arm64 Font rendering engine for Complex Scripts -- library
ii libgs-common 10.0.0~dfsg-11+deb12u2 all interpreter for the PostScript language and for PDF - ICC profiles
ii libgs10:arm64 10.0.0~dfsg-11+deb12u2 arm64 interpreter for the PostScript language and for PDF - Library
ii libgs10-common 10.0.0~dfsg-11+deb12u2 all interpreter for the PostScript language and for PDF - common files
ii libgs9-common 10.0.0~dfsg-11+deb12u2 all transitional package for libgs-common
ii libgsasl18:arm64 2.2.0-1 arm64 GNU SASL library
ii libgsm1:arm64 1.0.22-1 arm64 Shared libraries for GSM speech compressor
ii libgssapi-krb5-2:arm64 1.20.1-2+deb12u1 arm64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgssglue1:arm64 0.7-1.1 arm64 mechanism-switch gssapi library
ii libgstreamer-plugins-base1.0-0:arm64 1.22.0-3+deb12u1 arm64 GStreamer libraries from the "base" set
ii libgstreamer1.0-0:arm64 1.22.0-2 arm64 Core GStreamer libraries and elements
ii libgtk-3-0:arm64 1:3.24.38-2~deb12u1+rpt1+rpi1 arm64 GTK graphical user interface library
ii libgtk-3-bin 1:3.24.38-2~deb12u1+rpt1+rpi1 arm64 programs for the GTK graphical user interface library
ii libgtk-3-common 1:3.24.38-2~deb12u1+rpt1+rpi1 all common files for the GTK graphical user interface library
ii libgtk2.0-0:arm64 2.24.33-2+rpt1 arm64 GTK graphical user interface library - old version
ii libgtk2.0-bin 2.24.33-2+rpt1 arm64 programs for the GTK graphical user interface library
ii libgtk2.0-common 2.24.33-2+rpt1 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 libharfbuzz0b:arm64 6.0.0+dfsg-3 arm64 OpenType text shaping engine (shared library)
ii libhash-flatten-perl 1.19-5 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 libhcrypto5-heimdal:arm64 7.8.git20221117.28daf24+dfsg-2 arm64 Heimdal Kerberos - crypto library
ii libhdb9-heimdal:arm64 7.8.git20221117.28daf24+dfsg-2 arm64 Heimdal Kerberos - kadmin server library
ii libheif1:arm64 1.15.1-1 arm64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library
ii libheimbase1-heimdal:arm64 7.8.git20221117.28daf24+dfsg-2 arm64 Heimdal Kerberos - Base library
ii libhogweed6:arm64 3.8.1-2 arm64 low level cryptographic library (public-key cryptos)
ii libhtml-form-perl 6.11-1 all module that represents an HTML form element
ii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats
ii libhtml-parser-perl:arm64 3.81-1 arm64 collection of modules that parse HTML text documents
ii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML
ii libhtml-template-perl 2.97-2 all module for using HTML templates with Perl
ii libhtml-tree-perl 5.07-3 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.16-1 all simple http server class
ii libhttp-date-perl 6.05-2 all module of date conversion routines
ii libhttp-message-perl 6.44-1 all perl interface to HTTP style messages
ii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation
ii libhwasan0:arm64 12.2.0-14 arm64 AddressSanitizer -- a fast memory error detector
ii libhwy1:arm64 1.0.3-3+deb12u1 arm64 Efficient and performance-portable SIMD wrapper (runtime files)
ii libhx509-5-heimdal:arm64 7.8.git20221117.28daf24+dfsg-2 arm64 Heimdal Kerberos - X509 support library
ii libhyphen0:arm64 2.8.8-7 arm64 ALTLinux hyphenation library - shared library
ii libi2c0:arm64 4.3-2+b3 arm64 userspace I2C programming library
ii libibverbs1:arm64 44.0-2 arm64 Library for direct userspace use of RDMA (InfiniBand/iWARP)
ii libice-dev:arm64 2:1.0.10-1 arm64 X11 Inter-Client Exchange library (development headers)
ii libice6:arm64 2:1.0.10-1 arm64 X11 Inter-Client Exchange library
ii libicu72:arm64 72.1-3 arm64 International Components for Unicode
ii libid3tag0:arm64 0.15.1b-14 arm64 ID3 tag reading library from the MAD project
ii libident 0.32-1 arm64 simple RFC1413 client library - runtime
ii libidn12:arm64 1.41-1 arm64 GNU Libidn library, implementation of IETF IDN specifications
ii libidn2-0:arm64 2.3.3-1+b1 arm64 Internationalized domain names (IDNA2008/TR46) library
ii libiec61883-0:arm64 1.2.0-6+b1 arm64 partial implementation of IEC 61883 (shared lib)
ii libijs-0.35:arm64 0.35-15 arm64 IJS raster image transport protocol: shared library
ii libimath-3-1-29:arm64 3.1.6-1 arm64 Utility libraries from ASF used by OpenEXR - runtime
ii libimport-into-perl 1.002005-2 all module for importing packages into other packages
ii libinput-bin 1.22.1-1 arm64 input device management and event handling library - udev quirks
ii libinput10:arm64 1.22.1-1 arm64 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-2 all Perl module for unified IO operations
ii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection
ii libio-interface-perl 1.09-2+b2 arm64 socket methods to get/set interface characteristics
ii libio-socket-multicast-perl:arm64 1.12-3+b1 arm64 module for sending and receiving multicast messages
ii libio-socket-ssl-perl 2.081-2 all Perl module implementing object oriented interface to SSL sockets
ii libio-socket-timeout-perl 0.32-3 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 libip4tc2:arm64 1.8.9-2 arm64 netfilter libip4tc library
ii libip6tc2:arm64 1.8.9-2 arm64 netfilter libip6tc library
ii libipc-run3-perl 0.048-3 all run a subprocess with input/output redirection
ii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics
ii libiptc0:arm64 1.8.9-2 arm64 transitional dummy package
ii libisl23:arm64 0.25-1 arm64 manipulating sets and relations of integer points bounded by linear constraints
ii libitm1:arm64 12.2.0-14 arm64 GNU Transactional Memory Library
ii libiw30:arm64 30~pre9-14 arm64 Wireless tools - library
ii libjack-jackd2-0:arm64 1.9.21~dfsg-3 arm64 JACK Audio Connection Kit (libraries)
ii libjansson4:arm64 2.14-2 arm64 C library for encoding, decoding and manipulating JSON data
ii libjbig0:arm64 2.1-6.1 arm64 JBIGkit libraries
ii libjbig2dec0:arm64 0.19-3 arm64 JBIG2 decoder library - shared libraries
ii libjemalloc2:arm64 5.3.0-1 arm64 general-purpose scalable concurrent malloc(3) implementation
ii libjim0.81:arm64 0.81+dfsg0-2 arm64 small-footprint implementation of Tcl - shared library
ii libjpeg-dev:arm64 1:2.1.5-2 arm64 Development files for the JPEG library [dummy package]
ii libjpeg62-turbo:arm64 1:2.1.5-2 arm64 libjpeg-turbo JPEG runtime library
ii libjpeg62-turbo-dev:arm64 1:2.1.5-2 arm64 Development files for the libjpeg-turbo JPEG library
ii libjq1:arm64 1.6-2.1 arm64 lightweight and flexible command-line JSON processor - shared library
ii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications
ii libjs-mathjax 2.7.9+dfsg-1 all JavaScript display engine for LaTeX and MathML
ii libjs-sphinxdoc 5.3.0-4 all JavaScript support for Sphinx documentation
ii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript's functional programming helper library
ii libjson-c5:arm64 0.16-2 arm64 JSON manipulation library - shared library
ii libjson-glib-1.0-0:arm64 1.6.6-1 arm64 GLib JSON manipulation library
ii libjson-glib-1.0-common 1.6.6-1 all GLib JSON manipulation library (common files)
ii libjson-perl 4.10000-1 all module for manipulating JSON-formatted data
ii libjson-xs-perl 4.030-2+b1 arm64 module for manipulating JSON-formatted data (C/XS-accelerated)
ii libjxl0.7:arm64 0.7.0-10 arm64 JPEG XL Image Coding System - "JXL" (shared libraries)
ii libjxr-tools 1.2~git20170615.f752187-5 arm64 JPEG-XR lib - command line apps
ii libjxr0:arm64 1.2~git20170615.f752187-5 arm64 JPEG-XR lib - libraries
ii libk5crypto3:arm64 1.20.1-2+deb12u1 arm64 MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1:arm64 1.6.3-2 arm64 Linux Key Management Utilities (library)
ii libklibc:arm64 2.0.12-1 arm64 minimal libc subset for use with initramfs
ii libkmod2:arm64 30+20221128-1 arm64 libkmod shared library
ii libkrb5-26-heimdal:arm64 7.8.git20221117.28daf24+dfsg-2 arm64 Heimdal Kerberos - libraries
ii libkrb5-3:arm64 1.20.1-2+deb12u1 arm64 MIT Kerberos runtime libraries
ii libkrb5support0:arm64 1.20.1-2+deb12u1 arm64 MIT Kerberos runtime libraries - Support library
ii libksba8:arm64 1.6.3-2 arm64 X.509 and CMS support library
ii liblapack3:arm64 3.11.0-2 arm64 Library of linear algebra routines 3 - shared version
ii liblcms2-2:arm64 2.14-2 arm64 Little CMS 2 color management library
ii libldap-2.5-0:arm64 2.5.13+dfsg-5 arm64 OpenLDAP libraries
ii libldap-common 2.5.13+dfsg-5 all OpenLDAP common files for libraries
ii libldb2:arm64 2:2.6.2+samba4.17.12+dfsg-0+deb12u1 arm64 LDAP-like embedded database - shared library
ii liblerc4:arm64 4.0.0+ds-2 arm64 Limited Error Raster Compression library
ii liblilv-0-0:arm64 0.24.14-1 arm64 library for simple use of LV2 plugins
ii liblinear4:arm64 2.3.0+dfsg-5 arm64 Library for Large Linear Classification
ii liblirc-client0:arm64 0.10.1-7.2 arm64 infra-red remote control support - client library
ii liblircclient0 0.10.1-7.2 arm64 Transitional placeholder for obsoleted liblircclient0
ii liblist-allutils-perl 0.19-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-3+b1 arm64 Perl module providing compiled List::MoreUtils functions
ii liblist-someutils-perl 0.59-1 all module that provides the stuff missing in List::Util
ii liblist-utilsby-perl 0.12-2 all higher-order list utility functions
ii libllvm15:arm64 1:15.0.6-4+b1 arm64 Modular compiler and toolchain technologies, runtime library
ii liblmdb0:arm64 0.9.24-1 arm64 Lightning Memory-Mapped Database shared library
ii liblocal-lib-perl 2.000029-1 all module to use a local path for Perl modules
ii liblocale-gettext-perl 1.07-5 arm64 module using libc functions for internationalization in Perl
ii liblockfile-bin 1.17-1+b1 arm64 support binaries for and cli utilities based on liblockfile
ii liblockfile1:arm64 1.17-1+b1 arm64 NFS-safe locking library
ii liblog-message-perl 0.8-3 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-5 all Perl module to provide a unified approach to tracing
ii liblognorm5:arm64 2.0.6-4 arm64 log normalizing library
ii liblqr-1-0:arm64 0.4.2-2.1 arm64 converts plain array images into multi-size representation
ii liblsan0:arm64 12.2.0-14 arm64 LeakSanitizer -- a memory leak detector (runtime)
ii libltdl-dev:arm64 2.4.7-5 arm64 System independent dlopen wrapper for GNU libtool (headers)
ii libltdl7:arm64 2.4.7-5 arm64 System independent dlopen wrapper for GNU libtool
ii liblua5.1-0:arm64 5.1.5-9 arm64 Shared library for the Lua interpreter version 5.1
ii liblua5.2-0:arm64 5.2.4-3 arm64 Shared library for the Lua interpreter version 5.2
ii liblua5.3-0:arm64 5.3.6-2 arm64 Shared library for the Lua interpreter version 5.3
ii libluajit-5.1-2:arm64 2.1.0~beta3+git20220320+dfsg-4.1 arm64 Just in time compiler for Lua - library version
ii libluajit-5.1-common 2.1.0~beta3+git20220320+dfsg-4.1 all Just in time compiler for Lua - common files
ii liblwp-mediatypes-perl 6.04-2 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 liblz4-1:arm64 1.9.4-1 arm64 Fast LZ compression algorithm library - runtime
ii liblzma5:arm64 5.4.1-0.2 arm64 XZ-format compression library
ii liblzo2-2:arm64 2.10-2 arm64 data compression library
ii libmad0:arm64 0.15.1b-10.1+b1 arm64 MPEG audio decoder library
ii libmagic-mgc 1:5.44-3 arm64 File type determination library using "magic" numbers (compiled magic file)
ii libmagic1:arm64 1:5.44-3 arm64 Recognize the type of data in a file using "magic" numbers - library
ii libmagickcore-6.q16-6:arm64 8:6.9.11.60+dfsg-1.6 arm64 low-level image manipulation library -- quantum depth Q16
ii libmagickcore-6.q16-6-extra:arm64 8:6.9.11.60+dfsg-1.6 arm64 low-level image manipulation library - extra codecs (Q16)
ii libmagickwand-6.q16-6:arm64 8:6.9.11.60+dfsg-1.6 arm64 image manipulation library -- quantum depth Q16
ii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs
ii libmariadb3:arm64 1:10.11.4-1~deb12u1 arm64 MariaDB database client library
ii libmath-base85-perl 0.5+dfsg-2 all Perl extension for base 85 numbers, as referenced by RFC 1924
ii libmath-bigint-perl 1.999838-1 all arbitrary size integer/float math package
ii libmaxminddb0:arm64 1.7.1-1 arm64 IP geolocation database library
ii libmbedcrypto7:arm64 2.28.3-1 arm64 lightweight crypto and SSL/TLS library - crypto library
ii libmbim-glib4:arm64 1.28.2-1 arm64 Support library to use the MBIM protocol
ii libmbim-proxy 1.28.2-1 arm64 Proxy to communicate with MBIM ports
ii libmcrypt4 2.5.8-7 arm64 De-/Encryption Library
ii libmd0:arm64 1.0.4-2 arm64 message digest functions from BSD systems - shared library
ii libmd4c0:arm64 0.4.8-1 arm64 Markdown for C
ii libmikmod3:arm64 3.3.11.1-7 arm64 Portable sound library
ii libmime-types-perl 2.24-1 all Perl extension for determining MIME types and Transfer Encoding
ii libmm-glib0:arm64 1.20.4-1 arm64 D-Bus service for managing modems - shared libraries
ii libmnl-dev:arm64 1.0.4-3 arm64 minimalistic Netlink communication library (devel)
ii libmnl0:arm64 1.0.4-3 arm64 minimalistic Netlink communication library
ii libmodule-build-perl 0.423200-1 all framework for building and installing Perl modules
ii libmodule-cpanfile-perl 1.1004-2 all format for describing CPAN dependencies of Perl applications
ii libmodule-implementation-perl 0.09-2 all module for loading one of several alternate implementations of a module
ii libmodule-load-conditional-perl 0.74-2 all module for looking up information about modules
ii libmodule-pluggable-perl 5.2-4 all module for giving modules the ability to have plugins
ii libmodule-runtime-perl 0.016-2 all Perl module for runtime module handling
ii libmodule-signature-perl 0.88-2 all module to manipulate CPAN SIGNATURE files
ii libmoo-perl 2.005005-1 all Minimalist Object Orientation library (with Moose compatibility)
ii libmoox-handlesvia-perl 0.001009-2 all Moose Native Traits-like behavior for Moo
ii libmoox-types-mooselike-perl 0.29-2 all module providing some Moosish types and a type builder
ii libmosquitto1:arm64 2.0.11-1.2+deb12u1 arm64 MQTT version 5.0/3.1.1/3.1 client library
ii libmount-dev:arm64 2.38.1-5+b1 arm64 device mounting library - headers
ii libmount1:arm64 2.38.1-5+b1 arm64 device mounting library
ii libmp3lame0:arm64 3.100-6 arm64 MP3 encoding library
ii libmpc3:arm64 1.3.1-1 arm64 multiple precision complex floating-point library
ii libmpfr6:arm64 4.2.0-1 arm64 multiple precision floating-point computation
ii libmpg123-0:arm64 1.31.2-1 arm64 MPEG layer 1/2/3 audio decoder (shared library)
ii libmro-compat-perl 0.15-2 all mro::* interface compatibility for Perls < 5.9.5
ii libmtdev1:arm64 1.1.6-1 arm64 Multitouch Protocol Translation Library - shared library
ii libmtp-common 1.1.20-1 all Media Transfer Protocol (MTP) common files
ii libmtp-runtime 1.1.20-1 arm64 Media Transfer Protocol (MTP) runtime tools
ii libmtp9:arm64 1.1.20-1 arm64 Media Transfer Protocol (MTP) library
ii libmujs2:arm64 1.3.2-1 arm64 Lightweight JavaScript interpreter library
ii libmysofa1:arm64 1.3.1~dfsg0-1 arm64 library to read HRTFs stored in the AES69-2015 SOFA format
ii libnamespace-autoclean-perl 0.29-2 all module to remove imported symbols after compilation
ii libnamespace-clean-perl 0.27-2 all module for keeping imports and functions out of the current namespace
ii libncurses5:arm64 6.4-4 arm64 shared libraries for terminal handling (legacy version)
ii libncurses6:arm64 6.4-4 arm64 shared libraries for terminal handling
ii libncursesw5:arm64 6.4-4 arm64 shared libraries for terminal handling (wide character legacy version)
ii libncursesw6:arm64 6.4-4 arm64 shared libraries for terminal handling (wide character support)
ii libnet-dbus-perl 1.2.0-2 arm64 Perl extension for the DBus bindings
ii libnet-http-perl 6.22-1 all module providing low-level HTTP connection client
ii libnet-ipv6addr-perl 1.02-1 all module to validate/manipulate IPv6 addresses
ii libnet-libidn-perl 0.12.ds-4+b1 arm64 Perl bindings for GNU Libidn
ii libnet-netmask-perl 2.0002-2 all module to parse, manipulate and lookup IP network blocks
ii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP
ii libnet-ssleay-perl:arm64 1.92-2+b1 arm64 Perl module for Secure Sockets Layer (SSL)
ii libnet-subnet-perl 1.03-2 all Fast IP-in-subnet matcher module for IPv4 and IPv6
ii libnetaddr-ip-perl 4.079+dfsg-2+b1 arm64 IP address manipulation module
ii libnetfilter-conntrack3:arm64 1.0.9-3 arm64 Netfilter netlink-conntrack library
ii libnetpbm11:arm64 2:11.01.00-2 arm64 Graphics conversion tools shared libraries
ii libnettle8:arm64 3.8.1-2 arm64 low level cryptographic library (symmetric and one-way cryptos)
ii libnetwork-ipv4addr-perl 0.10.ds-4 all Perl extension for manipulating IPv4 addresses
ii libnewt0.52:arm64 0.52.23-1+b1 arm64 Not Erik's Windowing Toolkit - text mode windowing with slang
ii libnfnetlink0:arm64 1.0.2-2 arm64 Netfilter netlink library
ii libnfsidmap1:arm64 1:2.6.2-4 arm64 NFS idmapping library
ii libnftables1:arm64 1.0.6-2+deb12u2 arm64 Netfilter nftables high level userspace API library
ii libnftnl11:arm64 1.2.4-2 arm64 Netfilter nftables userspace API library
ii libnghttp2-14:arm64 1.52.0-1 arm64 library implementing HTTP/2 protocol (shared library)
ii libnl-3-200:arm64 3.7.0-0.2+b1 arm64 library for dealing with netlink sockets
ii libnl-genl-3-200:arm64 3.7.0-0.2+b1 arm64 library for dealing with netlink sockets - generic netlink
ii libnl-route-3-200:arm64 3.7.0-0.2+b1 arm64 library for dealing with netlink sockets - route interface
ii libnorm1:arm64 1.5.9+dfsg-2 arm64 NACK-Oriented Reliable Multicast (NORM) library
ii libnotify4:arm64 0.8.1-1 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.35-1 arm64 NetScape Portable Runtime Library
ii libnss-mdns:arm64 0.15.1-3 arm64 NSS module for Multicast DNS name resolution
ii libnss-systemd:arm64 252.17-1~deb12u1 arm64 nss module providing dynamic user and group name resolution
ii libnss3:arm64 2:3.87.1-1 arm64 Network Security Service libraries
ii libntfs-3g89:arm64 1:2022.10.3-1+b1 arm64 read/write NTFS driver for FUSE (runtime library)
ii libntlm0:arm64 1.6-4 arm64 NTLM authentication library
ii libnuma1:arm64 2.0.16-1 arm64 Libraries for controlling NUMA policy
ii libnumber-compare-perl 0.03-3 all module for performing numeric comparisons in Perl
ii libogg-dev:arm64 1.3.5-3 arm64 Ogg bitstream library development files
ii libogg0:arm64 1.3.5-3 arm64 Ogg bitstream library
ii libonig5:arm64 6.9.8-1 arm64 regular expressions 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 libopenexr-3-1-30:arm64 3.1.5-5 arm64 runtime files for the OpenEXR image library
ii libopenjp2-7:arm64 2.5.0-2 arm64 JPEG 2000 image compression/decompression library
ii libopenmpt0:arm64 0.6.9-1 arm64 module music library based on OpenMPT -- shared library
ii libopus0:arm64 1.3.1-3 arm64 Opus codec runtime library
ii liborc-0.4-0:arm64 1:0.4.33-2 arm64 Library of Optimized Inner Loops Runtime Compiler
ii libout123-0:arm64 1.31.2-1 arm64 MPEG layer 1/2/3 audio decoder (libout123 shared library)
ii libp11-kit0:arm64 0.24.1-2 arm64 library for loading and coordinating access to PKCS#11 modules - runtime
ii libpackage-constants-perl 0.06-3 all module to list constants defined in a package
ii libpackage-stash-perl 0.40-1 all module providing routines for manipulating stashes
ii libpackage-stash-xs-perl:arm64 0.30-1+b1 arm64 Perl module providing routines for manipulating stashes (XS version)
ii libpadwalker-perl 2.5-1+b3 arm64 module to inspect and manipulate lexical variables
ii libpam-modules:arm64 1.5.2-6+rpt2+deb12u1 arm64 Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.5.2-6+rpt2+deb12u1 arm64 Pluggable Authentication Modules for PAM - helper binaries
ii libpam-runtime 1.5.2-6+rpt2+deb12u1 all Runtime support for the PAM library
ii libpam-systemd:arm64 252.17-1~deb12u1 arm64 system and service manager - PAM module
ii libpam0g:arm64 1.5.2-6+rpt2+deb12u1 arm64 Pluggable Authentication Modules library
ii libpango-1.0-0:arm64 1.50.12+ds-1 arm64 Layout and rendering of internationalized text
ii libpangocairo-1.0-0:arm64 1.50.12+ds-1 arm64 Layout and rendering of internationalized text
ii libpangoft2-1.0-0:arm64 1.50.12+ds-1 arm64 Layout and rendering of internationalized text
ii libpaper-utils 1.1.29 arm64 library for handling paper characteristics (utilities)
ii libpaper1:arm64 1.1.29 arm64 library for handling paper characteristics
ii libparams-classify-perl:arm64 0.015-2+b1 arm64 Perl module for argument type classification
ii libparams-util-perl 1.102-2+b1 arm64 Perl extension for simple stand-alone param checking functions
ii libparams-validate-perl:arm64 1.31-1 arm64 Perl module to validate parameters to Perl method/function calls
ii libparams-validationcompiler-perl 0.31-1 all module to build an optimized subroutine parameter validator
ii libparse-pmfile-perl 0.43-2 all module to parse .pm file as PAUSE does
ii libparted2:arm64 3.5-3 arm64 disk partition manipulator - shared library
ii libpath-tiny-perl 0.144-1 all file path utility
ii libpcap0.8:arm64 1.10.3-1 arm64 system interface for user-level packet capture
ii libpci3:arm64 1:3.9.0-4 arm64 PCI utilities (shared library)
ii libpciaccess0:arm64 0.17-2 arm64 Generic PCI access library for X
ii libpcre16-3:arm64 2:8.45-1+0~20230620.10+debian12~1.gbp8792c4 arm64 Perl 5 Compatible Regular Expression Library - 16 bit runtime files
ii libpcre2-16-0:arm64 10.42-1 arm64 New Perl Compatible Regular Expression Library - 16 bit runtime files
ii libpcre2-32-0:arm64 10.42-1 arm64 New Perl Compatible Regular Expression Library - 32 bit runtime files
ii libpcre2-8-0:arm64 10.42-1 arm64 New Perl Compatible Regular Expression Library- 8 bit runtime files
ii libpcre2-dev:arm64 10.42-1 arm64 New Perl Compatible Regular Expression Library - development files
ii libpcre2-posix3:arm64 10.42-1 arm64 New Perl Compatible Regular Expression Library - posix-compatible runtime files
ii libpcre3:arm64 2:8.45-1+0~20230620.10+debian12~1.gbp8792c4 arm64 Perl 5 Compatible Regular Expression Library - runtime files
ii libpcre3-dev:arm64 2:8.45-1+0~20230620.10+debian12~1.gbp8792c4 arm64 Perl 5 Compatible Regular Expression Library - development files
ii libpcre32-3:arm64 2:8.45-1+0~20230620.10+debian12~1.gbp8792c4 arm64 Perl 5 Compatible Regular Expression Library - 32 bit runtime files
ii libpcrecpp0v5:arm64 2:8.45-1+0~20230620.10+debian12~1.gbp8792c4 arm64 Perl 5 Compatible Regular Expression Library - C++ runtime files
ii libpcsclite1:arm64 1.9.9-2 arm64 Middleware to access a smart card using PC/SC (library)
ii libperl4-corelibs-perl 0.004-3 all libraries historically supplied with Perl 4
ii libperl5.36:arm64 5.36.0-7 arm64 shared Perl library
ii libperlio-via-timeout-perl 0.32-3 all PerlIO layer that adds read & write timeout to a handle
ii libpgm-5.3-0:arm64 5.3.128~dfsg-2 arm64 OpenPGM shared library
ii libpipeline1:arm64 1.5.7-1 arm64 Unix process pipeline manipulation library
ii libpipewire-0.3-0:arm64 0.3.65-3+rpt3 arm64 libraries for the PipeWire multimedia server
ii libpixman-1-0:arm64 0.42.2-1+rpt1 arm64 pixel-manipulation library for X and cairo
ii libpixman-1-dev:arm64 0.42.2-1+rpt1 arm64 pixel-manipulation library for X and cairo (development files)
ii libpkcs11-helper1:arm64 1.29.0-1 arm64 library that simplifies the interaction with PKCS#11
ii libpkgconf3:arm64 1.8.1-1 arm64 shared library for pkgconf
ii libplacebo208:arm64 4.208.0-3 arm64 GPU-accelerated video/image rendering primitives (shared library)
ii libplymouth5:arm64 22.02.122-3+rpt1 arm64 graphical boot animation and logger - shared libraries
ii libpng-dev:arm64 1.6.39-2 arm64 PNG library - development (version 1.6)
ii libpng-tools 1.6.39-2 arm64 PNG library - tools (version 1.6)
ii libpng16-16:arm64 1.6.39-2 arm64 PNG library - runtime (version 1.6)
ii libpocketsphinx3:arm64 0.8+5prealpha+1-15 arm64 Speech recognition tool - front-end library
ii libpod-markdown-perl 3.300000-2 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:arm64 122-3 arm64 polkit Authentication Agent API
ii libpolkit-gobject-1-0:arm64 122-3 arm64 polkit Authorization API
ii libpopt0:arm64 1.19+dfsg-1 arm64 lib for parsing cmdline parameters
ii libportaudio2:arm64 19.6.0-1.2 arm64 Portable audio I/O - shared library
ii libpostproc56:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library for post processing - runtime files
ii libpq5:arm64 15.5-0+deb12u1 arm64 PostgreSQL C client library
ii libproc2-0:arm64 2:4.0.2-3 arm64 library for accessing process information from /proc
ii libprotobuf-c1:arm64 1.4.1-1+b1 arm64 Protocol Buffers C shared library (protobuf-c)
ii libproxy1v5:arm64 0.4.18-1.2 arm64 automatic proxy configuration management library (shared)
ii libpsl5:arm64 0.21.2-1 arm64 Library for Public Suffix List (shared libraries)
ii libpthread-stubs0-dev:arm64 0.4-1 arm64 pthread stubs not provided by native libc, development files
ii libpulse0:arm64 16.1+dfsg1-2+rpt1 arm64 PulseAudio client libraries
ii libpython3-dev:arm64 3.11.2-1+b1 arm64 header files and a static library for Python (default)
ii libpython3-stdlib:arm64 3.11.2-1+b1 arm64 interactive high-level object-oriented language (default python3 version)
ii libpython3.11:arm64 3.11.2-6 arm64 Shared Python runtime library (version 3.11)
ii libpython3.11-dev:arm64 3.11.2-6 arm64 Header files and a static library for Python (v3.11)
ii libpython3.11-minimal:arm64 3.11.2-6 arm64 Minimal subset of the Python language (version 3.11)
ii libpython3.11-stdlib:arm64 3.11.2-6 arm64 Interactive high-level object-oriented language (standard library, version 3.11)
ii libpython3.11-testsuite 3.11.2-6 all Testsuite for the Python standard library (v3.11)
ii libqdbm14 1.8.78-12+b1 arm64 QDBM Database Libraries without GDBM wrapper[runtime]
ii libqmi-glib5:arm64 1.32.2-1 arm64 Support library to use the Qualcomm MSM Interface (QMI) protocol
ii libqmi-proxy 1.32.2-1 arm64 Proxy to communicate with QMI ports
ii libqrtr-glib0:arm64 1.2.2-1 arm64 Support library to use the QRTR protocol
ii libqt5core5a:arm64 5.15.8+dfsg-11 arm64 Qt 5 core module
ii libqt5dbus5:arm64 5.15.8+dfsg-11 arm64 Qt 5 D-Bus module
ii libqt5gui5:arm64 5.15.8+dfsg-11 arm64 Qt 5 GUI module
ii libqt5network5:arm64 5.15.8+dfsg-11 arm64 Qt 5 network module
ii libqt5positioning5:arm64 5.15.8+dfsg-3+deb12u1 arm64 Qt Positioning module
ii libqt5printsupport5:arm64 5.15.8+dfsg-11 arm64 Qt 5 print support module
ii libqt5qml5:arm64 5.15.8+dfsg-3 arm64 Qt 5 QML module
ii libqt5qmlmodels5:arm64 5.15.8+dfsg-3 arm64 Qt 5 QML Models library
ii libqt5quick5:arm64 5.15.8+dfsg-3 arm64 Qt 5 Quick library
ii libqt5sensors5:arm64 5.15.8-2 arm64 Qt Sensors module
ii libqt5svg5:arm64 5.15.8-3 arm64 Qt 5 SVG module
ii libqt5webchannel5:arm64 5.15.8-2 arm64 Web communication library for Qt
ii libqt5webkit5:arm64 5.212.0~alpha4-30 arm64 Web content engine library for Qt
ii libqt5widgets5:arm64 5.15.8+dfsg-11 arm64 Qt 5 widgets module
ii librabbitmq4:arm64 0.11.0-1+b1 arm64 AMQP client library written in C
ii librados2 16.2.11+ds-2 arm64 RADOS distributed object store client library
ii libraspberrypi-bin 1:2+git20231018~131943+3c97f76-1 arm64 Miscellaneous Raspberry Pi utilities
ii libraspberrypi0:arm64 1:2+git20231018~131943+3c97f76-1 arm64 Libraries for the Raspberry Pi's VideoCore IV
ii librav1e0:arm64 0.5.1-6 arm64 Fastest and safest AV1 encoder - shared library
ii libraw1394-11:arm64 2.1.2-2 arm64 library for direct access to IEEE 1394 bus (aka FireWire)
ii librdmacm1:arm64 44.0-2 arm64 Library for managing RDMA connections
ii libreadline8:arm64 8.2-1.3 arm64 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-2 all set of utility functions for checking references
ii libref-util-xs-perl 0.117-2+b1 arm64 XS implementation for Ref::Util
ii libregexp-common-perl 2017060201-3 all module with common regular expressions
ii libregexp-ipv6-perl 0.03-3 all Regular expression for IPv6 addresses
ii librist4:arm64 0.2.7+dfsg-1 arm64 Reliable Internet Stream Transport -- shared library
ii libroken19-heimdal:arm64 7.8.git20221117.28daf24+dfsg-2 arm64 Heimdal Kerberos - roken support library
ii librole-tiny-perl 2.002004-1 all Perl module for minimalist role composition
ii librsvg2-2:arm64 2.54.7+dfsg-1~deb12u1 arm64 SAX-based renderer library for SVG files (runtime)
ii librsvg2-common:arm64 2.54.7+dfsg-1~deb12u1 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 3.1.2+dfsg0-1 arm64 audio time-stretching and pitch-shifting library
ii libsamplerate0:arm64 0.2.2-3 arm64 Audio sample rate conversion library
ii libsasl2-2:arm64 2.1.28+dfsg-10 arm64 Cyrus SASL - authentication abstraction library
ii libsasl2-modules:arm64 2.1.28+dfsg-10 arm64 Cyrus SASL - pluggable authentication modules
ii libsasl2-modules-db:arm64 2.1.28+dfsg-10 arm64 Cyrus SASL - pluggable authentication modules (DB)
ii libscalar-list-utils-perl 1:1.63-1+b1 arm64 modules providing common scalar and list utility subroutines
ii libsdl1.2debian:arm64 1.2.15+dfsg2-8 arm64 Simple DirectMedia Layer
ii libsdl2-2.0-0:arm64 2.26.5+dfsg-1 arm64 Simple DirectMedia Layer
ii libseccomp2:arm64 2.5.4-1+b3 arm64 high level interface to Linux seccomp filter
ii libsecret-1-0:arm64 0.20.5-3 arm64 Secret store
ii libsecret-common 0.20.5-3 all Secret store (common files)
ii libselinux1:arm64 3.4-1+b6 arm64 SELinux runtime shared libraries
ii libselinux1-dev:arm64 3.4-1+b6 arm64 SELinux development headers
ii libsemanage-common 3.4-1 all Common files for SELinux policy management libraries
ii libsemanage2:arm64 3.4-1+b5 arm64 SELinux policy management library
ii libsensors-config 1:3.6.0-7.1 all lm-sensors configuration files
ii libsensors5:arm64 1:3.6.0-7.1 arm64 library to read temperature/voltage/fan sensors
ii libsepol-dev:arm64 3.4-2.1 arm64 SELinux binary policy manipulation library and development files
ii libsepol2:arm64 3.4-2.1 arm64 SELinux library for manipulating binary security policies
ii libserd-0-0:arm64 0.30.16-1 arm64 lightweight RDF syntax library
ii libshine3:arm64 3.1.1-2 arm64 Fixed-point MP3 encoding library - runtime files
ii libsigc++-2.0-0v5:arm64 2.12.0-1 arm64 type-safe Signal Framework for C++ - runtime
ii libsigsegv2:arm64 2.14-1 arm64 Library for handling page faults in a portable way
ii libsixel1:arm64 1.10.3-3 arm64 DEC SIXEL graphics codec implementation (runtime)
ii libslang2:arm64 2.3.3-3 arm64 S-Lang programming library - runtime version
ii libsm-dev:arm64 2:1.2.3-1 arm64 X11 Session Management library (development headers)
ii libsm6:arm64 2:1.2.3-1 arm64 X11 Session Management library
ii libsmartcols1:arm64 2.38.1-5+b1 arm64 smart column output alignment library
ii libsmbclient:arm64 2:4.17.12+dfsg-0+deb12u1 arm64 shared library for communication with SMB/CIFS servers
ii libsnappy1v5:arm64 1.1.9-3 arm64 fast compression/decompression library
ii libsndfile1:arm64 1.2.0-1 arm64 Library for reading/writing audio files
ii libsndio7.0:arm64 1.9.0-0.3+b2 arm64 Small audio and MIDI framework from OpenBSD, runtime libraries
ii libsocket6-perl 0.29-3 arm64 Perl extensions for IPv6
ii libsodium23:arm64 1.0.18-1 arm64 Network communication, cryptography and signaturing library
ii libsoftware-license-perl 0.104002-1 all module providing templated software licenses
ii libsord-0-0:arm64 0.16.14+git221008-1 arm64 library for storing RDF data in memory
ii libsoup-3.0-0:arm64 3.2.2-2 arm64 HTTP library implementation in C -- Shared library
ii libsoup-3.0-common 3.2.2-2 all HTTP library implementation in C -- Common files
ii libsoup-gnome2.4-1:arm64 2.74.3-1 arm64 HTTP library implementation in C -- GNOME support library
ii libsoup2.4-1:arm64 2.74.3-1 arm64 HTTP library implementation in C -- Shared library
ii libsoup2.4-common 2.74.3-1 all HTTP library implementation in C -- Common files
ii libsource-highlight-common 3.1.9-4.2 all architecture-independent files for source highlighting library
ii libsource-highlight4v5:arm64 3.1.9-4.2+b3 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.65-3+rpt3 arm64 libraries for the PipeWire multimedia server Simple Plugin API - modules
ii libspecio-perl 0.48-1 all Perl module providing type constraints and coercions
ii libspeex1:arm64 1.2.1-2 arm64 The Speex codec runtime library
ii libsphinxbase3:arm64 0.8+5prealpha+1-16 arm64 Speech recognition tool - shared library
ii libspiffy-perl 0.46-1 all Spiffy Perl Interface Framework For You
ii libsqlite3-0:arm64 3.40.1-2 arm64 SQLite 3 shared library
ii libsratom-0-0:arm64 0.6.14-1 arm64 library for serialising LV2 atoms to/from Turtle
ii libsrt1.5-gnutls:arm64 1.5.1-1 arm64 Secure Reliable Transport UDP streaming library (GnuTLS flavour)
ii libss2:arm64 1.47.0-2 arm64 command-line interface parsing library
ii libssh-gcrypt-4:arm64 0.10.5-2 arm64 tiny C SSH library (gcrypt flavor)
ii libssh2-1:arm64 1.10.0-3+b1 arm64 SSH2 client-side library
ii libssl-dev:arm64 3.0.11-1~deb12u2+rpt1 arm64 Secure Sockets Layer toolkit - development files
ii libssl3:arm64 3.0.11-1~deb12u2+rpt1 arm64 Secure Sockets Layer toolkit - shared libraries
ii libstdc++6:arm64 12.2.0-14 arm64 GNU Standard C++ Library v3
ii libstrictures-perl 2.000006-1 all Perl module to turn on strict and make all warnings fatal
ii libstring-shellquote-perl 1.04-3 all module to quote strings for passing through the shell
ii libsub-exporter-perl 0.989-1 all sophisticated exporter for custom-built routines
ii libsub-exporter-progressive-perl 0.001013-3 all module for using Sub::Exporter only if needed
ii libsub-identify-perl 0.14-3 arm64 module to retrieve names of code references
ii libsub-install-perl 0.929-1 all module for installing subroutines into packages easily
ii libsub-name-perl:arm64 0.26-2+b1 arm64 module for assigning a new name to referenced sub
ii libsub-quote-perl 2.006008-1 all helper modules for subroutines
ii libsvtav1enc1:arm64 1.4.1+dfsg-1 arm64 Scalable Video Technology for AV1 (libsvtav1enc shared library)
ii libswresample-dev:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library for audio resampling, rematrixing etc. - development files
ii libswresample4:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library for audio resampling, rematrixing etc. - runtime files
ii libswscale6:arm64 8:5.1.4-0+rpt1+deb12u1 arm64 FFmpeg library for image scaling and various conversions - runtime files
ii libsyn123-0:arm64 1.31.2-1 arm64 MPEG layer 1/2/3 audio decoder (libsyn123 shared library)
ii libsys-filesystem-perl 1.408-1 all Perl module to retrieve list of filesystems and their properties
ii libsysfs2:arm64 2.1.1-4 arm64 interface library to sysfs - shared library
ii libsystemd-shared:arm64 252.17-1~deb12u1 arm64 systemd shared private library
ii libsystemd0:arm64 252.17-1~deb12u1 arm64 systemd utility library
ii libtag1v5:arm64 1.13-2 arm64 audio meta-data library
ii libtag1v5-vanilla:arm64 1.13-2 arm64 audio meta-data library - vanilla flavour
ii libtalloc2:arm64 2.4.0-f2 arm64 hierarchical pool based memory allocator
ii libtasn1-6:arm64 4.19.0-2 arm64 Manage ASN.1 structures (runtime)
ii libtcl8.6:arm64 8.6.13+dfsg-2 arm64 Tcl (the Tool Command Language) v8.6 - run-time library files
ii libtdb1:arm64 1.4.8-2 arm64 Trivial Database - shared library
ii libterm-readkey-perl 2.38-2+b1 arm64 perl module for simple terminal control
ii libterm-ui-perl 0.50-1 all Term::ReadLine UI made easy
ii libtest-assertions-perl 1.054-5 all simple set of building blocks for unit and runtime testing
ii libtest-fatal-perl 0.017-1 all module for testing code with exceptions
ii libtevent0:arm64 0.14.1-1 arm64 talloc-based event loop library - shared library
ii libtext-charwidth-perl:arm64 0.04-11 arm64 get display widths of characters on the terminal
ii libtext-glob-perl 0.11-3 all Perl module for matching globbing patterns against text
ii libtext-iconv-perl:arm64 1.7-8 arm64 module to convert between character sets in Perl
ii libtext-soundex-perl 3.05-2+b1 arm64 implementation of the soundex algorithm
ii libtext-template-perl 1.61-1 all perl module to process text templates
ii libtext-unidecode-perl 1.30-3 all US-ASCII transliterations of Unicode text
ii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap
ii libthai-data 0.1.29-1 all Data files for Thai language support library
ii libthai0:arm64 0.1.29-1 arm64 Thai language support library
ii libtheora0:arm64 1.1.1+dfsg.1-16.1+b1 arm64 Theora Video Compression Codec
ii libthrowable-perl 1.001-1 all role for classes that can be thrown
ii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays
ii libtiff6:arm64 4.5.0-6+deb12u1 arm64 Tag Image File Format (TIFF) library
ii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information
ii libtinfo5:arm64 6.4-4 arm64 shared low-level terminfo library (legacy version)
ii libtinfo6:arm64 6.4-4 arm64 shared low-level terminfo library for terminal handling
ii libtirpc-common 1.3.3+ds-1 all transport-independent RPC library - common files
ii libtirpc-dev:arm64 1.3.3+ds-1 arm64 transport-independent RPC library - development files
ii libtirpc3:arm64 1.3.3+ds-1 arm64 transport-independent RPC library
ii libtk8.6:arm64 8.6.13-2 arm64 Tk toolkit for Tcl and X11 v8.6 - run-time files
ii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch
ii libtsan2:arm64 12.2.0-14 arm64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)
ii libtwolame0:arm64 0.4.0-2 arm64 MPEG Audio Layer 2 encoding library
ii libtype-tiny-perl 2.002001-1 all tiny, yet Moo(se)-compatible type constraint
ii libtype-tiny-xs-perl:arm64 0.025-1 arm64 boost for some of Type::Tiny's built-in type constraints
ii libtypes-serialiser-perl 1.01-1 all module providing simple data types for common serialisation formats
ii libubsan1:arm64 12.2.0-14 arm64 UBSan -- undefined behaviour sanitizer (runtime)
ii libuchardet0:arm64 0.0.7-1 arm64 universal charset detection library - shared library
ii libudev0:arm64 200-1 arm64 compatibility wrapper for libudev version 0
ii libudev1:arm64 252.17-1~deb12u1 arm64 libudev shared library
ii libudfread0:arm64 1.1.2-1 arm64 UDF reader library
ii libunicode-utf8-perl 0.62-2 arm64 encoding and decoding of UTF-8 encoding form
ii libunistring2:arm64 1.0-2 arm64 Unicode string library for C
ii libunwind8:arm64 1.6.2-3 arm64 library to determine the call-chain of a program - runtime