1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
|
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-=======================================-====================================-============-================================================================================================================
ii acl 2.3.2-2+b1 amd64 access control list - utilities
ii acpi 1.8-1 amd64 displays information on ACPI devices
ii adduser 3.152 all add and remove users and groups
ii adwaita-icon-theme 48.1-1 all default icon theme of GNOME
ii alloy 1.14.0-1 amd64 Grafana Alloy is an OpenTelemetry Collector distribution with programmable pipelines.
ii alsa-topology-conf 1.2.5.1-3 all ALSA topology configuration files
ii alsa-ucm-conf 1.2.14-1 all ALSA Use Case Manager configuration files
ii amfora 1.10.0-1+b10 amd64 Fancy terminal browser for the Gemini protocol
ii anacron 2.3-43 amd64 cron-like program that doesn't go by time
ii apache2-utils 2.4.66-1~deb13u2 amd64 Apache HTTP Server (utility programs for web servers)
ii apparmor 4.1.0-1 amd64 user-space parser utility for AppArmor
ii apparmor-utils 4.1.0-1 all utilities for controlling AppArmor
ii apt 3.0.3 amd64 commandline package manager
ii apt-listchanges 4.8 all package change history notification tool
ii apt-transport-https 3.0.3 all transitional package for https support
ii apt-utils 3.0.3 amd64 package management related utility programs
ii at-spi2-common 2.56.2-1+deb13u1 all Assistive Technology Service Provider Interface (common files)
ii at-spi2-core 2.56.2-1+deb13u1 amd64 Assistive Technology Service Provider Interface (D-Bus core)
ii avahi-daemon 0.8-16 amd64 Avahi mDNS/DNS-SD daemon
ii base-files 13.8+deb13u4 amd64 Debian base system miscellaneous files
ii base-passwd 3.6.7 amd64 Debian base system master password and group files
ii bash 5.2.37-2+b8 amd64 GNU Bourne Again SHell
ii bash-completion 1:2.16.0-7 all programmable completion for the bash shell
ii bind9-dnsutils 1:9.20.18-1~deb13u1 amd64 Clients provided with BIND 9
ii bind9-host 1:9.20.18-1~deb13u1 amd64 DNS Lookup Utility
ii bind9-libs:amd64 1:9.20.18-1~deb13u1 amd64 Shared Libraries used by BIND 9
ii binutils 2.44-3 amd64 GNU assembler, linker and binary utilities
ii binutils-common:amd64 2.44-3 amd64 Common files for the GNU assembler, linker and binary utilities
ii binutils-x86-64-linux-gnu 2.44-3 amd64 GNU binary utilities, for x86-64-linux-gnu target
ii blt 2.5.3+dfsg-8 amd64 graphics extension library for Tcl/Tk - run-time
ii bluetooth 5.82-1.1 all Bluetooth support (metapackage)
ii bluez 5.82-1.1 amd64 Bluetooth tools and daemons
ii bolt 0.9.8-1 amd64 system daemon to manage thunderbolt 3 devices
ii borgbackup 1.4.0-5 amd64 deduplicating and compressing backup program
ii broot 1.46.3-2 amd64 tree view, file manager, configurable launcher
ii bsdextrautils 2.41-5 amd64 extra utilities from 4.4BSD-Lite
ii bsdutils 1:2.41-5 amd64 basic utilities from 4.4BSD-Lite
ii build-essential 12.12 amd64 Informational list of build-essential packages
ii busybox 1:1.37.0-6+b7 amd64 Tiny utilities for small and embedded systems
ii bzip2 1.0.8-6 amd64 high-quality block-sorting file compressor - utilities
ii ca-certificates 20250419 all Common CA certificates
ii certbot 4.0.0-2 all automatically configure HTTPS using Let's Encrypt
ii cmake 3.31.6-2 amd64 cross-platform, open-source make system
ii cmake-data 3.31.6-2 all CMake data files (modules, templates and documentation)
ii conntrack 1:1.4.8-2 amd64 Program to modify the conntrack tables
ii console-setup 1.242~deb13u1 all console font and keymap setup program
ii console-setup-linux 1.242~deb13u1 all Linux specific part of console-setup
ii containerd.io 2.2.2-1~debian.13~trixie amd64 An open and reliable container runtime
ii coreutils 9.7-3 amd64 GNU core utilities
ii cpanminus 1.7048-1 all script to get, unpack, build and install modules from CPAN
ii cpio 2.15+dfsg-2 amd64 GNU cpio -- a program to manage archives of files
ii cpp 4:14.2.0-1 amd64 GNU C preprocessor (cpp)
ii cpp-14 14.2.0-19 amd64 GNU C preprocessor
ii cpp-14-x86-64-linux-gnu 14.2.0-19 amd64 GNU C preprocessor for x86_64-linux-gnu
ii cpp-x86-64-linux-gnu 4:14.2.0-1 amd64 GNU C preprocessor (cpp) for the amd64 architecture
ii cron 3.0pl1-197 amd64 process scheduling daemon
ii cron-daemon-common 3.0pl1-197 all process scheduling daemon's configuration files
ii cryptsetup 2:2.7.5-2 amd64 disk encryption support - startup scripts
ii cryptsetup-bin 2:2.7.5-2 amd64 disk encryption support - command line tools
ii cryptsetup-initramfs 2:2.7.5-2 all disk encryption support - initramfs integration
ii curl 8.14.1-2+deb13u2 amd64 command line tool for transferring data with URL syntax
ii dash 0.5.12-12 amd64 POSIX-compliant shell
ii dbus 1.16.2-2 amd64 simple interprocess messaging system (system message bus)
ii dbus-bin 1.16.2-2 amd64 simple interprocess messaging system (command line utilities)
ii dbus-daemon 1.16.2-2 amd64 simple interprocess messaging system (reference message bus)
ii dbus-session-bus-common 1.16.2-2 all simple interprocess messaging system (session bus configuration)
ii dbus-system-bus-common 1.16.2-2 all simple interprocess messaging system (system bus configuration)
ii dbus-user-session 1.16.2-2 amd64 simple interprocess messaging system (systemd --user integration)
ii dconf-gsettings-backend:amd64 0.40.0-5 amd64 simple configuration storage system - GSettings back-end
ii dconf-service 0.40.0-5 amd64 simple configuration storage system - D-Bus service
ii debconf 1.5.91 all Debian configuration management system
ii debconf-i18n 1.5.91 all full internationalization support for debconf
ii debfoster 2.8-1 amd64 Install only wanted Debian packages
ii debian-archive-keyring 2025.1 all OpenPGP archive certificates of the Debian archive
ii debian-faq 12.2 all Debian Frequently Asked Questions
ii debianutils 5.23.2 amd64 Miscellaneous utilities specific to Debian
ii default-libmysqlclient-dev:amd64 1.1.1 amd64 MySQL database development files (metapackage)
ii dhcpcd-base 1:10.1.0-11+deb13u2 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)
ii diceware 1.0.1-1 all Create memorizable passphrases from wordlists and various sources of randomness
ii dictionaries-common 1.30.10 all spelling dictionaries - common utilities
ii diffutils 1:3.10-4 amd64 File comparison utilities
ii dirmngr 2.4.7-21+deb13u1+b2 amd64 GNU privacy guard - network certificate management service
ii distro-info-data 0.66+deb13u1 all information about the distributions' releases (data files)
ii dkms 3.2.2-1~deb13u1 all Dynamic Kernel Module System (DKMS)
ii dmeventd 2:1.02.205-2 amd64 Linux Kernel Device Mapper event daemon
ii dmidecode 3.6-2 amd64 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.205-2 amd64 Linux Kernel Device Mapper userspace library
ii dns-root-data 2025080400~deb13u1 all DNS root hints and DNSSEC trust anchor
ii dnsmasq 2.91-1 all Small caching DNS proxy and DHCP/TFTP server - system daemon
ii dnsmasq-base 2.91-1 amd64 Small caching DNS proxy and DHCP/TFTP server - executable
ii doc-debian 11.3+nmu1 all Debian Project documentation and other documents
ii docker-buildx-plugin 0.31.1-1~debian.13~trixie amd64 Docker Buildx plugin extends build capabilities with BuildKit.
ii docker-ce 5:29.3.0-1~debian.13~trixie amd64 Docker: the open-source application container engine
ii docker-ce-cli 5:29.3.0-1~debian.13~trixie amd64 Docker CLI: the open-source application container engine
ii docker-ce-rootless-extras 5:29.3.0-1~debian.13~trixie amd64 Rootless support for Docker.
ii docker-compose-plugin 5.1.0-1~debian.13~trixie amd64 Docker Compose (V2) plugin for the Docker CLI.
ii dosfstools 4.2-1.2 amd64 utilities for making and checking MS-DOS FAT filesystems
ii dpkg 1.22.22 amd64 Debian package management system
ii dpkg-dev 1.22.22 all Debian package development tools
ii dracut-install 106-6 amd64 dracut is an event driven initramfs infrastructure (dracut-install)
ii e2fsprogs 1.47.2-3+b10 amd64 ext2/ext3/ext4 file system utilities
ii efibootmgr 18-2 amd64 Interact with the EFI Boot Manager
ii eject 2.41-5 amd64 ejects CDs and operates CD-Changers under Linux
ii emacsen-common 3.0.8 all Common facilities for all emacsen
ii ethtool 1:6.14.2-1 amd64 display or change Ethernet device settings
ii exfatprogs 1.2.9-1+deb13u1 amd64 exFAT file system utilities
ii fail2ban 1.1.0-8 all ban hosts that cause multiple authentication errors
ii fakeroot 1.37.1.1-1 amd64 tool for simulating superuser privileges
ii fasd 1.0.1-3 all command-line productivity booster
ii fastfetch 2.40.4+dfsg-1 amd64 neofetch-like tool for fetching system information
ii fdisk 2.41-5 amd64 collection of partitioning utilities
ii file 1:5.46-5 amd64 Recognize the type of data in a file using "magic" numbers
ii findutils 4.10.0-3 amd64 utilities for finding files--find, xargs
ii firmware-intel-graphics 20250410-2 all Binary firmware for Intel iGPUs and IPUs
ii firmware-realtek 20250410-2 all Binary firmware for Realtek network and audio chips
ii firmware-sof-signed 2025.01-1 all Intel SOF firmware - signed
ii fontconfig 2.15.0-2.3 amd64 generic font configuration library - support binaries
ii fontconfig-config 2.15.0-2.3 amd64 generic font configuration library - configuration
ii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters
ii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters
ii fonts-glyphicons-halflings 1.009~3.4.1+dfsg-6 all icons made for smaller graphic
ii freeipmi-common 1.6.15-1 all GNU implementation of the IPMI protocol - common files
ii fuse3 3.17.2-3 amd64 Filesystem in Userspace (3.x version)
ii fwupd 2.0.8-3 amd64 Firmware update daemon
ii fwupd-amd64-signed 1:1.7+1 amd64 Tools to manage UEFI firmware updates (signed)
ii fzf 0.60.3-1+b2 amd64 general-purpose command-line fuzzy finder
ii g++ 4:14.2.0-1 amd64 GNU C++ compiler
ii g++-14 14.2.0-19 amd64 GNU C++ compiler
ii g++-14-x86-64-linux-gnu 14.2.0-19 amd64 GNU C++ compiler for x86_64-linux-gnu architecture
ii g++-x86-64-linux-gnu 4:14.2.0-1 amd64 GNU C++ compiler for the amd64 architecture
ii galera-4 26.4.23-0+deb13u1 amd64 Replication framework for transactional applications
ii gawk 1:5.2.1-2+b1 amd64 GNU awk, a pattern scanning and processing language
ii gcc 4:14.2.0-1 amd64 GNU C compiler
ii gcc-14 14.2.0-19 amd64 GNU C compiler
ii gcc-14-base:amd64 14.2.0-19 amd64 GCC, the GNU Compiler Collection (base package)
ii gcc-14-x86-64-linux-gnu 14.2.0-19 amd64 GNU C compiler for the x86_64-linux-gnu architecture
ii gcc-x86-64-linux-gnu 4:14.2.0-1 amd64 GNU C compiler for the amd64 architecture
ii gettext-base 0.23.1-2 amd64 GNU Internationalization utilities for the base system
ii gir1.2-girepository-2.0:amd64 1.84.0-1 amd64 Introspection data for GIRepository library
ii gir1.2-glib-2.0:amd64 2.84.4-3~deb13u2 amd64 Introspection data for GLib, GObject, Gio and GModule
ii git 1:2.47.3-0+deb13u1 amd64 fast, scalable, distributed revision control system
ii git-man 1:2.47.3-0+deb13u1 all fast, scalable, distributed revision control system (manual pages)
ii gnupg 2.4.7-21+deb13u1 all GNU privacy guard - a free PGP replacement
ii gnupg-l10n 2.4.7-21+deb13u1 all GNU privacy guard - localization files
ii gnupg-utils 2.4.7-21+deb13u1+b2 amd64 GNU privacy guard - utility programs
ii goaccess 1:1.9.3-1 amd64 log analyzer and interactive viewer for the Apache Webserver
ii golang-1.24-go 1.24.4-1 amd64 Go programming language compiler, linker, compiled stdlib
ii golang-1.24-src 1.24.4-1 all Go programming language - source files
ii golang-any:amd64 2:1.24~2 amd64 Go programming language -- gccgo on "non-Go" platforms
ii golang-go:amd64 2:1.24~2 amd64 Go programming language compiler, linker, compiled stdlib
ii golang-src 2:1.24~2 all Go programming language - source files
ii gpg 2.4.7-21+deb13u1+b2 amd64 GNU Privacy Guard -- minimalist public key operations
ii gpg-agent 2.4.7-21+deb13u1+b2 amd64 GNU privacy guard - cryptographic agent
ii gpg-wks-client 2.4.7-21+deb13u1+b2 amd64 GNU privacy guard - Web Key Service client
ii gpgconf 2.4.7-21+deb13u1+b2 amd64 GNU privacy guard - core configuration utilities
ii gpgsm 2.4.7-21+deb13u1+b2 amd64 GNU privacy guard - S/MIME version
ii gpgv 2.4.7-21+deb13u1+b2 amd64 GNU privacy guard - signature verification tool
ii grafana 12.4.1 amd64 Grafana
ii grep 3.11-4 amd64 GNU grep, egrep and fgrep
ii groff-base 1.23.0-9 amd64 GNU troff text-formatting system (base system components)
ii grub-common 2.12-9+deb13u1 amd64 GRand Unified Bootloader (common files)
ii grub-efi-amd64 2.12-9+deb13u1 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version)
ii grub-efi-amd64-bin 2.12-9+deb13u1 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)
ii grub-efi-amd64-signed 1+2.12+9+deb13u1 amd64 GRand Unified Bootloader, version 2 (amd64 UEFI signed by Debian)
ii grub-efi-amd64-unsigned 2.12-9+deb13u1 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 images)
ii grub2-common 2.12-9+deb13u1 amd64 GRand Unified Bootloader (common files for version 2)
ii gsasl-common 2.2.2-1.1 all GNU SASL platform independent files
ii gsettings-desktop-schemas 48.0-1 all GSettings desktop-wide schemas
ii gtk-update-icon-cache 4.18.6+ds-2 amd64 icon theme caching utility
ii guile-3.0-libs:amd64 3.0.10+really3.0.10-4 amd64 Core Guile libraries
ii gzip 1.13-1 amd64 GNU compression utilities
ii hdparm 9.65+ds-1.1 amd64 tune hard disk parameters for high performance
ii hicolor-icon-theme 0.18-2 all default fallback theme for FreeDesktop.org icon themes
ii hostname 3.25 amd64 utility to set/show the host name or domain name
ii htop 3.4.1-5 amd64 interactive processes viewer
ii hugo 0.131.0-1 amd64 Fast and flexible Static Site Generator written in Go
ii i2pd 2.56.0-1 amd64 Full-featured C++ implementation of I2P client
ii iamerican 3.4.06-1 all American English dictionary for ispell (standard version)
ii ibritish 3.4.06-1 all British English dictionary for ispell (standard version)
ii ienglish-common 3.4.06-1 all Common files for British and American ispell dictionaries
ii iftop 1.0~pre4-9+b1 amd64 displays bandwidth usage information on an network interface
ii ifupdown 0.8.44+deb13u1 amd64 high level tools to configure network interfaces
ii inetutils-telnet 2:2.6-3+deb13u2 amd64 telnet client
ii init 1.69~deb13u1 amd64 metapackage ensuring an init system is installed
ii init-system-helpers 1.69~deb13u1 all helper tools for all init systems
ii initramfs-tools 0.148.3 all generic modular initramfs generator (automation)
ii initramfs-tools-bin 0.148.3 amd64 generic modular initramfs generator (binary tools)
ii initramfs-tools-core 0.148.3 all generic modular initramfs generator (core tools)
ii installation-report 2.97 all system installation report
ii intel-microcode 3.20251111.1~deb13u1 amd64 Processor microcode firmware for Intel CPUs
ii iotop 0.6-42-ga14256a-0.3+b1 amd64 simple top-like I/O monitor
ii ipmitool 1.8.19-9 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)
ii iproute2 6.15.0-1 amd64 networking and traffic control tools
ii iptables 1.8.11-2 amd64 administration tools for packet filtering and NAT
ii iputils-ping 3:20240905-3 amd64 Tools to test the reachability of network hosts
ii isc-dhcp-client 4.4.3-P1-8 amd64 DHCP client for automatically obtaining an IP address (deprecated)
ii isc-dhcp-common 4.4.3-P1-8 amd64 common manpages relevant to all of the isc-dhcp packages (deprecated)
ii iso-codes 4.18.0-1 all ISO language, territory, currency, script codes and their translations
ii ispell 3.4.06-1 amd64 International Ispell (an interactive spelling corrector)
ii iucode-tool 2.3.1-3 amd64 Intel processor microcode tool
ii iw 6.9-1 amd64 tool for configuring Linux wireless devices
ii javascript-common 12+nmu1 all Base support for JavaScript library packages
ii jq 1.7.1-6+deb13u1 amd64 lightweight and flexible command-line JSON processor
ii kbd 2.7.1-2 amd64 Linux console font and keytable utilities
ii keyboard-configuration 1.242~deb13u1 all system-wide keyboard preferences
ii klibc-utils 2.0.14-1 amd64 small utilities built with klibc for early boot
ii kmod 34.2-2 amd64 tools for managing Linux kernel modules
ii krb5-locales 1.21.3-5 all internationalization support for MIT Kerberos
ii laptop-detect 0.16+nmu1 all system chassis type checker
ii less 668-1 amd64 pager program similar to more
ii libacl1:amd64 2.3.2-2+b1 amd64 access control list - shared library
ii libaio1t64:amd64 0.3.113-8+b1 amd64 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 0.04-9 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 libany-uri-escape-perl 0.01-4 all module to load URI::Escape::XS preferentially over URI::Escape
ii libapparmor1:amd64 4.1.0-1 amd64 changehat AppArmor library
ii libapr1t64:amd64 1.7.5-1 amd64 Apache Portable Runtime Library
ii libaprutil1t64:amd64 1.6.3-3+b1 amd64 Apache Portable Runtime Utility Library
ii libapt-pkg7.0:amd64 3.0.3 amd64 package management runtime library
ii libarchive13t64:amd64 3.7.4-4 amd64 Multi-format archive and compression library (shared library)
ii libasan8:amd64 14.2.0-19 amd64 AddressSanitizer -- a fast memory error detector
ii libasound2-data 1.2.14-1 all Configuration files and profiles for ALSA drivers
ii libasound2t64:amd64 1.2.14-1 amd64 shared library for ALSA applications
ii libassuan9:amd64 3.0.2-2 amd64 IPC library for the GnuPG components
ii libatasmart4:amd64 0.19-5+b2 amd64 ATA S.M.A.R.T. reading and parsing library
ii libatk-bridge2.0-0t64:amd64 2.56.2-1+deb13u1 amd64 AT-SPI 2 toolkit bridge - shared library
ii libatk1.0-0t64:amd64 2.56.2-1+deb13u1 amd64 ATK accessibility toolkit
ii libatomic1:amd64 14.2.0-19 amd64 support library providing __atomic built-in functions
ii libatspi2.0-0t64:amd64 2.56.2-1+deb13u1 amd64 Assistive Technology Service Provider Interface - shared library
ii libattr1:amd64 1:2.5.2-3 amd64 extended attribute handling - shared library
ii libaudit-common 1:4.0.2-2 all Dynamic library for security auditing - common files
ii libaudit1:amd64 1:4.0.2-2+b2 amd64 Dynamic library for security auditing
ii libavahi-client3:amd64 0.8-16 amd64 Avahi client library
ii libavahi-common-data:amd64 0.8-16 amd64 Avahi common data files
ii libavahi-common3:amd64 0.8-16 amd64 Avahi common library
ii libavahi-compat-libdnssd1:amd64 0.8-16 amd64 Avahi Apple Bonjour compatibility library
ii libavahi-core7:amd64 0.8-16 amd64 Avahi's embeddable mDNS/DNS-SD library
ii libb-hooks-endofscope-perl 0.28-2 all module for executing code after a scope finished compilation
ii libb-hooks-op-check-perl:amd64 0.22-3+b2 amd64 Perl wrapper for OP check callbacks
ii libbinutils:amd64 2.44-3 amd64 GNU binary utilities (private shared library)
ii libblkid1:amd64 2.41-5 amd64 block device ID library
ii libblockdev-crypto3:amd64 3.3.0-2.1 amd64 Crypto plugin for libblockdev
ii libblockdev-fs3:amd64 3.3.0-2.1 amd64 file system plugin for libblockdev
ii libblockdev-loop3:amd64 3.3.0-2.1 amd64 Loop device plugin for libblockdev
ii libblockdev-mdraid3:amd64 3.3.0-2.1 amd64 MD RAID plugin for libblockdev
ii libblockdev-nvme3:amd64 3.3.0-2.1 amd64 NVMe plugin for libblockdev
ii libblockdev-part3:amd64 3.3.0-2.1 amd64 Partitioning plugin for libblockdev
ii libblockdev-swap3:amd64 3.3.0-2.1 amd64 Swap plugin for libblockdev
ii libblockdev-utils3:amd64 3.3.0-2.1 amd64 Utility functions for libblockdev
ii libblockdev3:amd64 3.3.0-2.1 amd64 Library for manipulating block devices
ii libbluetooth3:amd64 5.82-1.1 amd64 Library to use the BlueZ Linux Bluetooth stack
ii libboost-atomic1.83-dev:amd64 1.83.0-4.2 amd64 atomic data types, operations, and memory ordering constraints
ii libboost-atomic1.83.0:amd64 1.83.0-4.2 amd64 atomic data types, operations, and memory ordering constraints
ii libboost-chrono-dev:amd64 1.83.0.2+b2 amd64 C++ representation of time duration, time point, and clocks (default version)
ii libboost-chrono1.83-dev:amd64 1.83.0-4.2 amd64 C++ representation of time duration, time point, and clocks
ii libboost-chrono1.83.0t64:amd64 1.83.0-4.2 amd64 C++ representation of time duration, time point, and clocks
ii libboost-date-time-dev:amd64 1.83.0.2+b2 amd64 set of date-time libraries based on generic programming concepts (default version)
ii libboost-date-time1.83-dev:amd64 1.83.0-4.2 amd64 set of date-time libraries based on generic programming concepts
ii libboost-date-time1.83.0:amd64 1.83.0-4.2 amd64 set of date-time libraries based on generic programming concepts
ii libboost-filesystem-dev:amd64 1.83.0.2+b2 amd64 filesystem operations (portable paths, iteration over directories, etc) in C++ (default version)
ii libboost-filesystem1.83-dev:amd64 1.83.0-4.2 amd64 filesystem operations (portable paths, iteration over directories, etc) in C++
ii libboost-filesystem1.83.0:amd64 1.83.0-4.2 amd64 filesystem operations (portable paths, iteration over directories, etc) in C++
ii libboost-program-options-dev:amd64 1.83.0.2+b2 amd64 program options library for C++ (default version)
ii libboost-program-options1.83-dev:amd64 1.83.0-4.2 amd64 program options library for C++
ii libboost-program-options1.83.0:amd64 1.83.0-4.2 amd64 program options library for C++
ii libboost-serialization1.83-dev:amd64 1.83.0-4.2 amd64 serialization library for C++
ii libboost-serialization1.83.0:amd64 1.83.0-4.2 amd64 serialization library for C++
ii libboost-system1.83-dev:amd64 1.83.0-4.2 amd64 Operating system (e.g. diagnostics support) library
ii libboost-system1.83.0:amd64 1.83.0-4.2 amd64 Operating system (e.g. diagnostics support) library
ii libboost1.83-dev:amd64 1.83.0-4.2 amd64 Boost C++ Libraries development files
ii libbpf1:amd64 1:1.5.0-3 amd64 eBPF helper library (shared library)
ii libbrotli1:amd64 1.1.0-2+b7 amd64 library implementing brotli encoder and decoder (shared libraries)
ii libbsd0:amd64 0.12.2-2 amd64 utility functions from BSD systems - shared library
ii libbytesize-common 2.11-2 all library for common operations with sizes in bytes - translations
ii libbytesize1:amd64 2.11-2 amd64 library for common operations with sizes in bytes
ii libbz2-1.0:amd64 1.0.8-6 amd64 high-quality block-sorting file compressor library - runtime
ii libc-bin 2.41-12+deb13u2 amd64 GNU C Library: Binaries
ii libc-dev-bin 2.41-12+deb13u2 amd64 GNU C Library: Development binaries
ii libc-l10n 2.41-12+deb13u2 all GNU C Library: localization files
ii libc6:amd64 2.41-12+deb13u2 amd64 GNU C Library: Shared libraries
ii libc6-dev:amd64 2.41-12+deb13u2 amd64 GNU C Library: Development Libraries and Header Files
ii libcairo-gobject2:amd64 1.18.4-1+b1 amd64 Cairo 2D vector graphics library (GObject library)
ii libcairo2:amd64 1.18.4-1+b1 amd64 Cairo 2D vector graphics library
ii libcap-ng0:amd64 0.8.5-4+b1 amd64 alternate POSIX capabilities library
ii libcap2:amd64 1:2.75-10+b8 amd64 POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.75-10+b8 amd64 POSIX 1003.1e capabilities (utilities)
ii libcbor0.10:amd64 0.10.2-2 amd64 library for parsing and generating CBOR (RFC 7049)
ii libcc1-0:amd64 14.2.0-19 amd64 GCC cc1 plugin for GDB
ii libcgi-fast-perl 1:2.17-1 all CGI subclass for work with FCGI
ii libcgi-pm-perl 4.68-1 all module for Common Gateway Interface applications
ii libclass-c3-perl 0.35-2 all pragma for using the C3 method resolution order
ii libclass-c3-xs-perl 0.15-1+b6 amd64 Perl module to accelerate Class::C3
ii libclass-method-modifiers-perl 2.15-1 all Perl module providing method modifiers
ii libclass-xsaccessor-perl 1.19-4+b5 amd64 Perl module providing fast XS accessors
ii libclone-perl:amd64 0.47-1+b1 amd64 module for recursively copying Perl datatypes
ii libcloudproviders0:amd64 0.3.6-2 amd64 cloud provider library
ii libcolord2:amd64 1.4.7-3 amd64 system service to manage device colour profiles -- runtime
ii libcom-err2:amd64 1.47.2-3+b10 amd64 common error description library
ii libconfig-inifiles-perl 3.000003-3 all read .ini-style configuration files
ii libcpan-changes-perl 0.500005-1 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.018-1 all verify requirements in a CPAN::Meta object
ii libcrypt-dev:amd64 1:4.4.38-1 amd64 libcrypt development files
ii libcrypt1:amd64 1:4.4.38-1 amd64 libcrypt shared library
ii libcryptsetup12:amd64 2:2.7.5-2 amd64 disk encryption support - shared library
ii libctf-nobfd0:amd64 2.44-3 amd64 Compact C Type Format library (runtime, no BFD dependency)
ii libctf0:amd64 2.44-3 amd64 Compact C Type Format library (runtime, BFD dependency)
ii libcups2t64:amd64 2.4.10-3+deb13u2 amd64 Common UNIX Printing System(tm) - Core library
ii libcurl3t64-gnutls:amd64 8.14.1-2+deb13u2 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libcurl4t64:amd64 8.14.1-2+deb13u2 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libdaemon0:amd64 0.14-7.1+b3 amd64 lightweight C library for daemons - runtime library
ii libdata-optlist-perl 0.114-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 libdatrie1:amd64 0.2.13-3+b1 amd64 Double-array trie library
ii libdav1d7:amd64 1.5.1-1 amd64 fast and small AV1 video stream decoder (shared library)
ii libdb5.3t64:amd64 5.3.28+dfsg2-9 amd64 Berkeley v5.3 Database Libraries [runtime]
ii libdbd-mariadb-perl 1.22-1+b4 amd64 Perl5 database interface to the MariaDB/MySQL databases
ii libdbd-mysql-perl:amd64 4.053-1 amd64 Perl5 database interface to the MariaDB/MySQL database
ii libdbi-perl:amd64 1.647-1 amd64 Perl Database Interface (DBI)
ii libdbus-1-3:amd64 1.16.2-2 amd64 simple interprocess messaging system (library)
ii libdconf1:amd64 0.40.0-5 amd64 simple configuration storage system - runtime library
ii libdebconfclient0:amd64 0.280 amd64 Debian Configuration Management System (C-implementation library)
ii libdeflate0:amd64 1.23-2 amd64 fast, whole-buffer DEFLATE-based compression and decompression
ii libdevel-callchecker-perl:amd64 0.009-2 amd64 custom op checking attached to subroutines
ii libdevmapper-event1.02.1:amd64 2:1.02.205-2 amd64 Linux Kernel Device Mapper event support library
ii libdevmapper1.02.1:amd64 2:1.02.205-2 amd64 Linux Kernel Device Mapper userspace library
ii libdouble-conversion3:amd64 3.3.1-1 amd64 routines to convert IEEE floats to and from strings
ii libdpkg-perl 1.22.22 all Dpkg perl modules
ii libdrm-amdgpu1:amd64 2.4.124-2 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii libdrm-common 2.4.124-2 all Userspace interface to kernel DRM services -- common files
ii libdrm2:amd64 2.4.124-2 amd64 Userspace interface to kernel DRM services -- runtime
ii libduktape207:amd64 2.7.0-2+b2 amd64 embeddable Javascript engine, library
ii libdw1t64:amd64 0.192-4 amd64 library that provides access to the DWARF debug information
ii libdynaloader-functions-perl 0.004-2 all deconstructed dynamic C library loading
ii libedit2:amd64 3.1-20250104-1 amd64 BSD editline and history libraries
ii libefiboot1t64:amd64 38-3.1+b1 amd64 Library to manage UEFI variables
ii libefivar1t64:amd64 38-3.1+b1 amd64 Library to manage UEFI variables
ii libelf1t64:amd64 0.192-4 amd64 library to read and write ELF files
ii libencode-locale-perl 1.05-3 all utility to determine the locale encoding
ii libepoxy0:amd64 1.5.10-2 amd64 OpenGL function pointer management library
ii liberror-perl 0.17030-1 all Perl module for error/exception handling in an OO-ish way
ii libevent-2.1-7t64:amd64 2.1.12-stable-10+b1 amd64 Asynchronous event notification library
ii libevent-core-2.1-7t64:amd64 2.1.12-stable-10+b1 amd64 Asynchronous event notification library (core)
ii libexpat1:amd64 2.7.1-2 amd64 XML parsing C library - runtime library
ii libexpat1-dev:amd64 2.7.1-2 amd64 XML parsing C library - development kit
ii libexporter-tiny-perl 1.006002-1 all tiny exporter similar to Sub::Exporter
ii libext2fs2t64:amd64 1.47.2-3+b10 amd64 ext2/ext3/ext4 file system libraries
ii libfakeroot:amd64 1.37.1.1-1 amd64 tool for simulating superuser privileges - shared libraries
ii libfcgi-bin 2.4.5-0.1 amd64 FastCGI bridge from CGI
ii libfcgi-perl 0.82+ds-3+b2 amd64 helper module for FastCGI
ii libfcgi0t64:amd64 2.4.5-0.1 amd64 shared library of FastCGI
ii libfdisk1:amd64 2.41-5 amd64 fdisk partitioning library
ii libffi-dev:amd64 3.4.8-2 amd64 Foreign Function Interface library (development files)
ii libffi8:amd64 3.4.8-2 amd64 Foreign Function Interface library runtime
ii libfido2-1:amd64 1.15.0-1+b1 amd64 library for generating and verifying FIDO 2.0 objects
ii libfile-fcntllock-perl 0.22-4+b4 amd64 Perl module for file locking with fcntl(2)
ii libfile-pushd-perl 1.016-2 all module for changing directory temporarily for a limited scope
ii libfile-slurp-perl 9999.32-2 all single call read & write file routines
ii libflashrom1:amd64 1.4.0-3 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library
ii libfontconfig1:amd64 2.15.0-2.3 amd64 generic font configuration library - runtime
ii libfreeipmi17 1.6.15-1 amd64 GNU IPMI - libraries
ii libfreetype6:amd64 2.13.3+dfsg-1+deb13u1 amd64 FreeType 2 font engine, shared library files
ii libfribidi0:amd64 1.0.16-1 amd64 Free Implementation of the Unicode BiDi algorithm
ii libfstrm0:amd64 0.6.1-1+b3 amd64 Frame Streams (fstrm) library
ii libftdi1-2:amd64 1.5-10 amd64 C Library to control and program the FTDI USB controllers
ii libfuse3-4:amd64 3.17.2-3 amd64 Filesystem in Userspace (library) (3.x version)
ii libfwupd3:amd64 2.0.8-3 amd64 Firmware update daemon library
ii libgc1:amd64 1:8.2.8-1 amd64 conservative garbage collector for C and C++
ii libgcc-14-dev:amd64 14.2.0-19 amd64 GCC support library (development files)
ii libgcc-s1:amd64 14.2.0-19 amd64 GCC support library
ii libgcrypt20:amd64 1.11.0-7 amd64 LGPL Crypto library - runtime library
ii libgdbm-compat4t64:amd64 1.24-2 amd64 GNU dbm database routines (legacy support runtime version)
ii libgdbm6t64:amd64 1.24-2 amd64 GNU dbm database routines (runtime version)
ii libgdk-pixbuf-2.0-0:amd64 2.42.12+dfsg-4 amd64 GDK Pixbuf library
ii libgdk-pixbuf2.0-bin 2.42.12+dfsg-4 amd64 GDK Pixbuf library (thumbnailer)
ii libgdk-pixbuf2.0-common 2.42.12+dfsg-4 all GDK Pixbuf library - data files
ii libgetopt-long-descriptive-perl 0.116-2 all module that handles command-line arguments with usage text
ii libgirepository-1.0-1:amd64 1.84.0-1 amd64 Library for handling GObject introspection data (runtime library)
ii libgit2-1.9:amd64 1.9.0+ds-2 amd64 low-level Git library
rc libgl1-mesa-dri:amd64 25.0.7-2 amd64 free implementation of the OpenGL API -- DRI modules
ii libglib2.0-0t64:amd64 2.84.4-3~deb13u2 amd64 GLib library of C routines
ii libglib2.0-data 2.84.4-3~deb13u2 all Common files for GLib library
ii libgmp10:amd64 2:6.3.0+dfsg-3 amd64 Multiprecision arithmetic library
ii libgnutls30t64:amd64 3.8.9-3+deb13u2 amd64 GNU TLS library - main runtime library
ii libgomp1:amd64 14.2.0-19 amd64 GCC OpenMP (GOMP) support library
ii libgpg-error-l10n 1.51-4 all library of error values and messages in GnuPG (localization files)
ii libgpg-error0:amd64 1.51-4 amd64 GnuPG development runtime library
ii libgpgme11t64:amd64 1.24.2-3 amd64 GPGME - GnuPG Made Easy (library)
ii libgpm2:amd64 1.20.7-11+b2 amd64 General Purpose Mouse - shared library
ii libgprofng0:amd64 2.44-3 amd64 GNU Next Generation profiler (runtime library)
ii libgraphite2-3:amd64 1.3.14-2+b1 amd64 Font rendering engine for Complex Scripts -- library
ii libgsasl18:amd64 2.2.2-1.1 amd64 GNU SASL library
ii libgssapi-krb5-2:amd64 1.21.3-5 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgssglue1:amd64 0.9-1.1 amd64 mechanism-switch gssapi library
ii libgtk-3-0t64:amd64 3.24.49-3 amd64 GTK graphical user interface library
ii libgtk-3-bin 3.24.49-3 amd64 programs for the GTK graphical user interface library
ii libgtk-3-common 3.24.49-3 all common files for the GTK graphical user interface library
ii libgudev-1.0-0:amd64 238-6 amd64 GObject-based wrapper library for libudev
ii libharfbuzz0b:amd64 10.2.0-1+b1 amd64 OpenType text shaping engine (shared library)
ii libhiredis1.1.0:amd64 1.2.0-6+b3 amd64 minimalistic C client library for Redis
ii libhogweed6t64:amd64 3.10.1-1 amd64 low level cryptographic library (public-key cryptos)
ii libhtml-parser-perl:amd64 3.83-1+b2 amd64 collection of modules that parse HTML text documents
ii libhtml-tagset-perl 3.24-1 all data tables pertaining to HTML
ii libhtml-template-perl 2.97-2 all module for using HTML templates with Perl
ii libhttp-date-perl 6.06-1 all module of date conversion routines
ii libhttp-message-perl 7.00-2 all perl interface to HTTP style messages
ii libhttp-parser2.9:amd64 2.9.4-6+b2 amd64 parser for HTTP messages written in C
ii libhwasan0:amd64 14.2.0-19 amd64 AddressSanitizer -- a fast memory error detector
ii libice6:amd64 2:1.1.1-1 amd64 X11 Inter-Client Exchange library
ii libicu76:amd64 76.1-4 amd64 International Components for Unicode
ii libidn12:amd64 1.43-1 amd64 GNU Libidn library, implementation of IETF IDN specifications
ii libidn2-0:amd64 2.3.8-2 amd64 Internationalized domain names (IDNA2008/TR46) library
ii libimobiledevice-1.0-6:amd64 1.3.0+git20250228-2 amd64 Library for communicating with iPhone and other Apple devices
ii libimobiledevice-glue-1.0-0 1.3.1-1 amd64 Common library used by the libimobiledevice project
ii libimport-into-perl 1.002005-2 all module for importing packages into other packages
ii libio-compress-brotli-perl 0.004001-2+b3 amd64 modules to read/write Brotli buffers/streams
ii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection
ii libio-pty-perl 1:1.20-1+b3 amd64 Perl module for pseudo tty IO
ii libio-stringy-perl 2.113-2 all modules for I/O on in-core objects (strings/arrays)
ii libip4tc2:amd64 1.8.11-2 amd64 netfilter libip4tc library
ii libip6tc2:amd64 1.8.11-2 amd64 netfilter libip6tc library
ii libipc-run-perl 20231003.0-2 all Perl module for running processes
ii libisl23:amd64 0.27-1 amd64 manipulating sets and relations of integer points bounded by linear constraints
ii libitm1:amd64 14.2.0-19 amd64 GNU Transactional Memory Library
ii libiw30t64:amd64 30~pre9-18+b1 amd64 Wireless tools - library
ii libjansson4:amd64 2.14-2+b3 amd64 C library for encoding, decoding and manipulating JSON data
ii libjaylink0:amd64 0.4.0-1 amd64 library for interacting with J-Link programmers
ii libjbig0:amd64 2.1-6.1+b2 amd64 JBIGkit libraries
ii libjcat1:amd64 0.2.3-1 amd64 JSON catalog library
ii libjemalloc2:amd64 5.3.0-3 amd64 general-purpose scalable concurrent malloc(3) implementation
ii libjim0.83:amd64 0.83-2 amd64 small-footprint implementation of Tcl - shared library
ii libjpeg62-turbo:amd64 1:2.1.5-4 amd64 libjpeg-turbo JPEG runtime library
ii libjq1:amd64 1.7.1-6+deb13u1 amd64 lightweight and flexible command-line JSON processor - shared library
ii libjs-bootstrap 3.4.1+dfsg-6 all HTML, CSS and JS framework
ii libjs-bootstrap4 4.6.2+dfsg-1 all HTML, CSS and JS framework
ii libjs-d3 3.5.17-4 all JavaScript visualization library for HTML and SVG
ii libjs-eonasdan-bootstrap-datetimepicker 4.17.47-6 all Date/time picker widget based on twitter bootstrap
ii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications
ii libjs-jquery-hotkeys 0.2.0-1 all easily add and remove handlers for keyboard events anywhere in your code
ii libjs-moment 2.29.4+ds-1 all Work with dates in JavaScript (library)
ii libjs-moment-timezone 0.5.46+dfsg-2 all Parse and display dates in any timezone
ii libjs-mustache 3.0.1-1 all Mustache rendering engine for Javascript
ii libjs-popper.js 1.16.1+ds-6 all Javascript library to position poppers in web applications
ii libjs-rickshaw 1.5.1.dfsg-5 all JavaScript toolkit for interactive time series graph
ii libjs-sizzle 2.3.10+ds+~2.3.6-1 all Pure-JavaScript CSS selector engine
ii libjs-sphinxdoc 8.1.3-5 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.18+ds-1 amd64 JSON manipulation library - shared library
ii libjson-glib-1.0-0:amd64 1.10.6+ds-2 amd64 GLib JSON manipulation library
ii libjson-glib-1.0-common 1.10.6+ds-2 all GLib JSON manipulation library (common files)
ii libjsoncpp26:amd64 1.9.6-3 amd64 library for reading and writing JSON for C++
ii libk5crypto3:amd64 1.21.3-5 amd64 MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1:amd64 1.6.3-6 amd64 Linux Key Management Utilities (library)
ii libklibc:amd64 2.0.14-1 amd64 minimal libc subset for use with initramfs
ii libkmod2:amd64 34.2-2 amd64 libkmod shared library
ii libkrb5-3:amd64 1.21.3-5 amd64 MIT Kerberos runtime libraries
ii libkrb5support0:amd64 1.21.3-5 amd64 MIT Kerberos runtime libraries - Support library
ii libksba8:amd64 1.6.7-2+b1 amd64 X.509 and CMS support library
ii liblastlog2-2:amd64 2.41-5 amd64 lastlog2 database shared library
ii liblcms2-2:amd64 2.16-2 amd64 Little CMS 2 color management library
ii libldap-common 2.6.10+dfsg-1 all OpenLDAP common files for libraries
ii libldap2:amd64 2.6.10+dfsg-1 amd64 OpenLDAP libraries
ii liblerc4:amd64 4.0.0+ds-5 amd64 Limited Error Raster Compression library
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-4+b2 amd64 Perl module providing compiled List::MoreUtils functions
ii liblmdb0:amd64 0.9.31-1+b2 amd64 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-7+b1 amd64 module using libc functions for internationalization in Perl
ii liblockfile-bin 1.17-2 amd64 support binaries for and cli utilities based on liblockfile
ii liblsan0:amd64 14.2.0-19 amd64 LeakSanitizer -- a memory leak detector (runtime)
ii liblsof0 4.99.4+dfsg-2 amd64 utility to list open files (shared library)
ii libltdl7:amd64 2.5.4-4 amd64 System independent dlopen wrapper for GNU libtool
ii liblvm2cmd2.03:amd64 2.03.31-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 liblz4-1:amd64 1.10.0-4 amd64 Fast LZ compression algorithm library - runtime
ii liblzma5:amd64 5.8.1-1 amd64 XZ-format compression library
ii liblzo2-2:amd64 2.10-3+b1 amd64 data compression library
ii libmagic-mgc 1:5.46-5 amd64 File type determination library using "magic" numbers (compiled magic file)
ii libmagic1t64:amd64 1:5.46-5 amd64 Recognize the type of data in a file using "magic" numbers - library
ii libmailutils9t64:amd64 1:3.19-1 amd64 GNU Mail abstraction library
ii libmariadb-dev 1:11.8.6-0+deb13u1 amd64 MariaDB database development files
ii libmariadb-dev-compat 1:11.8.6-0+deb13u1 amd64 MariaDB Connector/C, compatibility symlinks
ii libmariadb3:amd64 1:11.8.6-0+deb13u1 amd64 MariaDB database client library
ii libmaxminddb0:amd64 1.12.2-1 amd64 IP geolocation database library
ii libmbedcrypto16:amd64 3.6.5-0.1~deb13u1 amd64 lightweight crypto and SSL/TLS library - crypto library
ii libmbedtls21:amd64 3.6.5-0.1~deb13u1 amd64 lightweight crypto and SSL/TLS library - tls library
ii libmbedx509-7:amd64 3.6.5-0.1~deb13u1 amd64 lightweight crypto and SSL/TLS library - x509 certificate library
ii libmbim-glib4:amd64 1.32.0-1 amd64 Support library to use the MBIM protocol
ii libmbim-proxy 1.32.0-1 amd64 Proxy to communicate with MBIM ports
ii libmbim-utils 1.32.0-1 amd64 Utilities to use the MBIM protocol from the command line
ii libmd0:amd64 1.1.0-2+b1 amd64 message digest functions from BSD systems - shared library
ii libminiupnpc18:amd64 2.2.8-2+b2 amd64 UPnP IGD client lightweight library
ii libmm-glib0:amd64 1.24.0-1+deb13u1 amd64 D-Bus service for managing modems - shared libraries
ii libmnl0:amd64 1.0.5-3 amd64 minimalistic Netlink communication library
ii libmodule-build-perl 0.423400-3 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-runtime-perl 0.018-1 all Perl module for runtime module handling
ii libmodule-signature-perl 0.89-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 libmount1:amd64 2.41-5 amd64 device mounting library
ii libmpc3:amd64 1.3.1-1+b3 amd64 multiple precision complex floating-point library
ii libmpfr6:amd64 4.2.2-1 amd64 multiple precision floating-point computation
ii libmro-compat-perl 0.15-2 all mro::* interface compatibility for Perls < 5.9.5
ii libnamespace-autoclean-perl 0.31-1 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 libncurses6:amd64 6.5+20250216-2 amd64 shared libraries for terminal handling
ii libncursesw6:amd64 6.5+20250216-2 amd64 shared libraries for terminal handling (wide character support)
ii libndp0:amd64 1.9-1+b1 amd64 Library for Neighbor Discovery Protocol
ii libnet-libidn-perl 0.12.ds-5 amd64 Perl bindings for GNU Libidn
ii libnetfilter-conntrack3:amd64 1.1.0-1 amd64 Netfilter netlink-conntrack library
ii libnettle8t64:amd64 3.10.1-1 amd64 low level cryptographic library (symmetric and one-way cryptos)
ii libnewt0.52:amd64 0.52.25-1 amd64 Not Erik's Windowing Toolkit - text mode windowing with slang
ii libnfnetlink0:amd64 1.0.2-3 amd64 Netfilter netlink library
ii libnftables1:amd64 1.1.3-1 amd64 Netfilter nftables high level userspace API library
ii libnftnl11:amd64 1.2.9-1 amd64 Netfilter nftables userspace API library
ii libnghttp2-14:amd64 1.64.0-1.1 amd64 library implementing HTTP/2 protocol (shared library)
ii libnghttp3-9:amd64 1.8.0-1 amd64 HTTP/3 library with QUIC and QPACK (library)
ii libngtcp2-16:amd64 1.11.0-1 amd64 implementation of QUIC protocol (library)
ii libngtcp2-crypto-gnutls8:amd64 1.11.0-1 amd64 implementation of QUIC protocol (library)
ii libnl-3-200:amd64 3.7.0-2 amd64 library for dealing with netlink sockets
ii libnl-genl-3-200:amd64 3.7.0-2 amd64 library for dealing with netlink sockets - generic netlink
ii libnl-route-3-200:amd64 3.7.0-2 amd64 library for dealing with netlink sockets - route interface
ii libnm0:amd64 1.52.1-1 amd64 GObject-based client library for NetworkManager
ii libnpth0t64:amd64 1.8-3 amd64 replacement for GNU Pth using system threads
ii libnsl2:amd64 1.3.0-3+b3 amd64 Public client interface for NIS(YP) and NIS+
ii libnspr4:amd64 2:4.36-1 amd64 NetScape Portable Runtime Library
ii libnss-mdns:amd64 0.15.1-4+b1 amd64 NSS module for Multicast DNS name resolution
ii libnss-myhostname:amd64 257.9-1~deb13u1 amd64 nss module providing fallback resolution for the current hostname
ii libnss-resolve:amd64 257.9-1~deb13u1 amd64 nss module to resolve names via systemd-resolved
ii libnss-systemd:amd64 257.9-1~deb13u1 amd64 nss module providing dynamic user and group name resolution
ii libnss3:amd64 2:3.110-1+deb13u1 amd64 Network Security Service libraries
ii libntfs-3g89t64:amd64 1:2022.10.3-5 amd64 read/write NTFS driver for FUSE (runtime library)
ii libntlm0:amd64 1.8-4 amd64 NTLM authentication library
ii libnuma1:amd64 2.0.19-1 amd64 Libraries for controlling NUMA policy
ii libnvme1t64 1.13-2 amd64 NVMe management library (library)
ii libnvpair3linux:amd64 2.3.2-2 amd64 Solaris name-value library for Linux
ii libonig5:amd64 6.9.9-1+b1 amd64 regular expressions library
ii libopenipmi0t64:amd64 2.0.37-1 amd64 Intelligent Platform Management Interface - runtime
ii libp11-kit0:amd64 0.25.5-3 amd64 library for loading and coordinating access to PKCS#11 modules - runtime
ii libpackage-stash-perl 0.40-1 all module providing routines for manipulating stashes
ii libpackage-stash-xs-perl:amd64 0.30-1+b4 amd64 Perl module providing routines for manipulating stashes (XS version)
ii libpam-modules:amd64 1.7.0-5 amd64 Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.7.0-5 amd64 Pluggable Authentication Modules for PAM - helper binaries
ii libpam-runtime 1.7.0-5 all Runtime support for the PAM library
ii libpam-systemd:amd64 257.9-1~deb13u1 amd64 system and service manager - PAM module
ii libpam-wtmpdb:amd64 0.73.0-3+deb13u1 amd64 wtmp database PAM module
ii libpam0g:amd64 1.7.0-5 amd64 Pluggable Authentication Modules library
ii libpango-1.0-0:amd64 1.56.3-1 amd64 Layout and rendering of internationalized text
ii libpangocairo-1.0-0:amd64 1.56.3-1 amd64 Layout and rendering of internationalized text
ii libpangoft2-1.0-0:amd64 1.56.3-1 amd64 Layout and rendering of internationalized text
ii libparams-classify-perl:amd64 0.015-2+b4 amd64 Perl module for argument type classification
ii libparams-util-perl 1.102-3+b1 amd64 Perl extension for simple stand-alone param checking functions
ii libparams-validate-perl:amd64 1.31-2+b3 amd64 Perl module to validate parameters to Perl method/function calls
ii libparse-pmfile-perl 0.47-1 all module to parse .pm file as PAUSE does
ii libparted2t64:amd64 3.6-5 amd64 disk partition manipulator - shared library
ii libpath-tiny-perl 0.148-1 all file path utility
ii libpcap0.8t64:amd64 1.10.5-2 amd64 system interface for user-level packet capture
ii libpci3:amd64 1:3.13.0-2 amd64 PCI utilities (shared library)
ii libpcre2-16-0:amd64 10.46-1~deb13u1 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files
ii libpcre2-8-0:amd64 10.46-1~deb13u1 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files
ii libpcre2-posix3:amd64 10.46-1~deb13u1 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files
ii libpcsclite1:amd64 2.3.3-1 amd64 Middleware to access a smart card using PC/SC (library)
ii libperl5.40:amd64 5.40.1-6 amd64 shared Perl library
ii libpipeline1:amd64 1.5.8-1 amd64 Unix process pipeline manipulation library
ii libpixman-1-0:amd64 0.44.0-3 amd64 pixel-manipulation library for X and cairo
ii libpkgconf3:amd64 1.8.1-4 amd64 shared library for pkgconf
ii libplist-2.0-4:amd64 2.6.0-2+b1 amd64 Library for handling Apple binary and XML property lists
ii libpng16-16t64:amd64 1.6.48-1+deb13u3 amd64 PNG library - runtime (version 1.6)
ii libpod-markdown-perl 3.400000-1 all module to convert POD to the Markdown file format
ii libpod-readme-perl 1.2.3-1 all Perl module to convert POD to README file
ii libpolkit-agent-1-0:amd64 126-2 amd64 polkit Authentication Agent API
ii libpolkit-gobject-1-0:amd64 126-2 amd64 polkit Authorization API
ii libpopt0:amd64 1.19+dfsg-2 amd64 lib for parsing cmdline parameters
ii libpq-dev 17.9-0+deb13u1 amd64 header files for libpq5 (PostgreSQL library)
ii libpq5:amd64 17.9-0+deb13u1 amd64 PostgreSQL C client library
ii libproc2-0:amd64 2:4.0.4-9 amd64 library for accessing process information from /proc
ii libprotobuf-c1:amd64 1.5.1-1 amd64 Protocol Buffers C shared library (protobuf-c)
ii libprotobuf32t64:amd64 3.21.12-11 amd64 protocol buffers C++ library
ii libpsl5t64:amd64 0.21.2-1.1+b1 amd64 Library for Public Suffix List (shared libraries)
ii libpython3-dev:amd64 3.13.5-1 amd64 header files and a static library for Python (default)
ii libpython3-stdlib:amd64 3.13.5-1 amd64 interactive high-level object-oriented language (default python3 version)
ii libpython3.13:amd64 3.13.5-2 amd64 Shared Python runtime library (version 3.13)
ii libpython3.13-dev:amd64 3.13.5-2 amd64 Header files and a static library for Python (v3.13)
ii libpython3.13-minimal:amd64 3.13.5-2 amd64 Minimal subset of the Python language (version 3.13)
ii libpython3.13-stdlib:amd64 3.13.5-2 amd64 Interactive high-level object-oriented language (standard library, version 3.13)
ii libqmi-glib5:amd64 1.36.0-1 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol
ii libqmi-proxy 1.36.0-1 amd64 Proxy to communicate with QMI ports
ii libqmi-utils 1.36.0-1 amd64 Utilities to use the QMI protocol from the command line
ii libqrencode4:amd64 4.1.1-2 amd64 QR Code encoding library
ii libqrtr-glib0:amd64 1.2.2-1+b2 amd64 Support library to use the QRTR protocol
ii libqt5core5t64:amd64 5.15.15+dfsg-6+deb13u1 amd64 Qt 5 core module
ii libqt5dbus5t64:amd64 5.15.15+dfsg-6+deb13u1 amd64 Qt 5 D-Bus module
ii libqt5network5t64:amd64 5.15.15+dfsg-6+deb13u1 amd64 Qt 5 network module
ii libqt5sql5-sqlite:amd64 5.15.15+dfsg-6+deb13u1 amd64 Qt 5 SQLite 3 database driver
ii libqt5sql5t64:amd64 5.15.15+dfsg-6+deb13u1 amd64 Qt 5 SQL module
ii libqt5xml5t64:amd64 5.15.15+dfsg-6+deb13u1 amd64 Qt 5 XML module
ii libquadmath0:amd64 14.2.0-19 amd64 GCC Quad-Precision Math Library
ii libreadline8t64:amd64 8.2-6 amd64 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+b4 amd64 XS implementation for Ref::Util
ii librhash1:amd64 1.4.5-1 amd64 shared library for hash functions computing
ii librole-tiny-perl 2.002004-1 all Perl module for minimalist role composition
ii librsvg2-2:amd64 2.60.0+dfsg-1 amd64 SAX-based renderer library for SVG files (runtime)
ii librsvg2-common:amd64 2.60.0+dfsg-1 amd64 SAX-based renderer library for SVG files (extra runtime)
ii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2+b5 amd64 toolkit for RTMP streams (shared library)
ii libsasl2-2:amd64 2.1.28+dfsg1-9 amd64 Cyrus SASL - authentication abstraction library
ii libsasl2-modules:amd64 2.1.28+dfsg1-9 amd64 Cyrus SASL - pluggable authentication modules
ii libsasl2-modules-db:amd64 2.1.28+dfsg1-9 amd64 Cyrus SASL - pluggable authentication modules (DB)
ii libsass1:amd64 3.6.5+20231221-3+b1 amd64 C/C++ port of the Sass CSS precompiler
ii libseccomp2:amd64 2.6.0-2 amd64 high level interface to Linux seccomp filter
ii libsecret-1-0:amd64 0.21.7-1 amd64 Secret store
ii libsecret-common 0.21.7-1 all Secret store (common files)
ii libselinux1:amd64 3.8.1-1 amd64 SELinux runtime shared libraries
ii libsemanage-common 3.8.1-1 all Common files for SELinux policy management libraries
ii libsemanage2:amd64 3.8.1-1 amd64 SELinux policy management library
ii libsensors-config 1:3.6.2-2 all lm-sensors configuration files
ii libsensors5:amd64 1:3.6.2-2 amd64 library to read temperature/voltage/fan sensors
ii libsepol2:amd64 3.8.1-1 amd64 SELinux library for manipulating binary security policies
ii libsframe1:amd64 2.44-3 amd64 Library to handle the SFrame format (runtime library)
ii libsharpyuv0:amd64 1.5.0-0.1 amd64 Library for sharp RGB to YUV conversion
ii libsigsegv2:amd64 2.14-1+b2 amd64 Library for handling page faults in a portable way
ii libslang2:amd64 2.3.3-5+b2 amd64 S-Lang programming library - runtime version
ii libslirp0:amd64 4.8.0-1+b1 amd64 General purpose TCP-IP emulator library
ii libsm6:amd64 2:1.2.6-1 amd64 X11 Session Management library
ii libsmartcols1:amd64 2.41-5 amd64 smart column output alignment library
ii libsnappy1v5:amd64 1.2.2-1 amd64 fast compression/decompression library
ii libsnmp-base 5.9.4+dfsg-2+deb13u1 all SNMP configuration script, MIBs and documentation
ii libsnmp40t64:amd64 5.9.4+dfsg-2+deb13u1 amd64 SNMP (Simple Network Management Protocol) library
ii libsodium23:amd64 1.0.18-1+deb13u1 amd64 Network communication, cryptography and signaturing library
ii libsoftware-license-perl 0.104006-1 all module providing templated software licenses
ii libsqlite3-0:amd64 3.46.1-7+deb13u1 amd64 SQLite 3 shared library
ii libss2:amd64 1.47.2-3+b10 amd64 command-line interface parsing library
ii libssh2-1t64:amd64 1.11.1-1 amd64 SSH2 client-side library
ii libssl-dev:amd64 3.5.5-1~deb13u1 amd64 Secure Sockets Layer toolkit - development files
ii libssl3t64:amd64 3.5.5-1~deb13u1 amd64 Secure Sockets Layer toolkit - shared libraries
ii libstdc++-14-dev:amd64 14.2.0-19 amd64 GNU Standard C++ Library v3 (development files)
ii libstdc++6:amd64 14.2.0-19 amd64 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.990-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+b3 amd64 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:amd64 0.28-1 amd64 module for assigning a new name to referenced sub
ii libsub-quote-perl 2.006008-1 all helper modules for subroutines
ii libsystemd-shared:amd64 257.9-1~deb13u1 amd64 systemd shared private library
ii libsystemd0:amd64 257.9-1~deb13u1 amd64 systemd utility library
ii libtasn1-6:amd64 4.20.0-2 amd64 Manage ASN.1 structures (runtime)
ii libtcl8.6:amd64 8.6.16+dfsg-1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files
ii libteamdctl0:amd64 1.31-1+b2 amd64 library for communication with `teamd` process
ii libterm-readkey-perl 2.38-2+b4 amd64 perl module for simple terminal control
ii libtext-charwidth-perl:amd64 0.04-11+b4 amd64 get display widths of characters on the terminal
ii libtext-iconv-perl:amd64 1.7-8+b4 amd64 module to convert between character sets in Perl
ii libtext-template-perl 1.61-1 all perl module to process text templates
ii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap
ii libthai-data 0.1.29-2 all Data files for Thai language support library
ii libthai0:amd64 0.1.29-2+b1 amd64 Thai language support library
ii libtiff6:amd64 4.7.0-3+deb13u1 amd64 Tag Image File Format (TIFF) library
ii libtime-duration-perl 1.21-2 all module for rounded or exact English expression of durations
ii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information
ii libtinfo6:amd64 6.5+20250216-2 amd64 shared low-level terminfo library for terminal handling
ii libtirpc-common 1.3.6+ds-1 all transport-independent RPC library - common files
ii libtirpc3t64:amd64 1.3.6+ds-1 amd64 transport-independent RPC library
ii libtk8.6:amd64 8.6.16-1 amd64 Tk toolkit for Tcl and X11 v8.6 - run-time files
ii libtlsrpt0:amd64 0.5.0rc1-2 amd64 library to implement TLSRPT reporting into an MTA (shared lib)
ii libtorsocks:amd64 2.5.0-1+deb13u1 amd64 use SOCKS-friendly applications with Tor (library)
ii libtry-tiny-perl 0.32-1 all module providing minimalistic try/catch
ii libtsan2:amd64 14.2.0-19 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)
ii libtss2-esys-3.0.2-0t64:amd64 4.1.3-1.2 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-mu-4.0.1-0t64:amd64 4.1.3-1.2 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-sys1t64:amd64 4.1.3-1.2 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-tcti-cmd0t64:amd64 4.1.3-1.2 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-tcti-device0t64:amd64 4.1.3-1.2 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-tcti-mssim0t64:amd64 4.1.3-1.2 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-tcti-swtpm0t64:amd64 4.1.3-1.2 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtype-tiny-perl 2.004000-2 all tiny, yet Moo(se)-compatible type constraint
ii libtype-tiny-xs-perl:amd64 0.025-2+b1 amd64 boost for some of Type::Tiny's built-in type constraints
ii libubsan1:amd64 14.2.0-19 amd64 UBSan -- undefined behaviour sanitizer (runtime)
ii libuchardet0:amd64 0.0.8-1+b2 amd64 universal charset detection library - shared library
ii libudev1:amd64 257.9-1~deb13u1 amd64 libudev shared library
ii libudisks2-0:amd64 2.10.1-12.1+deb13u1 amd64 GObject based library to access udisks2
ii libunbound8:amd64 1.22.0-2+deb13u1 amd64 library implementing DNS resolution and validation
ii libunicode-utf8-perl 0.62-3 amd64 encoding and decoding of UTF-8 encoding form
ii libunistring5:amd64 1.3-2 amd64 Unicode string library for C
ii libupower-glib3:amd64 1.90.9-1 amd64 abstraction for power management - shared library
ii liburcu8t64:amd64 0.15.2-2 amd64 userspace RCU (read-copy-update) library
ii liburi-escape-xs-perl 0.14-2+b4 amd64 drop-in XS replacement for URI::Escape
ii liburi-perl 5.30-1 all module to manipulate and access URI strings
ii liburing2:amd64 2.9-1 amd64 Linux kernel io_uring access library - shared library
ii libusb-1.0-0:amd64 2:1.0.28-1 amd64 userspace USB programming library
ii libusbmuxd-2.0-7:amd64 2.1.0-1+b1 amd64 Client library to handle usbmux connections with iOS devices (library)
ii libuuid1:amd64 2.41-5 amd64 Universally Unique ID library
ii libuutil3linux:amd64 2.3.2-2 amd64 Solaris userland utility library for Linux
ii libuv1t64:amd64 1.50.0-2 amd64 asynchronous event notification library - runtime library
ii libvariable-magic-perl 0.64-1+b1 amd64 module to associate user-defined magic to variables from Perl
ii libvolume-key1:amd64 0.3.12-9 amd64 Library for manipulating storage encryption keys and passphrases
ii libwayland-client0:amd64 1.23.1-3 amd64 wayland compositor infrastructure - client library
ii libwayland-cursor0:amd64 1.23.1-3 amd64 wayland compositor infrastructure - cursor library
ii libwayland-egl1:amd64 1.23.1-3 amd64 wayland compositor infrastructure - EGL library
ii libwebp7:amd64 1.5.0-0.1 amd64 Lossy compression of digital photographic images (shared library)
ii libwrap0:amd64 7.6.q-36 amd64 Wietse Venema's TCP wrappers library
ii libwtmpdb0:amd64 0.73.0-3+deb13u1 amd64 wtmp database shared library
ii libx11-6:amd64 2:1.8.12-1 amd64 X11 client-side library
ii libx11-data 2:1.8.12-1 all X11 client-side library
ii libxau6:amd64 1:1.0.11-1 amd64 X11 authorisation library
ii libxcb-render0:amd64 1.17.0-2+b1 amd64 X C Binding, render extension
ii libxcb-shm0:amd64 1.17.0-2+b1 amd64 X C Binding, shm extension
ii libxcb1:amd64 1.17.0-2+b1 amd64 X C Binding
ii libxcomposite1:amd64 1:0.4.6-1 amd64 X11 Composite extension library
ii libxcursor1:amd64 1:1.2.3-1 amd64 X cursor management library
ii libxdamage1:amd64 1:1.1.6-1+b2 amd64 X11 damaged region extension library
ii libxdmcp6:amd64 1:1.1.5-1 amd64 X11 Display Manager Control Protocol library
ii libxext6:amd64 2:1.3.4-1+b3 amd64 X11 miscellaneous extension library
ii libxfixes3:amd64 1:6.0.0-2+b4 amd64 X11 miscellaneous 'fixes' extension library
ii libxft2:amd64 2.3.6-1+b4 amd64 FreeType-based font drawing library for X
ii libxi6:amd64 2:1.8.2-1 amd64 X11 Input extension library
ii libxinerama1:amd64 2:1.1.4-3+b4 amd64 X11 Xinerama extension library
ii libxkbcommon0:amd64 1.7.0-2 amd64 library interface to the XKB compiler - shared library
ii libxml2:amd64 2.12.7+dfsg+really2.9.14-2.1+deb13u2 amd64 GNOME XML library
ii libxmlb2:amd64 0.3.22-1 amd64 Binary XML library
ii libxmu6:amd64 2:1.1.3-3+b4 amd64 X11 miscellaneous utility library
ii libxmuu1:amd64 2:1.1.3-3+b4 amd64 X11 miscellaneous micro-utility library
ii libxrandr2:amd64 2:1.5.4-1+b3 amd64 X11 RandR extension library
ii libxrender1:amd64 1:0.9.12-1 amd64 X Rendering Extension client library
ii libxss1:amd64 1:1.2.3-1+b3 amd64 X11 Screen Saver extension library
ii libxstring-perl:amd64 0.005-2+b4 amd64 module containing isolated string helpers from B
ii libxt6t64:amd64 1:1.2.1-1.2+b2 amd64 X11 toolkit intrinsics library
ii libxtables12:amd64 1.8.11-2 amd64 netfilter xtables library
ii libxtst6:amd64 2:1.2.5-1 amd64 X11 Testing -- Record extension library
ii libxxhash0:amd64 0.8.3-2 amd64 shared library for xxhash
ii libyaml-0-2:amd64 0.2.5-2 amd64 Fast YAML 1.1 parser and emitter library
ii libyyjson0:amd64 0.10.0+ds-1+b1 amd64 high performance JSON library written in ANSI C
ii libzeroc-ice3.7t64:amd64 3.7.10-3.1 amd64 C++ run-time libraries for the Ice framework
ii libzfs6linux:amd64 2.3.2-2 amd64 OpenZFS filesystem library for Linux - general support
ii libzpool6linux:amd64 2.3.2-2 amd64 OpenZFS pool library for Linux
ii libzstd1:amd64 1.5.7+dfsg-1 amd64 fast lossless compression algorithm
ii linux-base 4.12.1 all Linux image base package
ii linux-headers-6.12.57+deb13-amd64 6.12.57-1 amd64 Header files for Linux 6.12.57+deb13-amd64
ii linux-headers-6.12.57+deb13-common 6.12.57-1 all Common header files for Linux 6.12.57+deb13
ii linux-headers-6.12.63+deb13-amd64 6.12.63-1 amd64 Header files for Linux 6.12.63+deb13-amd64
ii linux-headers-6.12.63+deb13-common 6.12.63-1 all Common header files for Linux 6.12.63+deb13
ii linux-headers-6.12.69+deb13-amd64 6.12.69-1 amd64 Header files for Linux 6.12.69+deb13-amd64
ii linux-headers-6.12.69+deb13-common 6.12.69-1 all Common header files for Linux 6.12.69+deb13
ii linux-headers-6.12.73+deb13-amd64 6.12.73-1 amd64 Header files for Linux 6.12.73+deb13-amd64
ii linux-headers-6.12.73+deb13-common 6.12.73-1 all Common header files for Linux 6.12.73+deb13
ii linux-headers-6.12.74+deb13+1-amd64 6.12.74-2 amd64 Header files for Linux 6.12.74+deb13+1-amd64
ii linux-headers-6.12.74+deb13+1-common 6.12.74-2 all Common header files for Linux 6.12.74+deb13+1
ii linux-headers-amd64 6.12.74-2 amd64 Header files for Linux amd64 configuration (meta-package)
rc linux-image-6.12.38+deb13-amd64 6.12.38-1 amd64 Linux 6.12 for 64-bit PCs (signed)
ii linux-image-6.12.57+deb13-amd64 6.12.57-1 amd64 Linux 6.12 for 64-bit PCs (signed)
ii linux-image-6.12.63+deb13-amd64 6.12.63-1 amd64 Linux 6.12 for 64-bit PCs (signed)
ii linux-image-6.12.69+deb13-amd64 6.12.69-1 amd64 Linux 6.12 for 64-bit PCs (signed)
ii linux-image-6.12.73+deb13-amd64 6.12.73-1 amd64 Linux 6.12 for 64-bit PCs (signed)
ii linux-image-6.12.74+deb13+1-amd64 6.12.74-2 amd64 Linux 6.12 for 64-bit PCs (signed)
ii linux-image-amd64 6.12.74-2 amd64 Linux for 64-bit PCs (meta-package)
ii linux-kbuild-6.12.57+deb13 6.12.57-1 amd64 Kbuild infrastructure for Linux 6.12.57+deb13
ii linux-kbuild-6.12.63+deb13 6.12.63-1 amd64 Kbuild infrastructure for Linux 6.12.63+deb13
ii linux-kbuild-6.12.69+deb13 6.12.69-1 amd64 Kbuild infrastructure for Linux 6.12.69+deb13
ii linux-kbuild-6.12.73+deb13 6.12.73-1 amd64 Kbuild infrastructure for Linux 6.12.73+deb13
ii linux-kbuild-6.12.74+deb13+1 6.12.74-2 amd64 Kbuild infrastructure for Linux 6.12.74+deb13+1
ii linux-libc-dev 6.12.74-2 all Linux support headers for userspace development
ii linux-sysctl-defaults 4.12.1 all default sysctl configuration for Linux
ii lm-sensors 1:3.6.2-2 amd64 utilities to read temperature/voltage/fan sensors
ii locales 2.41-12+deb13u2 all GNU C Library: National Language (locale) data [support]
ii login 1:4.16.0-2+really2.41-5 amd64 system login tools
ii login.defs 1:4.17.4-2 all system user management configuration
ii logrotate 3.22.0-1 amd64 Log rotation utility
ii logsave 1.47.2-3+b10 amd64 save the output of a command in a log file
ii loki 3.6.7 amd64 Loki is a horizontally-scalable, highly-available, multi-tenant log aggregation system inspired by Prometheus.
ii lsb-release 12.1-1 all Linux Standard Base version reporting utility (minimal implementation)
ii lsof 4.99.4+dfsg-2 amd64 utility to list open files
ii lua-bit32:amd64 5.3.0-6 amd64 Backport of the Lua 5.2 bit32 library to Lua 5.1
ii lua-bitop:amd64 1.0.2-7+b2 amd64 fast bit manipulation library for the Lua language
ii lua-event:amd64 0.4.6-2+b3 amd64 asynchronous event notification library for Lua
ii lua-expat:amd64 1.5.2-1+b1 amd64 libexpat bindings for the Lua language
ii lua-filesystem:amd64 1.8.0-3+b2 amd64 luafilesystem library for the Lua language
ii lua-posix:amd64 36.3-1 amd64 posix library for the Lua language
ii lua-readline:amd64 3.3-3+b3 amd64 readline library for the Lua language
ii lua-sec:amd64 1.3.2-2+b2 amd64 SSL socket library for the Lua language
ii lua-socket:amd64 3.1.0-1+b2 amd64 TCP/UDP socket library for the Lua language
ii lua-unbound:amd64 1.0.0-2+b2 amd64 Unbound bindings for the Lua language
ii lua5.4 5.4.7-1+b2 amd64 Simple, extensible, embeddable programming language
ii lvm2 2.03.31-2 amd64 Linux Logical Volume Manager
ii lynx 2.9.2-1 amd64 classic non-graphical (text-mode) web browser
ii lynx-common 2.9.2-1 all shared files for lynx package
ii mailcap 3.74 all Debian's mailcap system, and support programs
ii mailutils 1:3.19-1 amd64 GNU mailutils utilities for handling mail
ii mailutils-common 1:3.19-1 all common files for GNU mailutils
ii make 4.4.1-2 amd64 utility for directing compilation
ii man-db 2.13.1-1 amd64 tools for reading manual pages
ii manpages 6.9.1-1 all Manual pages about using a GNU/Linux system
ii manpages-dev 6.9.1-1 all Manual pages about using GNU/Linux for development
ii mariadb-client 1:11.8.6-0+deb13u1 amd64 MariaDB database client binaries
ii mariadb-client-core 1:11.8.6-0+deb13u1 amd64 MariaDB database core client binaries
ii mariadb-common 1:11.8.6-0+deb13u1 all MariaDB database common config files (/etc/mysql/mariadb.conf.d/)
ii mariadb-plugin-provider-bzip2 1:11.8.6-0+deb13u1 amd64 BZip2 compression support in the server and storage engines
ii mariadb-plugin-provider-lz4 1:11.8.6-0+deb13u1 amd64 LZ4 compression support in the server and storage engines
ii mariadb-plugin-provider-lzma 1:11.8.6-0+deb13u1 amd64 LZMA compression support in the server and storage engines
ii mariadb-plugin-provider-lzo 1:11.8.6-0+deb13u1 amd64 LZO compression support in the server and storage engines
ii mariadb-plugin-provider-snappy 1:11.8.6-0+deb13u1 amd64 Snappy compression support in the server and storage engines
ii mariadb-server 1:11.8.6-0+deb13u1 amd64 MariaDB database server binaries
ii mariadb-server-core 1:11.8.6-0+deb13u1 amd64 MariaDB database core server files
ii mawk 1.3.4.20250131-1 amd64 Pattern scanning and text processing language
ii media-types 13.0.0 all List of standard media types and their usual file extension
ii modemmanager 1.24.0-1+deb13u1 amd64 D-Bus service for managing modems
ii mokutil 0.7.2-1 amd64 tools for manipulating machine owner keys
ii moreutils 0.69-1 amd64 additional Unix utilities
ii mount 2.41-5 amd64 tools for mounting and manipulating filesystems
ii msmtp 1.8.28-3 amd64 light SMTP client with support for server profiles
rc msmtp-mta 1.8.28-3 amd64 light SMTP client with support for server profiles - the regular MTA
ii mtr 0.95-1.1+b1 amd64 Full screen ncurses and X11 traceroute tool
ii mumble-server 1.5.735-5 amd64 Low latency encrypted VoIP server
ii musl:amd64 1.2.5-3 amd64 standard C library
ii mysql-common 5.8+1.1.1 all MySQL database common files, e.g. /etc/mysql/my.cnf
ii nano 8.4-1 amd64 small, friendly text editor inspired by Pico
ii ncdu 1.22-1 amd64 ncurses disk usage viewer
ii ncurses-base 6.5+20250216-2 all basic terminal type definitions
ii ncurses-bin 6.5+20250216-2 amd64 terminal-related programs and man pages
ii ncurses-term 6.5+20250216-2 all additional terminal type definitions
ii netbase 6.5 all Basic TCP/IP networking system
ii netcat-openbsd 1.229-1 amd64 TCP/IP swiss army knife
ii netcat-traditional 1.10-50 amd64 TCP/IP swiss army knife
ii network-manager 1.52.1-1 amd64 network management framework (daemon and userspace tools)
ii network-manager-l10n 1.52.1-1 all network management framework (translation files)
ii nftables 1.1.3-1 amd64 Program to control packet filtering rules by Netfilter project
ii nginx 1.26.3-3+deb13u2 amd64 small, powerful, scalable web/proxy server
ii nginx-common 1.26.3-3+deb13u2 all small, powerful, scalable web/proxy server - common files
ii node-jquery 3.6.1+dfsg+~3.5.14-1 all NodeJS wrapper for jQuery
ii ntfs-3g 1:2022.10.3-5 amd64 read/write NTFS driver for FUSE
ii nvme-cli 2.13-2 amd64 NVMe management tool
ii openipmi 2.0.37-1 amd64 Intelligent Platform Management Interface (for servers)
ii openssh-client 1:10.0p1-7+deb13u1 amd64 secure shell (SSH) client, for secure access to remote machines
ii openssh-server 1:10.0p1-7+deb13u1 amd64 secure shell (SSH) server, for secure access from remote machines
ii openssh-sftp-server 1:10.0p1-7+deb13u1 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines
ii openssl 3.5.5-1~deb13u1 amd64 Secure Sockets Layer toolkit - cryptographic utility
ii openssl-provider-legacy 3.5.5-1~deb13u1 amd64 Secure Sockets Layer toolkit - cryptographic utility
ii os-prober 1.83 amd64 utility to detect other OSes on a set of drives
ii pahole 1.30-1 amd64 set of advanced DWARF utilities
ii parted 3.6-5 amd64 disk partition manipulator
ii passwd 1:4.17.4-2 amd64 change and administer password and group data
ii patch 2.8-2 amd64 Apply a diff file to an original
ii pci.ids 0.0~2025.06.09-1 all PCI ID Repository
ii pciutils 1:3.13.0-2 amd64 PCI utilities
ii perl 5.40.1-6 amd64 Larry Wall's Practical Extraction and Report Language
ii perl-base 5.40.1-6 amd64 minimal Perl system
ii perl-modules-5.40 5.40.1-6 all Core Perl modules
ii pigz 2.8-1 amd64 Parallel Implementation of GZip
ii pinentry-curses 1.3.1-2 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG
ii pipx 1.7.1-1 all execute binaries from Python packages in isolated environments
ii pkg-config:amd64 1.8.1-4 amd64 manage compile and link flags for libraries (transitional package)
ii pkgconf:amd64 1.8.1-4 amd64 manage compile and link flags for libraries
ii pkgconf-bin 1.8.1-4 amd64 manage compile and link flags for libraries (binaries)
ii plocate 1.1.23-1 amd64 much faster locate
ii polkitd 126-2 amd64 framework for managing administrative policies and privileges
ii postfix 3.10.5-1~deb13u1 amd64 High-performance mail transport agent
ii powermgmt-base 1.38 all common utils for power management
ii powertop 2.15-4 amd64 diagnose issues with power consumption and management
ii ppp 2.5.2-1+1 amd64 Point-to-Point Protocol (PPP) - daemon
ii procps 2:4.0.4-9 amd64 /proc file system utilities
ii prometheus 2.53.3+ds1-2 amd64 monitoring system and time series database
ii prometheus-node-exporter 1.9.0-1+b4 amd64 Prometheus exporter for machine metrics
ii prometheus-node-exporter-collectors 0.0~git20241119.a2b43e1-1 all Supplemental textfile collector scripts for Prometheus node_exporter
ii promtail 3.6.7 amd64 Promtail is an agent which ships the contents of local logs to a private Grafana Loki instance or Grafana Cloud.
ii promtool 2.53.3+ds1-2 amd64 tooling for the Prometheus monitoring system
ii prosody 13.0.1-1 amd64 Lightweight Jabber/XMPP server
ii psmisc 23.7-2 amd64 utilities that use the proc file system
ii publicsuffix 20250328.1952-0.1 all accurate, machine-readable list of domain name suffixes
ii pv 1.9.31-1 amd64 Shell pipeline element to meter data passing through
ii pwgen 2.08-2 amd64 Automatic Password generation
ii pygopherd 3.0.1-2 all Modular Multiprotocol Gopher/HTTP/WAP Server
ii python-apt-common 3.0.0 all Python interface to libapt-pkg (locales)
rc python-matplotlib-data 3.10.1+dfsg1-4 all Python based plotting system (data package)
ii python3 3.13.5-1 amd64 interactive high-level object-oriented language (default python3 version)
ii python3-acme 4.0.0-1 all ACME protocol library for Python 3
ii python3-apparmor 4.1.0-1 all AppArmor Python3 utility library
ii python3-apt 3.0.0 amd64 Python 3 interface to libapt-pkg
ii python3-argcomplete 3.6.2-1 all bash/zsh tab completion for argparse (for Python 3)
ii python3-attr 25.3.0-1 all Attributes without boilerplate (Python 3)
ii python3-autocommand 2.2.2-3 all library to generate argparse parsers from function signatures
ii python3-bcrypt 4.2.0-2.1+b1 amd64 password hashing library for Python 3
ii python3-brotli 1.1.0-2+b7 amd64 lossless compression algorithm and format (Python 3 version)
ii python3-certbot 4.0.0-2 all main library for certbot
ii python3-certbot-dns-cloudflare 4.0.0-1 all Cloudflare DNS plugin for Certbot
ii python3-certbot-nginx 4.0.0-2 all Nginx plugin for Certbot
ii python3-certifi 2025.1.31+ds-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)
ii python3-cffi-backend:amd64 1.17.1-3 amd64 Foreign Function Interface for Python 3 calling C code - runtime
ii python3-chardet 5.2.0+dfsg-2 all Universal Character Encoding Detector (Python3)
ii python3-charset-normalizer 3.4.2-1 amd64 charset, encoding and language detection (Python 3)
ii python3-click 8.2.0+0.really.8.1.8-1 all Command-Line Interface Creation Kit - Python 3.x
ii python3-cloudflare 2.20.0-1 all Python module to interface with Cloudflare's v4 API
ii python3-configargparse 1.7-2 all replacement for argparse with config files and environment variables
ii python3-configobj 5.0.9-1 all simple but powerful config file reader and writer for Python 3
ii python3-cryptography 43.0.0-3+deb13u1 amd64 Python library exposing cryptographic recipes and primitives
ii python3-dbus 1.4.0-1 amd64 simple interprocess messaging system (Python 3 interface)
ii python3-debconf 1.5.91 all interact with debconf from Python 3
ii python3-debian 1.0.1 all Python 3 modules to work with Debian-related data formats
ii python3-debianbts 4.1.1 all Python interface to Debian's Bug Tracking System
ii python3-decorator 5.2.1-2 all simplify usage of Python decorators by programmers
ii python3-dev 3.13.5-1 amd64 header files and a static library for Python (default)
ii python3-distro 1.9.0-1 all Linux OS platform information API
ii python3-distro-info 1.13 all information about distributions' releases (Python 3 module)
ii python3-gi 3.50.0-4+b1 amd64 Python 3 bindings for gobject-introspection libraries
ii python3-icu 2.14-1+b3 amd64 Python 3 extension wrapping the ICU C++ API
ii python3-idna 3.10-1 all Python IDNA2008 (RFC 5891) handling (Python 3)
ii python3-inflect 7.3.1-2 all Generate plurals, singular nouns, ordinals, indefinite articles (Python 3)
ii python3-jaraco.context 6.0.1-1+deb13u1 all jaraco contextlib extensions
ii python3-jaraco.functools 4.1.0-1 all additional functools in the spirit of stdlib's functools
ii python3-jaraco.text 4.0.0-1 all jaraco text manipulation functions
ii python3-josepy 2.0.0-1 all JOSE implementation for Python 3.x
ii python3-legacy-cgi 2.6.3-1 all fork of the standard library cgi and cgitb modules
ii python3-libapparmor 4.1.0-1 amd64 AppArmor library Python3 bindings
ii python3-minimal 3.13.5-1 amd64 minimal subset of the Python language (default python3 version)
ii python3-more-itertools 10.7.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)
ii python3-msgpack 1.0.3-3+b4 amd64 Python 3 implementation of MessagePack format
rc python3-numpy 1:2.2.4+ds-1 amd64 Python library for numerical computations (Python 3)
ii python3-openssl 25.0.0-1 all Python 3 wrapper around the OpenSSL library
ii python3-outcome 1.2.0-1.1 all capture the outcome of Python function calls
ii python3-packaging 25.0-1 all core utilities for python3 packages
ii python3-parsedatetime 2.6-3 all Python 3 module to parse human-readable date/time expressions
ii python3-pip 25.1.1+dfsg-1 all Python package installer
ii python3-pip-whl 25.1.1+dfsg-1 all Python package installer (pip wheel)
ii python3-pkg-resources 78.1.1-0.1 all Package Discovery and Resource Access using pkg_resources
ii python3-platformdirs 4.3.7-1 all determining appropriate platform-specific directories (Python 3)
ii python3-prometheus-client 0.21.1+ds1-1 all Python 3 client for the Prometheus monitoring system
ii python3-psutil 7.0.0-2 amd64 module providing convenience functions for managing processes (Python3)
ii python3-pyasyncore 1.0.2-3 all asyncore for Python 3.12 onwards
ii python3-pyfuse3 3.4.0-3+b3 amd64 Python 3 bindings for libfuse 3 with asynchronous API
ii python3-pyinotify 0.9.6-5 all simple Linux inotify Python bindings
ii python3-pyparsing 3.1.2-1 all alternative to creating and executing simple grammars - Python 3.x
ii python3-pytz 2025.2-3 all Python3 version of the Olson timezone database
ii python3-reportbug 13.2.0 all Python modules for interacting with bug tracking systems
ii python3-requests 2.32.3+dfsg-5+deb13u1 all elegant and simple HTTP library for Python3, built for human beings
ii python3-rfc3339 2.0.1-1 all parser and generator of RFC 3339-compliant timestamps (Python 3)
ii python3-setuptools 78.1.1-0.1 all Python3 Distutils Enhancements
ii python3-setuptools-whl 78.1.1-0.1 all Python Distutils Enhancements (wheel package)
ii python3-simpletal 5.2-5 all Simple TAL, TALES and METAL implementation
ii python3-sniffio 1.3.1-1 all detect which async Python library is in use (Python3 version)
ii python3-sortedcontainers 2.4.0-2 all sorted container types: SortedList, SortedDict, and SortedSet (Python 3)
rc python3-sympy 1.13.3-5 all Computer Algebra System (CAS) in Python (Python 3)
ii python3-systemd 235-1+b6 amd64 Python 3 bindings for systemd
ii python3-tk:amd64 3.13.5-1 amd64 Tkinter - Writing Tk applications with Python 3.x
ii python3-trio 0.29.0-1 all Python async concurrency and I/O library (Python3 version)
ii python3-typeguard 4.4.2-1 all Run-time type checker for Python
ii python3-typing-extensions 4.13.2-1 all Backported and Experimental Type Hints for Python
ii python3-urllib3 2.3.0-3+deb13u1 all HTTP library with thread-safe connection pooling for Python3
ii python3-userpath 1.9.2-1 all tool for adding locations to the user PATH - Python3 library
ii python3-venv 3.13.5-1 amd64 venv module for python3 (default python3 version)
ii python3-wheel 0.46.1-2 all built-package format for Python
ii python3-yaml 6.0.2-1+b2 amd64 YAML parser and emitter for Python3
ii python3-zipp 3.21.0-1 all pathlib-compatible Zipfile object wrapper - Python 3.x
ii python3-zombie-imp 0.0.3-1 all copy of the `imp` module that was removed in Python 3.12
ii python3.13 3.13.5-2 amd64 Interactive high-level object-oriented language (version 3.13)
ii python3.13-dev 3.13.5-2 amd64 Header files and a static library for Python (v3.13)
ii python3.13-minimal 3.13.5-2 amd64 Minimal subset of the Python language (version 3.13)
ii python3.13-tk 3.13.5-2 amd64 Tkinter - Writing Tk applications with Python (v3.13)
ii python3.13-venv 3.13.5-2 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.13)
ii qrencode 4.1.1-2 amd64 QR Code encoder into PNG image
ii qttranslations5-l10n 5.15.15-2 all translations for Qt 5
ii rclone 1.60.1+dfsg-4 amd64 rsync for commercial cloud storage
ii readline-common 8.2-6 all GNU readline and history libraries, common files
ii reportbug 13.2.0 all reports bugs in the Debian distribution
ii rfkill 2.41-5 amd64 tool for enabling and disabling wireless devices
ii ripgrep 14.1.1-1+b4 amd64 Recursively searches directories for a regex pattern
ii rpcsvc-proto 1.4.3-1 amd64 RPC protocol compiler and definitions
ii rsync 3.4.1+ds1-5+deb13u1 amd64 fast, versatile, remote (and local) file-copying tool
ii runit-helper 2.16.4 all dh-runit implementation detail
ii sed 4.9-2 amd64 GNU stream editor for filtering/transforming text
ii sensible-utils 0.0.25 all Utilities for sensible alternative selection
ii sgml-base 1.31+nmu1 all SGML infrastructure and SGML catalog file support
ii shared-mime-info 2.4-5+b2 amd64 FreeDesktop.org shared MIME database and spec
ii shim-helpers-amd64-signed 1+15.8+1 amd64 boot loader to chain-load signed boot loaders (signed by Debian)
ii shim-signed:amd64 1.47+15.8-1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)
ii shim-signed-common 1.47+15.8-1 all Secure Boot chain-loading bootloader (common helper scripts)
ii shim-unsigned:amd64 15.8-1 amd64 boot loader to chain-load signed boot loaders under Secure Boot
ii slirp4netns 1.2.1-1.1 amd64 User-mode networking for unprivileged network namespaces
ii smartmontools 7.4-3 amd64 control and monitor storage systems using S.M.A.R.T.
ii socat 1.8.0.3-1 amd64 multipurpose relay for bidirectional data transfer
ii speedtest-cli 2.1.3-3 all Command line interface for testing internet bandwidth using speedtest.net
ii sq 1.3.1-2+b2 amd64 OpenPGP command-line tool from Sequoia
ii sqlite3 3.46.1-7+deb13u1 amd64 Command line interface for SQLite 3
ii sqv 1.3.0-3+b2 amd64 OpenPGP signature verification program from Sequoia
ii ssl-cert 1.1.3 all simple debconf wrapper for OpenSSL
ii sudo 1.9.16p2-3+deb13u1 amd64 Provide limited super user privileges to specific users
ii systemd 257.9-1~deb13u1 amd64 system and service manager
ii systemd-cryptsetup 257.9-1~deb13u1 amd64 Provides cryptsetup, integritysetup and veritysetup utilities
ii systemd-resolved 257.9-1~deb13u1 amd64 systemd DNS resolver
ii systemd-sysv 257.9-1~deb13u1 amd64 system and service manager - SysV compatibility symlinks
ii systemd-timesyncd 257.9-1~deb13u1 amd64 minimalistic service to synchronize local time with NTP servers
ii systemd-zram-generator 1.2.1-2 amd64 Systemd unit generator for zram devices
ii sysvinit-utils 3.14-4 amd64 System-V-like utilities
ii tar 1.35+dfsg-3.1 amd64 GNU version of the tar archiving utility
ii task-english 3.81 all General English environment
ii task-laptop 3.81 all laptop
ii task-ssh-server 3.81 all SSH server
ii tasksel 3.81 all tool for selecting tasks for installation on Debian systems
ii tasksel-data 3.81 all official tasks used for installation of Debian systems
ii taskwarrior 2.6.2+dfsg-1+b1 amd64 feature-rich console based todo list manager
ii tcpdump 4.99.5-2 amd64 command-line network traffic analyzer
ii tealdeer 1.7.2-1+deb13u1 amd64 simplified, example based and community-driven man pages
ii thin-provisioning-tools 1.1.0-4+b1 amd64 Tools for handling thinly provisioned device-mapper meta-data
ii timewarrior 1.7.1+ds.1-2 amd64 feature-rich time tracking utility
ii tk8.6-blt2.5 2.5.3+dfsg-8 amd64 graphics extension library for Tcl/Tk - library
ii tlp 1.8.0-1 all Optimize laptop battery life
ii tlp-rdw 1.8.0-1 all Radio device wizard
ii tmux 3.5a-3 amd64 terminal multiplexer
ii tor 0.4.8.16-1 amd64 anonymizing overlay network for TCP
ii tor-geoipdb 0.4.8.16-1 all GeoIP database for Tor
ii torsocks 2.5.0-1+deb13u1 all use SOCKS-friendly applications with Tor
ii tpm-udev 0.6+nmu1 all udev rules for TPM modules
ii traceroute 1:2.1.6-1 amd64 Traces the route taken by packets over an IPv4/IPv6 network
ii tree 2.2.1-1 amd64 displays an indented directory tree, in color
ii tzdata 2026a-0+deb13u1 all time zone and daylight-saving time data
ii ucf 3.0052 all Update Configuration File(s): preserve user changes to config files
ii udev 257.9-1~deb13u1 amd64 /dev/ and hotplug management daemon
ii udisks2 2.10.1-12.1+deb13u1 amd64 D-Bus service to access and manipulate storage devices
ii unattended-upgrades 2.12 all automatic installation of security upgrades
ii unbound 1.22.0-2+deb13u1 amd64 validating, recursive, caching DNS resolver
ii unzip 6.0-29 amd64 De-archiver for .zip files
ii upower 1.90.9-1 amd64 abstraction for power management
ii usb-modeswitch 2.6.1-4+b2 amd64 mode switching tool for controlling "flip flop" USB devices
ii usb-modeswitch-data 20191128-7 all mode switching data for usb-modeswitch
ii usbmuxd 1.1.1-6+deb13u1 amd64 USB multiplexor daemon for iPhone and iPod Touch devices
ii usbutils 1:018-2 amd64 Linux USB utilities
ii util-linux 2.41-5 amd64 miscellaneous system utilities
ii util-linux-extra 2.41-5 amd64 interactive login tools
ii util-linux-locales 2.41-5 all locales files for util-linux
ii uuid-runtime 2.41-5 amd64 runtime components for the Universally Unique ID library
ii vifm 0.14-3 amd64 Flexible vi-like file manager using ncurses
ii vim 2:9.1.1230-2 amd64 Vi IMproved - enhanced vi editor
ii vim-common 2:9.1.1230-2 all Vi IMproved - Common files
ii vim-runtime 2:9.1.1230-2 all Vi IMproved - Runtime files
ii vim-tiny 2:9.1.1230-2 amd64 Vi IMproved - enhanced vi editor - compact version
ii vlock 2.2.2-12 amd64 Virtual Console locking program
ii wamerican 2020.12.07-4 all American English dictionary words for /usr/share/dict
ii wget 1.25.0-2 amd64 retrieves files from the web
ii whiptail 0.52.25-1 amd64 Displays user-friendly dialog boxes from shell scripts
ii whois 5.6.3 amd64 intelligent WHOIS client
ii wireguard 1.0.20210914-3 all fast, modern, secure kernel VPN tunnel (metapackage)
ii wireguard-tools 1.0.20210914-3 amd64 fast, modern, secure kernel VPN tunnel (userland utilities)
ii wireless-regdb 2026.02.04-1~deb13u1 all wireless regulatory database for Linux
ii wireless-tools 30~pre9-18+b1 amd64 Tools for manipulating Linux Wireless Extensions
ii wpasupplicant 2:2.10-24 amd64 client support for WPA and WPA2 (IEEE 802.11i)
ii wtmpdb 0.73.0-3+deb13u1 amd64 utility to display login/logout/reboot information
ii x11-common 1:7.7+24+deb13u1 all X Window System (X.Org) infrastructure
ii xauth 1:1.1.2-1.1 amd64 X authentication utility
ii xclip 0.13-4 amd64 command line interface to X selections
ii xdg-user-dirs 0.18-2 amd64 tool to manage well known user directories
ii xkb-data 2.42-1 all X Keyboard Extension (XKB) configuration data
ii xml-core 0.19 all XML infrastructure and XML catalog file support
ii xxd 2:9.1.1230-2 amd64 tool to make (or reverse) a hex dump
ii xz-utils 5.8.1-1 amd64 XZ-format compression utilities
ii zfs-auto-snapshot 1.2.4-2 all ZFS automatic snapshot service
ii zfs-dkms 2.3.2-2 all OpenZFS filesystem kernel modules for Linux
ii zfs-zed 2.3.2-2 amd64 OpenZFS Event Daemon
ii zfsutils-linux 2.3.2-2 amd64 command-line tools to manage OpenZFS filesystems
ii zlib1g:amd64 1:1.3.dfsg+really1.3.1-1+b1 amd64 compression library - runtime
ii zlib1g-dev:amd64 1:1.3.dfsg+really1.3.1-1+b1 amd64 compression library - development
ii zoxide 0.9.7-1+b1 amd64 Smarter cd command for your terminal
ii zsh 5.9-8+b21 amd64 shell with lots of features
ii zsh-autosuggestions 0.7.1-1 all Fish-like fast/unobtrusive autosuggestions for zsh
ii zsh-common 5.9-8 all architecture independent files for Zsh
ii zsh-syntax-highlighting 0.8.0-2 all Fish shell like syntax highlighting for zsh
ii zstd 1.5.7+dfsg-1 amd64 fast lossless compression algorithm -- CLI tool
|