-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackages_02.txt
1840 lines (1840 loc) · 250 KB
/
packages_02.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-=====================================-=======================================-============-================================================================================
ii accountsservice 22.07.5-2ubuntu1.3 amd64 query and manipulate user account information
ii acl 2.3.1-1 amd64 access control list - utilities
ii acpid 1:2.0.33-1ubuntu1 amd64 Advanced Configuration and Power Interface event daemon
ii adduser 3.118ubuntu5 all add and remove users and groups
ii adwaita-icon-theme 41.0-1ubuntu1 all default icon theme of GNOME (small subset)
ii aisleriot 1:3.22.22-1 amd64 GNOME solitaire card game collection
ii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files
ii alsa-ucm-conf 1.2.6.3-1ubuntu1.1 all ALSA Use Case Manager configuration files
ii amd64-microcode 3.20191218.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs
ii ansible 2.10.7+merged+base+2.10.8+dfsg-1 all Configuration management, deployment, and task execution system
ii apache2 2.4.52-1ubuntu4.2 amd64 Apache HTTP Server
ii apache2-bin 2.4.52-1ubuntu4.2 amd64 Apache HTTP Server (modules and other binary files)
ii apache2-data 2.4.52-1ubuntu4.2 all Apache HTTP Server (common files)
ii apache2-utils 2.4.52-1ubuntu4.2 amd64 Apache HTTP Server (utility programs for web servers)
ii apg 2.2.3.dfsg.1-5build2 amd64 Automated Password Generator - Standalone version
ii apparmor 3.0.4-2ubuntu2.1 amd64 user-space parser utility for AppArmor
ii apport 2.20.11-0ubuntu82.3 all automatically generate crash reports for debugging
ii apport-symptoms 0.24 all symptom scripts for apport
ii appstream 0.15.2-2 amd64 Software component metadata management
ii apt 2.4.8 amd64 commandline package manager
ii apt-config-icons 0.15.2-2 all APT configuration snippet to enable icon downloads
ii apt-utils 2.4.8 amd64 package management related utility programs
ii aptdaemon 1.1.1+bzr982-0ubuntu39 all transaction based package management service
ii aptdaemon-data 1.1.1+bzr982-0ubuntu39 all data files for clients
ii aspell 0.60.8-4build1 amd64 GNU Aspell spell-checker
ii aspell-en 2018.04.16-0-1 all English dictionary for GNU Aspell
ii at 3.2.5-1ubuntu1 amd64 Delayed job execution and batch processing
ii at-spi2-core 2.44.0-3 amd64 Assistive Technology Service Provider Interface (dbus core)
ii autoconf 2.71-2 all automatic configure script builder
ii automake 1:1.16.5-1.3 all Tool for generating GNU Standards-compliant Makefiles
ii autotools-dev 20220109.1 all Update infrastructure for config.{guess,sub} files
ii avahi-daemon 0.8-5ubuntu5 amd64 Avahi mDNS/DNS-SD daemon
ii avahi-utils 0.8-5ubuntu5 amd64 Avahi browsing, publishing and discovery utilities
ii baobab 41.0-2 amd64 GNOME disk usage analyzer
ii base-files 12ubuntu4.2 amd64 Debian base system miscellaneous files
ii base-passwd 3.5.52build1 amd64 Debian base system master password and group files
ii bash 5.1-6ubuntu1 amd64 GNU Bourne Again SHell
ii bash-completion 1:2.11-5ubuntu1 all programmable completion for the bash shell
ii bc 1.07.1-3build1 amd64 GNU bc arbitrary precision calculator language
ii bcache-tools 1.0.8-4ubuntu3 amd64 bcache userspace tools
ii bind9-dnsutils 1:9.18.1-1ubuntu1.2 amd64 Clients provided with BIND 9
ii bind9-host 1:9.18.1-1ubuntu1.2 amd64 DNS Lookup Utility
ii bind9-libs:amd64 1:9.18.1-1ubuntu1.2 amd64 Shared Libraries used by BIND 9
ii binutils 2.38-4ubuntu2.1 amd64 GNU assembler, linker and binary utilities
ii binutils-common:amd64 2.38-4ubuntu2.1 amd64 Common files for the GNU assembler, linker and binary utilities
ii binutils-x86-64-linux-gnu 2.38-4ubuntu2.1 amd64 GNU binary utilities, for x86-64-linux-gnu target
ii bison 2:3.8.2+dfsg-1build1 amd64 YACC-compatible parser generator
ii bluez 5.64-0ubuntu1 amd64 Bluetooth tools and daemons
ii bluez-obexd 5.64-0ubuntu1 amd64 bluez obex daemon
ii bogofilter 1.2.5-1build2 amd64 fast Bayesian spam filter (meta package)
ii bogofilter-bdb 1.2.5-1build2 amd64 fast Bayesian spam filter (Berkeley DB)
ii bogofilter-common 1.2.5-1build2 amd64 fast Bayesian spam filter (common files)
ii bolt 0.9.2-1 amd64 system daemon to manage thunderbolt 3 devices
ii brasero-common 3.12.3-1 all Common files for the Brasero CD burning application and library
ii bsdextrautils 2.37.2-4ubuntu3 amd64 extra utilities from 4.4BSD-Lite
ii bsdutils 1:2.37.2-4ubuntu3 amd64 basic utilities from 4.4BSD-Lite
ii btrfs-progs 5.16.2-1 amd64 Checksumming Copy on Write Filesystem utilities
ii bubblewrap 0.6.1-1 amd64 utility for unprivileged chroot and namespace manipulation
ii build-essential 12.9ubuntu3 amd64 Informational list of build-essential packages
ii busybox-initramfs 1:1.30.1-7ubuntu3 amd64 Standalone shell setup for initramfs
ii busybox-static 1:1.30.1-7ubuntu3 amd64 Standalone rescue shell with tons of builtin utilities
ii byobu 5.133-1 all text window manager, shell multiplexer, integrated DevOps environment
ii bzip2 1.0.8-5build1 amd64 high-quality block-sorting file compressor - utilities
ii ca-certificates 20211016ubuntu0.22.04.1 all Common CA certificates
ii ca-certificates-java 20190909 all Common CA certificates (JKS keystore)
ii caribou 0.4.21-7.2 amd64 Configurable on screen keyboard with scanning mode
ii cdrdao 1:1.2.4-2 amd64 records CDs in Disk-At-Once (DAO) mode
ii cheese 41.1-1build1 amd64 tool to take pictures and videos from your webcam
ii cheese-common 41.1-1build1 all Common files for the Cheese tool to take pictures and videos
ii chrome-gnome-shell 10.1-5 all GNOME Shell extensions integration for web browsers
ii colord 1.4.6-1 amd64 system service to manage device colour profiles -- system daemon
ii colord-data 1.4.6-1 all system service to manage device colour profiles -- data files
ii command-not-found 22.04.0 all Suggest installation of packages in interactive bash sessions
ii console-setup 1.205ubuntu3 all console font and keymap setup program
ii console-setup-linux 1.205ubuntu3 all Linux specific part of console-setup
ii containerd.io 1.6.14-1 amd64 An open and reliable container runtime
ii coreutils 8.32-4.1ubuntu1 amd64 GNU core utilities
ii cpio 2.13+dfsg-7 amd64 GNU cpio -- a program to manage archives of files
ii cpp 4:11.2.0-1ubuntu1 amd64 GNU C preprocessor (cpp)
ii cpp-11 11.3.0-1ubuntu1~22.04 amd64 GNU C preprocessor
ii cracklib-runtime 2.9.6-3.4build4 amd64 runtime support for password checker library cracklib2
ii cron 3.0pl1-137ubuntu3 amd64 process scheduling daemon
ii cryptsetup 2:2.4.3-1ubuntu1.1 amd64 disk encryption support - startup scripts
ii cryptsetup-bin 2:2.4.3-1ubuntu1.1 amd64 disk encryption support - command line tools
ii cryptsetup-initramfs 2:2.4.3-1ubuntu1.1 all disk encryption support - initramfs integration
ii cups-pk-helper 0.2.6-1ubuntu5 amd64 PolicyKit helper to configure cups with fine-grained privileges
ii curl 7.81.0-1ubuntu1.6 amd64 command line tool for transferring data with URL syntax
ii dash 0.5.11+git20210903+057cd650a4ed-3build1 amd64 POSIX-compliant shell
ii dbus 1.12.20-2ubuntu4.1 amd64 simple interprocess messaging system (daemon and utilities)
ii dbus-user-session 1.12.20-2ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)
ii dconf-cli 0.40.0-3 amd64 simple configuration storage system - utilities
ii dconf-gsettings-backend:amd64 0.40.0-3 amd64 simple configuration storage system - GSettings back-end
ii dconf-service 0.40.0-3 amd64 simple configuration storage system - D-Bus service
ii debconf 1.5.79ubuntu1 all Debian configuration management system
ii debconf-i18n 1.5.79ubuntu1 all full internationalization support for debconf
ii debianutils 5.5-1ubuntu2 amd64 Miscellaneous utilities specific to Debian
ii desktop-base 11.0.3ubuntu1 all common files for the Debian Desktop
ii desktop-file-utils 0.26-1ubuntu3 amd64 Utilities for .desktop files
ii dictionaries-common 1.28.14 all spelling dictionaries - common utilities
ii diffutils 1:3.8-0ubuntu2 amd64 File comparison utilities
ii dirmngr 2.2.27-3ubuntu2.1 amd64 GNU privacy guard - network certificate management service
ii distro-info 1.1build1 amd64 provides information about the distributions' releases
ii distro-info-data 0.52ubuntu0.2 all information about the distributions' releases (data files)
ii dleyna-server 0.6.0-2build2 amd64 DBus service to interact with DLNA Digital Media Servers
ii dmeventd 2:1.02.175-2.1ubuntu4 amd64 Linux Kernel Device Mapper event daemon
ii dmidecode 3.3-3ubuntu0.1 amd64 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.175-2.1ubuntu4 amd64 Linux Kernel Device Mapper userspace library
ii dns-root-data 2021011101 all DNS root data including root zone and DNSSEC key
ii dnsmasq-base 2.86-1.1ubuntu0.1 amd64 Small caching DNS proxy and DHCP/TFTP server
ii docbook-xml 4.5-11 all standard XML documentation system for software and systems
ii docker-ce 5:20.10.22~3-0~ubuntu-jammy amd64 Docker: the open-source application container engine
ii docker-ce-cli 5:20.10.22~3-0~ubuntu-jammy amd64 Docker CLI: the open-source application container engine
ii docker-ce-rootless-extras 5:20.10.22~3-0~ubuntu-jammy amd64 Rootless support for Docker.
ii docker-compose-plugin 2.14.1~ubuntu-jammy amd64 Docker Compose (V2) plugin for the Docker CLI.
ii docker-scan-plugin 0.23.0~ubuntu-jammy amd64 Docker scan cli plugin.
ii dosfstools 4.2-1build3 amd64 utilities for making and checking MS-DOS FAT filesystems
ii dpkg 1.21.1ubuntu2.1 amd64 Debian package management system
ii dpkg-dev 1.21.1ubuntu2.1 all Debian package development tools
ii e2fsprogs 1.46.5-2ubuntu1.1 amd64 ext2/ext3/ext4 file system utilities
ii ed 1.18-1 amd64 classic UNIX line editor
ii efibootmgr 17-1ubuntu2 amd64 Interact with the EFI Boot Manager
ii emacsen-common 3.0.4 all Common facilities for all emacsen
ii enchant-2 2.3.2-1ubuntu2 amd64 Wrapper for various spell checker engines (binary programs)
ii eog 42.0-1 amd64 Eye of GNOME graphics viewer program
ii espeak-ng-data:amd64 1.50+dfsg-10 amd64 Multi-lingual software speech synthesizer: speech data files
ii etckeeper 1.18.16-1 all store /etc in git, mercurial, brz or darcs
ii ethtool 1:5.16-1 amd64 display or change Ethernet device settings
ii evince 42.3-0ubuntu2 amd64 Document (PostScript, PDF) viewer
ii evince-common 42.3-0ubuntu2 all Document (PostScript, PDF) viewer - common files
ii evolution 3.44.4-0ubuntu1 amd64 groupware suite with mail client and organizer
ii evolution-common 3.44.4-0ubuntu1 all architecture independent files for Evolution
ii evolution-data-server 3.44.4-0ubuntu1 amd64 evolution database backend server
ii evolution-data-server-common 3.44.4-0ubuntu1 all architecture independent files for Evolution Data Server
ii evolution-plugin-bogofilter 3.44.4-0ubuntu1 amd64 standard plugins for Evolution (bogofilter)
ii evolution-plugin-pstimport 3.44.4-0ubuntu1 amd64 standard plugins for Evolution (pstimport)
ii evolution-plugins 3.44.4-0ubuntu1 amd64 standard plugins for Evolution
ii fakeroot 1.28-1ubuntu1 amd64 tool for simulating superuser privileges
ii fdisk 2.37.2-4ubuntu3 amd64 collection of partitioning utilities
ii file 1:5.41-3 amd64 Recognize the type of data in a file using "magic" numbers
ii file-roller 3.42.0-1 amd64 archive manager for GNOME
ii finalrd 9build1 all final runtime directory for shutdown
ii findutils 4.8.0-1ubuntu3 amd64 utilities for finding files--find, xargs
ii firefox 1:1snap1-0ubuntu2 amd64 Transitional package - firefox -> firefox snap
ii firmware-sof-signed 2.0-1ubuntu4 all Intel SOF firmware - signed
ii five-or-more 1:3.32.3-1 amd64 make color lines of five or more length
ii folks-common 0.15.5-2 all library to aggregates people into metacontacts (common files)
ii fontconfig 2.13.1-4.2ubuntu5 amd64 generic font configuration library - support binaries
ii fontconfig-config 2.13.1-4.2ubuntu5 all generic font configuration library - configuration
ii fonts-cantarell 0.303-2 all sans serif font family designed for on-screen readability
ii fonts-dejavu-core 2.37-2build1 all Vera font family derivate with additional characters
ii fonts-dejavu-extra 2.37-2build1 all Vera font family derivate with additional characters (extra variants)
ii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)
ii fonts-lato 2.0-2.1 all sans-serif typeface family font
ii fonts-liberation 1:1.07.4-11 all Fonts with the same metrics as Times, Arial and Courier
ii fonts-liberation2 2.1.5-1 all Fonts with the same metrics as Times, Arial and Courier (v2)
ii fonts-noto-color-emoji 2.034-1 all color emoji font from Google
ii fonts-noto-mono 20201225-1build1 all "No Tofu" monospaced font family with large Unicode coverage
ii fonts-opensymbol 2:102.12+LibO7.3.7-0ubuntu0.22.04.1 all OpenSymbol TrueType font
ii fonts-quicksand 0.2016-2.1 all sans-serif font with round attributes
ii fonts-ubuntu 0.83-6ubuntu1 all sans-serif font set from Ubuntu
ii fonts-ubuntu-console 0.83-6ubuntu1 all console version of the Ubuntu Mono font
ii fonts-urw-base35 20200910-1 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts
ii four-in-a-row 1:3.38.1-1build1 amd64 Four in a Row game for GNOME
ii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly
ii fuse3 3.10.5-1build1 amd64 Filesystem in Userspace (3.x version)
ii fwupd 1.7.9-1~22.04.1 amd64 Firmware update daemon
ii fwupd-signed 1.44+1.2-3 amd64 Linux Firmware Updater EFI signed binary
ii g++ 4:11.2.0-1ubuntu1 amd64 GNU C++ compiler
ii g++-11 11.3.0-1ubuntu1~22.04 amd64 GNU C++ compiler
ii gawk 1:5.1.0-1build3 amd64 GNU awk, a pattern scanning and processing language
ii gcc 4:11.2.0-1ubuntu1 amd64 GNU C compiler
ii gcc-11 11.3.0-1ubuntu1~22.04 amd64 GNU C compiler
ii gcc-11-base:amd64 11.3.0-1ubuntu1~22.04 amd64 GCC, the GNU Compiler Collection (base package)
ii gcc-12-base:amd64 12.1.0-2ubuntu1~22.04 amd64 GCC, the GNU Compiler Collection (base package)
ii gconf-service 3.2.6-7ubuntu2 amd64 GNOME configuration database system (D-Bus service)
ii gconf-service-backend 3.2.6-7ubuntu2 amd64 GNOME configuration database system (D-Bus service)
ii gconf2-common 3.2.6-7ubuntu2 all GNOME configuration database system (common files)
ii gcr 3.40.0-4 amd64 GNOME crypto services (daemon and tools)
ii gdisk 1.0.8-4build1 amd64 GPT fdisk text-mode partitioning tool
ii gdm3 42.0-1ubuntu7 amd64 GNOME Display Manager
ii gedit 41.0-3 amd64 official text editor of the GNOME desktop environment
ii gedit-common 41.0-3 all official text editor of the GNOME desktop environment (support files)
ii geoclue-2.0 2.5.7-3ubuntu3 amd64 geoinformation service
ii gettext 0.21-4ubuntu4 amd64 GNU Internationalization utilities
ii gettext-base 0.21-4ubuntu4 amd64 GNU Internationalization utilities for the base system
ii ghostscript 9.55.0~dfsg1-0ubuntu5.1 amd64 interpreter for the PostScript language and for PDF
ii gir1.2-accountsservice-1.0:amd64 22.07.5-2ubuntu1.3 amd64 GObject introspection data for AccountService
ii gir1.2-adw-1:amd64 1.1.0-1ubuntu2 amd64 GObject introspection files for libadwaita
ii gir1.2-atk-1.0:amd64 2.36.0-3build1 amd64 ATK accessibility toolkit (GObject introspection)
ii gir1.2-atspi-2.0:amd64 2.44.0-3 amd64 Assistive Technology Service Provider (GObject introspection)
ii gir1.2-caribou-1.0 0.4.21-7.2 amd64 GObject introspection for the Caribou library
ii gir1.2-champlain-0.12:amd64 0.12.20-1build1 amd64 C library providing ClutterActor to display maps (GObject introspection)
ii gir1.2-clutter-1.0:amd64 1.26.4+dfsg-4build1 amd64 GObject introspection data for the Clutter 1.0 library
ii gir1.2-cogl-1.0:amd64 1.22.8-3build1 amd64 GObject introspection data for the Cogl 1.0 library
ii gir1.2-coglpango-1.0:amd64 1.22.8-3build1 amd64 GObject introspection data for the CoglPango 1.0 library
ii gir1.2-dazzle-1.0:amd64 3.44.0-1 amd64 GObject introspection data for libdazzle
ii gir1.2-evince-3.0:amd64 42.3-0ubuntu2 amd64 GObject introspection data for the evince libraries
ii gir1.2-freedesktop:amd64 1.72.0-1 amd64 Introspection data for some FreeDesktop components
ii gir1.2-gck-1:amd64 3.40.0-4 amd64 GObject introspection data for the GCK library
ii gir1.2-gcr-3:amd64 3.40.0-4 amd64 GObject introspection data for the GCR library
ii gir1.2-gdesktopenums-3.0:amd64 42.0-1ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas
ii gir1.2-gdkpixbuf-2.0:amd64 2.42.8+dfsg-1ubuntu0.2 amd64 GDK Pixbuf library - GObject-Introspection
ii gir1.2-gdm-1.0:amd64 42.0-1ubuntu7 amd64 GObject introspection data for the GNOME Display Manager
ii gir1.2-geoclue-2.0:amd64 2.5.7-3ubuntu3 amd64 convenience library to interact with geoinformation service (introspection)
ii gir1.2-geocodeglib-1.0:amd64 3.26.2-2build2 amd64 introspection data for geocode-glib library
ii gir1.2-gfbgraph-0.2:amd64 0.2.5-2 amd64 GObject library for Facebook Graph API - GObject introspection
ii gir1.2-glib-2.0:amd64 1.72.0-1 amd64 Introspection data for GLib, GObject, Gio and GModule
ii gir1.2-gmenu-3.0:amd64 3.36.0-1ubuntu3 amd64 GObject introspection data for the GNOME menu library
ii gir1.2-gnomebluetooth-3.0:amd64 42.0-5 amd64 Introspection data for GnomeBluetooth
ii gir1.2-gnomedesktop-3.0:amd64 42.5-0ubuntu1 amd64 Introspection data for GnomeDesktop (GTK 3)
ii gir1.2-goa-1.0:amd64 3.44.0-1ubuntu1 amd64 Introspection data for GNOME Online Accounts
ii gir1.2-graphene-1.0:amd64 1.10.8-1 amd64 library of graphic data types (introspection files)
ii gir1.2-grilo-0.3:amd64 0.3.14-1build1 amd64 Framework for discovering and browsing media - GObject introspection data
ii gir1.2-gst-plugins-bad-1.0:amd64 1.20.3-0ubuntu1 amd64 GObject introspection data for the GStreamer libraries from the "bad" set
ii gir1.2-gst-plugins-base-1.0:amd64 1.20.1-1 amd64 GObject introspection data for the GStreamer Plugins Base library
ii gir1.2-gstreamer-1.0:amd64 1.20.3-0ubuntu1 amd64 GObject introspection data for the GStreamer library
ii gir1.2-gtk-3.0:amd64 3.24.33-1ubuntu2 amd64 GTK graphical user interface library -- gir bindings
ii gir1.2-gtk-4.0:amd64 4.6.6+ds-0ubuntu1 amd64 GTK graphical user interface library -- gir bindings
ii gir1.2-gtkchamplain-0.12:amd64 0.12.20-1build1 amd64 Gtk+ widget to display maps (GObject introspection)
ii gir1.2-gtkclutter-1.0:amd64 1.8.4-4build2 amd64 GObject introspection data for the GTK+ Clutter library
ii gir1.2-gtksource-4:amd64 4.8.3-1 amd64 gir files for the GTK+ syntax highlighting widget
ii gir1.2-gweather-3.0:amd64 40.0-5build1 amd64 GObject introspection data for the GWeather library
ii gir1.2-handy-1:amd64 1.6.1-1 amd64 GObject introspection files for libhandy
ii gir1.2-harfbuzz-0.0:amd64 2.7.4-1ubuntu3.1 amd64 OpenType text shaping engine (GObject introspection data)
ii gir1.2-ibus-1.0:amd64 1.5.26-4 amd64 Intelligent Input Bus - introspection data
ii gir1.2-javascriptcoregtk-4.0:amd64 2.38.2-0ubuntu0.22.04.2 amd64 JavaScript engine library from WebKitGTK - GObject introspection data
ii gir1.2-json-1.0:amd64 1.6.6-1build1 amd64 GLib JSON manipulation library (introspection data)
ii gir1.2-mediaart-2.0:amd64 1.9.5-2build1 amd64 GObject introspection data for MediaArt library
ii gir1.2-mutter-10:amd64 42.5-0ubuntu1 amd64 GObject introspection data for Mutter
ii gir1.2-nm-1.0:amd64 1.36.6-0ubuntu2 amd64 GObject introspection data for the libnm library
ii gir1.2-nma-1.0:amd64 1.8.34-1ubuntu1 amd64 GObject introspection data for libnma
ii gir1.2-notify-0.7:amd64 0.7.9-3ubuntu5.22.04.1 amd64 sends desktop notifications to a notification daemon (Introspection files)
ii gir1.2-packagekitglib-1.0 1.2.5-2ubuntu2 amd64 GObject introspection data for the PackageKit GLib library
ii gir1.2-pango-1.0:amd64 1.50.6+ds-2 amd64 Layout and rendering of internationalized text - gir bindings
ii gir1.2-peas-1.0:amd64 1.32.0-1 amd64 Application plugin library (introspection files)
ii gir1.2-polkit-1.0 0.105-33 amd64 GObject introspection data for PolicyKit
ii gir1.2-rb-3.0:amd64 3.4.4-5ubuntu1 amd64 GObject introspection data for the rhythmbox music player
ii gir1.2-rest-0.7 0.8.1-1.1build2 amd64 REST service access library (introspection files)
ii gir1.2-rsvg-2.0:amd64 2.52.5+dfsg-3 amd64 gir files for renderer library for SVG files
ii gir1.2-secret-1:amd64 0.20.5-2 amd64 Secret store (GObject-Introspection)
ii gir1.2-snapd-1:amd64 1.60-0ubuntu1 amd64 Typelib file for libsnapd-glib1
ii gir1.2-soup-2.4:amd64 2.74.2-3 amd64 GObject introspection data for the libsoup HTTP library
ii gir1.2-totem-1.0:amd64 42.0-1ubuntu1 amd64 GObject introspection data for Totem media player
ii gir1.2-totemplparser-1.0:amd64 3.26.6-1build1 amd64 GObject introspection data for the Totem Playlist Parser library
ii gir1.2-tracker-3.0:amd64 3.3.0-1 amd64 GObject introspection data for Tracker
ii gir1.2-upowerglib-1.0:amd64 0.99.17-1 amd64 GObject introspection data for upower
ii gir1.2-vte-2.91:amd64 0.68.0-1 amd64 GObject introspection data for the VTE library
ii gir1.2-webkit2-4.0:amd64 2.38.2-0ubuntu0.22.04.2 amd64 Web content engine library for GTK - GObject introspection data
ii gir1.2-wnck-3.0:amd64 40.1-1 amd64 GObject introspection data for the WNCK library
ii git 1:2.34.1-1ubuntu1.5 amd64 fast, scalable, distributed revision control system
ii git-crypt 0.6.0-1ubuntu1 amd64 Transparent file encryption in git
ii git-man 1:2.34.1-1ubuntu1.5 all fast, scalable, distributed revision control system (manual pages)
ii gjs 1.72.2-0ubuntu1 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)
ii gkbd-capplet 3.26.1-2 amd64 GNOME control center tools for libgnomekbd
ii glib-networking:amd64 2.72.0-1 amd64 network-related giomodules for GLib
ii glib-networking-common 2.72.0-1 all network-related giomodules for GLib - data files
ii glib-networking-services 2.72.0-1 amd64 network-related giomodules for GLib - D-Bus services
ii gnome 1:42+3 amd64 Full GNOME Desktop Environment, with extra components
ii gnome-2048 3.38.2-2 amd64 sliding tile puzzle game
ii gnome-accessibility-themes 3.28-1ubuntu3 all High Contrast GTK+ 2 theme and icons
ii gnome-backgrounds 42.0-1 all Set of backgrounds packaged with the GNOME desktop
ii gnome-bluetooth 3.34.5-8 amd64 GNOME Bluetooth Send To app
ii gnome-bluetooth-3-common 42.0-5 all GNOME Bluetooth 3 common files
ii gnome-bluetooth-common 3.34.5-8 all GNOME Bluetooth common files
ii gnome-calculator 1:41.1-2ubuntu2 amd64 GNOME desktop calculator
ii gnome-calendar 41.2-3 amd64 Calendar application for GNOME
ii gnome-characters 41.0-4 amd64 character map application
ii gnome-chess 1:41.1-1 amd64 simple chess game
ii gnome-clocks 41.0-2 amd64 Simple GNOME app with stopwatch, timer, and world clock support
ii gnome-color-manager 3.36.0-1build1 amd64 Color management integration for the GNOME desktop environment
ii gnome-contacts 41.0-2 amd64 Contacts manager for GNOME
ii gnome-control-center 1:41.7-0ubuntu0.22.04.5 amd64 utilities to configure the GNOME desktop
ii gnome-control-center-data 1:41.7-0ubuntu0.22.04.5 all configuration applets for GNOME - data files
ii gnome-control-center-faces 1:41.7-0ubuntu0.22.04.5 all utilities to configure the GNOME desktop - faces images
ii gnome-core 1:42+3 amd64 GNOME Desktop Environment -- essential components
ii gnome-desktop3-data 42.5-0ubuntu1 all Common files for GNOME desktop apps
ii gnome-disk-utility 42.0-1ubuntu1 amd64 manage and configure disk drives and media
ii gnome-font-viewer 41.0-2 amd64 font viewer for GNOME
ii gnome-games 1:42+3 all games for the GNOME desktop
ii gnome-keyring 40.0-3ubuntu3 amd64 GNOME keyring services (daemon and tools)
ii gnome-keyring-pkcs11:amd64 40.0-3ubuntu3 amd64 GNOME keyring module for the PKCS#11 module loading library
ii gnome-klotski 1:3.38.2-1build1 amd64 Klotski puzzle game for GNOME
ii gnome-logs 42.0-1 amd64 viewer for the systemd journal
ii gnome-mahjongg 1:3.38.3-2 amd64 classic Eastern tile game for GNOME
ii gnome-maps 42.3-0ubuntu1 amd64 map application for GNOME
ii gnome-menus 3.36.0-1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification
ii gnome-mines 1:40.1-1 amd64 popular minesweeper puzzle game for GNOME
ii gnome-music 41.1-0ubuntu1 amd64 Music is the new GNOME music playing application
ii gnome-nibbles 1:3.38.2-2 amd64 snake game, up to four players
ii gnome-online-accounts 3.44.0-1ubuntu1 amd64 service to manage online accounts for the GNOME desktop
ii gnome-online-miners 3.34.0-4 amd64 Crawls through your online content
ii gnome-remote-desktop 42.4-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire
ii gnome-robots 1:40.0-2 amd64 improved old BSD robots game
ii gnome-session 42.0-1ubuntu2 all GNOME Session Manager - GNOME 3 session
ii gnome-session-bin 42.0-1ubuntu2 amd64 GNOME Session Manager - Minimal runtime
ii gnome-session-common 42.0-1ubuntu2 all GNOME Session Manager - common files
ii gnome-settings-daemon 42.1-1ubuntu2.1 amd64 daemon handling the GNOME session settings
ii gnome-settings-daemon-common 42.1-1ubuntu2.1 all daemon handling the GNOME session settings - common files
ii gnome-shell 42.5-0ubuntu1 amd64 graphical shell for the GNOME desktop
ii gnome-shell-common 42.5-0ubuntu1 all common files for the GNOME graphical shell
ii gnome-shell-extension-prefs 42.5-0ubuntu1 amd64 tool to enable / disable GNOME Shell extensions
ii gnome-shell-extensions 42.1-0ubuntu1 all Extensions to extend functionality of GNOME Shell
ii gnome-software 41.5-2ubuntu2 amd64 Software Center for GNOME
ii gnome-software-common 41.5-2ubuntu2 all Software Center for GNOME (common files)
ii gnome-software-plugin-snap 41.5-2ubuntu2 amd64 Snap support for GNOME Software
ii gnome-sound-recorder 42.0-1 all simple and modern sound recorder for GNOME
ii gnome-startup-applications 42.0-1ubuntu2 amd64 Startup Applications manager for GNOME
ii gnome-sudoku 1:42.0-1 amd64 Sudoku puzzle game for GNOME
ii gnome-sushi 42.0-0ubuntu1 amd64 sushi is a quick previewer for nautilus
ii gnome-system-monitor 42.0-1 amd64 Process viewer and system resource monitor for GNOME
ii gnome-taquin 3.38.1-2 amd64 game to move tiles so that they reach their places
ii gnome-terminal 3.44.0-1ubuntu1 amd64 GNOME terminal emulator application
ii gnome-terminal-data 3.44.0-1ubuntu1 all Data files for the GNOME terminal emulator
ii gnome-tetravex 1:3.38.2-3 amd64 put tiles on a board and match their edges together
ii gnome-themes-extra:amd64 3.28-1ubuntu3 amd64 Adwaita GTK+ 2 theme — engine
ii gnome-themes-extra-data 3.28-1ubuntu3 all Adwaita GTK+ 2 theme — common files
ii gnome-todo 3.28.1-6ubuntu1 amd64 minimalistic personal task manager designed to fit GNOME desktop
ii gnome-todo-common 3.28.1-6ubuntu1 all common files for GNOME To Do
ii gnome-tweaks 42~beta-1ubuntu2 all tool to adjust advanced configuration settings for GNOME
ii gnome-user-docs 41.5-1ubuntu2 all GNOME Help
ii gnome-user-share 3.34.0-5 amd64 User level public file sharing via WebDAV
ii gnome-video-effects 0.5.0-1ubuntu1 all Collection of GStreamer effects
ii gnome-weather 41.0-3ubuntu2 all access current conditions and forecasts
ii gnupg 2.2.27-3ubuntu2.1 all GNU privacy guard - a free PGP replacement
ii gnupg-l10n 2.2.27-3ubuntu2.1 all GNU privacy guard - localization files
ii gnupg-utils 2.2.27-3ubuntu2.1 amd64 GNU privacy guard - utility programs
ii gnupg2 2.2.27-3ubuntu2.1 all GNU privacy guard - a free PGP replacement (dummy transitional package)
ii gpg 2.2.27-3ubuntu2.1 amd64 GNU Privacy Guard -- minimalist public key operations
ii gpg-agent 2.2.27-3ubuntu2.1 amd64 GNU privacy guard - cryptographic agent
ii gpg-wks-client 2.2.27-3ubuntu2.1 amd64 GNU privacy guard - Web Key Service client
ii gpg-wks-server 2.2.27-3ubuntu2.1 amd64 GNU privacy guard - Web Key Service server
ii gpgconf 2.2.27-3ubuntu2.1 amd64 GNU privacy guard - core configuration utilities
ii gpgsm 2.2.27-3ubuntu2.1 amd64 GNU privacy guard - S/MIME version
ii gpgv 2.2.27-3ubuntu2.1 amd64 GNU privacy guard - signature verification tool
ii gpgv2 2.2.27-3ubuntu2.1 all GNU privacy guard - signature verification tool (dummy transitional package)
ii graphviz 2.42.2-6 amd64 rich set of graph drawing tools
ii grep 3.7-1build1 amd64 GNU grep, egrep and fgrep
ii grilo-plugins-0.3 0.3.14-1ubuntu2 all transitional package
ii grilo-plugins-0.3-base:amd64 0.3.14-1ubuntu2 amd64 Framework for discovering and browsing media - Plugins
ii grilo-plugins-0.3-extra:amd64 0.3.14-1ubuntu2 amd64 Framework for discovering and browsing media - Extra Plugins
ii groff-base 1.22.4-8build1 amd64 GNU troff text-formatting system (base system components)
ii grub-common 2.06-2ubuntu7 amd64 GRand Unified Bootloader (common files)
ii grub-efi-amd64 2.06-2ubuntu10 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version)
ii grub-efi-amd64-bin 2.06-2ubuntu10 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)
ii grub-pc-bin 2.06-2ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)
ii grub2-common 2.06-2ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)
ii gsettings-desktop-schemas 42.0-1ubuntu1 all GSettings desktop-wide schemas
ii gsfonts 1:8.11+urwcyr1.0.7~pre44-4.5 all Fonts for the Ghostscript interpreter(s)
ii gstreamer1.0-clutter-3.0:amd64 3.0.27-2ubuntu1 amd64 Clutter PLugin for GStreamer 1.0
ii gstreamer1.0-gl:amd64 1.20.1-1 amd64 GStreamer plugins for GL
ii gstreamer1.0-gtk3:amd64 1.20.3-0ubuntu1 amd64 GStreamer plugin for GTK+3
ii gstreamer1.0-libav:amd64 1.20.3-0ubuntu1 amd64 ffmpeg plugin for GStreamer
ii gstreamer1.0-packagekit 1.2.5-2ubuntu2 amd64 GStreamer plugin to install codecs using PackageKit
ii gstreamer1.0-pipewire:amd64 0.3.48-1ubuntu2 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server
ii gstreamer1.0-plugins-base:amd64 1.20.1-1 amd64 GStreamer plugins from the "base" set
ii gstreamer1.0-plugins-good:amd64 1.20.3-0ubuntu1 amd64 GStreamer plugins from the "good" set
ii gstreamer1.0-plugins-ugly:amd64 1.20.1-1 amd64 GStreamer plugins from the "ugly" set
ii gstreamer1.0-pulseaudio:amd64 1.20.3-0ubuntu1 amd64 GStreamer plugin for PulseAudio (transitional package)
ii gstreamer1.0-x:amd64 1.20.1-1 amd64 GStreamer plugins for X11 and Pango
ii gtk-update-icon-cache 3.24.33-1ubuntu2 amd64 icon theme caching utility
ii gtk2-engines-pixbuf:amd64 2.24.33-2ubuntu2 amd64 pixbuf-based theme for GTK 2
ii guile-2.2-libs:amd64 2.2.7+1-6build2 amd64 Core Guile libraries
ii gvfs:amd64 1.48.2-0ubuntu1 amd64 userspace virtual filesystem - GIO module
ii gvfs-backends 1.48.2-0ubuntu1 amd64 userspace virtual filesystem - backends
ii gvfs-common 1.48.2-0ubuntu1 all userspace virtual filesystem - common data files
ii gvfs-daemons 1.48.2-0ubuntu1 amd64 userspace virtual filesystem - servers
ii gvfs-fuse 1.48.2-0ubuntu1 amd64 userspace virtual filesystem - fuse server
ii gvfs-libs:amd64 1.48.2-0ubuntu1 amd64 userspace virtual filesystem - private libraries
ii gzip 1.10-4ubuntu4.1 amd64 GNU compression utilities
ii hdparm 9.60+ds-1build3 amd64 tune hard disk parameters for high performance
ii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes
ii hitori 3.38.3-1 amd64 logic puzzle game similar to sudoku
ii hoichess 0.22.0-2 amd64 xboard compatible chess engine to play chess with
ii hostname 3.23ubuntu2 amd64 utility to set/show the host name or domain name
ii htop 3.0.5-7build2 amd64 interactive processes viewer
ii humanity-icon-theme 0.6.16 all Humanity Icon theme
ii hunspell 1.7.0-4build1 amd64 spell checker and morphological analyzer (program)
ii hunspell-de-ch 20161207-9 all Swiss (German) dictionary for hunspell
ii hunspell-de-de 20161207-9 all German dictionary for hunspell
ii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell
ii hunspell-tools 1.7.0-4build1 amd64 tools for hunspell
ii i965-va-driver:amd64 2.4.1+dfsg1-1 amd64 VAAPI driver for Intel G45 & HD Graphics family
ii iagno 1:3.38.1-2 amd64 popular Othello game for GNOME
ii ibus 1.5.26-4 amd64 Intelligent Input Bus - core
ii ibus-data 1.5.26-4 all Intelligent Input Bus - data files
ii ibus-gtk:amd64 1.5.26-4 amd64 Intelligent Input Bus - GTK2 support
ii ibus-gtk3:amd64 1.5.26-4 amd64 Intelligent Input Bus - GTK3 support
ii ibus-gtk4:amd64 1.5.26-4 amd64 Intelligent Input Bus - GTK4 support
ii ieee-data 20210605.1 all OUI and IAB listings
ii iio-sensor-proxy 3.3-0ubuntu6 amd64 IIO sensors to D-Bus proxy
ii im-config 0.50-2 all Input method configuration framework
ii imagemagick 8:6.9.11.60+dfsg-1.3build2 amd64 image manipulation programs -- binaries
ii imagemagick-6-common 8:6.9.11.60+dfsg-1.3build2 all image manipulation programs -- infrastructure
ii imagemagick-6.q16 8:6.9.11.60+dfsg-1.3build2 amd64 image manipulation programs -- quantum depth Q16
ii info 6.8-4build1 amd64 Standalone GNU Info documentation browser
ii init 1.62 amd64 metapackage ensuring an init system is installed
ii init-system-helpers 1.62 all helper tools for all init systems
ii initramfs-tools 0.140ubuntu13.1 all generic modular initramfs generator (automation)
ii initramfs-tools-bin 0.140ubuntu13.1 amd64 binaries used by initramfs-tools
ii initramfs-tools-core 0.140ubuntu13.1 all generic modular initramfs generator (core tools)
ii install-info 6.8-4build1 amd64 Manage installed documentation in info format
ii intel-media-va-driver:amd64 22.3.1+dfsg1-1ubuntu1 amd64 VAAPI driver for the Intel GEN8+ Graphics family
ii intel-microcode 3.20220809.0ubuntu0.22.04.1 amd64 Processor microcode firmware for Intel CPUs
ii ipp-usb 0.9.20-1 amd64 Daemon for IPP over USB printer support
ii iproute2 5.15.0-1ubuntu2 amd64 networking and traffic control tools
ii iptables 1.8.7-1ubuntu5 amd64 administration tools for packet filtering and NAT
ii iputils-ping 3:20211215-1 amd64 Tools to test the reachability of network hosts
ii iputils-tracepath 3:20211215-1 amd64 Tools to trace the network path to a remote host
ii irqbalance 1.8.0-1build1 amd64 Daemon to balance interrupts for SMP systems
ii isc-dhcp-client 4.4.1-2.3ubuntu2.3 amd64 DHCP client for automatically obtaining an IP address
ii isc-dhcp-common 4.4.1-2.3ubuntu2.3 amd64 common manpages relevant to all of the isc-dhcp packages
ii iso-codes 4.9.0-1 all ISO language, territory, currency, script codes and their translations
ii iucode-tool 2.3.1-1build1 amd64 Intel processor microcode tool
ii java-common 0.72build2 all Base package for Java runtimes
ii javascript-common 11+nmu1 all Base support for JavaScript library packages
ii jq 1.6-2.1ubuntu3 amd64 lightweight and flexible command-line JSON processor
ii kbd 2.3.0-3ubuntu4 amd64 Linux console font and keytable utilities
ii keyboard-configuration 1.205ubuntu3 all system-wide keyboard preferences
ii klibc-utils 2.0.10-4 amd64 small utilities built with klibc for early boot
ii kmod 29-1ubuntu1 amd64 tools for managing Linux kernel modules
ii kpartx 0.8.8-1ubuntu1.22.04.1 amd64 create device mappings for partitions
ii landscape-common 19.12-0ubuntu13 amd64 Landscape administration system client - Common files
ii language-selector-common 0.219 all Language selector for Ubuntu
ii language-selector-gnome 0.219 all Language selector frontend for Ubuntu
ii less 590-1build1 amd64 pager program similar to more
ii liba52-0.7.4:amd64 0.7.4-20 amd64 library for decoding ATSC A/52 streams
ii libaa1:amd64 1.4p5-50build1 amd64 ASCII art library
ii libaacs0:amd64 0.11.1-1 amd64 free-and-libre implementation of AACS
ii libabsl20210324:amd64 0~20210324.2-2 amd64 extensions to the C++ standard library
ii libabw-0.1-1:amd64 0.1.3-1build3 amd64 library for reading and writing AbiWord(tm) documents
ii libaccountsservice0:amd64 22.07.5-2ubuntu1.3 amd64 query and manipulate user account information - shared libraries
ii libacl1:amd64 2.3.1-1 amd64 access control list - shared library
ii libadwaita-1-0:amd64 1.1.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones
ii libaio1:amd64 0.3.112-13build1 amd64 Linux kernel AIO access library - shared library
ii libalgorithm-diff-perl 1.201-1 all module to find differences between files
ii libalgorithm-diff-xs-perl 0.04-6build3 amd64 module to find differences between files (XS accelerated)
ii libalgorithm-merge-perl 0.08-3 all Perl module for three-way merge of textual data
ii libann0 1.1.2+doc-7build1 amd64 Approximate Nearest Neighbor Searching library
ii libao-common 1.2.2+20180113-1.1ubuntu3 all Cross Platform Audio Output Library (Common files)
ii libao4:amd64 1.2.2+20180113-1.1ubuntu3 amd64 Cross Platform Audio Output Library
ii libaom3:amd64 3.3.0-1 amd64 AV1 Video Codec Library
ii libapache2-mod-dnssd 0.6-3.2 amd64 Zeroconf support for Apache 2 via avahi
ii libapache2-mod-xsendfile 0.12-2 amd64 Serve large static files efficiently from web applications
ii libapparmor1:amd64 3.0.4-2ubuntu2.1 amd64 changehat AppArmor library
ii libappstream4:amd64 0.15.2-2 amd64 Library to access AppStream services
ii libapr1:amd64 1.7.0-8build1 amd64 Apache Portable Runtime Library
ii libaprutil1:amd64 1.6.1-5ubuntu4 amd64 Apache Portable Runtime Utility Library
ii libaprutil1-dbd-sqlite3:amd64 1.6.1-5ubuntu4 amd64 Apache Portable Runtime Utility Library - SQLite3 Driver
ii libaprutil1-ldap:amd64 1.6.1-5ubuntu4 amd64 Apache Portable Runtime Utility Library - LDAP Driver
ii libapt-pkg6.0:amd64 2.4.8 amd64 package management runtime library
ii libarchive-zip-perl 1.68-1 all Perl module for manipulation of ZIP archives
ii libarchive13:amd64 3.6.0-1ubuntu1 amd64 Multi-format archive and compression library (shared library)
ii libargon2-1:amd64 0~20171227-0.3 amd64 memory-hard hashing function - runtime library
ii libasan6:amd64 11.3.0-1ubuntu1~22.04 amd64 AddressSanitizer -- a fast memory error detector
ii libasound2:amd64 1.2.6.1-1ubuntu1 amd64 shared library for ALSA applications
ii libasound2-data 1.2.6.1-1ubuntu1 all Configuration files and profiles for ALSA drivers
ii libasound2-plugins:amd64 1.2.6-1 amd64 ALSA library additional plugins
ii libaspell15:amd64 0.60.8-4build1 amd64 GNU Aspell spell-checker runtime library
ii libass9:amd64 1:0.15.2-1 amd64 library for SSA/ASS subtitles rendering
ii libassuan0:amd64 2.5.5-1build1 amd64 IPC library for the GnuPG components
ii libasyncns0:amd64 0.8-6build2 amd64 Asynchronous name service query library
ii libatasmart4:amd64 0.19-5build2 amd64 ATA S.M.A.R.T. reading and parsing library
ii libatk-adaptor:amd64 2.38.0-3 amd64 AT-SPI 2 toolkit bridge
ii libatk-bridge2.0-0:amd64 2.38.0-3 amd64 AT-SPI 2 toolkit bridge - shared library
ii libatk-wrapper-java 0.38.0-5build1 all ATK implementation for Java using JNI
ii libatk-wrapper-java-jni:amd64 0.38.0-5build1 amd64 ATK implementation for Java using JNI (JNI bindings)
ii libatk1.0-0:amd64 2.36.0-3build1 amd64 ATK accessibility toolkit
ii libatk1.0-data 2.36.0-3build1 all Common files for the ATK accessibility toolkit
ii libatkmm-1.6-1v5:amd64 2.28.2-1build1 amd64 C++ wrappers for ATK accessibility toolkit (shared libraries)
ii libatm1:amd64 1:2.5.1-4build2 amd64 shared library for ATM (Asynchronous Transfer Mode)
ii libatomic1:amd64 12.1.0-2ubuntu1~22.04 amd64 support library providing __atomic built-in functions
ii libatspi2.0-0:amd64 2.44.0-3 amd64 Assistive Technology Service Provider Interface - shared library
ii libattr1:amd64 1:2.5.1-1build1 amd64 extended attribute handling - shared library
ii libaudit-common 1:3.0.7-1build1 all Dynamic library for security auditing - common files
ii libaudit1:amd64 1:3.0.7-1build1 amd64 Dynamic library for security auditing
ii libauthen-sasl-perl 2.1600-1.1 all Authen::SASL - SASL Authentication framework
ii libavahi-client3:amd64 0.8-5ubuntu5 amd64 Avahi client library
ii libavahi-common-data:amd64 0.8-5ubuntu5 amd64 Avahi common data files
ii libavahi-common3:amd64 0.8-5ubuntu5 amd64 Avahi common library
ii libavahi-core7:amd64 0.8-5ubuntu5 amd64 Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1:amd64 0.8-5ubuntu5 amd64 Avahi GLib integration library
ii libavc1394-0:amd64 0.5.4-5build2 amd64 control IEEE 1394 audio/video devices
ii libavcodec58:amd64 7:4.4.2-0ubuntu0.22.04.1 amd64 FFmpeg library with de/encoders for audio/video codecs - runtime files
ii libavfilter7:amd64 7:4.4.2-0ubuntu0.22.04.1 amd64 FFmpeg library containing media filters - runtime files
ii libavformat58:amd64 7:4.4.2-0ubuntu0.22.04.1 amd64 FFmpeg library with (de)muxers for multimedia containers - runtime files
ii libavutil56:amd64 7:4.4.2-0ubuntu0.22.04.1 amd64 FFmpeg library with functions for simplifying programming - runtime files
ii libayatana-appindicator3-1 0.5.90-7ubuntu2 amd64 Ayatana Application Indicators (GTK-3+ version)
ii libayatana-ido3-0.4-0:amd64 0.9.1-1 amd64 Widgets and other objects used for Ayatana Indicators
ii libayatana-indicator3-7:amd64 0.9.1-1 amd64 panel indicator applet - shared library (GTK-3+ variant)
ii libbdplus0:amd64 0.2.0-1 amd64 implementation of BD+ for reading Blu-ray Discs
ii libbinutils:amd64 2.38-4ubuntu2.1 amd64 GNU binary utilities (private shared library)
ii libblas3:amd64 3.10.0-2ubuntu1 amd64 Basic Linear Algebra Reference implementations, shared library
ii libblkid1:amd64 2.37.2-4ubuntu3 amd64 block device ID library
ii libblockdev-crypto2:amd64 2.26-1 amd64 Crypto plugin for libblockdev
ii libblockdev-fs2:amd64 2.26-1 amd64 file system plugin for libblockdev
ii libblockdev-loop2:amd64 2.26-1 amd64 Loop device plugin for libblockdev
ii libblockdev-part-err2:amd64 2.26-1 amd64 Partition error utility functions for libblockdev
ii libblockdev-part2:amd64 2.26-1 amd64 Partitioning plugin for libblockdev
ii libblockdev-swap2:amd64 2.26-1 amd64 Swap plugin for libblockdev
ii libblockdev-utils2:amd64 2.26-1 amd64 Utility functions for libblockdev
ii libblockdev2:amd64 2.26-1 amd64 Library for manipulating block devices
ii libbluetooth3:amd64 5.64-0ubuntu1 amd64 Library to use the BlueZ Linux Bluetooth stack
ii libbluray2:amd64 1:1.3.1-1 amd64 Blu-ray disc playback support library (shared library)
ii libboost-filesystem1.74.0:amd64 1.74.0-14ubuntu3 amd64 filesystem operations (portable paths, iteration over directories, etc) in C++
ii libboost-iostreams1.74.0:amd64 1.74.0-14ubuntu3 amd64 Boost.Iostreams Library
ii libboost-locale1.74.0:amd64 1.74.0-14ubuntu3 amd64 C++ facilities for localization
ii libboost-thread1.74.0:amd64 1.74.0-14ubuntu3 amd64 portable C++ multi-threading
ii libbpf0:amd64 1:0.5.0-1ubuntu22.04.1 amd64 eBPF helper library (shared library)
ii libbrasero-media3-1:amd64 3.12.3-1 amd64 CD/DVD burning library for GNOME - runtime
ii libbrlapi0.8:amd64 6.4-4ubuntu3 amd64 braille display access via BRLTTY - shared library
ii libbrotli1:amd64 1.0.9-2build6 amd64 library implementing brotli encoder and decoder (shared libraries)
ii libbs2b0:amd64 3.1.0+dfsg-2.2build1 amd64 Bauer stereophonic-to-binaural DSP library
ii libbsd0:amd64 0.11.5-1 amd64 utility functions from BSD systems - shared library
ii libburn4:amd64 1.5.4-1 amd64 library to provide CD/DVD/BD writing functions
ii libbz2-1.0:amd64 1.0.8-5build1 amd64 high-quality block-sorting file compressor library - runtime
ii libc-bin 2.35-0ubuntu3.1 amd64 GNU C Library: Binaries
ii libc-dev-bin 2.35-0ubuntu3.1 amd64 GNU C Library: Development binaries
ii libc-devtools 2.35-0ubuntu3.1 amd64 GNU C Library: Development tools
ii libc6:amd64 2.35-0ubuntu3.1 amd64 GNU C Library: Shared libraries
ii libc6-dev:amd64 2.35-0ubuntu3.1 amd64 GNU C Library: Development Libraries and Header Files
ii libcaca0:amd64 0.99.beta19-2.2ubuntu4 amd64 colour ASCII art library
ii libcairo-gobject-perl:amd64 1.005-3build1 amd64 integrate Cairo into the Glib type system in Perl
ii libcairo-gobject2:amd64 1.16.0-5ubuntu2 amd64 Cairo 2D vector graphics library (GObject library)
ii libcairo-perl:amd64 1.109-2build1 amd64 Perl interface to the Cairo graphics library
ii libcairo-script-interpreter2:amd64 1.16.0-5ubuntu2 amd64 Cairo 2D vector graphics library (script interpreter)
ii libcairo2:amd64 1.16.0-5ubuntu2 amd64 Cairo 2D vector graphics library
ii libcairomm-1.0-1v5:amd64 1.12.2-4build3 amd64 C++ wrappers for Cairo (shared libraries)
ii libcamel-1.2-63:amd64 3.44.4-0ubuntu1 amd64 Evolution MIME message handling library
ii libcanberra-gtk3-0:amd64 0.30-10ubuntu1 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra
ii libcanberra-gtk3-module:amd64 0.30-10ubuntu1 amd64 translates GTK3 widgets signals to event sounds
ii libcanberra-pulse:amd64 0.30-10ubuntu1 amd64 PulseAudio backend for libcanberra
ii libcanberra0:amd64 0.30-10ubuntu1 amd64 simple abstract interface for playing event sounds
ii libcap-ng0:amd64 0.7.9-2.2build3 amd64 An alternate POSIX capabilities library
ii libcap2:amd64 1:2.44-1build3 amd64 POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.44-1build3 amd64 POSIX 1003.1e capabilities (utilities)
ii libcaribou-common 0.4.21-7.2 all Configurable on screen keyboard with scanning mode - common files
ii libcaribou0:amd64 0.4.21-7.2 amd64 Configurable on screen keyboard with scanning mode - library
ii libcbor0.8:amd64 0.8.0-2ubuntu1 amd64 library for parsing and generating CBOR (RFC 7049)
ii libcc1-0:amd64 12.1.0-2ubuntu1~22.04 amd64 GCC cc1 plugin for GDB
ii libcdio-cdda2:amd64 10.2+2.0.0-1build3 amd64 library to read and control digital audio CDs
ii libcdio-paranoia2:amd64 10.2+2.0.0-1build3 amd64 library to read digital audio CDs with error correction
ii libcdio19:amd64 2.1.0-3build1 amd64 library to read and control CD-ROM
ii libcdparanoia0:amd64 3.10.2+debian-14build2 amd64 audio extraction tool for sampling CDs (library)
ii libcdr-0.1-1:amd64 0.1.6-2build2 amd64 library for reading and converting Corel DRAW files
ii libcdt5:amd64 2.42.2-6 amd64 rich set of graph drawing tools - cdt library
ii libcgraph6:amd64 2.42.2-6 amd64 rich set of graph drawing tools - cgraph library
ii libchamplain-0.12-0:amd64 0.12.20-1build1 amd64 C library providing ClutterActor to display maps
ii libchamplain-gtk-0.12-0:amd64 0.12.20-1build1 amd64 Gtk+ widget to display maps
ii libcheese-gtk25:amd64 41.1-1build1 amd64 tool to take pictures and videos from your webcam - widgets
ii libcheese8:amd64 41.1-1build1 amd64 tool to take pictures and videos from your webcam - base library
ii libchromaprint1:amd64 1.5.1-2 amd64 audio fingerprint library
ii libclone-perl 0.45-1build3 amd64 module for recursively copying Perl datatypes
ii libclucene-contribs1v5:amd64 2.3.3.4+dfsg-1ubuntu5 amd64 language specific text analyzers (runtime)
ii libclucene-core1v5:amd64 2.3.3.4+dfsg-1ubuntu5 amd64 core library for full-featured text search engine (runtime)
ii libclutter-1.0-0:amd64 1.26.4+dfsg-4build1 amd64 Open GL based interactive canvas library
ii libclutter-1.0-common 1.26.4+dfsg-4build1 all Open GL based interactive canvas library (common files)
ii libclutter-gst-3.0-0:amd64 3.0.27-2ubuntu1 amd64 Open GL based interactive canvas library GStreamer elements
ii libclutter-gtk-1.0-0:amd64 1.8.4-4build2 amd64 Open GL based interactive canvas library GTK+ widget
ii libcmark0.30.2:amd64 0.30.2-5 amd64 CommonMark parsing and rendering library
ii libcodec2-1.0:amd64 1.0.1-3 amd64 Codec2 runtime library
ii libcogl-common 1.22.8-3build1 all Object oriented GL/GLES Abstraction/Utility Layer (common files)
ii libcogl-pango20:amd64 1.22.8-3build1 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcogl-path20:amd64 1.22.8-3build1 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcogl20:amd64 1.22.8-3build1 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcolamd2:amd64 1:5.10.1+dfsg-4build1 amd64 column approximate minimum degree ordering library for sparse matrices
ii libcolord-gtk1:amd64 0.3.0-1 amd64 GTK+ convenience library for interacting with colord
ii libcolord2:amd64 1.4.6-1 amd64 system service to manage device colour profiles -- runtime
ii libcolorhug2:amd64 1.4.6-1 amd64 library to access the ColorHug colourimeter -- runtime
ii libcom-err2:amd64 1.46.5-2ubuntu1.1 amd64 common error description library
ii libcommon-sense-perl:amd64 3.75-2build1 amd64 module that implements some sane defaults for Perl programs
ii libcrack2:amd64 2.9.6-3.4build4 amd64 pro-active password checker library
ii libcrypt-dev:amd64 1:4.4.27-1 amd64 libcrypt development files
ii libcrypt1:amd64 1:4.4.27-1 amd64 libcrypt shared library
ii libcryptsetup12:amd64 2:2.4.3-1ubuntu1.1 amd64 disk encryption support - shared library
ii libctf-nobfd0:amd64 2.38-4ubuntu2.1 amd64 Compact C Type Format library (runtime, no BFD dependency)
ii libctf0:amd64 2.38-4ubuntu2.1 amd64 Compact C Type Format library (runtime, BFD dependency)
ii libcue2:amd64 2.2.1-3build3 amd64 CUE Sheet Parser Library
ii libcups2:amd64 2.4.1op1-1ubuntu4.1 amd64 Common UNIX Printing System(tm) - Core library
ii libcurl3-gnutls:amd64 7.81.0-1ubuntu1.6 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libcurl4:amd64 7.81.0-1ubuntu1.6 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libdaemon0:amd64 0.14-7.1ubuntu3 amd64 lightweight C library for daemons - runtime library
ii libdata-dump-perl 1.25-1 all Perl module to help dump data structures
ii libdatrie1:amd64 0.2.13-2 amd64 Double-array trie library
ii libdav1d5:amd64 0.9.2-1 amd64 fast and small AV1 video stream decoder (shared library)
ii libdazzle-1.0-0:amd64 3.44.0-1 amd64 feature-filled library for GTK+ and GObject
ii libdazzle-common 3.44.0-1 all feature-filled library for GTK+ and GObject (common files)
ii libdb-dev:amd64 1:5.3.21~exp1ubuntu4 amd64 Berkeley Database Libraries [development]
ii libdb5.3:amd64 5.3.28+dfsg1-0.8ubuntu3 amd64 Berkeley v5.3 Database Libraries [runtime]
ii libdb5.3-dev 5.3.28+dfsg1-0.8ubuntu3 amd64 Berkeley v5.3 Database Libraries [development]
ii libdbus-1-3:amd64 1.12.20-2ubuntu4.1 amd64 simple interprocess messaging system (library)
ii libdbus-glib-1-2:amd64 0.112-2build1 amd64 deprecated library for D-Bus IPC
ii libdbusmenu-glib4:amd64 16.04.1+18.10.20180917-0ubuntu8 amd64 library for passing menus over DBus
ii libdbusmenu-gtk3-4:amd64 16.04.1+18.10.20180917-0ubuntu8 amd64 library for passing menus over DBus - GTK+ version
ii libdconf1:amd64 0.40.0-3 amd64 simple configuration storage system - runtime library
ii libde265-0:amd64 1.0.8-1 amd64 Open H.265 video codec implementation
ii libdebconfclient0:amd64 0.261ubuntu1 amd64 Debian Configuration Management System (C-implementation library)
ii libdee-1.0-4:amd64 1.2.7+17.10.20170616-6ubuntu4 amd64 Model to synchronize multiple instances over DBus - shared lib
ii libdeflate0:amd64 1.10-2 amd64 fast, whole-buffer DEFLATE-based compression and decompression
ii libdevmapper-event1.02.1:amd64 2:1.02.175-2.1ubuntu4 amd64 Linux Kernel Device Mapper event support library
ii libdevmapper1.02.1:amd64 2:1.02.175-2.1ubuntu4 amd64 Linux Kernel Device Mapper userspace library
ii libdjvulibre-text 3.5.28-2build2 all Linguistic support files for libdjvulibre
ii libdjvulibre21:amd64 3.5.28-2build2 amd64 Runtime support for the DjVu image format
ii libdleyna-connector-dbus-1.0-1:amd64 0.3.0-2build1 amd64 DBus connector module for the dLeyna services
ii libdleyna-core-1.0-5:amd64 0.6.0-5build1 amd64 Utility functions for higher level dLeyna components
ii libdmapsharing-3.0-2:amd64 2.9.41-3build2 amd64 DMAP client and server library - runtime
ii libdns-export1110 1:9.11.19+dfsg-2.1ubuntu3 amd64 Exported DNS Shared Library
ii libdotconf0:amd64 1.3-0.3fakesync1build2 amd64 Configuration file parser library - runtime files
ii libdpkg-perl 1.21.1ubuntu2.1 all Dpkg perl modules
ii libdrm-amdgpu1:amd64 2.4.110-1ubuntu1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii libdrm-common 2.4.110-1ubuntu1 all Userspace interface to kernel DRM services -- common files
ii libdrm-intel1:amd64 2.4.110-1ubuntu1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime
ii libdrm-nouveau2:amd64 2.4.110-1ubuntu1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime
ii libdrm-radeon1:amd64 2.4.110-1ubuntu1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime
ii libdrm2:amd64 2.4.110-1ubuntu1 amd64 Userspace interface to kernel DRM services -- runtime
ii libdv4:amd64 1.0.0-14build1 amd64 software library for DV format digital video (runtime lib)
ii libdvdread8:amd64 6.1.2-1 amd64 library for reading DVDs
ii libdw1:amd64 0.186-1build1 amd64 library that provides access to the DWARF debug information
ii libe-book-0.1-1:amd64 0.1.3-2build2 amd64 library for reading and converting various e-book formats
ii libebackend-1.2-10:amd64 3.44.4-0ubuntu1 amd64 Utility library for evolution data servers
ii libebook-1.2-20:amd64 3.44.4-0ubuntu1 amd64 Client library for evolution address books
ii libebook-contacts-1.2-3:amd64 3.44.4-0ubuntu1 amd64 Client library for evolution contacts books
ii libecal-2.0-1:amd64 3.44.4-0ubuntu1 amd64 Client library for evolution calendars
ii libedata-book-1.2-26:amd64 3.44.4-0ubuntu1 amd64 Backend library for evolution address books
ii libedata-cal-2.0-1:amd64 3.44.4-0ubuntu1 amd64 Backend library for evolution calendars
ii libedataserver-1.2-26:amd64 3.44.4-0ubuntu1 amd64 Utility library for evolution data servers
ii libedataserverui-1.2-3:amd64 3.44.4-0ubuntu1 amd64 Utility library for evolution data servers
ii libedit2:amd64 3.1-20210910-1build1 amd64 BSD editline and history libraries
ii libefiboot1:amd64 37-6ubuntu2 amd64 Library to manage UEFI variables
ii libefivar1:amd64 37-6ubuntu2 amd64 Library to manage UEFI variables
ii libegl-mesa0:amd64 22.0.5-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library
ii libegl1:amd64 1.4.0-1 amd64 Vendor neutral GL dispatch library -- EGL support
ii libelf1:amd64 0.186-1build1 amd64 library to read and write ELF files
ii libenchant-2-2:amd64 2.3.2-1ubuntu2 amd64 Wrapper library for various spell checker engines (runtime libs)
ii libencode-locale-perl 1.05-1.1 all utility to determine the locale encoding
ii libeot0:amd64 0.01-5build2 amd64 Library for parsing/converting Embedded OpenType files
ii libepoxy0:amd64 1.5.10-1 amd64 OpenGL function pointer management library
ii libepubgen-0.1-1:amd64 0.1.1-1ubuntu5 amd64 EPUB generator library
ii liberror-perl 0.17029-1 all Perl module for error/exception handling in an OO-ish way
ii libespeak-ng1:amd64 1.50+dfsg-10 amd64 Multi-lingual software speech synthesizer: shared library
ii libestr0:amd64 0.1.10-2.1build3 amd64 Helper functions for handling strings (lib)
ii libetonyek-0.1-1:amd64 0.1.10-3build1 amd64 library for reading and converting Apple Keynote presentations
ii libevdev2:amd64 1.12.1+dfsg-1 amd64 wrapper library for evdev devices
ii libevdocument3-4:amd64 42.3-0ubuntu2 amd64 Document (PostScript, PDF) rendering library
ii libevent-2.1-7:amd64 2.1.12-stable-1build3 amd64 Asynchronous event notification library
ii libevent-core-2.1-7:amd64 2.1.12-stable-1build3 amd64 Asynchronous event notification library (core)
ii libevent-pthreads-2.1-7:amd64 2.1.12-stable-1build3 amd64 Asynchronous event notification library (pthreads)
ii libevolution 3.44.4-0ubuntu1 amd64 evolution libraries
ii libevview3-3:amd64 42.3-0ubuntu2 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets
ii libexempi8:amd64 2.5.2-1ubuntu0.22.04.1 amd64 library to parse XMP metadata (Library)
ii libexif12:amd64 0.6.24-1build1 amd64 library to parse EXIF files
ii libexiv2-27:amd64 0.27.5-3ubuntu1 amd64 EXIF/IPTC/XMP metadata manipulation library
ii libexpat1:amd64 2.4.7-1ubuntu0.2 amd64 XML parsing C library - runtime library
ii libext2fs2:amd64 1.46.5-2ubuntu1.1 amd64 ext2/ext3/ext4 file system libraries
ii libexttextcat-2.0-0:amd64 3.4.5-1build2 amd64 Language detection library
ii libexttextcat-data 3.4.5-1build2 all Language detection library - data files
ii libextutils-depends-perl 0.8001-1 all Perl module for building extensions that depend on other extensions
ii libfakeroot:amd64 1.28-1ubuntu1 amd64 tool for simulating superuser privileges - shared libraries
ii libfastjson4:amd64 0.99.9-1build2 amd64 fast json library for C
ii libfdisk1:amd64 2.37.2-4ubuntu3 amd64 fdisk partitioning library
ii libffi-dev:amd64 3.4.2-4 amd64 Foreign Function Interface library (development files)
ii libffi8:amd64 3.4.2-4 amd64 Foreign Function Interface library runtime
ii libfftw3-double3:amd64 3.3.8-2ubuntu8 amd64 Library for computing Fast Fourier Transforms - Double precision
ii libfftw3-single3:amd64 3.3.8-2ubuntu8 amd64 Library for computing Fast Fourier Transforms - Single precision
ii libfido2-1:amd64 1.10.0-1 amd64 library for generating and verifying FIDO 2.0 objects
ii libfile-basedir-perl 0.09-1 all Perl module to use the freedesktop basedir specification
ii libfile-desktopentry-perl 0.22-2 all Perl module to handle freedesktop .desktop files
ii libfile-fcntllock-perl 0.22-3build7 amd64 Perl module for file locking with fcntl(2)
ii libfile-listing-perl 6.14-1 all module to parse directory listings
ii libfile-mimeinfo-perl 0.31-1 all Perl module to determine file types
ii libflac8:amd64 1.3.3-2ubuntu0.1 amd64 Free Lossless Audio Codec - runtime C library
ii libflite1:amd64 2.2-3 amd64 Small run-time speech synthesis engine - shared libraries
ii libfolks-eds26:amd64 0.15.5-2 amd64 Evolution-data-server backend for libfolks
ii libfolks26:amd64 0.15.5-2 amd64 library to aggregates people into metacontacts
ii libfont-afm-perl 1.20-3 all Perl interface to Adobe Font Metrics files
ii libfontconfig1:amd64 2.13.1-4.2ubuntu5 amd64 generic font configuration library - runtime
ii libfontenc1:amd64 1:1.1.4-1build3 amd64 X11 font encoding library
ii libfreehand-0.1-1 0.1.2-3build2 amd64 Library for parsing the FreeHand file format structure
ii libfreerdp-client2-2:amd64 2.6.1+dfsg1-3ubuntu2.3 amd64 Free Remote Desktop Protocol library (client library)
ii libfreerdp-server2-2:amd64 2.6.1+dfsg1-3ubuntu2.3 amd64 Free Remote Desktop Protocol library (server library)
ii libfreerdp2-2:amd64 2.6.1+dfsg1-3ubuntu2.3 amd64 Free Remote Desktop Protocol library (core library)
ii libfreetype6:amd64 2.11.1+dfsg-1ubuntu0.1 amd64 FreeType 2 font engine, shared library files
ii libfribidi0:amd64 1.0.8-2ubuntu3.1 amd64 Free Implementation of the Unicode BiDi algorithm
ii libfuse3-3:amd64 3.10.5-1build1 amd64 Filesystem in Userspace (library) (3.x version)
ii libfwupd2:amd64 1.7.9-1~22.04.1 amd64 Firmware update daemon library
ii libfwupdplugin5:amd64 1.7.9-1~22.04.1 amd64 Firmware update daemon plugin library
ii libgail-3-0:amd64 3.24.33-1ubuntu2 amd64 GNOME Accessibility Implementation Library -- shared libraries
ii libgail-common:amd64 2.24.33-2ubuntu2 amd64 GNOME Accessibility Implementation Library -- common modules
ii libgail18:amd64 2.24.33-2ubuntu2 amd64 GNOME Accessibility Implementation Library -- shared libraries
ii libgbm1:amd64 22.0.5-0ubuntu0.1 amd64 generic buffer management API -- runtime
ii libgc1:amd64 1:8.0.6-1.1build1 amd64 conservative garbage collector for C and C++
ii libgcab-1.0-0:amd64 1.4-3build2 amd64 Microsoft Cabinet file manipulation library
ii libgcc-11-dev:amd64 11.3.0-1ubuntu1~22.04 amd64 GCC support library (development files)
ii libgcc-s1:amd64 12.1.0-2ubuntu1~22.04 amd64 GCC support library
ii libgck-1-0:amd64 3.40.0-4 amd64 Glib wrapper library for PKCS#11 - runtime
ii libgconf-2-4:amd64 3.2.6-7ubuntu2 amd64 GNOME configuration database system (shared libraries)
ii libgcr-base-3-1:amd64 3.40.0-4 amd64 Library for Crypto related tasks
ii libgcr-ui-3-1:amd64 3.40.0-4 amd64 Library for Crypto UI related tasks
ii libgcrypt20:amd64 1.9.4-3ubuntu3 amd64 LGPL Crypto library - runtime library
ii libgd3:amd64 2.3.0-2ubuntu2 amd64 GD Graphics Library
ii libgdata-common 0.18.1-2build1 all Library for accessing GData webservices - common data files
ii libgdata22:amd64 0.18.1-2build1 amd64 Library for accessing GData webservices - shared libraries
ii libgdbm-compat4:amd64 1.23-1 amd64 GNU dbm database routines (legacy support runtime version)
ii libgdbm-dev:amd64 1.23-1 amd64 GNU dbm database routines (development files)
ii libgdbm6:amd64 1.23-1 amd64 GNU dbm database routines (runtime version)
ii libgdk-pixbuf-2.0-0:amd64 2.42.8+dfsg-1ubuntu0.2 amd64 GDK Pixbuf library
ii libgdk-pixbuf2.0-bin 2.42.8+dfsg-1ubuntu0.2 amd64 GDK Pixbuf library (thumbnailer)
ii libgdk-pixbuf2.0-common 2.42.8+dfsg-1ubuntu0.2 all GDK Pixbuf library - data files
ii libgdm1 42.0-1ubuntu7 amd64 GNOME Display Manager (shared library)
ii libgee-0.8-2:amd64 0.20.5-2 amd64 GObject based collection and utility library
ii libgeoclue-2-0:amd64 2.5.7-3ubuntu3 amd64 convenience library to interact with geoinformation service
ii libgeocode-glib0:amd64 3.26.2-2build2 amd64 geocoding and reverse geocoding GLib library using Nominatim
ii libgexiv2-2:amd64 0.14.0-1build1 amd64 GObject-based wrapper around the Exiv2 library
ii libgfbgraph-0.2-0:amd64 0.2.5-2 amd64 GObject library for Facebook Graph API
ii libgfortran5:amd64 12.1.0-2ubuntu1~22.04 amd64 Runtime library for GNU Fortran applications
ii libgif7:amd64 5.1.9-2build2 amd64 library for GIF images (library)
ii libgirepository-1.0-1:amd64 1.72.0-1 amd64 Library for handling GObject introspection data (runtime library)
ii libgjs0g:amd64 1.72.2-0ubuntu1 amd64 Mozilla-based javascript bindings for the GNOME platform
ii libgl1:amd64 1.4.0-1 amd64 Vendor neutral GL dispatch library -- legacy GL support
ii libgl1-amber-dri:amd64 21.3.7-0ubuntu1 amd64 free implementation of the OpenGL API -- DRI modules
ii libgl1-mesa-dri:amd64 22.0.5-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules
ii libgl1-mesa-glx:amd64 22.0.5-0ubuntu0.1 amd64 transitional dummy package
ii libglapi-mesa:amd64 22.0.5-0ubuntu0.1 amd64 free implementation of the GL API -- shared library
ii libgles2:amd64 1.4.0-1 amd64 Vendor neutral GL dispatch library -- GLESv2 support
ii libglib-object-introspection-perl 0.049-1+build2 amd64 Perl bindings for gobject-introspection libraries
ii libglib-perl:amd64 3:1.329.3-2build1 amd64 interface to the GLib and GObject libraries
ii libglib2.0-0:amd64 2.72.4-0ubuntu1 amd64 GLib library of C routines
ii libglib2.0-bin 2.72.4-0ubuntu1 amd64 Programs for the GLib library
ii libglib2.0-data 2.72.4-0ubuntu1 all Common files for GLib library
ii libglibmm-2.4-1v5:amd64 2.66.2-2 amd64 C++ wrapper for the GLib toolkit (shared libraries)
ii libglvnd0:amd64 1.4.0-1 amd64 Vendor neutral GL dispatch library
ii libglx-mesa0:amd64 22.0.5-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library
ii libglx0:amd64 1.4.0-1 amd64 Vendor neutral GL dispatch library -- GLX support
ii libgme0:amd64 0.6.3-2 amd64 Playback library for video game music files - shared library
ii libgmp-dev:amd64 2:6.2.1+dfsg-3ubuntu1 amd64 Multiprecision arithmetic library developers tools
ii libgmp10:amd64 2:6.2.1+dfsg-3ubuntu1 amd64 Multiprecision arithmetic library
ii libgmpxx4ldbl:amd64 2:6.2.1+dfsg-3ubuntu1 amd64 Multiprecision arithmetic library (C++ bindings)
ii libgnome-autoar-0-0:amd64 0.4.3-1 amd64 Archives integration support for GNOME
ii libgnome-autoar-gtk-0-0:amd64 0.4.3-1 amd64 GTK+ widgets for the GNOME Autoar library
ii libgnome-bg-4-1:amd64 42.5-0ubuntu1 amd64 Utility library for background images - runtime files
ii libgnome-bluetooth-3.0-13:amd64 42.0-5 amd64 GNOME Bluetooth 3 support library
ii libgnome-bluetooth13:amd64 3.34.5-8 amd64 GNOME Bluetooth tools - support library
ii libgnome-desktop-3-19:amd64 42.5-0ubuntu1 amd64 Utility library for the GNOME desktop - GTK 3 version
ii libgnome-desktop-4-1:amd64 42.5-0ubuntu1 amd64 Utility library for the GNOME desktop - runtime files
ii libgnome-games-support-1-3:amd64 1.8.2-1build1 amd64 library for common functions of GNOME games
ii libgnome-games-support-common 1.8.2-1build1 all library for common functions of GNOME games (common files)
ii libgnome-menu-3-0:amd64 3.36.0-1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification
ii libgnome-todo 3.28.1-6ubuntu1 amd64 library data for GNOME To Do
ii libgnomekbd-common 3.26.1-2 all GNOME library to manage keyboard configuration - common files
ii libgnomekbd8:amd64 3.26.1-2 amd64 GNOME library to manage keyboard configuration - shared library
ii libgnutls30:amd64 3.7.3-4ubuntu1.1 amd64 GNU TLS library - main runtime library
ii libgoa-1.0-0b:amd64 3.44.0-1ubuntu1 amd64 library for GNOME Online Accounts
ii libgoa-1.0-common 3.44.0-1ubuntu1 all library for GNOME Online Accounts - common files
ii libgoa-backend-1.0-1:amd64 3.44.0-1ubuntu1 amd64 backend library for GNOME Online Accounts
ii libgom-1.0-0:amd64 0.4-1build2 amd64 Object mapper from GObjects to SQLite
ii libgomp1:amd64 12.1.0-2ubuntu1~22.04 amd64 GCC OpenMP (GOMP) support library
ii libgpg-error0:amd64 1.43-3 amd64 GnuPG development runtime library
ii libgpgme11:amd64 1.16.0-1.2ubuntu4 amd64 GPGME - GnuPG Made Easy (library)
ii libgpgmepp6:amd64 1.16.0-1.2ubuntu4 amd64 C++ wrapper library for GPGME
ii libgphoto2-6:amd64 2.5.27-1build2 amd64 gphoto2 digital camera library
ii libgphoto2-l10n 2.5.27-1build2 all gphoto2 digital camera library - localized messages
ii libgphoto2-port12:amd64 2.5.27-1build2 amd64 gphoto2 digital camera port library
ii libgpm2:amd64 1.20.7-10build1 amd64 General Purpose Mouse - shared library
ii libgpod-common 0.8.3-16build2 amd64 common files for libgpod
ii libgpod4:amd64 0.8.3-16build2 amd64 library to read and write songs and artwork to an iPod
ii libgraphene-1.0-0:amd64 1.10.8-1 amd64 library of graphic data types
ii libgraphite2-3:amd64 1.3.14-1build2 amd64 Font rendering engine for Complex Scripts -- library
ii libgrilo-0.3-0:amd64 0.3.14-1build1 amd64 Framework for discovering and browsing media - Shared libraries
ii libgs9:amd64 9.55.0~dfsg1-0ubuntu5.1 amd64 interpreter for the PostScript language and for PDF - Library
ii libgs9-common 9.55.0~dfsg1-0ubuntu5.1 all interpreter for the PostScript language and for PDF - common files
ii libgsf-1-114:amd64 1.14.47-1build2 amd64 Structured File Library - runtime version
ii libgsf-1-common 1.14.47-1build2 all Structured File Library - common files
ii libgsf-bin 1.14.47-1build2 amd64 Structured File Library - programs
ii libgsl27:amd64 2.7.1+dfsg-3 amd64 GNU Scientific Library (GSL) -- library package
ii libgslcblas0:amd64 2.7.1+dfsg-3 amd64 GNU Scientific Library (GSL) -- blas library package
ii libgsm1:amd64 1.0.19-1 amd64 Shared libraries for GSM speech compressor
ii libgsound0:amd64 1.0.3-2build1 amd64 small library for playing system sounds
ii libgspell-1-2:amd64 1.9.1-4 amd64 spell-checking library for GTK+ applications
ii libgspell-1-common 1.9.1-4 all libgspell architecture-independent files
ii libgssapi-krb5-2:amd64 1.19.2-2 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgssdp-1.2-0:amd64 1.4.0.1-2build1 amd64 GObject-based library for SSDP
ii libgstreamer-gl1.0-0:amd64 1.20.1-1 amd64 GStreamer GL libraries
ii libgstreamer-plugins-bad1.0-0:amd64 1.20.3-0ubuntu1 amd64 GStreamer libraries from the "bad" set
ii libgstreamer-plugins-base1.0-0:amd64 1.20.1-1 amd64 GStreamer libraries from the "base" set
ii libgstreamer-plugins-good1.0-0:amd64 1.20.3-0ubuntu1 amd64 GStreamer development files for libraries from the "good" set
ii libgstreamer1.0-0:amd64 1.20.3-0ubuntu1 amd64 Core GStreamer libraries and elements
ii libgtk-3-0:amd64 3.24.33-1ubuntu2 amd64 GTK graphical user interface library
ii libgtk-3-bin 3.24.33-1ubuntu2 amd64 programs for the GTK graphical user interface library
ii libgtk-3-common 3.24.33-1ubuntu2 all common files for the GTK graphical user interface library
ii libgtk-4-1:amd64 4.6.6+ds-0ubuntu1 amd64 GTK graphical user interface library
ii libgtk-4-bin 4.6.6+ds-0ubuntu1 amd64 programs for the GTK graphical user interface library
ii libgtk-4-common 4.6.6+ds-0ubuntu1 all common files for the GTK graphical user interface library
ii libgtk2.0-0:amd64 2.24.33-2ubuntu2 amd64 GTK graphical user interface library - old version
ii libgtk2.0-bin 2.24.33-2ubuntu2 amd64 programs for the GTK graphical user interface library
ii libgtk2.0-common 2.24.33-2ubuntu2 all common files for the GTK graphical user interface library
ii libgtk3-perl 0.038-1 all Perl bindings for the GTK+ graphical user interface library
ii libgtkmm-3.0-1v5:amd64 3.24.5-1build1 amd64 C++ wrappers for GTK+ (shared libraries)
ii libgtksourceview-4-0:amd64 4.8.3-1 amd64 shared libraries for the GTK+ syntax highlighting widget
ii libgtksourceview-4-common 4.8.3-1 all common files for the GTK+ syntax highlighting widget
ii libgtop-2.0-11:amd64 2.40.0-2build3 amd64 gtop system monitoring library (shared)
ii libgtop2-common 2.40.0-2build3 all gtop system monitoring library (common)
ii libgts-0.7-5:amd64 0.7.6+darcs121130-5 amd64 library to deal with 3D computational surface meshes
ii libgts-bin 0.7.6+darcs121130-5 amd64 utility binaries for libgts
ii libgudev-1.0-0:amd64 1:237-2build1 amd64 GObject-based wrapper library for libudev
ii libgupnp-1.2-1:amd64 1.4.3-1 amd64 GObject-based library for UPnP
ii libgupnp-av-1.0-3 0.14.0-3 amd64 Audio/Visual utility library for GUPnP
ii libgupnp-dlna-2.0-4 0.12.0-3 amd64 DLNA utility library for GUPnP
ii libgusb2:amd64 0.3.10-1 amd64 GLib wrapper around libusb1
ii libgvc6 2.42.2-6 amd64 rich set of graph drawing tools - gvc library
ii libgvpr2:amd64 2.42.2-6 amd64 rich set of graph drawing tools - gvpr library
ii libgweather-3-16:amd64 40.0-5build1 amd64 GWeather shared library
ii libgweather-common 40.0-5build1 all GWeather common files
ii libgxps2:amd64 0.3.2-2 amd64 handling and rendering XPS documents (library)
ii libhandy-1-0:amd64 1.6.1-1 amd64 Library with GTK widgets for mobile phones
ii libharfbuzz-icu0:amd64 2.7.4-1ubuntu3.1 amd64 OpenType text shaping engine ICU backend
ii libharfbuzz0b:amd64 2.7.4-1ubuntu3.1 amd64 OpenType text shaping engine (shared library)
ii libheif1:amd64 1.12.0-2build1 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library
ii libhogweed6:amd64 3.7.3-1build2 amd64 low level cryptographic library (public-key cryptos)
ii libhtml-form-perl 6.07-1 all module that represents an HTML form element
ii libhtml-format-perl 2.12-1.1 all module for transforming HTML into various formats
ii libhtml-parser-perl:amd64 3.76-1build2 amd64 collection of modules that parse HTML text documents
ii libhtml-tagset-perl 3.20-4 all data tables pertaining to HTML
ii libhtml-tree-perl 5.07-2 all Perl module to represent and create HTML syntax trees
ii libhttp-cookies-perl 6.10-1 all HTTP cookie jars
ii libhttp-daemon-perl 6.13-1ubuntu0.1 all simple http server class
ii libhttp-date-perl 6.05-1 all module of date conversion routines
ii libhttp-message-perl 6.36-1 all perl interface to HTTP style messages
ii libhttp-negotiate-perl 6.01-1 all implementation of content negotiation
ii libhunspell-1.7-0:amd64 1.7.0-4build1 amd64 spell checker and morphological analyzer (shared library)
ii libhyphen0:amd64 2.8.8-7build2 amd64 ALTLinux hyphenation library - shared library
ii libibus-1.0-5:amd64 1.5.26-4 amd64 Intelligent Input Bus - shared library
ii libical3:amd64 3.0.14-1build1 amd64 iCalendar library implementation in C (runtime)
ii libice-dev:amd64 2:1.0.10-1build2 amd64 X11 Inter-Client Exchange library (development headers)
ii libice6:amd64 2:1.0.10-1build2 amd64 X11 Inter-Client Exchange library
ii libicu70:amd64 70.1-2 amd64 International Components for Unicode
ii libidn12:amd64 1.38-4build1 amd64 GNU Libidn library, implementation of IETF IDN specifications
ii libidn2-0:amd64 2.3.2-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library
ii libiec61883-0:amd64 1.2.0-4build3 amd64 partial implementation of IEC 61883 (shared lib)
ii libieee1284-3:amd64 0.2.11-14build2 amd64 cross-platform library for parallel port access
ii libigdgmm12:amd64 22.1.2+ds1-1 amd64 Intel Graphics Memory Management Library -- shared library
ii libijs-0.35:amd64 0.35-15build2 amd64 IJS raster image transport protocol: shared library
ii libilmbase25:amd64 2.5.7-2 amd64 several utility libraries from ILM used by OpenEXR
ii libimage-exiftool-perl 12.40+dfsg-1 all library and program to read and write meta information in multimedia files
ii libimobiledevice6:amd64 1.3.0-6build3 amd64 Library for communicating with iPhone and other Apple devices
ii libinih1:amd64 53-1ubuntu3 amd64 simple .INI file parser
ii libinput-bin 1.20.0-1ubuntu0.1 amd64 input device management and event handling library - udev quirks
ii libinput10:amd64 1.20.0-1ubuntu0.1 amd64 input device management and event handling library - shared library
ii libintl-perl 1.26-3build2 all Uniforum message translations system compatible i18n library
ii libintl-xs-perl 1.26-3build2 amd64 XS Uniforum message translations system compatible i18n library
ii libio-html-perl 1.004-2 all open an HTML file with automatic charset detection
ii libio-socket-ssl-perl 2.074-2 all Perl module implementing object oriented interface to SSL sockets
ii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)
ii libip4tc2:amd64 1.8.7-1ubuntu5 amd64 netfilter libip4tc library
ii libip6tc2:amd64 1.8.7-1ubuntu5 amd64 netfilter libip6tc library
ii libipc-system-simple-perl 1.30-1 all Perl module to run commands simply, with detailed diagnostics
ii libipsec-mb1 1.2-1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library
ii libisc-export1105:amd64 1:9.11.19+dfsg-2.1ubuntu3 amd64 Exported ISC Shared Library
ii libisl23:amd64 0.24-2build1 amd64 manipulating sets and relations of integer points bounded by linear constraints
ii libisns0:amd64 0.101-0ubuntu2 amd64 Internet Storage Name Service - shared libraries
ii libisofs6:amd64 1.5.4-1 amd64 library to create ISO 9660 images
ii libitm1:amd64 12.1.0-2ubuntu1~22.04 amd64 GNU Transactional Memory Library
ii libjack-jackd2-0:amd64 1.9.20~dfsg-1 amd64 JACK Audio Connection Kit (libraries)
ii libjansson4:amd64 2.13.1-1.1build3 amd64 C library for encoding, decoding and manipulating JSON data
ii libjavascriptcoregtk-4.0-18:amd64 2.38.2-0ubuntu0.22.04.2 amd64 JavaScript engine library from WebKitGTK
ii libjbig0:amd64 2.1-3.1ubuntu0.22.04.1 amd64 JBIGkit libraries
ii libjbig2dec0:amd64 0.19-3build2 amd64 JBIG2 decoder library - shared libraries
ii libjcat1:amd64 0.1.9-1 amd64 JSON catalog library
ii libjpeg-turbo8:amd64 2.1.2-0ubuntu1 amd64 IJG JPEG compliant runtime library.
ii libjpeg8:amd64 8c-2ubuntu10 amd64 Independent JPEG Group's JPEG runtime library (dependency package)
ii libjq1:amd64 1.6-2.1ubuntu3 amd64 lightweight and flexible command-line JSON processor - shared library
ii libjs-jquery 3.6.0+dfsg+~3.5.13-1 all JavaScript library for dynamic web applications
ii libjs-sphinxdoc 4.3.2-1 all JavaScript support for Sphinx documentation
ii libjs-underscore 1.13.2~dfsg-2 all JavaScript's functional programming helper library
ii libjson-c5:amd64 0.15-3~ubuntu1.22.04.1 amd64 JSON manipulation library - shared library
ii libjson-glib-1.0-0:amd64 1.6.6-1build1 amd64 GLib JSON manipulation library
ii libjson-glib-1.0-common 1.6.6-1build1 all GLib JSON manipulation library (common files)
ii libjson-perl 4.04000-1 all module for manipulating JSON-formatted data
ii libjson-xs-perl 4.030-1build3 amd64 module for manipulating JSON-formatted data (C/XS-accelerated)
ii libjte2:amd64 1.22-3build1 amd64 Jigdo Template Export - runtime library
ii libjudydebian1 1.0.5-5 amd64 C library for creating and accessing dynamic arrays
ii libjxr-tools 1.2~git20170615.f752187-5 amd64 JPEG-XR lib - command line apps
ii libjxr0:amd64 1.2~git20170615.f752187-5 amd64 JPEG-XR lib - libraries
ii libk5crypto3:amd64 1.19.2-2 amd64 MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1:amd64 1.6.1-2ubuntu3 amd64 Linux Key Management Utilities (library)
ii libklibc:amd64 2.0.10-4 amd64 minimal libc subset for use with initramfs
ii libkmod2:amd64 29-1ubuntu1 amd64 libkmod shared library
ii libkpathsea6:amd64 2021.20210626.59705-1build1 amd64 TeX Live: path search library for TeX (runtime part)
ii libkrb5-3:amd64 1.19.2-2 amd64 MIT Kerberos runtime libraries
ii libkrb5support0:amd64 1.19.2-2 amd64 MIT Kerberos runtime libraries - Support library
ii libksba8:amd64 1.6.0-2ubuntu0.1 amd64 X.509 and CMS support library
ii liblab-gamut1:amd64 2.42.2-6 amd64 rich set of graph drawing tools - liblab_gamut library
ii liblangtag-common 0.6.3-2ubuntu1 all library to access tags for identifying languages -- data
ii liblangtag1:amd64 0.6.3-2ubuntu1 amd64 library to access tags for identifying languages
ii liblapack3:amd64 3.10.0-2ubuntu1 amd64 Library of linear algebra routines 3 - shared version
ii liblcms2-2:amd64 2.12~rc1-2build2 amd64 Little CMS 2 color management library
ii libldap-2.5-0:amd64 2.5.13+dfsg-0ubuntu0.22.04.1 amd64 OpenLDAP libraries
ii libldap-common 2.5.13+dfsg-0ubuntu0.22.04.1 all OpenLDAP common files for libraries
ii libldb2:amd64 2:2.4.4-0ubuntu0.1 amd64 LDAP-like embedded database - shared library
ii liblilv-0-0:amd64 0.24.12-2 amd64 library for simple use of LV2 plugins
ii liblirc-client0:amd64 0.10.1-6.3ubuntu1 amd64 infra-red remote control support - client library
ii libllvm13:amd64 1:13.0.1-2ubuntu2.1 amd64 Modular compiler and toolchain technologies, runtime library
ii libllvm14:amd64 1:14.0.0-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library
ii liblmdb0:amd64 0.9.24-1build2 amd64 Lightning Memory-Mapped Database shared library
ii liblocale-gettext-perl 1.07-4build3 amd64 module using libc functions for internationalization in Perl
ii liblouis-data 3.20.0-2ubuntu0.1 all Braille translation library - data
ii liblouis20:amd64 3.20.0-2ubuntu0.1 amd64 Braille translation library - shared libs
ii liblqr-1-0:amd64 0.4.2-2.1 amd64 converts plain array images into multi-size representation
ii liblsan0:amd64 12.1.0-2ubuntu1~22.04 amd64 LeakSanitizer -- a memory leak detector (runtime)
ii libltdl7:amd64 2.4.6-15build2 amd64 System independent dlopen wrapper for GNU libtool
ii liblua5.2-0:amd64 5.2.4-2 amd64 Shared library for the Lua interpreter version 5.2
ii liblua5.3-0:amd64 5.3.6-1build1 amd64 Shared library for the Lua interpreter version 5.3
ii liblvm2cmd2.03:amd64 2.03.11-2.1ubuntu4 amd64 LVM2 command library
ii liblwp-mediatypes-perl 6.04-1 all module to guess media type for a file or a URL
ii liblwp-protocol-https-perl 6.10-1 all HTTPS driver for LWP::UserAgent
ii liblz4-1:amd64 1.9.3-2build2 amd64 Fast LZ compression algorithm library - runtime
ii liblzma5:amd64 5.2.5-2ubuntu1 amd64 XZ-format compression library
ii liblzo2-2:amd64 2.10-2build3 amd64 data compression library
ii libmagic-mgc 1:5.41-3 amd64 File type determination library using "magic" numbers (compiled magic file)
ii libmagic1:amd64 1:5.41-3 amd64 Recognize the type of data in a file using "magic" numbers - library
ii libmagickcore-6.q16-6:amd64 8:6.9.11.60+dfsg-1.3build2 amd64 low-level image manipulation library -- quantum depth Q16
ii libmagickcore-6.q16-6-extra:amd64 8:6.9.11.60+dfsg-1.3build2 amd64 low-level image manipulation library - extra codecs (Q16)
ii libmagickwand-6.q16-6:amd64 8:6.9.11.60+dfsg-1.3build2 amd64 image manipulation library -- quantum depth Q16
ii libmailtools-perl 2.21-1 all modules to manipulate email in perl programs
ii libmalcontent-0-0:amd64 0.10.4-1 amd64 library for parental control of applications
ii libmanette-0.2-0:amd64 0.2.6-3build1 amd64 Simple GObject game controller library
ii libmaxminddb0:amd64 1.5.2-1build2 amd64 IP geolocation database library
ii libmbim-glib4:amd64 1.26.2-1build1 amd64 Support library to use the MBIM protocol
ii libmbim-proxy 1.26.2-1build1 amd64 Proxy to communicate with MBIM ports
ii libmd0:amd64 1.0.4-1build1 amd64 message digest functions from BSD systems - shared library
ii libmediaart-2.0-0:amd64 1.9.5-2build1 amd64 media art extraction and cache management library
ii libmfx1:amd64 22.3.0-1 amd64 Intel Media SDK -- shared library
ii libmhash2:amd64 0.9.9.9-9build2 amd64 Library for cryptographic hashing and message authentication
ii libmime-charset-perl 1.012.2-1 all module for MIME character set information
ii libminiupnpc17:amd64 2.2.3-1build1 amd64 UPnP IGD client lightweight library
ii libmm-glib0:amd64 1.18.6-1 amd64 D-Bus service for managing modems - shared libraries
ii libmnl0:amd64 1.0.4-3build2 amd64 minimalistic Netlink communication library
ii libmodule-find-perl 0.15-1 all module to find and use installed Perl modules
ii libmodule-scandeps-perl 1.31-1 all module to recursively scan Perl code for dependencies
ii libmount1:amd64 2.37.2-4ubuntu3 amd64 device mounting library
ii libmozjs-91-0:amd64 91.10.0-0ubuntu1 amd64 SpiderMonkey JavaScript library
ii libmp3lame0:amd64 3.100-3build2 amd64 MP3 encoding library
ii libmpc3:amd64 1.2.1-2build1 amd64 multiple precision complex floating-point library
ii libmpdec3:amd64 2.5.1-2build2 amd64 library for decimal floating point arithmetic (runtime library)
ii libmpeg2-4:amd64 0.5.1-9 amd64 MPEG1 and MPEG2 video decoder library
ii libmpfr6:amd64 4.1.0-3build3 amd64 multiple precision floating-point computation
ii libmpg123-0:amd64 1.29.3-1build1 amd64 MPEG layer 1/2/3 audio decoder (shared library)
ii libmspack0:amd64 0.10.1-2build2 amd64 library for Microsoft compression formats (shared library)
ii libmspub-0.1-1:amd64 0.1.4-3build3 amd64 library for parsing the mspub file structure
ii libmtdev1:amd64 1.1.6-1build4 amd64 Multitouch Protocol Translation Library - shared library
ii libmtp-common 1.1.19-1build1 all Media Transfer Protocol (MTP) common files
ii libmtp-runtime 1.1.19-1build1 amd64 Media Transfer Protocol (MTP) runtime tools
ii libmtp9:amd64 1.1.19-1build1 amd64 Media Transfer Protocol (MTP) library
ii libmutter-10-0:amd64 42.5-0ubuntu1 amd64 window manager library from the Mutter window manager
ii libmwaw-0.3-3:amd64 0.3.21-1build1 amd64 import library for some old Mac text documents
ii libmysofa1:amd64 1.2.1~dfsg0-1 amd64 library to read HRTFs stored in the AES69-2015 SOFA format
ii libmythes-1.2-0:amd64 2:1.2.4-4build1 amd64 simple thesaurus library
ii libnatpmp1:amd64 20150609-7.1build2 amd64 portable and fully compliant implementation of NAT-PMP
ii libnautilus-extension1a:amd64 1:42.2-0ubuntu1 amd64 libraries for nautilus components - runtime version
ii libncurses-dev:amd64 6.3-2 amd64 developer's libraries for ncurses
ii libncurses5-dev:amd64 6.3-2 amd64 transitional package for libncurses-dev
ii libncurses6:amd64 6.3-2 amd64 shared libraries for terminal handling
ii libncursesw6:amd64 6.3-2 amd64 shared libraries for terminal handling (wide character support)
ii libndp0:amd64 1.8-0ubuntu3 amd64 Library for Neighbor Discovery Protocol
ii libnet-dbus-perl 1.2.0-1build3 amd64 Perl extension for the DBus bindings
ii libnet-http-perl 6.22-1 all module providing low-level HTTP connection client
ii libnet-smtp-ssl-perl 1.04-1 all Perl module providing SSL support to Net::SMTP
ii libnet-ssleay-perl:amd64 1.92-1build2 amd64 Perl module for Secure Sockets Layer (SSL)
ii libnetfilter-conntrack3:amd64 1.0.9-1 amd64 Netfilter netlink-conntrack library
ii libnetpbm10 2:10.0-15.4 amd64 Graphics conversion tools shared libraries
ii libnetplan0:amd64 0.105-0ubuntu2~22.04.1 amd64 YAML network configuration abstraction runtime library
ii libnettle8:amd64 3.7.3-1build2 amd64 low level cryptographic library (symmetric and one-way cryptos)
ii libnewt0.52:amd64 0.52.21-5ubuntu2 amd64 Not Erik's Windowing Toolkit - text mode windowing with slang
ii libnfnetlink0:amd64 1.0.1-3build3 amd64 Netfilter netlink library
ii libnfs13:amd64 4.0.0-1build2 amd64 NFS client library (shared library)
ii libnftables1:amd64 1.0.2-1ubuntu3 amd64 Netfilter nftables high level userspace API library
ii libnftnl11:amd64 1.2.1-1build1 amd64 Netfilter nftables userspace API library
ii libnghttp2-14:amd64 1.43.0-1build3 amd64 library implementing HTTP/2 protocol (shared library)
ii libnl-3-200:amd64 3.5.0-0.1 amd64 library for dealing with netlink sockets
ii libnl-genl-3-200:amd64 3.5.0-0.1 amd64 library for dealing with netlink sockets - generic netlink
ii libnl-route-3-200:amd64 3.5.0-0.1 amd64 library for dealing with netlink sockets - route interface
ii libnm0:amd64 1.36.6-0ubuntu2 amd64 GObject-based client library for NetworkManager
ii libnma-common 1.8.34-1ubuntu1 all NetworkManager GUI library - translations
ii libnma0:amd64 1.8.34-1ubuntu1 amd64 NetworkManager GUI library
ii libnorm1:amd64 1.5.9+dfsg-2 amd64 NACK-Oriented Reliable Multicast (NORM) library
ii libnotify4:amd64 0.7.9-3ubuntu5.22.04.1 amd64 sends desktop notifications to a notification daemon
ii libnpth0:amd64 1.6-3build2 amd64 replacement for GNU Pth using system threads
ii libnsl-dev:amd64 1.3.0-2build2 amd64 libnsl development files
ii libnsl2:amd64 1.3.0-2build2 amd64 Public client interface for NIS(YP) and NIS+
ii libnspr4:amd64 2:4.32-3build1 amd64 NetScape Portable Runtime Library
ii libnss-mdns:amd64 0.15.1-1ubuntu1 amd64 NSS module for Multicast DNS name resolution
ii libnss-systemd:amd64 249.11-0ubuntu3.6 amd64 nss module providing dynamic user and group name resolution
ii libnss3:amd64 2:3.68.2-0ubuntu1.1 amd64 Network Security Service libraries
ii libnuma1:amd64 2.0.14-3ubuntu2 amd64 Libraries for controlling NUMA policy
ii liboauth0:amd64 1.0.3-5 amd64 C library implementing OAuth Core 1.0a API (runtime)
ii libodfgen-0.1-1:amd64 0.1.8-2build2 amd64 library to generate ODF documents
ii libogg0:amd64 1.3.5-0ubuntu3 amd64 Ogg bitstream library