-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprograms.txt
More file actions
1715 lines (1715 loc) · 225 KB
/
Copy pathprograms.txt
File metadata and controls
1715 lines (1715 loc) · 225 KB
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 accountsservice 22.08.8-6 amd64 query and manipulate user account information
ii acl 2.3.1-3 amd64 access control list - utilities
ii adb 1:29.0.6-28 amd64 Android Debug Bridge
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-topology-conf 1.2.5.1-2 all ALSA topology configuration files
ii alsa-ucm-conf 1.2.8-1 all ALSA Use Case Manager configuration files
ii alsa-utils 1.2.8-1 amd64 Utilities for configuring and using ALSA
ii anacron 2.3-36 amd64 cron-like program that doesn't go by time
ii android-libbase:amd64 1:29.0.6-28 amd64 Android base library
ii android-libboringssl:amd64 13.0.0+r24-2 amd64 Google's internal fork of OpenSSL for the Android SDK
ii android-libcutils:amd64 1:29.0.6-28 amd64 Android utils library for C
ii android-liblog:amd64 1:29.0.6-28 amd64 Android NDK logger interfaces
ii android-libsparse:amd64 1:29.0.6-28 amd64 Library for sparse files
ii android-libziparchive:amd64 1:29.0.6-28 amd64 Library for ZIP archives
ii android-sdk-platform-tools 28.0.2+9 amd64 Tools for interacting with an Android platform
ii android-sdk-platform-tools-common 28.0.2+9 all Tools for interacting with an Android platform - Common files
ii apparmor 3.0.8-3 amd64 user-space parser utility for AppArmor
ii apt 2.6.1 amd64 commandline package manager
ii apt-listchanges 3.24 all package change history notification tool
ii apt-utils 2.6.1 amd64 package management related utility programs
ii aspell 0.60.8-4+b1 amd64 GNU Aspell spell-checker
ii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell
ii at-spi2-common 2.46.0-5 all Assistive Technology Service Provider Interface (common files)
ii at-spi2-core 2.46.0-5 amd64 Assistive Technology Service Provider Interface (D-Bus core)
ii atril 1.26.0-2+deb12u3 amd64 MATE document viewer
ii atril-common 1.26.0-2+deb12u3 all MATE document viewer (common files)
ii avahi-daemon 0.8-10 amd64 Avahi mDNS/DNS-SD daemon
ii avahi-utils 0.8-10 amd64 Avahi browsing, publishing and discovery utilities
ii base-files 12.4+deb12u5 amd64 Debian base system miscellaneous files
ii base-passwd 3.6.1 amd64 Debian base system master password and group files
ii bash 5.2.15-2+b2 amd64 GNU Bourne Again SHell
ii bash-completion 1:2.11-6 all programmable completion for the bash shell
ii bc 1.07.1-3+b1 amd64 GNU bc arbitrary precision calculator language
ii beekeeper-studio 4.3.2 amd64
ii bind9-dnsutils 1:9.18.24-1 amd64 Clients provided with BIND 9
ii bind9-host 1:9.18.24-1 amd64 DNS Lookup Utility
ii bind9-libs:amd64 1:9.18.24-1 amd64 Shared Libraries used by BIND 9
ii binutils 2.40-2 amd64 GNU assembler, linker and binary utilities
ii binutils-common:amd64 2.40-2 amd64 Common files for the GNU assembler, linker and binary utilities
ii binutils-x86-64-linux-gnu 2.40-2 amd64 GNU binary utilities, for x86-64-linux-gnu target
ii blueman 2.3.5-2+b1 amd64 Graphical bluetooth manager
ii bluez 5.66-1+deb12u1 amd64 Bluetooth tools and daemons
ii bluez-obexd 5.66-1+deb12u1 amd64 bluez obex daemon
ii bluez-tools 2.0~20170911.0.7cb788c-4 amd64 Set of tools to manage Bluetooth devices for linux
ii bsdextrautils 2.38.1-5+deb12u1 amd64 extra utilities from 4.4BSD-Lite
ii bsdutils 1:2.38.1-5+deb12u1 amd64 basic utilities from 4.4BSD-Lite
ii bubblewrap 0.8.0-2 amd64 utility for unprivileged chroot and namespace manipulation
ii build-essential 12.9 amd64 Informational list of build-essential packages
ii busybox 1:1.35.0-4+b3 amd64 Tiny utilities for small and embedded systems
ii bzip2 1.0.8-5+b1 amd64 high-quality block-sorting file compressor - utilities
ii ca-certificates 20230311 all Common CA certificates
ii ca-certificates-java 20230710~deb12u1 all Common CA certificates (JKS keystore)
ii caca-utils 0.99.beta20-3 amd64 text mode graphics utilities
ii chafa 1.12.4-1+b1 amd64 Image-to-text converter supporting a wide range of symbols, etc.
ii cheese-common 43.0-1 all Common files for the Cheese tool to take pictures and videos
ii chromium 125.0.6422.60-1~deb12u1 amd64 web browser
ii chromium-common 125.0.6422.60-1~deb12u1 amd64 web browser - common resources used by the chromium packages
ii chromium-sandbox 125.0.6422.60-1~deb12u1 amd64 web browser - setuid security sandbox for chromium
ii code 1.89.1-1715060508 amd64 Code editing. Redefined.
ii colord 1.4.6-2.2 amd64 system service to manage device colour profiles -- system daemon
ii colord-data 1.4.6-2.2 all system service to manage device colour profiles -- data files
ii console-setup 1.221 all console font and keymap setup program
ii console-setup-linux 1.221 all Linux specific part of console-setup
ii coreutils 9.1-1 amd64 GNU core utilities
ii cpio 2.13+dfsg-7.1 amd64 GNU cpio -- a program to manage archives of files
ii cpp 4:12.2.0-3 amd64 GNU C preprocessor (cpp)
ii cpp-12 12.2.0-14 amd64 GNU C preprocessor
ii cracklib-runtime 2.9.6-5+b1 amd64 runtime support for password checker library cracklib2
ii cron 3.0pl1-162 amd64 process scheduling daemon
ii cron-daemon-common 3.0pl1-162 all process scheduling daemon's configuration files
ii cups 2.4.2-3+deb12u5 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface
ii cups-browsed 1.28.17-3 amd64 OpenPrinting CUPS Filters - cups-browsed
ii cups-client 2.4.2-3+deb12u5 amd64 Common UNIX Printing System(tm) - client programs (SysV)
ii cups-common 2.4.2-3+deb12u5 all Common UNIX Printing System(tm) - common files
ii cups-core-drivers 2.4.2-3+deb12u5 amd64 Common UNIX Printing System(tm) - driverless printing
ii cups-daemon 2.4.2-3+deb12u5 amd64 Common UNIX Printing System(tm) - daemon
ii cups-filters 1.28.17-3 amd64 OpenPrinting CUPS Filters - Main Package
ii cups-filters-core-drivers 1.28.17-3 amd64 OpenPrinting CUPS Filters - Driverless printing
ii cups-ipp-utils 2.4.2-3+deb12u5 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities
ii cups-pk-helper 0.2.6-1+b1 amd64 PolicyKit helper to configure cups with fine-grained privileges
ii cups-ppdc 2.4.2-3+deb12u5 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities
ii cups-server-common 2.4.2-3+deb12u5 all Common UNIX Printing System(tm) - server common files
ii curl 7.88.1-10+deb12u5 amd64 command line tool for transferring data with URL syntax
ii dash 0.5.12-2 amd64 POSIX-compliant shell
ii dbus 1.14.10-1~deb12u1 amd64 simple interprocess messaging system (system message bus)
ii dbus-bin 1.14.10-1~deb12u1 amd64 simple interprocess messaging system (command line utilities)
ii dbus-daemon 1.14.10-1~deb12u1 amd64 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 amd64 simple interprocess messaging system (systemd --user integration)
ii dconf-gsettings-backend:amd64 0.40.0-4 amd64 simple configuration storage system - GSettings back-end
ii dconf-service 0.40.0-4 amd64 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 debian-archive-keyring 2023.3+deb12u1 all GnuPG archive keys of the Debian archive
ii debian-faq 11.1 all Debian Frequently Asked Questions
ii debianutils 5.7-0.5~deb12u1 amd64 Miscellaneous utilities specific to Debian
ii desktop-base 12.0.6+nmu1~deb12u1 all common files for the Debian Desktop
ii desktop-file-utils 0.26-1 amd64 Utilities for .desktop files
ii dex 0.9.0-2 all generate and execute Application type .desktop files
ii dictionaries-common 1.29.5 all spelling dictionaries - common utilities
ii diffutils 1:3.8-4 amd64 File comparison utilities
ii dirmngr 2.2.40-1.1 amd64 GNU privacy guard - network certificate management service
ii discord 0.0.54 amd64 Chat for Communities and Friends
ii discover 2.1.2-10 amd64 hardware identification system
ii discover-data 2.2013.01.13 all Data lists for Discover hardware detection system
ii distro-info-data 0.58+deb12u1 all information about the distributions' releases (data files)
ii dmeventd 2:1.02.185-2 amd64 Linux Kernel Device Mapper event daemon
ii dmidecode 3.4-1 amd64 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.185-2 amd64 Linux Kernel Device Mapper userspace library
ii dmtracedump 1:11.0.0+r48-5 amd64 Generates graphical call-stack diagrams from Android trace logs
ii dns-root-data 2023010101 all DNS root data including root zone and DNSSEC key
ii dnsmasq-base 2.89-1 amd64 Small caching DNS proxy and DHCP/TFTP server
ii doc-debian 11.3+nmu1 all Debian Project documentation and other documents
ii docbook-xml 4.5-12 all standard XML documentation system for software and systems
ii dosfstools 4.2-1 amd64 utilities for making and checking MS-DOS FAT filesystems
ii dpkg 1.21.22 amd64 Debian package management system
ii dpkg-dev 1.21.22 all Debian package development tools
ii duf 0.8.1-1+b6 amd64 Disk Usage/Free Utility
ii dunst 1.9.0-0.1 amd64 dmenu-ish notification-daemon
ii e2fsprogs 1.47.0-2 amd64 ext2/ext3/ext4 file system utilities
ii efibootmgr 17-2 amd64 Interact with the EFI Boot Manager
ii eject 2.38.1-5+deb12u1 amd64 ejects CDs and operates CD-Changers under Linux
ii emacsen-common 3.0.5 all Common facilities for all emacsen
ii enchant-2 2.3.3-2 amd64 Wrapper for various spell checker engines (binary programs)
ii espeak-ng-data:amd64 1.51+dfsg-10+deb12u1 amd64 Multi-lingual software speech synthesizer: speech data files
ii etc1tool 29.0.6-28 amd64 ETC1 conversion tool
ii exfatprogs 1.2.0-1+deb12u1 amd64 exFAT file system utilities
ii exo-utils 4.18.0-1 amd64 Utility files for libexo
ii f2fs-tools 1.15.0-1 amd64 Tools for Flash-Friendly File System
ii fakeroot 1.31-1.2 amd64 tool for simulating superuser privileges
ii fastboot 1:29.0.6-28 amd64 Android fastboot tool
ii fdisk 2.38.1-5+deb12u1 amd64 collection of partitioning utilities
ii ffmpeg 7:5.1.4-0+deb12u1 amd64 Tools for transcoding, streaming and playing of multimedia files
ii file 1:5.44-3 amd64 Recognize the type of data in a file using "magic" numbers
ii findutils 4.9.0-4 amd64 utilities for finding files--find, xargs
ii firefox-esr 115.11.0esr-1~deb12u1 amd64 Mozilla Firefox web browser - Extended Support Release (ESR)
ii firewall-config 1.3.3-1~deb12u1 all graphical configuration tool to change the firewall settings
ii firewalld 1.3.3-1~deb12u1 all dynamically managed firewall with support for network zones
ii firmware-iwlwifi 20230210-5 all Binary firmware for Intel Wireless cards
ii firmware-linux-free 20200122-1 all Binary firmware for various drivers in the Linux kernel
ii firmware-misc-nonfree 20230210-5 all Binary firmware for various drivers in the Linux kernel
ii firmware-realtek 20230210-5 all Binary firmware for Realtek wired/wifi/BT adapters
ii firmware-sof-signed 2.2.4-1 all Intel SOF firmware - signed
ii flatpak 1.14.4-1+deb12u1 amd64 Application deployment framework for desktop apps
ii fontconfig 2.14.1-4 amd64 generic font configuration library - support binaries
ii fontconfig-config 2.14.1-4 amd64 generic font configuration library - configuration
ii fonts-dejavu 2.37-6 all metapackage to pull in fonts-dejavu-core and fonts-dejavu-extra
ii fonts-dejavu-core 2.37-6 all Vera font family derivate with additional characters
ii fonts-dejavu-extra 2.37-6 all Vera font family derivate with additional characters (extra variants)
ii fonts-droid-fallback 1:6.0.1r16-1.1 all handheld device font with extensive style and language support (fallback)
rc fonts-font-awesome 5.0.10+really4.7.0~dfsg-4.1 all iconic font designed for use with Twitter Bootstrap
ii fonts-freefont-ttf 20120503-10 all Freefont Serif, Sans and Mono Truetype fonts
ii fonts-jetbrains-mono 2.242+ds-3 all free and open-source typeface for developers
ii fonts-liberation 1:1.07.4-11 all Fonts with the same metrics as Times, Arial and Courier
ii fonts-liberation2 2.1.5-1 all Fonts with the same metrics as Times, Arial and Courier (v2)
ii fonts-mathjax 2.7.9+dfsg-1 all JavaScript display engine for LaTeX and MathML (fonts)
ii fonts-noto 20201225-1 all metapackage to pull in all Noto fonts
ii fonts-noto-cjk 1:20220127+repack1-1 all "No Tofu" font families with large Unicode coverage (CJK regular and bold)
ii fonts-noto-cjk-extra 1:20220127+repack1-1 all "No Tofu" font families with large Unicode coverage (CJK all weight)
ii fonts-noto-color-emoji 2.042-0+deb12u1 all color emoji font from Google
ii fonts-noto-core 20201225-1 all "No Tofu" font families with large Unicode coverage (core)
ii fonts-noto-extra 20201225-1 all "No Tofu" font families with large Unicode coverage (extra)
ii fonts-noto-mono 20201225-1 all "No Tofu" monospaced font family with large Unicode coverage
ii fonts-noto-ui-core 20201225-1 all "No Tofu" font families with large Unicode coverage (UI core)
ii fonts-noto-ui-extra 20201225-1 all "No Tofu" font families with large Unicode coverage (UI extra)
ii fonts-noto-unhinted 20201225-1 all "No Tofu" font families with large Unicode coverage (unhinted)
ii fonts-quicksand 0.2016-2.1 all sans-serif font with round attributes
ii fonts-roboto 2:0~20170802-3 all metapackage to pull in Roboto fonts
ii fonts-roboto-unhinted 2:0~20170802-3 all Google's signature family of fonts (unhinted)
ii fonts-symbola 2.60-1.1 all symbolic font providing emoji characters from Unicode 9.0
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 amd64 Filesystem in Userspace (3.x version)
ii g++ 4:12.2.0-3 amd64 GNU C++ compiler
ii g++-12 12.2.0-14 amd64 GNU C++ compiler
ii galculator 2.1.4-1.2 amd64 scientific calculator
ii gcc 4:12.2.0-3 amd64 GNU C compiler
ii gcc-12 12.2.0-14 amd64 GNU C compiler
ii gcc-12-base:amd64 12.2.0-14 amd64 GCC, the GNU Compiler Collection (base package)
ii gcr 3.41.1-1+b1 amd64 GNOME crypto services (daemon and tools)
ii gdisk 1.0.9-2.1 amd64 GPT fdisk text-mode partitioning tool
ii geoclue-2.0 2.6.0-2 amd64 geoinformation service
ii gettext-base 0.21-12 amd64 GNU Internationalization utilities for the base system
ii ghostscript 10.0.0~dfsg-11+deb12u4 amd64 interpreter for the PostScript language and for PDF
rc gimp-data 2.10.34-1+deb12u2 all Data files for GIMP
ii gir1.2-atk-1.0:amd64 2.46.0-5 amd64 ATK accessibility toolkit (GObject introspection)
ii gir1.2-atspi-2.0:amd64 2.46.0-5 amd64 Assistive Technology Service Provider (GObject introspection)
ii gir1.2-ayatanaappindicator3-0.1 0.5.92-1 amd64 Typelib files for libayatana-appindicator3-1 (GTK-3+ version)
ii gir1.2-cheese-3.0:amd64 43.0-1 amd64 tool to take pictures and videos from your webcam - gir bindings
ii gir1.2-clutter-1.0:amd64 1.26.4+dfsg-4 amd64 GObject introspection data for the Clutter 1.0 library
ii gir1.2-cogl-1.0:amd64 1.22.8-3+b1 amd64 GObject introspection data for the Cogl 1.0 library
ii gir1.2-coglpango-1.0:amd64 1.22.8-3+b1 amd64 GObject introspection data for the CoglPango 1.0 library
ii gir1.2-freedesktop:amd64 1.74.0-3 amd64 Introspection data for some FreeDesktop components
ii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-1+b1 amd64 GDK Pixbuf library - GObject-Introspection
ii gir1.2-glib-2.0:amd64 1.74.0-3 amd64 Introspection data for GLib, GObject, Gio and GModule
ii gir1.2-gst-plugins-base-1.0:amd64 1.22.0-3+deb12u1 amd64 GObject introspection data for the GStreamer Plugins Base library
ii gir1.2-gstreamer-1.0:amd64 1.22.0-2 amd64 GObject introspection data for the GStreamer library
ii gir1.2-gtk-3.0:amd64 3.24.38-2~deb12u1 amd64 GTK graphical user interface library -- gir bindings
ii gir1.2-gtk-vnc-2.0:amd64 1.3.1-1 amd64 GObject introspection data for GTK-VNC
ii gir1.2-gtkclutter-1.0:amd64 1.8.4-4+b1 amd64 GObject introspection data for the GTK+ Clutter library
ii gir1.2-gtksource-4:amd64 4.8.4-4 amd64 gir files for the GTK+ syntax highlighting widget
ii gir1.2-handy-1:amd64 1.8.1-1 amd64 GObject introspection files for libhandy
ii gir1.2-harfbuzz-0.0:amd64 6.0.0+dfsg-3 amd64 OpenType text shaping engine (GObject introspection data)
ii gir1.2-javascriptcoregtk-4.0:amd64 2.44.1-1~deb12u1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data
ii gir1.2-json-1.0:amd64 1.6.6-1 amd64 GLib JSON manipulation library (introspection data)
ii gir1.2-libosinfo-1.0:amd64 1.10.0-2 amd64 GObject introspection data for libosinfo
ii gir1.2-libvirt-glib-1.0:amd64 4.0.0-2 amd64 GObject introspection files for the libvirt-glib library
ii gir1.2-libxfce4ui-2.0:amd64 4.18.2-2 amd64 Typelib file for libxfce4ui
ii gir1.2-libxfce4util-1.0:amd64 4.18.1-2 amd64 Typelib file for libxfce4util
ii gir1.2-nm-1.0:amd64 1.42.4-1 amd64 GObject introspection data for the libnm library
ii gir1.2-notify-0.7:amd64 0.8.1-1 amd64 sends desktop notifications to a notification daemon (Introspection files)
ii gir1.2-packagekitglib-1.0 1.2.6-5 amd64 GObject introspection data for the PackageKit GLib library
ii gir1.2-pango-1.0:amd64 1.50.12+ds-1 amd64 Layout and rendering of internationalized text - gir bindings
ii gir1.2-peas-1.0:amd64 1.34.0-1+b1 amd64 Application plugin library (introspection files)
ii gir1.2-polkit-1.0 122-3 amd64 GObject introspection data for polkit
ii gir1.2-rb-3.0:amd64 3.4.6-2+b1 amd64 GObject introspection data for the rhythmbox music player
ii gir1.2-secret-1:amd64 0.20.5-3 amd64 Secret store (GObject-Introspection)
ii gir1.2-soup-2.4:amd64 2.74.3-1 amd64 GObject introspection data for the libsoup HTTP library
ii gir1.2-spiceclientglib-2.0:amd64 0.42-1 amd64 GObject for communicating with Spice servers (GObject-Introspection)
ii gir1.2-spiceclientgtk-3.0:amd64 0.42-1 amd64 GTK3 widget for SPICE clients (GObject-Introspection)
ii gir1.2-vte-2.91:amd64 0.70.6-2~deb12u1 amd64 GObject introspection data for the VTE library
ii gir1.2-webkit2-4.0:amd64 2.44.1-1~deb12u1 amd64 Web content engine library for GTK - GObject introspection data
ii gir1.2-wnck-3.0:amd64 43.0-3 amd64 GObject introspection data for the WNCK library
ii git 1:2.39.2-1.1 amd64 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:amd64 2.74.0-4 amd64 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 amd64 network-related giomodules for GLib - D-Bus services
ii gnome-accessibility-themes 3.28-2 all High Contrast GTK 2 theme and icons
ii gnome-disk-utility 43.0-1 amd64 manage and configure disk drives and media
ii gnome-icon-theme 3.12.0-5 all This package contains the default icon theme used by the GNOME
ii gnome-keyring 42.1-1+b2 amd64 GNOME keyring services (daemon and tools)
ii gnome-keyring-pkcs11:amd64 42.1-1+b2 amd64 GNOME keyring module for the PKCS#11 module loading library
ii gnome-themes-extra:amd64 3.28-2 amd64 Adwaita GTK 2 theme — engine
ii gnome-themes-extra-data 3.28-2 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files
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 amd64 GNU privacy guard - utility programs
ii gnutls-bin 3.7.9-2+deb12u2 amd64 GNU TLS library - commandline utilities
ii gparted 1.3.1-1 amd64 GNOME partition editor
ii gparted-common 1.3.1-1 all GNOME partition editor -- common data
ii gpg 2.2.40-1.1 amd64 GNU Privacy Guard -- minimalist public key operations
ii gpg-agent 2.2.40-1.1 amd64 GNU privacy guard - cryptographic agent
ii gpg-wks-client 2.2.40-1.1 amd64 GNU privacy guard - Web Key Service client
ii gpg-wks-server 2.2.40-1.1 amd64 GNU privacy guard - Web Key Service server
ii gpgconf 2.2.40-1.1 amd64 GNU privacy guard - core configuration utilities
ii gpgsm 2.2.40-1.1 amd64 GNU privacy guard - S/MIME version
ii gpgv 2.2.40-1.1 amd64 GNU privacy guard - signature verification tool
ii graphviz 2.42.2-7+b3 amd64 rich set of graph drawing tools
ii grep 3.8-5 amd64 GNU grep, egrep and fgrep
ii groff-base 1.22.4-10 amd64 GNU troff text-formatting system (base system components)
ii grub-common 2.06-13+deb12u1 amd64 GRand Unified Bootloader (common files)
ii grub-efi-amd64 2.06-13+deb12u1 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version)
ii grub-efi-amd64-bin 2.06-13+deb12u1 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)
ii grub-efi-amd64-signed 1+2.06+13+deb12u1 amd64 GRand Unified Bootloader, version 2 (amd64 UEFI signed by Debian)
ii grub2-common 2.06-13+deb12u1 amd64 GRand Unified Bootloader (common files for version 2)
ii gsettings-desktop-schemas 43.0-1 all GSettings desktop-wide schemas
ii gsfonts 2:20200910-7 all transitional dummy package (gsfonts -> fonts-urw-base35)
ii gstreamer1.0-alsa:amd64 1.22.0-3+deb12u1 amd64 GStreamer plugin for ALSA
ii gstreamer1.0-gl:amd64 1.22.0-3+deb12u1 amd64 GStreamer plugins for GL
ii gstreamer1.0-libav:amd64 1.22.0-2 amd64 ffmpeg plugin for GStreamer
ii gstreamer1.0-plugins-bad:amd64 1.22.0-4+deb12u5 amd64 GStreamer plugins from the "bad" set
ii gstreamer1.0-plugins-base:amd64 1.22.0-3+deb12u1 amd64 GStreamer plugins from the "base" set
ii gstreamer1.0-plugins-good:amd64 1.22.0-5+deb12u1 amd64 GStreamer plugins from the "good" set
ii gstreamer1.0-plugins-ugly:amd64 1.22.0-2+deb12u1 amd64 GStreamer plugins from the "ugly" set
ii gstreamer1.0-tools 1.22.0-2 amd64 Tools for use with GStreamer
ii gstreamer1.0-x:amd64 1.22.0-3+deb12u1 amd64 GStreamer plugins for X11 and Pango
ii gtk-update-icon-cache 3.24.38-2~deb12u1 amd64 icon theme caching utility
ii gtk2-engines:amd64 1:2.20.2-5+b1 amd64 theme engines for GTK+ 2.x
ii gtk2-engines-pixbuf:amd64 2.24.33-2 amd64 pixbuf-based theme for GTK 2
ii gvfs:amd64 1.50.3-1 amd64 userspace virtual filesystem - GIO module
ii gvfs-backends 1.50.3-1 amd64 userspace virtual filesystem - backends
ii gvfs-common 1.50.3-1 all userspace virtual filesystem - common data files
ii gvfs-daemons 1.50.3-1 amd64 userspace virtual filesystem - servers
ii gvfs-libs:amd64 1.50.3-1 amd64 userspace virtual filesystem - private libraries
ii gzip 1.12-1 amd64 GNU compression utilities
ii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes
ii hostname 3.23+nmu1 amd64 utility to set/show the host name or domain name
ii hprof-conv 29.0.6-28 amd64 HPROF Converter
ii htop 3.2.2-2 amd64 interactive processes viewer
ii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell
ii hyphen-en-us 2.8.8-7 all English (US) hyphenation patterns
ii i3-wm 4.22-2 amd64 improved dynamic tiling window manager
rc i3lock 2.14.1-1 amd64 improved screen locker
ii i3status 2.14-2 amd64 Generates a status line for dzen2, xmobar or i3bar
ii i965-va-driver:amd64 2.4.1+dfsg1-1 amd64 VAAPI driver for Intel G45 & HD Graphics family
ii iamerican 3.4.05-1 all American English dictionary for ispell (standard version)
ii ibritish 3.4.05-1 all British English dictionary for ispell (standard version)
ii ibverbs-providers:amd64 44.0-2 amd64 User space provider drivers for libibverbs
ii ienglish-common 3.4.05-1 all Common files for British and American ispell dictionaries
ii ifupdown 0.8.41 amd64 high level tools to configure network interfaces
ii iio-sensor-proxy 3.0-2 amd64 IIO sensors to D-Bus proxy
ii imagemagick 8:6.9.11.60+dfsg-1.6+deb12u1 amd64 image manipulation programs -- binaries
ii imagemagick-6-common 8:6.9.11.60+dfsg-1.6+deb12u1 all image manipulation programs -- infrastructure
ii imagemagick-6.q16 8:6.9.11.60+dfsg-1.6+deb12u1 amd64 image manipulation programs -- quantum depth Q16
ii inetutils-telnet 2:2.4-2+deb12u1 amd64 telnet client
ii init 1.65.2 amd64 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 insomnia 9.2.0 amd64 The Collaborative API Client and Design Tool
ii installation-report 2.89 all system installation report
ii intel-media-va-driver:amd64 23.1.1+dfsg1-1 amd64 VAAPI driver for the Intel GEN8+ Graphics family
ii intel-microcode 3.20231114.1~deb12u1 amd64 Processor microcode firmware for Intel CPUs
ii ipp-usb 0.9.23-1+b4 amd64 Daemon for IPP over USB printer support
ii iproute2 6.1.0-3 amd64 networking and traffic control tools
ii ipset 7.17-1 amd64 administration tool for kernel IP sets
ii iptables 1.8.9-2 amd64 administration tools for packet filtering and NAT
ii iputils-ping 3:20221126-1 amd64 Tools to test the reachability of network hosts
ii ipxe-qemu 1.0.0+git-20190125.36a4c85-5.1 all PXE boot firmware - ROM images for qemu
ii isc-dhcp-client 4.4.3-P1-2 amd64 DHCP client for automatically obtaining an IP address
ii isc-dhcp-common 4.4.3-P1-2 amd64 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 ispell 3.4.05-1 amd64 International Ispell (an interactive spelling corrector)
ii iucode-tool 2.3.1-3 amd64 Intel processor microcode tool
ii iw 5.19-1 amd64 tool for configuring Linux wireless devices
ii java-common 0.74 all Base package for Java runtimes
ii javascript-common 11+nmu1 all Base support for JavaScript library packages
ii jp2a 1.1.1-2 amd64 converts jpg and png images to ascii
ii kbd 2.5.1-1+b1 amd64 Linux console font and keytable utilities
ii keyboard-configuration 1.221 all system-wide keyboard preferences
ii klibc-utils 2.0.12-1 amd64 small utilities built with klibc for early boot
ii kmod 30+20221128-1 amd64 tools for managing Linux kernel modules
ii krb5-locales 1.20.1-2+deb12u1 all internationalization support for MIT Kerberos
ii laptop-detect 0.16 all system chassis type checker
ii less 590-2.1~deb12u2 amd64 pager program similar to more
ii liba52-0.7.4:amd64 0.7.4-20 amd64 library for decoding ATSC A/52 streams
ii libaa1:amd64 1.4p5-50 amd64 ASCII art library
ii libaacs0:amd64 0.11.1-2 amd64 free-and-libre implementation of AACS
ii libabsl20220623:amd64 20220623.1-1 amd64 extensions to the C++ standard library
ii libaccountsservice0:amd64 22.08.8-6 amd64 query and manipulate user account information - shared libraries
ii libacl1:amd64 2.3.1-3 amd64 access control list - shared library
ii libaio1:amd64 0.3.113-4 amd64 Linux kernel AIO access library - shared library
ii libalgorithm-diff-perl 1.201-1 all module to find differences between files
ii libalgorithm-diff-xs-perl:amd64 0.04-8+b1 amd64 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 libann0 1.1.2+doc-9+b1 amd64 Approximate Nearest Neighbor Searching library
ii libanyevent-i3-perl 0.17-3 all Perl module to communicate with the i3 window manager
ii libanyevent-perl 7.170-2+b3 amd64 event loop framework with multiple implementations
ii libao-common 1.2.2+20180113-1.1 all Cross Platform Audio Output Library (Common files)
ii libao4:amd64 1.2.2+20180113-1.1 amd64 Cross Platform Audio Output Library
ii libaom3:amd64 3.6.0-1 amd64 AV1 Video Codec Library
ii libapparmor1:amd64 3.0.8-3 amd64 changehat AppArmor library
ii libappstream4:amd64 0.16.1-2 amd64 Library to access AppStream services
ii libapt-pkg6.0:amd64 2.6.1 amd64 package management runtime library
ii libarchive13:amd64 3.6.2-1 amd64 Multi-format archive and compression library (shared library)
ii libargon2-1:amd64 0~20171227-0.3+deb12u1 amd64 memory-hard hashing function - runtime library
ii libaribb24-0:amd64 1.0.3-2 amd64 library for ARIB STD-B24 decoding (runtime files)
ii libasan8:amd64 12.2.0-14 amd64 AddressSanitizer -- a fast memory error detector
ii libasound2:amd64 1.2.8-1+b1 amd64 shared library for ALSA applications
ii libasound2-data 1.2.8-1 all Configuration files and profiles for ALSA drivers
ii libasound2-plugins:amd64 1.2.7.1-1 amd64 ALSA library additional plugins
ii libaspell15:amd64 0.60.8-4+b1 amd64 GNU Aspell spell-checker runtime library
ii libass9:amd64 1:0.17.1-1 amd64 library for SSA/ASS subtitles rendering
ii libassuan0:amd64 2.5.5-5 amd64 IPC library for the GnuPG components
ii libasync-interrupt-perl 1.26-1+b3 amd64 module to allow C/XS libraries to interrupt perl
ii libasyncns0:amd64 0.8-6+b3 amd64 Asynchronous name service query library
ii libatasmart4:amd64 0.19-5 amd64 ATA S.M.A.R.T. reading and parsing library
ii libatk-adaptor:amd64 2.46.0-5 amd64 AT-SPI 2 toolkit bridge
ii libatk-bridge2.0-0:amd64 2.46.0-5 amd64 AT-SPI 2 toolkit bridge - shared library
ii libatk-wrapper-java 0.40.0-3 all ATK implementation for Java using JNI
ii libatk-wrapper-java-jni:amd64 0.40.0-3 amd64 ATK implementation for Java using JNI (JNI bindings)
ii libatk1.0-0:amd64 2.46.0-5 amd64 ATK accessibility toolkit
ii libatkmm-1.6-1v5:amd64 2.28.3-1 amd64 C++ wrappers for ATK accessibility toolkit (shared libraries)
ii libatomic1:amd64 12.2.0-14 amd64 support library providing __atomic built-in functions
ii libatopology2:amd64 1.2.8-1+b1 amd64 shared library for handling ALSA topology definitions
ii libatrildocument3 1.26.0-2+deb12u3 amd64 MATE document rendering library
ii libatrilview3 1.26.0-2+deb12u3 amd64 MATE document viewing library
ii libatspi2.0-0:amd64 2.46.0-5 amd64 Assistive Technology Service Provider Interface - shared library
ii libattr1:amd64 1:2.5.1-4 amd64 extended attribute handling - shared library
ii libaudio2:amd64 1.9.4-7 amd64 Network Audio System - shared libraries
ii libaudit-common 1:3.0.9-1 all Dynamic library for security auditing - common files
ii libaudit1:amd64 1:3.0.9-1 amd64 Dynamic library for security auditing
ii libauthen-sasl-perl 2.1600-3 all Authen::SASL - SASL Authentication framework
ii libavahi-client3:amd64 0.8-10 amd64 Avahi client library
ii libavahi-common-data:amd64 0.8-10 amd64 Avahi common data files
ii libavahi-common3:amd64 0.8-10 amd64 Avahi common library
ii libavahi-core7:amd64 0.8-10 amd64 Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1:amd64 0.8-10 amd64 Avahi GLib integration library
ii libavc1394-0:amd64 0.5.4-5 amd64 control IEEE 1394 audio/video devices
ii libavcodec59:amd64 7:5.1.4-0+deb12u1 amd64 FFmpeg library with de/encoders for audio/video codecs - runtime files
ii libavdevice59:amd64 7:5.1.4-0+deb12u1 amd64 FFmpeg library for handling input and output devices - runtime files
ii libavfilter8:amd64 7:5.1.4-0+deb12u1 amd64 FFmpeg library containing media filters - runtime files
ii libavformat59:amd64 7:5.1.4-0+deb12u1 amd64 FFmpeg library with (de)muxers for multimedia containers - runtime files
ii libavif15:amd64 0.11.1-1 amd64 Library for handling .avif files
ii libavutil57:amd64 7:5.1.4-0+deb12u1 amd64 FFmpeg library with functions for simplifying programming - runtime files
ii libayatana-appindicator3-1 0.5.92-1 amd64 Ayatana Application Indicators (GTK-3+ version)
ii libayatana-ido3-0.4-0:amd64 0.9.3-1 amd64 Widgets and other objects used for Ayatana Indicators
ii libayatana-indicator3-7:amd64 0.9.3-1 amd64 panel indicator applet - shared library (GTK-3+ variant)
ii libbdplus0:amd64 0.2.0-3 amd64 implementation of BD+ for reading Blu-ray Discs
ii libbinutils:amd64 2.40-2 amd64 GNU binary utilities (private shared library)
ii libblas3:amd64 3.11.0-2 amd64 Basic Linear Algebra Reference implementations, shared library
ii libblkid1:amd64 2.38.1-5+deb12u1 amd64 block device ID library
ii libblockdev-crypto2:amd64 2.28-2 amd64 Crypto plugin for libblockdev
ii libblockdev-fs2:amd64 2.28-2 amd64 file system plugin for libblockdev
ii libblockdev-loop2:amd64 2.28-2 amd64 Loop device plugin for libblockdev
ii libblockdev-part-err2:amd64 2.28-2 amd64 Partition error utility functions for libblockdev
ii libblockdev-part2:amd64 2.28-2 amd64 Partitioning plugin for libblockdev
ii libblockdev-swap2:amd64 2.28-2 amd64 Swap plugin for libblockdev
ii libblockdev-utils2:amd64 2.28-2 amd64 Utility functions for libblockdev
ii libblockdev2:amd64 2.28-2 amd64 Library for manipulating block devices
ii libbluetooth3:amd64 5.66-1+deb12u1 amd64 Library to use the BlueZ Linux Bluetooth stack
ii libbluray2:amd64 1:1.3.4-1 amd64 Blu-ray disc playback support library (shared library)
ii libboost-iostreams1.74.0:amd64 1.74.0+ds1-21 amd64 Boost.Iostreams Library
ii libboost-thread1.74.0:amd64 1.74.0+ds1-21 amd64 portable C++ multi-threading
ii libbpf1:amd64 1:1.1.0-1 amd64 eBPF helper library (shared library)
ii libbrlapi0.8:amd64 6.5-7+deb12u1 amd64 braille display access via BRLTTY - shared library
ii libbrotli1:amd64 1.0.9-2+b6 amd64 library implementing brotli encoder and decoder (shared libraries)
ii libbs2b0:amd64 3.1.0+dfsg-7 amd64 Bauer stereophonic-to-binaural DSP library
ii libbsd0:amd64 0.11.7-2 amd64 utility functions from BSD systems - shared library
ii libburn4:amd64 1.5.4-1 amd64 library to provide CD/DVD/BD writing functions
ii libbz2-1.0:amd64 1.0.8-5+b1 amd64 high-quality block-sorting file compressor library - runtime
ii libc-bin 2.36-9+deb12u7 amd64 GNU C Library: Binaries
ii libc-dev-bin 2.36-9+deb12u7 amd64 GNU C Library: Development binaries
ii libc-devtools 2.36-9+deb12u7 amd64 GNU C Library: Development tools
ii libc-l10n 2.36-9+deb12u7 all GNU C Library: localization files
ii libc6:amd64 2.36-9+deb12u7 amd64 GNU C Library: Shared libraries
ii libc6-dev:amd64 2.36-9+deb12u7 amd64 GNU C Library: Development Libraries and Header Files
ii libcaca0:amd64 0.99.beta20-3 amd64 colour ASCII art library
ii libcacard0:amd64 1:2.8.0-3 amd64 Virtual Common Access Card (CAC) Emulator (runtime library)
ii libcairo-gobject-perl 1.005-4 amd64 integrate Cairo into the Glib type system in Perl
ii libcairo-gobject2:amd64 1.16.0-7 amd64 Cairo 2D vector graphics library (GObject library)
ii libcairo-perl 1.109-3+b1 amd64 Perl interface to the Cairo graphics library
ii libcairo2:amd64 1.16.0-7 amd64 Cairo 2D vector graphics library
ii libcairomm-1.0-1v5:amd64 1.14.4-2 amd64 C++ wrappers for Cairo (shared libraries)
ii libcaja-extension1:amd64 1.26.1-1+deb12u1 amd64 libraries for Caja components
ii libcanberra-gtk3-0:amd64 0.30-10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra
ii libcanberra-gtk3-module:amd64 0.30-10 amd64 translates GTK3 widgets signals to event sounds
ii libcanberra0:amd64 0.30-10 amd64 simple abstract interface for playing event sounds
ii libcap-ng0:amd64 0.8.3-1+b3 amd64 alternate POSIX capabilities library
ii libcap2:amd64 1:2.66-4 amd64 POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.66-4 amd64 POSIX 1003.1e capabilities (utilities)
ii libcapstone4:amd64 4.0.2-5 amd64 lightweight multi-architecture disassembly framework - library
ii libcbor0.8:amd64 0.8.0-2+b1 amd64 library for parsing and generating CBOR (RFC 7049)
ii libcc1-0:amd64 12.2.0-14 amd64 GCC cc1 plugin for GDB
ii libcddb2 1.3.2-7 amd64 library to access CDDB data - runtime files
ii libcdio-cdda2:amd64 10.2+2.0.1-1 amd64 library to read and control digital audio CDs
ii libcdio-paranoia2:amd64 10.2+2.0.1-1 amd64 library to read digital audio CDs with error correction
ii libcdio19:amd64 2.1.0-4 amd64 library to read and control CD-ROM
ii libcdparanoia0:amd64 3.10.2+debian-14 amd64 audio extraction tool for sampling CDs (library)
ii libcdt5:amd64 2.42.2-7+b3 amd64 rich set of graph drawing tools - cdt library
ii libcgraph6:amd64 2.42.2-7+b3 amd64 rich set of graph drawing tools - cgraph library
ii libchafa0:amd64 1.12.4-1+b1 amd64 library for image-to-text converter chafa
ii libcheese8:amd64 43.0-1 amd64 tool to take pictures and videos from your webcam - base library
ii libchromaprint1:amd64 1.5.1-2+b1 amd64 audio fingerprint library
ii libcjson1:amd64 1.7.15-1 amd64 Ultralightweight JSON parser in ANSI C
ii libclone-perl:amd64 0.46-1 amd64 module for recursively copying Perl datatypes
ii libclutter-1.0-0:amd64 1.26.4+dfsg-4 amd64 Open GL based interactive canvas library
ii libclutter-1.0-common 1.26.4+dfsg-4 all Open GL based interactive canvas library (common files)
ii libclutter-gst-3.0-0:amd64 3.0.27-3 amd64 Open GL based interactive canvas library GStreamer elements
ii libclutter-gtk-1.0-0:amd64 1.8.4-4+b1 amd64 Open GL based interactive canvas library GTK+ widget
ii libcodec2-1.0:amd64 1.0.5-1 amd64 Codec2 runtime library
ii libcogl-common 1.22.8-3 all Object oriented GL/GLES Abstraction/Utility Layer (common files)
ii libcogl-pango20:amd64 1.22.8-3+b1 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcogl-path20:amd64 1.22.8-3+b1 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcogl20:amd64 1.22.8-3+b1 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcolord2:amd64 1.4.6-2.2 amd64 system service to manage device colour profiles -- runtime
ii libcolorhug2:amd64 1.4.6-2.2 amd64 library to access the ColorHug colourimeter -- runtime
ii libcom-err2:amd64 1.47.0-2 amd64 common error description library
ii libcommon-sense-perl:amd64 3.75-3 amd64 module that implements some sane defaults for Perl programs
ii libconfuse-common 3.3-3 all Common files for libConfuse
ii libconfuse2:amd64 3.3-3 amd64 Library for parsing configuration files
ii libcrack2:amd64 2.9.6-5+b1 amd64 pro-active password checker library
ii libcrypt-dev:amd64 1:4.4.33-2 amd64 libcrypt development files
ii libcrypt1:amd64 1:4.4.33-2 amd64 libcrypt shared library
ii libcryptsetup12:amd64 2:2.6.1-4~deb12u2 amd64 disk encryption support - shared library
ii libctf-nobfd0:amd64 2.40-2 amd64 Compact C Type Format library (runtime, no BFD dependency)
ii libctf0:amd64 2.40-2 amd64 Compact C Type Format library (runtime, BFD dependency)
ii libcups2:amd64 2.4.2-3+deb12u5 amd64 Common UNIX Printing System(tm) - Core library
ii libcupsfilters1:amd64 1.28.17-3 amd64 OpenPrinting CUPS Filters - Shared library
ii libcurl3-gnutls:amd64 7.88.1-10+deb12u5 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libcurl4:amd64 7.88.1-10+deb12u5 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libdaemon0:amd64 0.14-7.1 amd64 lightweight C library for daemons - runtime library
ii libdata-dump-perl 1.25-1 all Perl module to help dump data structures
ii libdatrie1:amd64 0.2.13-2+b1 amd64 Double-array trie library
ii libdav1d6:amd64 1.0.0-2+deb12u1 amd64 fast and small AV1 video stream decoder (shared library)
ii libdaxctl1:amd64 76.1-1 amd64 Utility library for managing the device DAX subsystem
ii libdb5.3:amd64 5.3.28+dfsg2-1 amd64 Berkeley v5.3 Database Libraries [runtime]
ii libdbus-1-3:amd64 1.14.10-1~deb12u1 amd64 simple interprocess messaging system (library)
ii libdbus-glib-1-2:amd64 0.112-3 amd64 deprecated library for D-Bus IPC
ii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3 amd64 library for passing menus over DBus
ii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3 amd64 library for passing menus over DBus - GTK-3+ version
ii libdc1394-25:amd64 2.2.6-4 amd64 high level programming interface for IEEE 1394 digital cameras
ii libdca0:amd64 0.0.7-2 amd64 decoding library for DTS Coherent Acoustics streams
ii libdconf1:amd64 0.40.0-4 amd64 simple configuration storage system - runtime library
ii libde265-0:amd64 1.0.11-1+deb12u2 amd64 Open H.265 video codec implementation
ii libdebconfclient0:amd64 0.270 amd64 Debian Configuration Management System (C-implementation library)
ii libdecor-0-0:amd64 0.1.1-2 amd64 client-side window decoration library
ii libdecor-0-plugin-1-cairo:amd64 0.1.1-2 amd64 default decoration plugin
ii libdeflate0:amd64 1.14-1 amd64 fast, whole-buffer DEFLATE-based compression and decompression
ii libdevmapper-event1.02.1:amd64 2:1.02.185-2 amd64 Linux Kernel Device Mapper event support library
ii libdevmapper1.02.1:amd64 2:1.02.185-2 amd64 Linux Kernel Device Mapper userspace library
ii libdirectfb-1.7-7:amd64 1.7.7-11 amd64 direct frame buffer graphics (shared libraries)
ii libdiscover2 2.1.2-10 amd64 hardware identification library
ii libdjvulibre-text 3.5.28-2 all Linguistic support files for libdjvulibre
ii libdjvulibre21:amd64 3.5.28-2+b1 amd64 Runtime support for the DjVu image format
ii libdmapsharing-3.0-2:amd64 2.9.41-3+b1 amd64 DMAP client and server library - runtime
ii libdotconf0:amd64 1.3-0.3 amd64 Configuration file parser library - runtime files
ii libdouble-conversion3:amd64 3.2.1-1 amd64 routines to convert IEEE floats to and from strings
ii libdpkg-perl 1.21.22 all Dpkg perl modules
ii libdrm-amdgpu1:amd64 2.4.114-1+b1 amd64 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-intel1:amd64 2.4.114-1+b1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime
ii libdrm-nouveau2:amd64 2.4.114-1+b1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime
ii libdrm-radeon1:amd64 2.4.114-1+b1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime
ii libdrm2:amd64 2.4.114-1+b1 amd64 Userspace interface to kernel DRM services -- runtime
ii libduktape207:amd64 2.7.0-2 amd64 embeddable Javascript engine, library
ii libdv4:amd64 1.0.0-15 amd64 software library for DV format digital video (runtime lib)
ii libdvbpsi10:amd64 1.3.3-1 amd64 library for MPEG TS and DVB PSI tables decoding and generating
ii libdvdnav4:amd64 6.1.1-1 amd64 DVD navigation library
ii libdvdread8:amd64 6.1.3-1 amd64 library for reading DVDs
ii libdw1:amd64 0.188-2.1 amd64 library that provides access to the DWARF debug information
ii libebml5:amd64 1.4.4-1 amd64 access library for the EBML format (shared library)
ii libedit2:amd64 3.1-20221030-2 amd64 BSD editline and history libraries
ii libefiboot1:amd64 37-6 amd64 Library to manage UEFI variables
ii libefivar1:amd64 37-6 amd64 Library to manage UEFI variables
ii libegl-mesa0:amd64 22.3.6-1+deb12u1 amd64 free implementation of the EGL API -- Mesa vendor library
ii libegl1:amd64 1.6.0-1 amd64 Vendor neutral GL dispatch library -- EGL support
ii libelf1:amd64 0.188-2.1 amd64 library to read and write ELF files
ii libenchant-2-2:amd64 2.3.3-2 amd64 Wrapper library for various spell checker engines (runtime libs)
ii libencode-locale-perl 1.05-3 all utility to determine the locale encoding
ii libepoxy0:amd64 1.5.10-1 amd64 OpenGL function pointer management library
ii libept1.6.0:amd64 1.2.1 amd64 High-level library for managing Debian package information
ii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way
ii libespeak-ng1:amd64 1.51+dfsg-10+deb12u1 amd64 Multi-lingual software speech synthesizer: shared library
ii libev-perl:amd64 4.33-2 amd64 Perl interface to libev, the high performance event loop
ii libev4:amd64 1:4.33-1 amd64 high-performance event loop library modelled after libevent
ii libevdev2:amd64 1.13.0+dfsg-1 amd64 wrapper library for evdev devices
ii libevent-2.1-7:amd64 2.1.12-stable-8 amd64 Asynchronous event notification library
ii libexecs0:amd64 1.3-2 amd64 C library for commands execution
ii libexif12:amd64 0.6.24-1+b1 amd64 library to parse EXIF files
ii libexo-2-0:amd64 4.18.0-1 amd64 Library with extensions for Xfce (GTK-3 version)
ii libexo-common 4.18.0-1 all libexo common files
ii libexpat1:amd64 2.5.0-1 amd64 XML parsing C library - runtime library
ii libexpat1-dev:amd64 2.5.0-1 amd64 XML parsing C library - development kit
ii libext2fs2:amd64 1.47.0-2 amd64 ext2/ext3/ext4 file system libraries
ii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions
ii libfaad2:amd64 2.10.1-1 amd64 freeware Advanced Audio Decoder - runtime files
ii libfakeroot:amd64 1.31-1.2 amd64 tool for simulating superuser privileges - shared libraries
ii libfdisk1:amd64 2.38.1-5+deb12u1 amd64 fdisk partitioning library
ii libfdt1:amd64 1.6.1-4+b1 amd64 Flat Device Trees manipulation library
ii libffi8:amd64 3.4.4-1 amd64 Foreign Function Interface library runtime
ii libfftw3-double3:amd64 3.3.10-1 amd64 Library for computing Fast Fourier Transforms - Double precision
ii libfftw3-single3:amd64 3.3.10-1 amd64 Library for computing Fast Fourier Transforms - Single precision
ii libfido2-1:amd64 1.12.0-2+b1 amd64 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-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files
ii libfile-fcntllock-perl 0.22-4+b1 amd64 Perl module for file locking with fcntl(2)
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 libflac12:amd64 1.4.2+ds-2 amd64 Free Lossless Audio Codec - runtime C library
ii libflite1:amd64 2.2-5 amd64 Small run-time speech synthesis engine - shared libraries
ii libfluidsynth3:amd64 2.3.1-2 amd64 Real-time MIDI software synthesizer (runtime library)
ii libfmt9:amd64 9.1.0+ds1-2 amd64 fast type-safe C++ formatting library -- library
ii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files
ii libfontconfig1:amd64 2.14.1-4 amd64 generic font configuration library - runtime
ii libfontembed1:amd64 1.28.17-3 amd64 OpenPrinting CUPS Filters - Font Embed Shared library
ii libfontenc1:amd64 1:1.1.4-1 amd64 X11 font encoding library
ii libfreeaptx0:amd64 0.1.1-2 amd64 Free implementation of aptX
ii libfreetype6:amd64 2.12.1+dfsg-5 amd64 FreeType 2 font engine, shared library files
ii libfribidi0:amd64 1.0.8-2.1 amd64 Free Implementation of the Unicode BiDi algorithm
ii libfstrm0:amd64 0.6.1-1 amd64 Frame Streams (fstrm) library
ii libfuse2:amd64 2.9.9-6+b1 amd64 Filesystem in Userspace (library)
ii libfuse3-3:amd64 3.14.0-4 amd64 Filesystem in Userspace (library) (3.x version)
ii libgail-common:amd64 2.24.33-2 amd64 GNOME Accessibility Implementation Library -- common modules
ii libgail18:amd64 2.24.33-2 amd64 GNOME Accessibility Implementation Library -- shared libraries
ii libgarcon-1-0:amd64 4.18.0-1 amd64 freedesktop.org compliant menu implementation for Xfce
ii libgarcon-common 4.18.0-1 all common files for libgarcon menu implementation
ii libgarcon-gtk3-1-0:amd64 4.18.0-1 amd64 menu library for Xfce (GTK3 library)
ii libgav1-1:amd64 0.18.0-1+b1 amd64 AV1 decoder developed by Google -- runtime library
ii libgbm1:amd64 22.3.6-1+deb12u1 amd64 generic buffer management API -- runtime
ii libgc1:amd64 1:8.2.2-3 amd64 conservative garbage collector for C and C++
ii libgcc-12-dev:amd64 12.2.0-14 amd64 GCC support library (development files)
ii libgcc-s1:amd64 12.2.0-14 amd64 GCC support library
ii libgck-1-0:amd64 3.41.1-1+b1 amd64 Glib wrapper library for PKCS#11 - runtime
ii libgcr-base-3-1:amd64 3.41.1-1+b1 amd64 Library for Crypto related tasks
ii libgcr-ui-3-1:amd64 3.41.1-1+b1 amd64 Library for Crypto UI related tasks
ii libgcrypt20:amd64 1.10.1-3 amd64 LGPL Crypto library - runtime library
ii libgd3:amd64 2.3.3-9 amd64 GD Graphics Library
ii libgdata-common 0.18.1-2 all Library for accessing GData webservices - common data files
ii libgdata22:amd64 0.18.1-2 amd64 Library for accessing GData webservices - shared libraries
ii libgdbm-compat4:amd64 1.23-3 amd64 GNU dbm database routines (legacy support runtime version)
ii libgdbm6:amd64 1.23-3 amd64 GNU dbm database routines (runtime version)
ii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-1+b1 amd64 GDK Pixbuf library
ii libgdk-pixbuf2.0-bin 2.42.10+dfsg-1+b1 amd64 GDK Pixbuf library (thumbnailer)
ii libgdk-pixbuf2.0-common 2.42.10+dfsg-1 all GDK Pixbuf library - data files
ii libgfapi0:amd64 10.3-5 amd64 GlusterFS gfapi shared library
ii libgfortran5:amd64 12.2.0-14 amd64 Runtime library for GNU Fortran applications
ii libgfrpc0:amd64 10.3-5 amd64 GlusterFS libgfrpc shared library
ii libgfxdr0:amd64 10.3-5 amd64 GlusterFS libgfxdr shared library
ii libgif7:amd64 5.2.1-2.5 amd64 library for GIF images (library)
ii libgirepository-1.0-1:amd64 1.74.0-3 amd64 Library for handling GObject introspection data (runtime library)
ii libgl1:amd64 1.6.0-1 amd64 Vendor neutral GL dispatch library -- legacy GL support
ii libgl1-mesa-dri:amd64 22.3.6-1+deb12u1 amd64 free implementation of the OpenGL API -- DRI modules
ii libglapi-mesa:amd64 22.3.6-1+deb12u1 amd64 free implementation of the GL API -- shared library
ii libgles2:amd64 1.6.0-1 amd64 Vendor neutral GL dispatch library -- GLESv2 support
ii libglib-object-introspection-perl 0.049-3 amd64 Perl bindings for gobject-introspection libraries
ii libglib-perl:amd64 3:1.329.3-2+b2 amd64 interface to the GLib and GObject libraries
ii libglib2.0-0:amd64 2.74.6-2+deb12u2 amd64 GLib library of C routines
ii libglib2.0-data 2.74.6-2+deb12u2 all Common files for GLib library
ii libglibmm-2.4-1v5:amd64 2.66.5-2 amd64 C++ wrapper for the GLib toolkit (shared libraries)
ii libglu1-mesa:amd64 9.0.2-1.1 amd64 Mesa OpenGL utility library (GLU)
ii libglusterfs0:amd64 10.3-5 amd64 GlusterFS shared library
ii libglvnd0:amd64 1.6.0-1 amd64 Vendor neutral GL dispatch library
ii libglx-mesa0:amd64 22.3.6-1+deb12u1 amd64 free implementation of the OpenGL API -- GLX vendor library
ii libglx0:amd64 1.6.0-1 amd64 Vendor neutral GL dispatch library -- GLX support
ii libgme0:amd64 0.6.3-6 amd64 Playback library for video game music files - shared library
ii libgmp10:amd64 2:6.2.1+dfsg1-1.1 amd64 Multiprecision arithmetic library
ii libgnutls-dane0:amd64 3.7.9-2+deb12u2 amd64 GNU TLS library - DANE security support
ii libgnutls30:amd64 3.7.9-2+deb12u2 amd64 GNU TLS library - main runtime library
ii libgoa-1.0-0b:amd64 3.46.0-1 amd64 library for GNOME Online Accounts
ii libgoa-1.0-common 3.46.0-1 all library for GNOME Online Accounts - common files
ii libgomp1:amd64 12.2.0-14 amd64 GCC OpenMP (GOMP) support library
ii libgpg-error0:amd64 1.46-1 amd64 GnuPG development runtime library
ii libgpgme11:amd64 1.18.0-3+b1 amd64 GPGME - GnuPG Made Easy (library)
ii libgphoto2-6:amd64 2.5.30-1 amd64 gphoto2 digital camera library
ii libgphoto2-l10n 2.5.30-1 all gphoto2 digital camera library - localized messages
ii libgphoto2-port12:amd64 2.5.30-1 amd64 gphoto2 digital camera port library
ii libgpm2:amd64 1.20.7-10+b1 amd64 General Purpose Mouse - shared library
ii libgpod-common 0.8.3-17+b1 amd64 common files for libgpod
ii libgpod4:amd64 0.8.3-17+b1 amd64 library to read and write songs and artwork to an iPod
ii libgprofng0:amd64 2.40-2 amd64 GNU Next Generation profiler (runtime library)
ii libgraphene-1.0-0:amd64 1.10.8-1 amd64 library of graphic data types
ii libgraphite2-3:amd64 1.3.14-1 amd64 Font rendering engine for Complex Scripts -- library
ii libgrilo-0.3-0:amd64 0.3.15-1 amd64 Framework for discovering and browsing media - Shared libraries
ii libgs-common 10.0.0~dfsg-11+deb12u4 all interpreter for the PostScript language and for PDF - ICC profiles
ii libgs10:amd64 10.0.0~dfsg-11+deb12u4 amd64 interpreter for the PostScript language and for PDF - Library
ii libgs10-common 10.0.0~dfsg-11+deb12u4 all interpreter for the PostScript language and for PDF - common files
ii libgsm1:amd64 1.0.22-1 amd64 Shared libraries for GSM speech compressor
ii libgspell-1-2:amd64 1.12.0-1+b2 amd64 spell-checking library for GTK+ applications
ii libgspell-1-common 1.12.0-1 all libgspell architecture-independent files
ii libgssapi-krb5-2:amd64 1.20.1-2+deb12u1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgssdp-1.6-0:amd64 1.6.2-2 amd64 GObject-based library for SSDP
ii libgstreamer-gl1.0-0:amd64 1.22.0-3+deb12u1 amd64 GStreamer GL libraries
ii libgstreamer-plugins-bad1.0-0:amd64 1.22.0-4+deb12u5 amd64 GStreamer libraries from the "bad" set
ii libgstreamer-plugins-base1.0-0:amd64 1.22.0-3+deb12u1 amd64 GStreamer libraries from the "base" set
ii libgstreamer1.0-0:amd64 1.22.0-2 amd64 Core GStreamer libraries and elements
ii libgtk-3-0:amd64 3.24.38-2~deb12u1 amd64 GTK graphical user interface library
ii libgtk-3-bin 3.24.38-2~deb12u1 amd64 programs for the GTK graphical user interface library
ii libgtk-3-common 3.24.38-2~deb12u1 all common files for the GTK graphical user interface library
ii libgtk-vnc-2.0-0:amd64 1.3.1-1 amd64 VNC viewer widget for GTK+3 (runtime libraries)
ii libgtk2.0-0:amd64 2.24.33-2 amd64 GTK graphical user interface library - old version
ii libgtk2.0-bin 2.24.33-2 amd64 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 libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library
ii libgtkmm-3.0-1v5:amd64 3.24.7-1 amd64 C++ wrappers for GTK+ (shared libraries)
ii libgtksourceview-4-0:amd64 4.8.4-4 amd64 shared libraries for the GTK+ syntax highlighting widget
ii libgtksourceview-4-common 4.8.4-4 all common files for the GTK+ syntax highlighting widget
ii libgtop-2.0-11:amd64 2.40.0-2 amd64 gtop system monitoring library (shared)
ii libgtop2-common 2.40.0-2 all gtop system monitoring library (common)
ii libgts-0.7-5:amd64 0.7.6+darcs121130-5+b1 amd64 library to deal with 3D computational surface meshes
ii libgts-bin 0.7.6+darcs121130-5+b1 amd64 utility binaries for libgts
ii libguard-perl 1.023-2+b1 amd64 Perl module providing safe cleanup using guard objects
ii libgudev-1.0-0:amd64 237-2 amd64 GObject-based wrapper library for libudev
ii libgupnp-1.6-0:amd64 1.6.3-1 amd64 GObject-based library for UPnP
ii libgupnp-igd-1.0-4:amd64 1.2.0-3 amd64 library to handle UPnP IGD port mapping
ii libgusb2:amd64 0.3.10-1 amd64 GLib wrapper around libusb1
ii libgvc6 2.42.2-7+b3 amd64 rich set of graph drawing tools - gvc library
ii libgvnc-1.0-0:amd64 1.3.1-1 amd64 VNC GObject wrapper (runtime libraries)
ii libgvpr2:amd64 2.42.2-7+b3 amd64 rich set of graph drawing tools - gvpr library
ii libgxps2:amd64 0.3.2-2+b1 amd64 handling and rendering XPS documents (library)
ii libhandy-1-0:amd64 1.8.1-1 amd64 Library with GTK widgets for mobile phones
ii libharfbuzz-icu0:amd64 6.0.0+dfsg-3 amd64 OpenType text shaping engine ICU backend
ii libharfbuzz-subset0:amd64 6.0.0+dfsg-3 amd64 OpenType text shaping engine (subset library)
ii libharfbuzz0b:amd64 6.0.0+dfsg-3 amd64 OpenType text shaping engine (shared library)
ii libheif1:amd64 1.15.1-1 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library
ii libhogweed6:amd64 3.8.1-2 amd64 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:amd64 3.81-1 amd64 collection of modules that parse HTML text documents
ii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML
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 libhunspell-1.7-0:amd64 1.7.1-1 amd64 spell checker and morphological analyzer (shared library)
ii libhwy1:amd64 1.0.3-3+deb12u1 amd64 Efficient and performance-portable SIMD wrapper (runtime files)
ii libhyphen0:amd64 2.8.8-7 amd64 ALTLinux hyphenation library - shared library
ii libibverbs1:amd64 44.0-2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)
ii libical3:amd64 3.0.16-1+b1 amd64 iCalendar library implementation in C (runtime)
ii libice-dev:amd64 2:1.0.10-1 amd64 X11 Inter-Client Exchange library (development headers)
ii libice6:amd64 2:1.0.10-1 amd64 X11 Inter-Client Exchange library
ii libicu72:amd64 72.1-3 amd64 International Components for Unicode
ii libid3tag0:amd64 0.15.1b-14 amd64 ID3 tag reading library from the MAD project
ii libidn12:amd64 1.41-1 amd64 GNU Libidn library, implementation of IETF IDN specifications
ii libidn2-0:amd64 2.3.3-1+b1 amd64 Internationalized domain names (IDNA2008/TR46) library
ii libiec61883-0:amd64 1.2.0-6+b1 amd64 partial implementation of IEC 61883 (shared lib)
ii libieee1284-3:amd64 0.2.11-14 amd64 cross-platform library for parallel port access
ii libigdgmm12:amd64 22.3.3+ds1-1 amd64 Intel Graphics Memory Management Library -- shared library
ii libijs-0.35:amd64 0.35-15 amd64 IJS raster image transport protocol: shared library
ii libimath-3-1-29:amd64 3.1.6-1 amd64 Utility libraries from ASF used by OpenEXR - runtime
ii libimlib2:amd64 1.10.0-4+deb12u1 amd64 image loading, rendering, saving library
ii libimobiledevice6:amd64 1.3.0-6+b3 amd64 Library for communicating with iPhone and other Apple devices
ii libinput-bin 1.22.1-1 amd64 input device management and event handling library - udev quirks
ii libinput10:amd64 1.22.1-1 amd64 input device management and event handling library - shared library
ii libinstpatch-1.0-2:amd64 1.1.6-1 amd64 MIDI instrument editing library
ii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection
ii libio-socket-ssl-perl 2.081-2 all Perl module implementing object oriented interface to SSL sockets
ii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)
ii libip4tc2:amd64 1.8.9-2 amd64 netfilter libip4tc library
ii libip6tc2:amd64 1.8.9-2 amd64 netfilter libip6tc library
ii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics
ii libipset13:amd64 7.17-1 amd64 library for IP sets
ii libiscsi7:amd64 1.19.0-3 amd64 iSCSI client shared library
ii libisl23:amd64 0.25-1.1 amd64 manipulating sets and relations of integer points bounded by linear constraints
ii libisoburn1:amd64 1.5.4-4 amd64 library to handle creation and inspection of ISO-9660 file systems
ii libisofs6:amd64 1.5.4-1 amd64 library to create ISO 9660 images
ii libitm1:amd64 12.2.0-14 amd64 GNU Transactional Memory Library
ii libiw30:amd64 30~pre9-14 amd64 Wireless tools - library
ii libixml10:amd64 1:1.8.4-2 amd64 Portable SDK for UPnP Devices, version 1.8 (ixml shared library)
ii libjack-jackd2-0:amd64 1.9.21~dfsg-3 amd64 JACK Audio Connection Kit (libraries)
ii libjansson4:amd64 2.14-2 amd64 C library for encoding, decoding and manipulating JSON data
ii libjavascriptcoregtk-4.0-18:amd64 2.44.1-1~deb12u1 amd64 JavaScript engine library from WebKitGTK
ii libjavascriptcoregtk-4.1-0:amd64 2.44.1-1~deb12u1 amd64 JavaScript engine library from WebKitGTK
ii libjbig0:amd64 2.1-6.1 amd64 JBIGkit libraries
ii libjbig2dec0:amd64 0.19-3 amd64 JBIG2 decoder library - shared libraries
ii libjemalloc2:amd64 5.3.0-1 amd64 general-purpose scalable concurrent malloc(3) implementation
ii libjim0.81:amd64 0.81+dfsg0-2 amd64 small-footprint implementation of Tcl - shared library
ii libjpeg62-turbo:amd64 1:2.1.5-2 amd64 libjpeg-turbo JPEG runtime 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:amd64 0.16-2 amd64 JSON manipulation library - shared library
ii libjson-glib-1.0-0:amd64 1.6.6-1 amd64 GLib JSON manipulation library
ii libjson-glib-1.0-common 1.6.6-1 all GLib JSON manipulation library (common files)
ii libjson-xs-perl 4.030-2+b1 amd64 module for manipulating JSON-formatted data (C/XS-accelerated)
ii libjsoncpp25:amd64 1.9.5-4 amd64 library for reading and writing JSON for C++
ii libjte2:amd64 1.22-3 amd64 Jigdo Template Export - runtime library
ii libjxl0.7:amd64 0.7.0-10 amd64 JPEG XL Image Coding System - "JXL" (shared libraries)
ii libjxr-tools 1.2~git20170615.f752187-5 amd64 JPEG-XR lib - command line apps
ii libjxr0:amd64 1.2~git20170615.f752187-5 amd64 JPEG-XR lib - libraries
ii libk5crypto3:amd64 1.20.1-2+deb12u1 amd64 MIT Kerberos runtime libraries - Crypto Library
ii libkate1:amd64 0.4.1-11 amd64 Codec for karaoke and text encapsulation
ii libkeybinder-3.0-0:amd64 0.3.2-1.1 amd64 registers global key bindings for applications - Gtk+3
ii libkeyutils1:amd64 1.6.3-2 amd64 Linux Key Management Utilities (library)
ii libklibc:amd64 2.0.12-1 amd64 minimal libc subset for use with initramfs
ii libkmod2:amd64 30+20221128-1 amd64 libkmod shared library
ii libkpathsea6:amd64 2022.20220321.62855-5.1+deb12u1 amd64 TeX Live: path search library for TeX (runtime part)
ii libkrb5-3:amd64 1.20.1-2+deb12u1 amd64 MIT Kerberos runtime libraries
ii libkrb5support0:amd64 1.20.1-2+deb12u1 amd64 MIT Kerberos runtime libraries - Support library
ii libksba8:amd64 1.6.3-2 amd64 X.509 and CMS support library
ii liblab-gamut1:amd64 2.42.2-7+b3 amd64 rich set of graph drawing tools - liblab_gamut library
ii liblapack3:amd64 3.11.0-2 amd64 Library of linear algebra routines 3 - shared version
ii liblcms2-2:amd64 2.14-2 amd64 Little CMS 2 color management library
ii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4 amd64 LDAC Bluetooth encoder library (shared library)
ii libldap-2.5-0:amd64 2.5.13+dfsg-5 amd64 OpenLDAP libraries
ii libldap-common 2.5.13+dfsg-5 all OpenLDAP common files for libraries
ii libldb2:amd64 2:2.6.2+samba4.17.12+dfsg-0+deb12u1 amd64 LDAP-like embedded database - shared library
ii liblerc4:amd64 4.0.0+ds-2 amd64 Limited Error Raster Compression library
ii liblightdm-gobject-1-0:amd64 1.26.0-8 amd64 simple display manager (GObject library)
ii liblilv-0-0:amd64 0.24.14-1 amd64 library for simple use of LV2 plugins
ii liblirc-client0:amd64 0.10.1-7.2 amd64 infra-red remote control support - client library
ii libllvm15:amd64 1:15.0.6-4+b1 amd64 Modular compiler and toolchain technologies, runtime library
ii liblmdb0:amd64 0.9.24-1 amd64 Lightning Memory-Mapped Database shared library
ii liblocale-gettext-perl 1.07-5 amd64 module using libc functions for internationalization in Perl
ii liblockfile-bin 1.17-1+b1 amd64 support binaries for and cli utilities based on liblockfile
ii liblouis-data 3.24.0-1 all Braille translation library - data
ii liblouis20:amd64 3.24.0-1 amd64 Braille translation library - shared libs
ii liblouisutdml-bin 2.11.0-2 amd64 Braille UTDML translation utilities
ii liblouisutdml-data 2.11.0-2 all Braille UTDML translation library - data
ii liblouisutdml9:amd64 2.11.0-2 amd64 Braille UTDML translation library - shared libs
ii liblqr-1-0:amd64 0.4.2-2.1 amd64 converts plain array images into multi-size representation
ii liblrdf0:amd64 0.6.1-4 amd64 library to manipulate RDF files describing LADSPA plugins
ii liblsan0:amd64 12.2.0-14 amd64 LeakSanitizer -- a memory leak detector (runtime)
ii libltc11:amd64 1.3.2-1 amd64 linear timecode library
ii libltdl7:amd64 2.4.7-5 amd64 System independent dlopen wrapper for GNU libtool
ii liblua5.2-0:amd64 5.2.4-3 amd64 Shared library for the Lua interpreter version 5.2
ii libluajit-5.1-2:amd64 2.1.0~beta3+git20220320+dfsg-4.1 amd64 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 liblvm2cmd2.03:amd64 2.03.16-2 amd64 LVM2 command library
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:amd64 1.9.4-1 amd64 Fast LZ compression algorithm library - runtime
ii liblzma5:amd64 5.4.1-0.2 amd64 XZ-format compression library
ii liblzo2-2:amd64 2.10-2 amd64 data compression library
ii libmad0:amd64 0.15.1b-10.1+b1 amd64 MPEG audio decoder library
ii libmagic-mgc 1:5.44-3 amd64 File type determination library using "magic" numbers (compiled magic file)
ii libmagic1:amd64 1:5.44-3 amd64 Recognize the type of data in a file using "magic" numbers - library
ii libmagickcore-6.q16-6:amd64 8:6.9.11.60+dfsg-1.6+deb12u1 amd64 low-level image manipulation library -- quantum depth Q16
ii libmagickcore-6.q16-6-extra:amd64 8:6.9.11.60+dfsg-1.6+deb12u1 amd64 low-level image manipulation library - extra codecs (Q16)
ii libmagickwand-6.q16-6:amd64 8:6.9.11.60+dfsg-1.6+deb12u1 amd64 image manipulation library -- quantum depth Q16
ii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs
ii libmalcontent-0-0:amd64 0.11.0-4 amd64 library for parental control of applications
ii libmanette-0.2-0:amd64 0.2.6-3+b1 amd64 Simple GObject game controller library
ii libmatroska7:amd64 1.7.1-1 amd64 extensible open standard audio/video container format (shared library)
ii libmaxminddb0:amd64 1.7.1-1 amd64 IP geolocation database library
ii libmbedcrypto7:amd64 2.28.3-1 amd64 lightweight crypto and SSL/TLS library - crypto library
ii libmbedtls14:amd64 2.28.3-1 amd64 lightweight crypto and SSL/TLS library - tls library
ii libmbedx509-1:amd64 2.28.3-1 amd64 lightweight crypto and SSL/TLS library - x509 certificate library
ii libmbim-glib4:amd64 1.28.2-1 amd64 Support library to use the MBIM protocol
ii libmbim-proxy 1.28.2-1 amd64 Proxy to communicate with MBIM ports
ii libmbim-utils 1.28.2-1 amd64 Utilities to use the MBIM protocol from the command line
ii libmd0:amd64 1.0.4-2 amd64 message digest functions from BSD systems - shared library
ii libmd4c0:amd64 0.4.8-1 amd64 Markdown for C
ii libmfx1:amd64 22.5.4-1 amd64 Intel Media SDK -- shared library
ii libminiupnpc17:amd64 2.2.4-1+b1 amd64 UPnP IGD client lightweight library
ii libminizip1:amd64 1.1-8+deb12u1 amd64 compression library - minizip library
ii libmjpegutils-2.1-0:amd64 1:2.1.0+debian-7 amd64 MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii libmm-glib0:amd64 1.20.4-1 amd64 D-Bus service for managing modems - shared libraries
ii libmnl0:amd64 1.0.4-3 amd64 minimalistic Netlink communication library
ii libmodplug1:amd64 1:0.8.9.0-3 amd64 shared libraries for mod music based on ModPlug
ii libmount1:amd64 2.38.1-5+deb12u1 amd64 device mounting library
ii libmousepad0:amd64 0.5.10-2 amd64 mousepad plugins library
ii libmp3lame0:amd64 3.100-6 amd64 MP3 encoding library
ii libmpc3:amd64 1.3.1-1 amd64 multiple precision complex floating-point library
ii libmpcdec6:amd64 2:0.1~r495-2 amd64 MusePack decoder - library
ii libmpeg2-4:amd64 0.5.1-9 amd64 MPEG1 and MPEG2 video decoder library
ii libmpeg2encpp-2.1-0:amd64 1:2.1.0+debian-7 amd64 MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii libmpfr6:amd64 4.2.0-1 amd64 multiple precision floating-point computation
ii libmpg123-0:amd64 1.31.2-1 amd64 MPEG layer 1/2/3 audio decoder (shared library)
ii libmplex2-2.1-0:amd64 1:2.1.0+debian-7 amd64 MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii libmtdev1:amd64 1.1.6-1 amd64 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 amd64 Media Transfer Protocol (MTP) runtime tools
ii libmtp9:amd64 1.1.20-1 amd64 Media Transfer Protocol (MTP) library
ii libmujs2:amd64 1.3.2-1 amd64 Lightweight JavaScript interpreter library
ii libmysofa1:amd64 1.3.1~dfsg0-1 amd64 library to read HRTFs stored in the AES69-2015 SOFA format
ii libnatpmp1:amd64 20150609-7.1+b2 amd64 portable and fully compliant implementation of NAT-PMP
ii libncurses6:amd64 6.4-4 amd64 shared libraries for terminal handling
ii libncursesw6:amd64 6.4-4 amd64 shared libraries for terminal handling (wide character support)
ii libndctl6:amd64 76.1-1 amd64 Utility library for managing the libnvdimm subsystem
ii libndp0:amd64 1.8-1 amd64 Library for Neighbor Discovery Protocol
ii libneon27:amd64 0.32.5-1 amd64 HTTP and WebDAV client library
ii libnet-dbus-perl 1.2.0-2 amd64 Perl extension for the DBus bindings
ii libnet-http-perl 6.22-1 all module providing low-level HTTP connection client
ii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP
ii libnet-ssleay-perl:amd64 1.92-2+b1 amd64 Perl module for Secure Sockets Layer (SSL)
ii libnetfilter-conntrack3:amd64 1.0.9-3 amd64 Netfilter netlink-conntrack library
ii libnetpbm11:amd64 2:11.01.00-2 amd64 Graphics conversion tools shared libraries
ii libnettle8:amd64 3.8.1-2 amd64 low level cryptographic library (symmetric and one-way cryptos)
ii libnewt0.52:amd64 0.52.23-1+b1 amd64 Not Erik's Windowing Toolkit - text mode windowing with slang
ii libnfnetlink0:amd64 1.0.2-2 amd64 Netfilter netlink library
ii libnfs13:amd64 4.0.0-1 amd64 NFS client library (shared library)
ii libnftables1:amd64 1.0.6-2+deb12u2 amd64 Netfilter nftables high level userspace API library
ii libnftnl11:amd64 1.2.4-2 amd64 Netfilter nftables userspace API library
ii libnghttp2-14:amd64 1.52.0-1+deb12u1 amd64 library implementing HTTP/2 protocol (shared library)
ii libnice10:amd64 0.1.21-1 amd64 ICE library (shared library)
ii libnl-3-200:amd64 3.7.0-0.2+b1 amd64 library for dealing with netlink sockets
ii libnl-genl-3-200:amd64 3.7.0-0.2+b1 amd64 library for dealing with netlink sockets - generic netlink
ii libnl-route-3-200:amd64 3.7.0-0.2+b1 amd64 library for dealing with netlink sockets - route interface
ii libnm0:amd64 1.42.4-1 amd64 GObject-based client library for NetworkManager
ii libnma-common 1.10.6-1 all NetworkManager GUI library - translations
ii libnma0:amd64 1.10.6-1 amd64 NetworkManager GUI library
ii libnorm1:amd64 1.5.9+dfsg-2 amd64 NACK-Oriented Reliable Multicast (NORM) library
ii libnotify-bin 0.8.1-1 amd64 sends desktop notifications to a notification daemon (Utilities)
ii libnotify4:amd64 0.8.1-1 amd64 sends desktop notifications to a notification daemon
ii libnpth0:amd64 1.6-3 amd64 replacement for GNU Pth using system threads
ii libnsl-dev:amd64 1.3.0-2 amd64 libnsl development files
ii libnsl2:amd64 1.3.0-2 amd64 Public client interface for NIS(YP) and NIS+
ii libnspr4:amd64 2:4.35-1 amd64 NetScape Portable Runtime Library
ii libnss-mdns:amd64 0.15.1-3 amd64 NSS module for Multicast DNS name resolution
ii libnss-mymachines:amd64 252.22-1~deb12u1 amd64 nss module to resolve hostnames for local container instances
ii libnss-systemd:amd64 252.22-1~deb12u1 amd64 nss module providing dynamic user and group name resolution
ii libnss3:amd64 2:3.87.1-1 amd64 Network Security Service libraries
ii libntfs-3g89:amd64 1:2022.10.3-1+b1 amd64 read/write NTFS driver for FUSE (runtime library)
ii libnuma1:amd64 2.0.16-1 amd64 Libraries for controlling NUMA policy
ii libobs0:amd64 29.0.2+dfsg-1+b1 amd64 recorder and streamer for live video content (shared library)
ii libogg0:amd64 1.3.5-3 amd64 Ogg bitstream library
ii libopenal-data 1:1.19.1-2 all Software implementation of the OpenAL audio API (data files)
ii libopenal1:amd64 1:1.19.1-2 amd64 Software implementation of the OpenAL audio API (shared library)
ii libopencore-amrnb0:amd64 0.1.6-1 amd64 Adaptive Multi Rate speech codec - shared library
ii libopencore-amrwb0:amd64 0.1.6-1 amd64 Adaptive Multi-Rate - Wideband speech codec - shared library
ii libopenexr-3-1-30:amd64 3.1.5-5 amd64 runtime files for the OpenEXR image library
ii libopengl0:amd64 1.6.0-1 amd64 Vendor neutral GL dispatch library -- OpenGL support
ii libopenh264-7:amd64 2.3.1+dfsg-3 amd64 OpenH264 Video Codec
ii libopenjp2-7:amd64 2.5.0-2 amd64 JPEG 2000 image compression/decompression library
ii libopenmpt-modplug1:amd64 0.8.9.0-openmpt1-2+b1 amd64 module music library based on OpenMPT -- modplug compat library
ii libopenmpt0:amd64 0.6.9-1 amd64 module music library based on OpenMPT -- shared library
ii libopenni2-0:amd64 2.2.0.33+dfsg-15+b1 amd64 framework for sensor-based 'Natural Interaction'
ii libopus0:amd64 1.3.1-3 amd64 Opus codec runtime library
ii liborc-0.4-0:amd64 1:0.4.33-2 amd64 Library of Optimized Inner Loops Runtime Compiler
ii libosinfo-1.0-0:amd64 1.10.0-2 amd64 Library for managing information about operating systems and hypervisors
ii libosinfo-l10n 1.10.0-2 all Translations for libosinfo
ii libostree-1-1:amd64 2022.7-2 amd64 content-addressed filesystem for operating system binaries (library)
ii libp11-kit0:amd64 0.24.1-2 amd64 library for loading and coordinating access to PKCS#11 modules - runtime
ii libpackagekit-glib2-18:amd64 1.2.6-5 amd64 Library for accessing PackageKit using GLib
ii libpam-gnome-keyring:amd64 42.1-1+b2 amd64 PAM module to unlock the GNOME keyring upon login
ii libpam-modules:amd64 1.5.2-6+deb12u1 amd64 Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.5.2-6+deb12u1 amd64 Pluggable Authentication Modules for PAM - helper binaries
ii libpam-runtime 1.5.2-6+deb12u1 all Runtime support for the PAM library
ii libpam-systemd:amd64 252.22-1~deb12u1 amd64 system and service manager - PAM module
ii libpam0g:amd64 1.5.2-6+deb12u1 amd64 Pluggable Authentication Modules library
ii libpam0g-dev:amd64 1.5.2-6+deb12u1 amd64 Development files for PAM
ii libpango-1.0-0:amd64 1.50.12+ds-1 amd64 Layout and rendering of internationalized text
ii libpangocairo-1.0-0:amd64 1.50.12+ds-1 amd64 Layout and rendering of internationalized text
ii libpangoft2-1.0-0:amd64 1.50.12+ds-1 amd64 Layout and rendering of internationalized text
ii libpangomm-1.4-1v5:amd64 2.46.3-1 amd64 C++ Wrapper for pango (shared libraries)
ii libpangoxft-1.0-0:amd64 1.50.12+ds-1 amd64 Layout and rendering of internationalized text
ii libpaper-utils 1.1.29 amd64 library for handling paper characteristics (utilities)
ii libpaper1:amd64 1.1.29 amd64 library for handling paper characteristics
ii libparted-fs-resize0:amd64 3.5-3 amd64 disk partition manipulator - shared FS resizing library
ii libparted2:amd64 3.5-3 amd64 disk partition manipulator - shared library
ii libpathplan4:amd64 2.42.2-7+b3 amd64 rich set of graph drawing tools - pathplan library
ii libpcap0.8:amd64 1.10.3-1 amd64 system interface for user-level packet capture
ii libpcaudio0:amd64 1.2-2 amd64 C API to different audio devices - shared library
ii libpci3:amd64 1:3.9.0-4 amd64 PCI utilities (shared library)
ii libpciaccess0:amd64 0.17-2 amd64 Generic PCI access library for X
ii libpcre2-16-0:amd64 10.42-1 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files
ii libpcre2-8-0:amd64 10.42-1 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files
ii libpcre3:amd64 2:8.39-15 amd64 Old Perl 5 Compatible Regular Expression Library - runtime files
ii libpcsclite1:amd64 1.9.9-2 amd64 Middleware to access a smart card using PC/SC (library)
ii libpeas-1.0-0:amd64 1.34.0-1+b1 amd64 Application plugin library
ii libpeas-common 1.34.0-1 all Application plugin library (common files)
ii libperl5.36:amd64 5.36.0-7+deb12u1 amd64 shared Perl library
ii libpgm-5.3-0:amd64 5.3.128~dfsg-2 amd64 OpenPGM shared library
ii libphodav-3.0-0:amd64 3.0-8 amd64 WebDAV server implementation using libsoup
ii libphodav-3.0-common 3.0-8 all WebDAV server implementation using libsoup (common files)
ii libpipeline1:amd64 1.5.7-1 amd64 Unix process pipeline manipulation library
ii libpipewire-0.3-0:amd64 0.3.65-3+deb12u1 amd64 libraries for the PipeWire multimedia server
ii libpipewire-0.3-common 0.3.65-3+deb12u1 all libraries for the PipeWire multimedia server - common files
ii libpixman-1-0:amd64 0.42.2-1 amd64 pixel-manipulation library for X and cairo
ii libplacebo208:amd64 4.208.0-3 amd64 GPU-accelerated video/image rendering primitives (shared library)
ii libplist3:amd64 2.2.0-6+b2 amd64 Library for handling Apple binary and XML property lists
ii libplymouth5:amd64 22.02.122-3 amd64 graphical boot animation and logger - shared libraries
ii libpmem1:amd64 1.12.1-2 amd64 Persistent Memory low level support library, v1 runtime
ii libpng16-16:amd64 1.6.39-2 amd64 PNG library - runtime (version 1.6)
ii libpocketsphinx3:amd64 0.8+5prealpha+1-15 amd64 Speech recognition tool - front-end library
ii libpolkit-agent-1-0:amd64 122-3 amd64 polkit Authentication Agent API
ii libpolkit-gobject-1-0:amd64 122-3 amd64 polkit Authorization API
ii libpoppler-cpp0v5:amd64 22.12.0-2+b1 amd64 PDF rendering library (CPP shared library)
ii libpoppler-glib8:amd64 22.12.0-2+b1 amd64 PDF rendering library (GLib-based shared library)
ii libpoppler126:amd64 22.12.0-2+b1 amd64 PDF rendering library
ii libpopt0:amd64 1.19+dfsg-1 amd64 lib for parsing cmdline parameters
ii libpostproc56:amd64 7:5.1.4-0+deb12u1 amd64 FFmpeg library for post processing - runtime files
ii libproc2-0:amd64 2:4.0.2-3 amd64 library for accessing process information from /proc
ii libprotobuf-c1:amd64 1.4.1-1+b1 amd64 Protocol Buffers C shared library (protobuf-c)
ii libprotobuf-lite32:amd64 3.21.12-3 amd64 protocol buffers C++ library (lite version)
ii libproxy-tools 0.4.18-1.2 amd64 automatic proxy configuration management library (tools)
ii libproxy1v5:amd64 0.4.18-1.2 amd64 automatic proxy configuration management library (shared)
ii libpsl5:amd64 0.21.2-1 amd64 Library for Public Suffix List (shared libraries)
ii libpthread-stubs0-dev:amd64 0.4-1 amd64 pthread stubs not provided by native libc, development files
ii libpulse-mainloop-glib0:amd64 16.1+dfsg1-2+b1 amd64 PulseAudio client libraries (glib support)
ii libpulse0:amd64 16.1+dfsg1-2+b1 amd64 PulseAudio client libraries
ii libpulsedsp:amd64 16.1+dfsg1-2+b1 amd64 PulseAudio OSS pre-load library
ii libpwquality-common 1.4.5-1 all library for password quality checking and generation (data files)
ii libpwquality1:amd64 1.4.5-1+b1 amd64 library for password quality checking and generation
ii libpython3-dev:amd64 3.11.2-1+b1 amd64 header files and a static library for Python (default)
ii libpython3-stdlib:amd64 3.11.2-1+b1 amd64 interactive high-level object-oriented language (default python3 version)
ii libpython3.11:amd64 3.11.2-6 amd64 Shared Python runtime library (version 3.11)
ii libpython3.11-dev:amd64 3.11.2-6 amd64 Header files and a static library for Python (v3.11)
ii libpython3.11-minimal:amd64 3.11.2-6 amd64 Minimal subset of the Python language (version 3.11)
ii libpython3.11-stdlib:amd64 3.11.2-6 amd64 Interactive high-level object-oriented language (standard library, version 3.11)
ii libqmi-glib5:amd64 1.32.2-1 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol
ii libqmi-proxy 1.32.2-1 amd64 Proxy to communicate with QMI ports
ii libqmi-utils 1.32.2-1 amd64 Utilities to use the QMI protocol from the command line
ii libqpdf29:amd64 11.3.0-1+deb12u1 amd64 runtime library for PDF transformation/inspection software
ii libqrencode4:amd64 4.1.1-1 amd64 QR Code encoding library
ii libqrtr-glib0:amd64 1.2.2-1 amd64 Support library to use the QRTR protocol
ii libqt5core5a:amd64 5.15.8+dfsg-11 amd64 Qt 5 core module
ii libqt5dbus5:amd64 5.15.8+dfsg-11 amd64 Qt 5 D-Bus module
ii libqt5gui5:amd64 5.15.8+dfsg-11 amd64 Qt 5 GUI module
ii libqt5network5:amd64 5.15.8+dfsg-11 amd64 Qt 5 network module
ii libqt5qml5:amd64 5.15.8+dfsg-3 amd64 Qt 5 QML module
ii libqt5qmlmodels5:amd64 5.15.8+dfsg-3 amd64 Qt 5 QML Models library
ii libqt5quick5:amd64 5.15.8+dfsg-3 amd64 Qt 5 Quick library
ii libqt5svg5:amd64 5.15.8-3 amd64 Qt 5 SVG module
ii libqt5waylandclient5:amd64 5.15.8-2 amd64 QtWayland client library
ii libqt5waylandcompositor5:amd64 5.15.8-2 amd64 QtWayland compositor library
ii libqt5widgets5:amd64 5.15.8+dfsg-11 amd64 Qt 5 widgets module
ii libqt5x11extras5:amd64 5.15.8-2 amd64 Qt 5 X11 extras
ii libqt5xml5:amd64 5.15.8+dfsg-11 amd64 Qt 5 XML module
ii libquadmath0:amd64 12.2.0-14 amd64 GCC Quad-Precision Math Library
ii librabbitmq4:amd64 0.11.0-1+b1 amd64 AMQP client library written in C
ii librados2 16.2.11+ds-2 amd64 RADOS distributed object store client library
ii libraptor2-0:amd64 2.0.15-4 amd64 Raptor 2 RDF syntax library
ii librav1e0:amd64 0.5.1-6 amd64 Fastest and safest AV1 encoder - shared library
ii libraw1394-11:amd64 2.1.2-2 amd64 library for direct access to IEEE 1394 bus (aka FireWire)
ii librbd1 16.2.11+ds-2 amd64 RADOS block device client library
ii librdmacm1:amd64 44.0-2 amd64 Library for managing RDMA connections
ii libreadline8:amd64 8.2-1.3 amd64 GNU readline and history libraries, run-time libraries
ii libregexp-ipv6-perl 0.03-3 all Regular expression for IPv6 addresses
rc libreoffice-common 4:7.4.7-1+deb12u2 all office productivity suite -- arch-independent files
rc libreoffice-draw 4:7.4.7-1+deb12u2 amd64 office productivity suite -- drawing
rc libreoffice-gtk3 4:7.4.7-1+deb12u2 amd64 office productivity suite -- GTK+ 3 integration
rc libreoffice-help-en-us 4:7.4.7-1+deb12u2 all office productivity suite -- English_american help
rc libreoffice-impress 4:7.4.7-1+deb12u2 amd64 office productivity suite -- presentation
rc libreoffice-math 4:7.4.7-1+deb12u2 amd64 office productivity suite -- equation editor
ii libresid-builder0c2a 2.1.1-15+b1 amd64 SID chip emulation class based on resid
ii librhythmbox-core10:amd64 3.4.6-2+b1 amd64 support library for the rhythmbox music player
ii librist4:amd64 0.2.7+dfsg-1 amd64 Reliable Internet Stream Transport -- shared library
ii librsvg2-2:amd64 2.54.7+dfsg-1~deb12u1 amd64 SAX-based renderer library for SVG files (runtime)
ii librsvg2-common:amd64 2.54.7+dfsg-1~deb12u1 amd64 SAX-based renderer library for SVG files (extra runtime)
ii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2+b2 amd64 toolkit for RTMP streams (shared library)
ii librubberband2:amd64 3.1.2+dfsg0-1 amd64 audio time-stretching and pitch-shifting library
ii libsamplerate0:amd64 0.2.2-3 amd64 Audio sample rate conversion library
ii libsane-common 1.2.1-2 all API library for scanners -- documentation and support files
ii libsane1:amd64 1.2.1-2 amd64 API library for scanners
ii libsasl2-2:amd64 2.1.28+dfsg-10 amd64 Cyrus SASL - authentication abstraction library
ii libsasl2-modules:amd64 2.1.28+dfsg-10 amd64 Cyrus SASL - pluggable authentication modules
ii libsasl2-modules-db:amd64 2.1.28+dfsg-10 amd64 Cyrus SASL - pluggable authentication modules (DB)
ii libsbc1:amd64 2.0-1 amd64 Sub Band CODEC library - runtime