-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApps Ubuntu.txt
2043 lines (2042 loc) · 296 KB
/
Apps Ubuntu.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
cd ~
sudo dpkg -l > lista.txt
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)
||/ Nome Versão Arquitectura Descrição
+++-=============================================-========================================-============-============================================================================================
ii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information
ii acl 2.3.2-1build1 amd64 access control list - utilities
ii adduser 3.137ubuntu1 all add and remove users and groups
ii adwaita-icon-theme 46.0-1 all default icon theme of GNOME
ii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files
ii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files
ii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files
ii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA
ii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs
ii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn't go by time
ii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version
ii apparmor 4.0.0-beta3-0ubuntu3 amd64 user-space parser utility for AppArmor
ii apport 2.28.1-0ubuntu3 all automatically generate crash reports for debugging
ii apport-core-dump-handler 2.28.1-0ubuntu3 all Kernel core dump handler for Apport
ii apport-gtk 2.28.1-0ubuntu3 all GTK+ frontend for the apport crash report system
ii apport-symptoms 0.25 all symptom scripts for apport
ii appstream 1.0.2-1build6 amd64 Software component metadata management
ii apt 2.7.14build2 amd64 commandline package manager
ii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads
ii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads
ii apt-utils 2.7.14build2 amd64 package management related utility programs
ii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service
ii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients
ii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker
ii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell
ii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)
ii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)
ii attr 1:2.5.2-1build1 amd64 utilities for manipulating filesystem extended attributes
ii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon
ii baobab 46.0-1build1 amd64 GNOME disk usage analyzer
ii base-files 13ubuntu10 amd64 Debian base system miscellaneous files
ii base-passwd 3.6.3build1 amd64 Debian base system master password and group files
ii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell
ii bash-completion 1:2.11-8 all programmable completion for the bash shell
ii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language
ii bind9-dnsutils 1:9.18.24-0ubuntu5 amd64 Clients provided with BIND 9
ii bind9-host 1:9.18.24-0ubuntu5 amd64 DNS Lookup Utility
ii bind9-libs:amd64 1:9.18.24-0ubuntu5 amd64 Shared Libraries used by BIND 9
ii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities
ii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities
ii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target
ii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons
ii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS
ii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon
ii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices
ii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)
ii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF
ii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display
ii bsdextrautils 2.39.3-9ubuntu6 amd64 extra utilities from 4.4BSD-Lite
ii bsdutils 1:2.39.3-9ubuntu6 amd64 basic utilities from 4.4BSD-Lite
ii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation
ii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages
ii busybox-initramfs 1:1.36.1-6ubuntu3 amd64 Standalone shell setup for initramfs
ii busybox-static 1:1.36.1-6ubuntu3 amd64 Standalone rescue shell with tons of builtin utilities
ii bzip2 1.0.8-5.1 amd64 high-quality block-sorting file compressor - utilities
ii bzip2-doc 1.0.8-5.1 all high-quality block-sorting file compressor - documentation
ii ca-certificates 20240203 all Common CA certificates
ii cloud-guest-utils 0.33-1 all cloud guest utilities
ii cloud-init 24.1.3-0ubuntu3 all initialization and customization tool for cloud instances
ii code 1.89.1-1715060508 amd64 Code editing. Redefined.
ii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon
ii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files
ii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions
ii console-setup 1.226ubuntu1 all console font and keymap setup program
ii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup
ii coreutils 9.4-3ubuntu6 amd64 GNU core utilities
ii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files
ii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)
ii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor
ii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu
ii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture
ii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2
ii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon
ii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon's configuration files
ii cups 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface
ii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed
ii cups-bsd 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - BSD commands
ii cups-client 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - client programs (SysV)
ii cups-common 2.4.7-1.2ubuntu7 all Common UNIX Printing System(tm) - common files
ii cups-core-drivers 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - driverless printing
ii cups-daemon 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - daemon
ii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package
ii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing
ii cups-ipp-utils 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities
ii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges
ii cups-ppdc 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities
ii cups-server-common 2.4.7-1.2ubuntu7 all Common UNIX Printing System(tm) - server common files
ii curl 8.5.0-2ubuntu10.1 amd64 command line tool for transferring data with URL syntax
ii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell
ii dbus 1.14.10-4ubuntu4 amd64 simple interprocess messaging system (system message bus)
ii dbus-bin 1.14.10-4ubuntu4 amd64 simple interprocess messaging system (command line utilities)
ii dbus-daemon 1.14.10-4ubuntu4 amd64 simple interprocess messaging system (reference message bus)
ii dbus-session-bus-common 1.14.10-4ubuntu4 all simple interprocess messaging system (session bus configuration)
ii dbus-system-bus-common 1.14.10-4ubuntu4 all simple interprocess messaging system (system bus configuration)
ii dbus-user-session 1.14.10-4ubuntu4 amd64 simple interprocess messaging system (systemd --user integration)
ii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator
ii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities
ii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end
ii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service
ii debconf 1.5.86ubuntu1 all Debian configuration management system
ii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf
ii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian
ii deja-dup 45.2-1build2 amd64 Backup utility
ii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files
ii dhcpcd-base 1:10.0.6-1ubuntu3 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)
ii dictionaries-common 1.29.7 all spelling dictionaries - common utilities
ii diffstat 1.66-1build1 amd64 produces graph of changes introduced by a diff file
ii diffutils 1:3.10-1build1 amd64 File comparison utilities
ii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service
ii distro-info 1.7build1 amd64 provides information about the distributions' releases
ii distro-info-data 0.60ubuntu0.1 all information about the distributions' releases (data files)
ii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.185-3ubuntu3 amd64 Linux Kernel Device Mapper userspace library
ii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme
ii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key
ii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable
ii docbook-xml 4.5-12 all standard XML documentation system for software and systems
ii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems
ii dpkg 1.22.6ubuntu6 amd64 Debian package management system
ii dpkg-dev 1.22.6ubuntu6 all Debian package development tools
ii dracut-install 060+5-1ubuntu3 amd64 dracut is an event driven initramfs infrastructure (dracut-install)
ii duplicity 2.1.4-3ubuntu2 amd64 encrypted bandwidth-efficient backup
ii e2fsprogs 1.47.0-2.4~exp1ubuntu4 amd64 ext2/ext3/ext4 file system utilities
ii e2fsprogs-l10n 1.47.0-2.4~exp1ubuntu4 all ext2/ext3/ext4 file system utilities - translations
ii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends
ii ed 1.20.1-1 amd64 classic UNIX line editor
ii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager
ii eject 2.39.3-9ubuntu6 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-2build2 amd64 Wrapper for various spell checker engines (binary programs)
ii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program
ii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files
ii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings
ii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer
ii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files
ii evolution-data-server 3.52.0-1build3 amd64 evolution database backend server
ii evolution-data-server-common 3.52.0-1build3 all architecture independent files for Evolution Data Server
ii fakeroot 1.33-1 amd64 tool for simulating superuser privileges
ii fdisk 2.39.3-9ubuntu6 amd64 collection of partitioning utilities
ii file 1:5.45-3build1 amd64 Recognize the type of data in a file using "magic" numbers
ii file-roller 44.1-1 amd64 archive manager for GNOME
ii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs
ii firefox 126.0~build2 amd64 Mozilla Firefox
ii firefox-l10n-pt-br 126.0~build2 all Mozilla Firefox - Firefox Language Pack for Português (BR) (pt-BR) – Brazilian Portuguese
ii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed
ii flatpak 1.14.6-1 amd64 Application deployment framework for desktop apps
ii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries
ii fontconfig-config 2.15.0-1.1ubuntu2 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-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)
ii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier
ii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow
ii fonts-noto-cjk 1:20230817+repack1-3 all "No Tofu" font families with large Unicode coverage (CJK regular and bold)
ii fonts-noto-color-emoji 2.042-1 all color emoji font from Google
ii fonts-noto-core 20201225-2 all "No Tofu" font families with large Unicode coverage (core)
ii fonts-noto-mono 20201225-2 all "No Tofu" monospaced font family with large Unicode coverage
ii fonts-opensymbol 4:102.12+LibO24.2.2-0ubuntu1 all OpenSymbol TrueType font
ii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu
ii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts
ii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database
ii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access
ii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly
ii ftp 20230507-2build3 all dummy transitional package for tnftp
ii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)
ii fwupd 1.9.16-1 amd64 Firmware update daemon
ii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary
ii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler
ii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler
ii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture
ii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture
ii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand
ii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)
ii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler
ii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler
ii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)
ii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture
ii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)
ii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture
ii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)
ii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)
ii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger
ii gdebi 0.9.5.7+nmu7 all simple tool to view and install deb files - GNOME GUI
ii gdebi-core 0.9.5.7+nmu7 all simple tool to install deb files
ii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool
ii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager
ii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service
ii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library
ii gettext 0.21-14ubuntu2 amd64 GNU Internationalization utilities
ii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system
ii gfortran 4:13.2.0-7ubuntu1 amd64 GNU Fortran 95 compiler
ii gfortran-13 13.2.0-23ubuntu4 amd64 GNU Fortran compiler
ii gfortran-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU Fortran compiler for the x86_64-linux-gnu architecture
ii gfortran-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU Fortran 95 compiler for the amd64 architecture
ii gh 2.49.2 amd64 GitHub’s official command line tool.
ii ghostscript 10.02.1~dfsg1-0ubuntu7 amd64 interpreter for the PostScript language and for PDF
ii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService
ii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita
ii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)
ii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)
ii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4
ii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library
ii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components
ii gir1.2-freedesktop-dev:amd64 1.80.1-1 amd64 GIR XML for some FreeDesktop components
ii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library
ii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library
ii gir1.2-gdesktopenums-3.0:amd64 46.0-1ubuntu2 amd64 GObject introspection for GSettings desktop-wide schemas
ii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3 amd64 GDK Pixbuf library - GObject-Introspection
ii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager
ii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)
ii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library
ii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule
ii gir1.2-glib-2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 GIR XML for GLib, GObject, Gio and GModule
ii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library
ii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar
ii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)
ii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth
ii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)
ii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)
ii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)
ii gir1.2-gst-plugins-base-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer Plugins Base library
ii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library
ii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1 amd64 GTK graphical user interface library -- gir bindings
ii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings
ii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data
ii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library
ii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy
ii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)
ii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data
ii gir1.2-javascriptcoregtk-4.1:amd64 2.44.0-2 amd64 JavaScript engine library from WebKitGTK - GObject introspection data
ii gir1.2-javascriptcoregtk-6.0:amd64 2.44.0-2 amd64 JavaScript engine library from WebKitGTK - GObject introspection data
ii gir1.2-mutter-14:amd64 46.0-1ubuntu9 amd64 GObject introspection data for Mutter
ii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library
ii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4
ii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)
ii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library
ii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings
ii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)
ii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit
ii gir1.2-rb-3.0:amd64 3.4.7-2ubuntu6 amd64 GObject introspection data for the rhythmbox music player
ii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files
ii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)
ii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1
ii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library
ii gir1.2-totem-1.0:amd64 43.0-2ubuntu4 amd64 GObject introspection data for Totem media player
ii gir1.2-totemplparser-1.0:amd64 3.26.6-1build5 amd64 GObject introspection data for the Totem Playlist Parser library
ii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data
ii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library
ii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower
ii gir1.2-vte-2.91:amd64 0.76.0-1 amd64 GObject introspection data for the VTE library
ii gir1.2-webkit-6.0:amd64 2.44.0-2 amd64 Web content engine library for GTK - GObject introspection data
ii gir1.2-webkit2-4.1:amd64 2.44.0-2 amd64 Web content engine library for GTK - GObject introspection data
ii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library
ii gir1.2-xapp-1.0 2.8.2-1build3 amd64 Introspection data for Xapp
ii git 1:2.43.0-1ubuntu7 amd64 fast, scalable, distributed revision control system
ii git-man 1:2.43.0-1ubuntu7 all fast, scalable, distributed revision control system (manual pages)
ii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)
ii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd
ii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib
ii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files
ii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services
ii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons
ii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files
ii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app
ii gnome-calculator 1:46.0-1ubuntu1 amd64 GNOME desktop calculator
ii gnome-calendar 46.0-1build1 amd64 Calendar application for GNOME
ii gnome-characters 46.0-1build1 amd64 character map application
ii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support
ii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop
ii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files
ii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images
ii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps
ii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media
ii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME
ii gnome-initial-setup 46.0-1ubuntu6 amd64 Initial GNOME system setup helper
ii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)
ii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library
ii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal
ii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification
ii gnome-online-accounts 3.50.0-4ubuntu2 amd64 service to manage online accounts for the GNOME desktop
ii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop
ii gnome-remote-desktop 46.1-1 amd64 Remote desktop daemon for GNOME using PipeWire
ii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime
ii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events
ii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files
ii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings
ii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files
ii gnome-shell 46.0-0ubuntu5.1 amd64 graphical shell for the GNOME desktop
ii gnome-shell-common 46.0-0ubuntu5.1 all common files for the GNOME graphical shell
ii gnome-shell-extension-appindicator 57-2 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell
ii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell
ii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell
ii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1 all extension which adds a Windows-like snap assist to GNOME Shell
ii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam
ii gnome-software 46.0-1ubuntu2 amd64 Software Center for GNOME
ii gnome-software-common 46.0-1ubuntu2 all Software Center for GNOME (common files)
ii gnome-software-plugin-flatpak 46.0-1ubuntu2 amd64 Flatpak support for GNOME Software
ii gnome-software-plugin-snap 46.0-1ubuntu2 amd64 Snap support for GNOME Software
ii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME
ii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME
ii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application
ii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator
ii gnome-text-editor 46.1-1 amd64 simple text editor for GNOME
ii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine
ii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files
ii gnome-tweaks 46.0-2 all tool to adjust advanced configuration settings for GNOME
ii gnome-user-docs 46.0-1ubuntu1 all GNOME Help
ii gnome-user-docs-pt 46.0-1ubuntu1 all GNOME Help (Portuguese)
ii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement
ii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files
ii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs
ii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations
ii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent
ii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client
ii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities
ii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version
ii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool
ii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep
ii grilo-plugins-0.3-base:amd64 0.3.16-1.1ubuntu6 amd64 Framework for discovering and browsing media - Plugins
ii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)
ii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)
ii grub-efi-amd64 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version)
ii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)
ii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)
ii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)
ii gsettings-desktop-schemas 46.0-1ubuntu2 all GSettings desktop-wide schemas
ii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu
ii gstreamer1.0-alsa:amd64 1.24.2-1 amd64 GStreamer plugin for ALSA
ii gstreamer1.0-gl:amd64 1.24.2-1 amd64 GStreamer plugins for GL
ii gstreamer1.0-gtk3:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugin for GTK+3
ii gstreamer1.0-libav:amd64 1.24.1-1build1 amd64 ffmpeg plugin for GStreamer
ii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)
ii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit
ii gstreamer1.0-pipewire:amd64 1.0.5-1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server
ii gstreamer1.0-plugins-base:amd64 1.24.2-1 amd64 GStreamer plugins from the "base" set
ii gstreamer1.0-plugins-base-apps 1.24.2-1 amd64 GStreamer helper programs from the "base" set
ii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the "good" set
ii gstreamer1.0-plugins-ugly:amd64 1.24.1-1build1 amd64 GStreamer plugins from the "ugly" set
ii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer
ii gstreamer1.0-vaapi:amd64 1.24.2-1 amd64 VA-API plugins for GStreamer
ii gstreamer1.0-x:amd64 1.24.2-1 amd64 GStreamer plugins for X11 and Pango
ii gtk-update-icon-cache 3.24.41-4ubuntu1 amd64 icon theme caching utility
ii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine
ii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1 amd64 pixbuf-based theme for GTK 2
ii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module
ii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends
ii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files
ii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers
ii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server
ii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries
ii gzip 1.12-1ubuntu3 amd64 GNU compression utilities
ii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance
ii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader
ii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer
ii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes
ii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name
ii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)
ii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files
ii humanity-icon-theme 0.6.16 all Humanity Icon theme
ii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell
ii hunspell-fr-classical 1:7.0-1 all French dictionary for hunspell (classical version)
ii hunspell-pt-br 1:24.2.1-1 all Brazilian Portuguese dictionary for hunspell
ii hunspell-pt-pt 1:24.2.1-1 all Portuguese dictionary for hunspell
ii hwdata 0.379-1 all hardware identification / configuration data
ii hyphen-pt-br 1:24.2.1-1 all Brazilian Portuguese hyphenation patterns
ii hyphen-pt-pt 1:24.2.1-1 all Portuguese hyphenation patterns
ii i965-va-driver:amd64 2.4.1+dfsg1-1build2 amd64 VAAPI driver for Intel G45 & HD Graphics family
ii ibus 1.5.29-2 amd64 Intelligent Input Bus - core
ii ibus-data 1.5.29-2 all Intelligent Input Bus - data files
ii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support
ii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support
ii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support
ii ibus-table 1.17.4-2 all table engine for IBus
ii ibus-table-cangjie-big 1.8.12-1 all ibus-table input method: CangJie (big)
ii ibus-table-cangjie3 1.8.12-1 all ibus-table input method: CangJie3
ii ibus-table-cangjie5 1.8.12-1 all ibus-table input method: CangJie5
ii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs
ii icu-devtools 74.2-1ubuntu3 amd64 Development utilities for International Components for Unicode
ii ieee-data 20220827.1 all OUI and IAB listings
ii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy
ii im-config 0.57-2 all Input method configuration framework
ii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client
ii info 7.1-3build2 amd64 Standalone GNU Info documentation browser
ii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed
ii init-system-helpers 1.66ubuntu1 all helper tools for all init systems
ii initramfs-tools 0.142ubuntu25 all generic modular initramfs generator (automation)
ii initramfs-tools-bin 0.142ubuntu25 amd64 binaries used by initramfs-tools
ii initramfs-tools-core 0.142ubuntu25 all generic modular initramfs generator (core tools)
ii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem
ii install-info 7.1-3build2 amd64 Manage installed documentation in info format
ii insync 3.9.0.60000-noble amd64 Sync all your Google Drive & OneDrive accounts to your local filesystem
ii intel-media-va-driver:amd64 24.1.0+dfsg1-1 amd64 VAAPI driver for the Intel GEN8+ Graphics family
ii intel-microcode 3.20240312.1build1 amd64 Processor microcode firmware for Intel CPUs
ii intltool-debian 0.35.0+20060710.6 all Help i18n of RFC822 compliant config files
ii inxi 3.3.34-1-1 all full featured system information script
ii ipp-usb 0.9.24-0ubuntu3 amd64 Daemon for IPP over USB printer support
ii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools
ii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT
ii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts
ii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host
ii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations
ii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool
ii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor
ii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities
ii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker
ii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences
ii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service
ii klibc-utils 2.0.13-4 amd64 small utilities built with klibc for early boot
ii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules
ii krb5-locales 1.20.1-6ubuntu2 all internationalization support for MIT Kerberos
ii language-pack-gnome-pt 1:24.04+20240419 all GNOME translation updates for language Portuguese
ii language-pack-gnome-pt-base 1:24.04+20240419 all GNOME translations for language Portuguese
ii language-pack-pt 1:24.04+20240419 all translation updates for language Portuguese
ii language-pack-pt-base 1:24.04+20240419 all translations for language Portuguese
ii language-selector-common 0.225 all Language selector for Ubuntu
ii language-selector-gnome 0.225 all Language selector frontend for Ubuntu
ii laptop-detect 0.16 all system chassis type checker
ii ldap-utils 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP utilities
ii less 590-2ubuntu2.1 amd64 pager program similar to more
ii lib32gcc-s1 14-20240412-0ubuntu1 amd64 GCC support library (32 bit Version)
ii lib32stdc++6 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3 (32 bit Version)
ii liba52-0.7.4:amd64 0.7.4-20build1 amd64 library for decoding ATSC A/52 streams
ii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library
ii libaacs0:amd64 0.11.1-2build1 amd64 free-and-libre implementation of AACS
ii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library
ii libabw-0.1-1:amd64 0.1.3-1build4 amd64 library for reading and writing AbiWord(tm) documents
ii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries
ii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library
ii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones
ii libalgorithm-diff-perl 1.201-1 all module to find differences between files
ii libalgorithm-diff-xs-perl:amd64 0.04-8build3 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 libaliased-perl 0.34-3 all Perl module to provide aliases of class names
ii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)
ii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library
ii libaom3:amd64 3.8.2-2build1 amd64 AV1 Video Codec Library
ii libapparmor1:amd64 4.0.0-beta3-0ubuntu3 amd64 changehat AppArmor library
ii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services
ii libapt-pkg-perl 0.1.40build7 amd64 Perl interface to libapt-pkg
ii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library
ii libarchive-zip-perl 1.68-1 all Perl module for manipulation of ZIP archives
ii libarchive13t64:amd64 3.7.2-2 amd64 Multi-format archive and compression library (shared library)
ii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library
ii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector
ii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers
ii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications
ii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library
ii libass9:amd64 1:0.17.1-2build1 amd64 library for SSA/ASS subtitles rendering
ii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components
ii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library
ii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library
ii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge
ii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library
ii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit
ii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)
ii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions
ii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions
ii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library
ii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library
ii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files
ii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing
ii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework
ii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library
ii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files
ii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library
ii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library
ii libavahi-ui-gtk3-0:amd64 0.8-13ubuntu6 amd64 Avahi GTK+ User interface library for GTK3
ii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices
ii libavcodec60:amd64 7:6.1.1-3ubuntu5 amd64 FFmpeg library with de/encoders for audio/video codecs - runtime files
ii libavfilter9:amd64 7:6.1.1-3ubuntu5 amd64 FFmpeg library containing media filters - runtime files
ii libavformat60:amd64 7:6.1.1-3ubuntu5 amd64 FFmpeg library with (de)muxers for multimedia containers - runtime files
ii libavutil58:amd64 7:6.1.1-3ubuntu5 amd64 FFmpeg library with functions for simplifying programming - runtime files
ii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)
ii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators
ii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)
ii libb-hooks-endofscope-perl 0.28-1 all module for executing code after a scope finished compilation
ii libb-hooks-op-check-perl:amd64 0.22-3build1 amd64 Perl wrapper for OP check callbacks
ii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries
ii libbasicobjects0t64:amd64 0.6.2-2.1build1 amd64 Basic object types for C
ii libbdplus0:amd64 0.2.0-3build1 amd64 implementation of BD+ for reading Blu-ray Discs
ii libberkeleydb-perl:amd64 0.64-2build4 amd64 use Berkeley DB databases from Perl
ii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)
ii libblas-dev:amd64 3.12.0-3build1 amd64 Basic Linear Algebra Subroutines 3, static library
ii libblas3:amd64 3.12.0-3build1 amd64 Basic Linear Algebra Reference implementations, shared library
ii libblkid-dev:amd64 2.39.3-9ubuntu6 amd64 block device ID library - headers
ii libblkid1:amd64 2.39.3-9ubuntu6 amd64 block device ID library
ii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev
ii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev
ii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev
ii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev
ii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev
ii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev
ii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev
ii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev
ii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices
ii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack
ii libbluray2:amd64 1:1.3.4-1build1 amd64 Blu-ray disc playback support library (shared library)
ii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library
ii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization
ii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading
ii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)
ii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)
ii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library
ii libbrotli-dev:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (development files)
ii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)
ii libbs2b0:amd64 3.1.0+dfsg-7build1 amd64 Bauer stereophonic-to-binaural DSP library
ii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library
ii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions
ii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations
ii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes
ii libbz2-1.0:amd64 1.0.8-5.1 amd64 high-quality block-sorting file compressor library - runtime
ii libbz2-dev:amd64 1.0.8-5.1 amd64 high-quality block-sorting file compressor library - development
ii libc-bin 2.39-0ubuntu8.1 amd64 GNU C Library: Binaries
ii libc-dev-bin 2.39-0ubuntu8.1 amd64 GNU C Library: Development binaries
ii libc-devtools 2.39-0ubuntu8.1 amd64 GNU C Library: Development tools
ii libc6:amd64 2.39-0ubuntu8.1 amd64 GNU C Library: Shared libraries
ii libc6-dbg:amd64 2.39-0ubuntu8.1 amd64 GNU C Library: detached debugging symbols
ii libc6-dev:amd64 2.39-0ubuntu8.1 amd64 GNU C Library: Development Libraries and Header Files
ii libc6-i386 2.39-0ubuntu8.1 amd64 GNU C Library: 32-bit shared libraries for AMD64
ii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library
ii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl
ii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)
ii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library
ii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)
ii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library
ii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)
ii libcamel-1.2-64t64:amd64 3.52.0-1build3 amd64 Evolution MIME message handling library
ii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library
ii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra
ii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds
ii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra
ii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds
ii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library
ii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)
ii libcapture-tiny-perl 0.48-2 all module to capture STDOUT and STDERR
ii libcares2:amd64 1.27.0-1.0ubuntu1 amd64 asynchronous name resolver
ii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)
ii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB
ii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs
ii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction
ii libcdio19t64:amd64 2.1.0-4.1ubuntu1 amd64 library to read and control CD-ROM
ii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)
ii libcdr-0.1-1:amd64 0.1.7-1build2 amd64 library for reading and converting Corel DRAW files
ii libcephfs2 19.2.0~git20240301.4c76c50-0ubuntu6 amd64 Ceph distributed file system client library
ii libcgi-fast-perl 1:2.17-1 all CGI subclass for work with FCGI
ii libcgi-pm-perl 4.63-1 all module for Common Gateway Interface applications
ii libchewing3:amd64 0.6.0-1build1 amd64 intelligent phonetic input method library
ii libchewing3-data 0.6.0-1build1 all intelligent phonetic input method library - data files
ii libchromaprint1:amd64 1.5.1-5 amd64 audio fingerprint library
ii libcjson1:amd64 1.7.17-1 amd64 Ultralightweight JSON parser in ANSI C
ii libclang-18-dev 1:18.1.3-1 amd64 Clang library - Development package
ii libclang-common-18-dev:amd64 1:18.1.3-1 amd64 Clang library - Common development package
ii libclang-cpp18 1:18.1.3-1 amd64 C++ interface to the Clang library
ii libclang-dev 1:18.0-59~exp2 amd64 clang library - Development package
ii libclang-rt-18-dev:amd64 1:18.1.3-1 amd64 Compiler-rt - development package
ii libclang1-18 1:18.1.3-1 amd64 C interface to the Clang library
ii libclass-data-inheritable-perl 0.08-3 all Perl module to create accessors to class data
ii libclass-method-modifiers-perl 2.15-1 all Perl module providing method modifiers
ii libclass-xsaccessor-perl 1.19-4build4 amd64 Perl module providing fast XS accessors
ii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes
ii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)
ii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)
ii libcodec2-1.2:amd64 1.2.0-2build1 amd64 Codec2 runtime library
ii libcolamd3:amd64 1:7.6.1+dfsg-1build1 amd64 column approximate minimum degree ordering library for sparse matrices
ii libcollection4t64:amd64 0.6.2-2.1build1 amd64 Collection data-type for C
ii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord
ii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime
ii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime
ii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4 amd64 common error description library
ii libconfig-tiny-perl 2.30-1 all Read/Write .ini style files with as little code as possible
ii libconst-fast-perl 0.014-2 all facility for creating read-only scalars, arrays, and hashes
ii libcpanel-json-xs-perl:amd64 4.37-1build3 amd64 module for fast and correct serialising to JSON
ii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library
ii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files
ii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library
ii libcryptsetup12:amd64 2:2.7.0-1ubuntu4 amd64 disk encryption support - shared library
ii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)
ii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)
ii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library
ii libcups2t64:amd64 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - Core library
ii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files
ii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library
ii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7 amd64 Common UNIX Printing System(tm) - Raster image library
ii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.1 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libcurl4-openssl-dev:amd64 8.5.0-2ubuntu10.1 amd64 development files and documentation for libcurl (OpenSSL flavour)
ii libcurl4t64:amd64 8.5.0-2ubuntu10.1 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library
ii libdata-dpath-perl 0.59-1 all DPath is like XPath but for Perl data structures
ii libdata-dump-perl 1.25-1 all Perl module to help dump data structures
ii libdata-messagepack-perl 1.02-1build4 amd64 MessagePack serializing/deserializing
ii libdata-optlist-perl 0.114-1 all module to parse and validate simple name/value option pairs
ii libdata-validate-domain-perl 0.10-1.1 all perl domain name validation functions
ii libdata-validate-ip-perl 0.31-1 all Perl module for IP validation
ii libdata-validate-uri-perl 0.07-3 all common URI validation methods
ii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library
ii libdav1d7:amd64 1.4.1-1build1 amd64 fast and small AV1 video stream decoder (shared library)
ii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]
ii libdbus-1-3:amd64 1.14.10-4ubuntu4 amd64 simple interprocess messaging system (library)
ii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC
ii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus
ii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version
ii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library
ii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation
ii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)
ii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server
ii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)
ii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library
ii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK
ii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib
ii libdeflate-dev:amd64 1.19-1build1 amd64 headers for whole-buffer compression and decompression library
ii libdeflate0:amd64 1.19-1build1 amd64 fast, whole-buffer DEFLATE-based compression and decompression
ii libdevel-callchecker-perl:amd64 0.008-2build3 amd64 custom op checking attached to subroutines
ii libdevel-size-perl 0.83-2build4 amd64 Perl extension for finding the memory usage of Perl variables
ii libdevel-stacktrace-perl 2.0500-1 all Perl module containing stack trace and related objects
ii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3 amd64 Linux Kernel Device Mapper userspace library
ii libdhash1t64:amd64 0.6.2-2.1build1 amd64 Dynamic hash table
ii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre
ii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format
ii libdmapsharing-4.0-3t64:amd64 3.9.13-2build1 amd64 DMAP client and server library - runtime
ii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files
ii libdpkg-perl 1.22.6ubuntu6 all Dpkg perl modules
ii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files
ii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime
ii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime
ii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime
ii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime
ii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library
ii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)
ii libdvdread8t64:amd64 6.1.3-1.1build1 amd64 library for reading DVDs
ii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information
ii libdynaloader-functions-perl 0.003-3 all deconstructed dynamic C library loading
ii libe-book-0.1-1:amd64 0.1.3-2build6 amd64 library for reading and converting various e-book formats
ii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library
ii libebackend-1.2-11t64:amd64 3.52.0-1build3 amd64 Utility library for evolution data servers
ii libebook-1.2-21t64:amd64 3.52.0-1build3 amd64 Client library for evolution address books
ii libebook-contacts-1.2-4t64:amd64 3.52.0-1build3 amd64 Client library for evolution contacts books
ii libecal-2.0-3:amd64 3.52.0-1build3 amd64 Client library for evolution calendars
ii libedata-book-1.2-27t64:amd64 3.52.0-1build3 amd64 Backend library for evolution address books
ii libedata-cal-2.0-2t64:amd64 3.52.0-1build3 amd64 Backend library for evolution calendars
ii libedataserver-1.2-27t64:amd64 3.52.0-1build3 amd64 Utility library for evolution data servers
ii libedataserverui-1.2-4t64:amd64 3.52.0-1build3 amd64 Utility library for evolution data servers
ii libedataserverui4-1.0-0t64:amd64 3.52.0-1build3 amd64 GTK4 utility library for evolution data servers
ii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries
ii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library
ii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables
ii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables
ii libegl-mesa0:amd64 24.0.5-1ubuntu1 amd64 free implementation of the EGL API -- Mesa vendor library
ii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support
ii libei1:amd64 1.2.1-1 amd64 Emulated Input client library
ii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library
ii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files
ii libemail-address-xs-perl 1.05-1build4 amd64 Perl library for RFC 5322 address/group parsing and formatting
ii libenchant-2-2:amd64 2.3.3-2build2 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 libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files
ii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library
ii libepubgen-0.1-1:amd64 0.1.1-1ubuntu6 amd64 EPUB generator library
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-12build1 amd64 Multi-lingual software speech synthesizer: shared library
ii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)
ii libetonyek-0.1-1:amd64 0.1.10-5build1 amd64 library for reading and converting Apple Keynote presentations
ii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices
ii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library
ii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets
ii libexception-class-perl 1.45-1 all module that allows you to declare real exception classes in Perl
ii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)
ii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files
ii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library
ii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library
ii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit
ii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4 amd64 ext2/ext3/ext4 file system libraries
ii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library
ii libexttextcat-data 3.4.7-1build1 all Language detection library - data files
ii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions
ii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries
ii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C
ii libfcgi-bin 2.4.2-2.1build1 amd64 FastCGI bridge from CGI
ii libfcgi-perl 0.82+ds-3build2 amd64 helper module for FastCGI
ii libfcgi0t64:amd64 2.4.2-2.1build1 amd64 shared library of FastCGI
ii libfdisk1:amd64 2.39.3-9ubuntu6 amd64 fdisk partitioning library
ii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)
ii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime
ii libfftw3-double3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Double precision
ii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision
ii libfido2-1:amd64 1.14.0-1build3 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-4ubuntu5 amd64 Perl module for file locking with fcntl(2)
ii libfile-find-rule-perl 0.34-3 all module to search for files based on rules
ii libfile-listing-perl 6.16-1 all module to parse directory listings
ii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types
ii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library
ii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library
ii libflatpak0:amd64 1.14.6-1 amd64 Application deployment framework for desktop apps (library)
ii libflite1:amd64 2.2-6build3 amd64 Small run-time speech synthesis engine - shared libraries
ii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files
ii libfont-ttf-perl 1.06-2 all Perl module for TrueType font hacking
ii libfontconfig-dev:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - development
ii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime
ii libfontconfig1-dev:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - dummy package
ii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library
ii libfprint-2-2 1:1.94.7+tod1-0ubuntu4 amd64 async fingerprint library of fprint project, shared libraries
ii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu4 amd64 async fingerprint library of fprint project, drivers shared libraries
ii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX
ii libfreehand-0.1-1 0.1.2-3build3 amd64 Library for parsing the FreeHand file format structure
ii libfreerdp-client3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (client library)
ii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)
ii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)
ii libfreetype-dev:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, development files
ii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files
ii libfreezethaw-perl 0.5001-3 all module to serialize and deserialize Perl data structures
ii libfribidi-dev:amd64 1.0.13-3build1 amd64 Development files for FreeBidi library
ii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm
ii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers
ii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)
ii libfwupd2:amd64 1.9.16-1 amd64 Firmware update daemon library
ii libgail-common:amd64 2.24.33-4ubuntu1 amd64 GNOME Accessibility Implementation Library -- common modules
ii libgail18t64:amd64 2.24.33-4ubuntu1 amd64 GNOME Accessibility Implementation Library -- shared libraries
ii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)
ii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)
ii libgbm1:amd64 24.0.5-1ubuntu1 amd64 generic buffer management API -- runtime
ii libgc1:amd64 1:8.2.6-1build1 amd64 conservative garbage collector for C and C++
ii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)
ii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library
ii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime
ii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime
ii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks
ii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks
ii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks
ii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library
ii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library
ii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files
ii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries
ii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version)
ii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version)
ii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3 amd64 GDK Pixbuf library
ii libgdk-pixbuf-xlib-2.0-0:amd64 2.40.2-3build2 amd64 GDK Pixbuf library (deprecated Xlib integration)
ii libgdk-pixbuf2.0-0:amd64 2.40.2-3build2 amd64 GDK Pixbuf library (transitional package)
ii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3 amd64 GDK Pixbuf library (thumbnailer)
ii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3 all GDK Pixbuf library - data files
ii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)
ii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library
ii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service
ii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim
ii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library
ii libgfortran-13-dev:amd64 13.2.0-23ubuntu4 amd64 Runtime library for GNU Fortran applications (development files)
ii libgfortran5:amd64 14-20240412-0ubuntu1 amd64 Runtime library for GNU Fortran applications
ii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)
ii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)
ii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data
ii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform
ii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support
ii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules
ii libgl1-mesa-dri:amd64 24.0.5-1ubuntu1 amd64 free implementation of the OpenGL API -- DRI modules
ii libglapi-mesa:amd64 24.0.5-1ubuntu1 amd64 free implementation of the GL API -- shared library
ii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support
ii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries
ii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries
ii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines
ii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library
ii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library
ii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library
ii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library
ii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)
ii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)
ii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library
ii libglx-mesa0:amd64 24.0.5-1ubuntu1 amd64 free implementation of the OpenGL API -- GLX vendor library
ii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support
ii libgme0:amd64 0.6.3-7build1 amd64 Playback library for video game music files - shared library
ii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library
ii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME
ii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files
ii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library
ii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library
ii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version
ii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files
ii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification
ii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files
ii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files
ii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library
ii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.1 amd64 GNU TLS library - main runtime library
ii libgoa-1.0-0b:amd64 3.50.0-4ubuntu2 amd64 library for GNOME Online Accounts
ii libgoa-1.0-common 3.50.0-4ubuntu2 all library for GNOME Online Accounts - common files
ii libgoa-backend-1.0-2:amd64 3.50.0-4ubuntu2 amd64 backend library for GNOME Online Accounts
ii libgom-1.0-0t64:amd64 0.5.0-1 amd64 Object mapper from GObjects to SQLite
ii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library
ii libgpg-error-l10n 1.47-3build2 all library of error values and messages in GnuPG (localization files)
ii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library
ii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)
ii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME
ii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library
ii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages
ii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library
ii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library
ii libgpod-common 0.8.3-19.1ubuntu4 amd64 common files for libgpod
ii libgpod4t64:amd64 0.8.3-19.1ubuntu4 amd64 library to read and write songs and artwork to an iPod
ii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)
ii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types
ii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library
ii libgraphite2-dev:amd64 1.3.14-2build1 amd64 Development files for libgraphite2
ii libgrilo-0.3-0:amd64 0.3.16-1build3 amd64 Framework for discovering and browsing media - Shared libraries
ii libgs-common 10.02.1~dfsg1-0ubuntu7 all interpreter for the PostScript language and for PDF - ICC profiles
ii libgs10:amd64 10.02.1~dfsg1-0ubuntu7 amd64 interpreter for the PostScript language and for PDF - Library
ii libgs10-common 10.02.1~dfsg1-0ubuntu7 all interpreter for the PostScript language and for PDF - common files
ii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version
ii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files
ii libgsm1:amd64 1.0.22-1build1 amd64 Shared libraries for GSM speech compressor
ii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds
ii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications
ii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files
ii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP
ii libgstreamer-gl1.0-0:amd64 1.24.2-1 amd64 GStreamer GL libraries
ii libgstreamer-plugins-bad1.0-0:amd64 1.24.2-1ubuntu4 amd64 GStreamer libraries from the "bad" set
ii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1 amd64 GStreamer libraries from the "base" set
ii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the "good" set
ii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements
ii libgtk-3-0t64:amd64 3.24.41-4ubuntu1 amd64 GTK graphical user interface library
ii libgtk-3-bin 3.24.41-4ubuntu1 amd64 programs for the GTK graphical user interface library
ii libgtk-3-common 3.24.41-4ubuntu1 all common files for the GTK graphical user interface library
ii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library
ii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library
ii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library
ii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library
ii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1 amd64 GTK graphical user interface library - old version
ii libgtk2.0-bin 2.24.33-4ubuntu1 amd64 programs for the GTK graphical user interface library
ii libgtk2.0-common 2.24.33-4ubuntu1 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-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)
ii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget
ii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget
ii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)
ii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)
ii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev
ii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP
ii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP
ii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP
ii libgupnp-igd-1.6-0:amd64 1.6.0-3build3 amd64 library to handle UPnP IGD port mapping
ii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1
ii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library
ii libgweather-4-common 4.4.2-1build1 all GWeather common files
ii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)
ii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones
ii libharfbuzz-cairo0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine Cairo backend
ii libharfbuzz-dev:amd64 8.3.0-2build2 amd64 Development files for OpenType text shaping engine
ii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)
ii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend
ii libharfbuzz-subset0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (subset library)
ii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)
ii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin
ii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin
ii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin
ii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library
ii libhogweed6t64:amd64 3.9.1-2.2build1 amd64 low level cryptographic library (public-key cryptos)
ii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries
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-html5-entities-perl 0.004-3 all module to encode and decode character entities defined in HTML5
ii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents
ii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML
ii libhtml-tokeparser-simple-perl 3.16-4 all Perl module used to tokenize HTML documents
ii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees
ii libhttp-cookies-perl 6.11-1 all HTTP cookie jars
ii libhttp-daemon-perl 6.16-1 all simple http server class
ii libhttp-date-perl 6.06-1 all module of date conversion routines
ii libhttp-message-perl 6.45-1ubuntu1 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.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)
ii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector
ii libhwy1t64:amd64 1.0.7-8.1build1 amd64 Efficient and performance-portable SIMD wrapper (runtime files)
ii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library
ii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library
ii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)
ii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)
ii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library
ii libicu-dev:amd64 74.2-1ubuntu3 amd64 Development files for International Components for Unicode
ii libicu74:amd64 74.2-1ubuntu3 amd64 International Components for Unicode
ii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications
ii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library
ii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)
ii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access
ii libigdgmm12:amd64 22.3.17+ds1-1 amd64 Intel Graphics Memory Management Library -- shared library
ii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library
ii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library
ii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices
ii libimport-into-perl 1.002005-2 all module for importing packages into other packages
ii libini-config5t64:amd64 0.6.2-2.1build1 amd64 INI file parser for C
ii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser
ii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks
ii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library
ii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection
ii libio-interactive-perl 1.025-1 all utility module for interactive I/O
ii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets
ii libio-string-perl 1.08-4 all Emulate IO::File interface for in-core strings
ii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)
ii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library
ii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library
ii libipa-hbac0t64 2.9.4-1.1ubuntu6 amd64 FreeIPA HBAC Evaluator library
ii libipc-run3-perl 0.049-1 all run a subprocess with input/output redirection
ii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics
ii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library
ii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints
ii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems
ii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images
ii libiterator-perl 0.03+ds1-2 all Perl implementation of iterators
ii libiterator-util-perl 0.02+ds1-2 all Useful functions for creating and manipulating iterator objects
ii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library
ii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library
ii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data
ii libjavascriptcoregtk-4.1-0:amd64 2.44.0-2 amd64 JavaScript engine library from WebKitGTK
ii libjavascriptcoregtk-6.0-1:amd64 2.44.0-2 amd64 JavaScript engine library from WebKitGTK
ii libjbig-dev:amd64 2.1-6.1ubuntu2 amd64 JBIGkit development files
ii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries
ii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries
ii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library
ii libjpeg-dev:amd64 8c-2ubuntu11 amd64 Independent JPEG Group's JPEG runtime library (dependency package)
ii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library
ii libjpeg-turbo8-dev:amd64 2.1.5-2ubuntu2 amd64 Development files for the libjpeg-turbo JPEG library
ii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group's JPEG runtime library (dependency package)
ii libjpeg8-dev:amd64 8c-2ubuntu11 amd64 Independent JPEG Group's JPEG runtime library (dependency package)
ii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library
ii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library
ii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library
ii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)
ii libjson-maybexs-perl 1.004005-1 all interface to the best available JSON module
ii libjxl0.7:amd64 0.7.0-10.2ubuntu6 amd64 JPEG XL Image Coding System - "JXL" (shared libraries)
ii libk5crypto3:amd64 1.20.1-6ubuntu2 amd64 MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)
ii libklibc:amd64 2.0.13-4 amd64 minimal libc subset for use with initramfs
ii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library
ii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)
ii libkrb5-3:amd64 1.20.1-6ubuntu2 amd64 MIT Kerberos runtime libraries
ii libkrb5support0:amd64 1.20.1-6ubuntu2 amd64 MIT Kerberos runtime libraries - Support library
ii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library
ii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data
ii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages
ii liblapack-dev:amd64 3.12.0-3build1 amd64 Library of linear algebra routines 3 - static version
ii liblapack3:amd64 3.12.0-3build1 amd64 Library of linear algebra routines 3 - shared version
ii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)
ii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library
ii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)
ii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)
ii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)
ii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries
ii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries
ii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library
ii liblerc-dev:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library (Development files)
ii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library
ii liblilv-0-0:amd64 0.24.22-1build1 amd64 library for simple use of LV2 plugins
ii liblirc-client0t64:amd64 0.10.2-0.8build1 amd64 infra-red remote control support - client library
ii liblist-compare-perl 0.55-2 all Perl module for comparing elements of two or more lists
ii liblist-someutils-perl 0.59-1 all module that provides the stuff missing in List::Util
ii liblist-someutils-xs-perl:amd64 0.58-3build4 amd64 module providing XS implementation for List::SomeUtils
ii liblist-utilsby-perl 0.12-2 all higher-order list utility functions
ii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library
ii libllvm18:amd64 1:18.1.3-1 amd64 Modular compiler and toolchain technologies, runtime library
ii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library
ii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl
ii liblouis-data 3.29.0-1build1 all Braille translation library - data
ii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs
ii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities
ii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data
ii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs
ii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)
ii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool
ii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)
ii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)
ii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)
ii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4
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.13-1 all HTTPS driver for LWP::UserAgent
ii liblz4-1:amd64 1.9.4-1build1 amd64 Fast LZ compression algorithm library - runtime
ii liblzma-dev:amd64 5.6.1+really5.4.5-1 amd64 XZ-format compression library - development files
ii liblzma5:amd64 5.6.1+really5.4.5-1 amd64 XZ-format compression library
ii liblzo2-2:amd64 2.10-2build4 amd64 data compression library
ii libm17n-0:amd64 1.8.4-1build2 amd64 multilingual text processing library - runtime
ii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using "magic" numbers (compiled magic file)
ii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using "magic" numbers - library
ii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs
ii libmalcontent-0-0:amd64 0.11.1-1build4 amd64 library for parental control of applications
ii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library
ii libmarisa0:amd64 0.2.6-14ubuntu4 amd64 C++ library to provide an implementation of MARISA
ii libmarkdown2:amd64 2.2.7-2build1 amd64 implementation of the Markdown markup language in C (library)
ii libmath-base85-perl 0.5+dfsg-2 all Perl extension for base 85 numbers, as referenced by RFC 1924
ii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library
ii libmbedcrypto7t64:amd64 2.28.8-1 amd64 lightweight crypto and SSL/TLS library - crypto library
ii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol
ii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports
ii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line