-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathu-b-p-l.txt
1878 lines (1878 loc) · 266 KB
/
u-b-p-l.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 0.6.45-1ubuntu1 amd64 query and manipulate user account information
ii acl 2.2.52-3build1 amd64 Access control list utilities
ii acpi-support 0.142 amd64 scripts for handling many ACPI events
ii acpid 1:2.0.28-1ubuntu1 amd64 Advanced Configuration and Power Interface event daemon
ii adduser 3.116ubuntu1 all add and remove users and groups
ii adium-theme-ubuntu 0.3.4-0ubuntu4 all Adium message style for Ubuntu
ii adwaita-icon-theme 3.26.1-1ubuntu1 all default icon theme of GNOME (small subset)
ii aisleriot 1:3.22.4-2 amd64 GNOME solitaire card game collection
ii alsa-base 1.0.25+dfsg-0ubuntu5 all ALSA driver configuration files
ii alsa-utils 1.1.3-1ubuntu1 amd64 Utilities for configuring and using ALSA
ii anacron 2.3-24 amd64 cron-like program that doesn't go by time
ii apache2 2.4.29-1ubuntu2 amd64 Apache HTTP Server
ii apache2-bin 2.4.29-1ubuntu2 amd64 Apache HTTP Server (modules and other binary files)
ii apache2-data 2.4.29-1ubuntu2 all Apache HTTP Server (common files)
ii apache2-doc 2.4.29-1ubuntu2 all Apache HTTP Server (on-site documentation)
ii apache2-suexec-pristine 2.4.29-1ubuntu2 amd64 Apache HTTP Server standard suexec program for mod_suexec
ii apache2-utils 2.4.29-1ubuntu2 amd64 Apache HTTP Server (utility programs for web servers)
ii apg 2.2.3.dfsg.1-5 amd64 Automated Password Generator - Standalone version
ii app-install-data-partner 16.04 all Application Installer (data files for partner applications/repositories)
ii apparmor 2.11.0-2ubuntu18 amd64 user-space parser utility for AppArmor
ii apport 2.20.8-0ubuntu6 all automatically generate crash reports for debugging
ii apport-gtk 2.20.8-0ubuntu6 all GTK+ frontend for the apport crash report system
ii apport-symptoms 0.20 all symptom scripts for apport
ii appstream 0.11.7-1 amd64 Software component metadata management
ii apt 1.6~alpha5 amd64 commandline package manager
ii apt-utils 1.6~alpha5 amd64 package management related utility programs
ii aptdaemon 1.1.1+bzr982-0ubuntu17 all transaction based package management service
ii aptdaemon-data 1.1.1+bzr982-0ubuntu17 all data files for clients
ii apturl 0.5.2ubuntu13 amd64 install packages using the apt protocol - GTK+ frontend
ii apturl-common 0.5.2ubuntu13 amd64 install packages using the apt protocol - common data
ii aspell 0.60.7~20110707-4 amd64 GNU Aspell spell-checker
ii aspell-en 2017.08.24-0-0.1 all English dictionary for GNU Aspell
ii at-spi2-core 2.26.2-2 amd64 Assistive Technology Service Provider Interface (dbus core)
ii autoconf 2.69-11 all automatic configure script builder
ii automake 1:1.15.1-3ubuntu1 all Tool for generating GNU Standards-compliant Makefiles
ii autotools-dev 20171216.1 all Update infrastructure for config.{guess,sub} files
ii avahi-autoipd 0.7-3ubuntu1 amd64 Avahi IPv4LL network address configuration daemon
ii avahi-daemon 0.7-3ubuntu1 amd64 Avahi mDNS/DNS-SD daemon
ii avahi-utils 0.7-3ubuntu1 amd64 Avahi browsing, publishing and discovery utilities
ii baobab 3.26.1-0ubuntu1 amd64 GNOME disk usage analyzer
ii base-files 10ubuntu1 amd64 Debian base system miscellaneous files
ii base-passwd 3.5.44 amd64 Debian base system master password and group files
ii bash 4.4-5ubuntu1 amd64 GNU Bourne Again SHell
ii bash-completion 1:2.1-4.3ubuntu1 all programmable completion for the bash shell
ii bc 1.06.95-9build2 amd64 GNU bc arbitrary precision calculator language
ii bind9-host 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 Version of 'host' bundled with BIND 9.X
ii binfmt-support 2.1.8-1 amd64 Support for extra binary formats
ii binutils 2.29.1-12ubuntu1 amd64 GNU assembler, linker and binary utilities
ii binutils-common:amd64 2.29.1-12ubuntu1 amd64 Common files for the GNU assembler, linker and binary utilities
ii binutils-x86-64-linux-gnu 2.29.1-12ubuntu1 amd64 GNU binary utilities, for x86-64-linux-gnu target
ii bison 2:3.0.4.dfsg-1build1 amd64 YACC-compatible parser generator
ii bluez 5.46-0ubuntu4 amd64 Bluetooth tools and daemons
ii bluez-cups 5.46-0ubuntu4 amd64 Bluetooth printer driver for CUPS
ii bluez-obexd 5.46-0ubuntu4 amd64 bluez obex daemon
ii branding-ubuntu 0.9 all Replacement artwork with Ubuntu branding
ii bridge-utils 1.5-9ubuntu2 amd64 Utilities for configuring the Linux Ethernet bridge
ii brltty 5.4-7ubuntu6 amd64 Access software for a blind person using a braille display
ii bsdmainutils 9.0.14ubuntu1 amd64 collection of more utilities from FreeBSD
ii bsdutils 1:2.30.2-0.1ubuntu1 amd64 basic utilities from 4.4BSD-Lite
ii btrfs-progs 4.13.3-1 amd64 Checksumming Copy on Write Filesystem utilities
ii btrfs-tools 4.13.3-1 amd64 transitional dummy package
ii build-essential 12.4ubuntu1 amd64 Informational list of build-essential packages
ii busybox-initramfs 1:1.27.2-2ubuntu3 amd64 Standalone shell setup for initramfs
ii busybox-static 1:1.27.2-2ubuntu3 amd64 Standalone rescue shell with tons of builtin utilities
ii bzip2 1.0.6-8.1 amd64 high-quality block-sorting file compressor - utilities
ii bzr 2.7.0+bzr6622-10 all easy to use distributed version control system
ii bzr-doc 2.7.0+bzr6622-10 all easy to use distributed version control system (documentation)
ii bzrtools 2.6.0-3 all Collection of tools for bzr
ii ca-certificates 20170717 all Common CA certificates
ii caribou 0.4.21-4 amd64 Configurable on screen keyboard with scanning mode
ii cgroupfs-mount 1.4 all Light-weight package to set up cgroupfs mounts
ii checkinstall 1.6.2-4ubuntu2 amd64 installation tracker
ii cheese 3.26.0-2ubuntu1 amd64 tool to take pictures and videos from your webcam
ii cheese-common 3.26.0-2ubuntu1 all Common files for the Cheese tool to take pictures and videos
ii chromium-browser 63.0.3239.108-0ubuntu1 amd64 Chromium web browser, open-source version of Chrome
ii chromium-browser-l10n 63.0.3239.108-0ubuntu1 all chromium-browser language packages
ii chromium-codecs-ffmpeg-extra 63.0.3239.108-0ubuntu1 amd64 Extra ffmpeg codecs for the Chromium Browser
ii colord 1.3.3-2build1 amd64 system service to manage device colour profiles -- system daemon
ii colord-data 1.3.3-2build1 all system service to manage device colour profiles -- data files
ii command-not-found 0.3ubuntu18.04.0~pre1 all Suggest installation of packages in interactive bash sessions
ii command-not-found-data 0.3ubuntu18.04.0~pre1 amd64 Set of data files for command-not-found.
ii console-setup 1.166ubuntu7 all console font and keymap setup program
ii console-setup-linux 1.166ubuntu7 all Linux specific part of console-setup
ii coreutils 8.26-3ubuntu4 amd64 GNU core utilities
ii cpio 2.12+dfsg-6 amd64 GNU cpio -- a program to manage archives of files
ii cpp 4:7.2.0-1ubuntu1 amd64 GNU C preprocessor (cpp)
ii cpp-7 7.2.0-18ubuntu2 amd64 GNU C preprocessor
ii cracklib-runtime 2.9.2-5build1 amd64 runtime support for password checker library cracklib2
ii crda 3.18-1 amd64 wireless Central Regulatory Domain Agent
ii cron 3.0pl1-128.1ubuntu1 amd64 process scheduling daemon
ii cups 2.2.6-4 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface
ii cups-browsed 1.17.9-1 amd64 OpenPrinting CUPS Filters - cups-browsed
ii cups-bsd 2.2.6-4 amd64 Common UNIX Printing System(tm) - BSD commands
ii cups-client 2.2.6-4 amd64 Common UNIX Printing System(tm) - client programs (SysV)
ii cups-common 2.2.6-4 all Common UNIX Printing System(tm) - common files
ii cups-core-drivers 2.2.6-4 amd64 Common UNIX Printing System(tm) - driverless printing
ii cups-daemon 2.2.6-4 amd64 Common UNIX Printing System(tm) - daemon
ii cups-filters 1.17.9-1 amd64 OpenPrinting CUPS Filters - Main Package
ii cups-filters-core-drivers 1.17.9-1 amd64 OpenPrinting CUPS Filters - Driverless printing
ii cups-ipp-utils 2.2.6-4 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities
ii cups-pk-helper 0.2.6-1ubuntu1 amd64 PolicyKit helper to configure cups with fine-grained privileges
ii cups-ppdc 2.2.6-4 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities
ii cups-server-common 2.2.6-4 all Common UNIX Printing System(tm) - server common files
ii curl 7.57.0-1ubuntu1 amd64 command line tool for transferring data with URL syntax
ii cvs 2:1.12.13+real-25 amd64 Concurrent Versions System
ii cvsps 2.1-8 amd64 Tool to generate CVS patch set information
ii dash 0.5.8-2.3ubuntu1 amd64 POSIX-compliant shell
ii db5.3-util 5.3.28-13.1 amd64 Berkeley v5.3 Database Utilities
ii dbus 1.12.2-1ubuntu1 amd64 simple interprocess messaging system (daemon and utilities)
ii dbus-user-session 1.12.2-1ubuntu1 amd64 simple interprocess messaging system (systemd --user integration)
ii dbus-x11 1.12.2-1ubuntu1 amd64 simple interprocess messaging system (X11 deps)
ii dc 1.06.95-9build2 amd64 GNU dc arbitrary precision reverse-polish calculator
ii dconf-cli 0.26.0-2 amd64 simple configuration storage system - utilities
ii dconf-gsettings-backend:amd64 0.26.0-2 amd64 simple configuration storage system - GSettings back-end
ii dconf-service 0.26.0-2 amd64 simple configuration storage system - D-Bus service
ii debconf 1.5.65 all Debian configuration management system
ii debconf-i18n 1.5.65 all full internationalization support for debconf
ii debian-keyring 2017.11.24 all GnuPG keys of Debian Developers and Maintainers
ii debianutils 4.8.4 amd64 Miscellaneous utilities specific to Debian
ii debootstrap 1.0.91ubuntu2 all Bootstrap a basic Debian system
ii deja-dup 37.1-0ubuntu1 amd64 Back up your files
ii desktop-file-utils 0.23-1ubuntu3 amd64 Utilities for .desktop files
ii devhelp 3.26.1-1 amd64 GNOME developers help program
ii devhelp-common 3.26.1-1 all Common files for devhelp and its library
ii dh-python 2.20170125 all Debian helper tools for packaging Python libraries and applications
ii dictionaries-common 1.27.2 all spelling dictionaries - common utilities
ii diffstat 1.61-1build1 amd64 produces graph of changes introduced by a diff file
ii diffutils 1:3.6-1 amd64 File comparison utilities
ii dirmngr 2.1.15-1ubuntu8 amd64 GNU privacy guard - network certificate management service
ii distro-info-data 0.37 all information about the distributions' releases (data files)
ii dmidecode 3.1-1 amd64 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.137-2ubuntu3 amd64 Linux Kernel Device Mapper userspace library
ii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme
ii dns-root-data 2017072601 all DNS root data including root zone and DNSSEC key
ii dnsmasq-base 2.78-1 amd64 Small caching DNS proxy and DHCP/TFTP server
ii dnsutils 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 Clients provided with BIND
ii doc-base 0.10.7 all utilities to manage online documentation
ii docker-doc 17.03.2-0ubuntu1 all Linux container runtime -- documentation
ii docker.io 17.03.2-0ubuntu1 amd64 Linux container runtime
ii dosfstools 4.1-1 amd64 utilities for making and checking MS-DOS FAT filesystems
ii dpkg 1.19.0.4ubuntu1 amd64 Debian package management system
ii dpkg-dev 1.19.0.4ubuntu1 all Debian package development tools
ii e2fslibs:amd64 1.43.8-1ubuntu1 amd64 ext2/ext3/ext4 file system libraries
ii e2fsprogs 1.43.8-1ubuntu1 amd64 ext2/ext3/ext4 file system utilities
ii ed 1.10-2.1 amd64 classic UNIX line editor
ii efibootmgr 15-1 amd64 Interact with the EFI Boot Manager
ii eject 2.1.5+deb1+cvs20081104-13.2 amd64 ejects CDs and operates CD-Changers under Linux
ii emacsen-common 2.0.8 all Common facilities for all emacsen
ii enchant 1.6.0-11.1 amd64 Wrapper for various spell checker engines (binary programs)
ii eog 3.26.2-2 amd64 Eye of GNOME graphics viewer program
ii espeak-ng-data:amd64 1.49.1+dfsg-2 amd64 Multi-lingual software speech synthesizer: speech data files
ii evince 3.26.0-2 amd64 Document (PostScript, PDF) viewer
ii evince-common 3.26.0-2 all Document (PostScript, PDF) viewer - common files
ii evolution-data-server 3.26.3-1ubuntu1 amd64 evolution database backend server
ii evolution-data-server-common 3.26.3-1ubuntu1 all architecture independent files for Evolution Data Server
ii example-content 49 all Ubuntu example content
ii exim4 4.89-9ubuntu4 all metapackage to ease Exim MTA (v4) installation
ii exim4-base 4.89-9ubuntu4 amd64 support files for all Exim MTA (v4) packages
ii exim4-config 4.89-9ubuntu4 all configuration for the Exim MTA (v4)
ii exim4-daemon-light 4.89-9ubuntu4 amd64 lightweight Exim MTA (v4) daemon
ii exuberant-ctags 1:5.9~svn20110310-11 amd64 build tag file indexes of source code definitions
ii fakeroot 1.21-1ubuntu2 amd64 tool for simulating superuser privileges
ii fdisk 2.30.2-0.1ubuntu1 amd64 collection of partitioning utilities
ii file 1:5.32-1 amd64 Recognize the type of data in a file using "magic" numbers
ii file-roller 3.26.2-0ubuntu1 amd64 archive manager for GNOME
ii findutils 4.6.0+git+20170828-2 amd64 utilities for finding files--find, xargs
ii firefox 57.0.1+build2-0ubuntu1 amd64 Safe and easy web browser from Mozilla
ii firefox-locale-en 57.0.1+build2-0ubuntu1 amd64 English language pack for Firefox
ii flex 2.6.1-1.3 amd64 fast lexical analyzer generator
ii fontconfig 2.12.6-0ubuntu1 amd64 generic font configuration library - support binaries
ii fontconfig-config 2.12.6-0ubuntu1 all generic font configuration library - configuration
ii fonts-beng 2:1.2 all Metapackage to install Bengali and Assamese fonts
ii fonts-beng-extra 1.0-6 all TrueType fonts for Bengali language
ii fonts-dejavu 2.37-1 all metapackage to pull in fonts-dejavu-core and fonts-dejavu-extra
ii fonts-dejavu-core 2.37-1 all Vera font family derivate with additional characters
ii fonts-dejavu-extra 2.37-1 all Vera font family derivate with additional characters (extra variants)
ii fonts-deva 2:1.2 all Meta package to install all Devanagari fonts
ii fonts-deva-extra 3.0-4 all Free fonts for Devanagari script
ii fonts-droid-fallback 1:6.0.1r16-1.1 all handheld device font with extensive style and language support (fallback)
ii fonts-freefont-ttf 20120503-6 all Freefont Serif, Sans and Mono Truetype fonts
ii fonts-gargi 2.0-4 all OpenType Devanagari font
ii fonts-gubbi 1.3-3 all Gubbi free font for Kannada script
ii fonts-gujr 2:1.2 all Meta package to install all Gujarati fonts
ii fonts-gujr-extra 1.0-6 all Free fonts for Gujarati script
ii fonts-guru 2:1.2 all Meta package to install all Punjabi fonts
ii fonts-guru-extra 2.0-4 all Free fonts for Punjabi language
ii fonts-indic 2:1.2 all Meta package to install all Indian language fonts
ii fonts-kacst 2.01+mry-14 all KACST free TrueType Arabic fonts
ii fonts-kacst-one 5.0+svn11846-9 all TrueType font designed for Arabic language
ii fonts-kalapi 1.0-2 all Kalapi Gujarati Unicode font
ii fonts-khmeros-core 5.0-7ubuntu1 all KhmerOS Unicode fonts for the Khmer language of Cambodia
ii fonts-knda 2:1.2 all Meta package for Kannada fonts
ii fonts-lao 0.0.20060226-9ubuntu1 all TrueType font for Lao language
ii fonts-lato 2.0-2 all sans-serif typeface family font
ii fonts-liberation 1:1.07.4-5 all Fonts with the same metrics as Times, Arial and Courier
ii fonts-lklug-sinhala 0.6-3 all Unicode Sinhala font by Lanka Linux User Group
ii fonts-lohit-beng-assamese 2.91.5-1 all Lohit TrueType font for Assamese Language
ii fonts-lohit-beng-bengali 2.91.5-1 all Lohit TrueType font for Bengali Language
ii fonts-lohit-deva 2.95.4-2 all Lohit TrueType font for Devanagari script
ii fonts-lohit-gujr 2.92.4-2 all Lohit TrueType font for Gujarati Language
ii fonts-lohit-guru 2.91.2-1 all Lohit TrueType font for Punjabi Language
ii fonts-lohit-knda 2.5.4-1 all Lohit TrueType font for Kannada Language
ii fonts-lohit-mlym 2.92.2-1 all Lohit TrueType font for Malayalam Language
ii fonts-lohit-orya 2.91.2-1 all Lohit TrueType font for Oriya Language
ii fonts-lohit-taml 2.91.3-1 all Lohit TrueType font for Tamil Language
ii fonts-lohit-taml-classical 2.5.4-1 all Lohit Tamil TrueType fonts for Tamil script
ii fonts-lohit-telu 2.5.5-1 all Lohit TrueType font for Telugu Language
ii fonts-mlym 2:1.2 all Meta package to install all Malayalam fonts
ii fonts-nakula 1.0-3 all Free Unicode compliant Devanagari font
ii fonts-navilu 1.2-2 all Handwriting font for Kannada
ii fonts-noto-cjk 1:20170601+repack1-1 all "No Tofu" font families with large Unicode coverage (CJK regular and bold)
ii fonts-noto-mono 20171026-2 all "No Tofu" monospaced font family with large Unicode coverage
ii fonts-opensymbol 2:102.10+LibO5.4.3-0ubuntu1 all OpenSymbol TrueType font
ii fonts-orya 2:1.2 all Meta package to install all Oriya fonts
ii fonts-orya-extra 2.0-5 all Free fonts for Oriya script
ii fonts-pagul 1.0-7 all Free TrueType font for the Sourashtra language
ii fonts-sahadeva 1.0-4 all Free Unicode compliant Devanagari font
ii fonts-samyak-deva 1.2.2-4 all Samyak TrueType font for Devanagari script
ii fonts-samyak-gujr 1.2.2-4 all Samyak TrueType font for Gujarati language
ii fonts-samyak-mlym 1.2.2-4 all Samyak TrueType font for Malayalam language
ii fonts-samyak-taml 1.2.2-4 all Samyak TrueType font for Tamil language
ii fonts-sarai 1.0-2 all truetype font for devanagari script
ii fonts-sil-abyssinica 1.500-1 all smart Unicode font for Ethiopian and Erythrean scripts (Amharic et al.)
ii fonts-sil-padauk 3.003-1 all Burmese Unicode 6 truetype font with OT and Graphite support
ii fonts-smc 1:7.0 all Metapackage for various TrueType fonts for Malayalam Language
ii fonts-smc-anjalioldlipi 7.0-2 all AnjaliOldLipi malayalam font
ii fonts-smc-chilanka 1.2.0-2 all Chilanka malayalam font
ii fonts-smc-dyuthi 2.0-1 all Dyuthi malayalam font
ii fonts-smc-karumbi 1.0-1 all Karumbi malayalam font
ii fonts-smc-keraleeyam 2.0-1 all Keraleeyam malayalam font
ii fonts-smc-manjari 1.1-2 all Manjari malayalam font
ii fonts-smc-meera 7.0-2 all Meera malayalam font
ii fonts-smc-rachana 7.0-2 all Rachana malayalam font
ii fonts-smc-raghumalayalamsans 2.1.1-2 all RaghuMalayalamSans malayalam font
ii fonts-smc-suruma 3.2.1-1 all Suruma malayalam font
ii fonts-smc-uroob 2.0-1 all Uroob malayalam font
ii fonts-symbola 2.60-1 all symbolic font providing emoji characters from Unicode 9.0
ii fonts-taml 2:1.3 all Meta package to install all Tamil fonts
ii fonts-telu 2:1.2 all Meta package to install all Telugu fonts
ii fonts-telu-extra 2.0-4 all Free fonts for Telugu script
ii fonts-thai-tlwg 1:0.6.4-1 all Thai fonts maintained by TLWG (metapackage)
ii fonts-tibetan-machine 1.901b-5 all font for Tibetan, Dzongkha and Ladakhi (OpenType Unicode)
ii fonts-tlwg-garuda 1:0.6.4-1 all Thai Garuda font (dependency package)
ii fonts-tlwg-garuda-ttf 1:0.6.4-1 all Thai Garuda TrueType font
ii fonts-tlwg-kinnari 1:0.6.4-1 all Thai Kinnari font (dependency package)
ii fonts-tlwg-kinnari-ttf 1:0.6.4-1 all Thai Kinnari TrueType font
ii fonts-tlwg-laksaman 1:0.6.4-1 all Thai Laksaman font (dependency package)
ii fonts-tlwg-laksaman-ttf 1:0.6.4-1 all Thai Laksaman TrueType font
ii fonts-tlwg-loma 1:0.6.4-1 all Thai Loma font (dependency package)
ii fonts-tlwg-loma-ttf 1:0.6.4-1 all Thai Loma TrueType font
ii fonts-tlwg-mono 1:0.6.4-1 all Thai TlwgMono font (dependency package)
ii fonts-tlwg-mono-ttf 1:0.6.4-1 all Thai TlwgMono TrueType font
ii fonts-tlwg-norasi 1:0.6.4-1 all Thai Norasi font (dependency package)
ii fonts-tlwg-norasi-ttf 1:0.6.4-1 all Thai Norasi TrueType font
ii fonts-tlwg-purisa 1:0.6.4-1 all Thai Purisa font (dependency package)
ii fonts-tlwg-purisa-ttf 1:0.6.4-1 all Thai Purisa TrueType font
ii fonts-tlwg-sawasdee 1:0.6.4-1 all Thai Sawasdee font (dependency package)
ii fonts-tlwg-sawasdee-ttf 1:0.6.4-1 all Thai Sawasdee TrueType font
ii fonts-tlwg-typewriter 1:0.6.4-1 all Thai TlwgTypewriter font (dependency package)
ii fonts-tlwg-typewriter-ttf 1:0.6.4-1 all Thai TlwgTypewriter TrueType font
ii fonts-tlwg-typist 1:0.6.4-1 all Thai TlwgTypist font (dependency package)
ii fonts-tlwg-typist-ttf 1:0.6.4-1 all Thai TlwgTypist TrueType font
ii fonts-tlwg-typo 1:0.6.4-1 all Thai TlwgTypo font (dependency package)
ii fonts-tlwg-typo-ttf 1:0.6.4-1 all Thai TlwgTypo TrueType font
ii fonts-tlwg-umpush 1:0.6.4-1 all Thai Umpush font (dependency package)
ii fonts-tlwg-umpush-ttf 1:0.6.4-1 all Thai Umpush TrueType font
ii fonts-tlwg-waree 1:0.6.4-1 all Thai Waree font (dependency package)
ii fonts-tlwg-waree-ttf 1:0.6.4-1 all Thai Waree TrueType font
ii foomatic-db-compressed-ppds 20171012-1 all OpenPrinting printer support - Compressed PPDs derived from the database
ii friendly-recovery 0.2.37 all Make recovery boot mode more user-friendly
ii ftp 0.17-34 amd64 classical file transfer client
ii fuse 2.9.7-1ubuntu1 amd64 Filesystem in Userspace
ii fwupd 1.0.2-1 amd64 Firmware update daemon
ii fwupdate 9-3 amd64 Tools to manage UEFI firmware updates
ii fwupdate-signed 1.15+9-3 amd64 Linux Firmware Updater EFI signed binary
ii g++ 4:7.2.0-1ubuntu1 amd64 GNU C++ compiler
ii g++-7 7.2.0-18ubuntu2 amd64 GNU C++ compiler
ii gcc 4:7.2.0-1ubuntu1 amd64 GNU C compiler
ii gcc-7 7.2.0-18ubuntu2 amd64 GNU C compiler
ii gcc-7-base:amd64 7.2.0-18ubuntu2 amd64 GCC, the GNU Compiler Collection (base package)
ii gcr 3.20.0-6 amd64 GNOME crypto services (daemon and tools)
ii gdb 8.0.1-0ubuntu3 amd64 GNU Debugger
ii gdbserver 8.0.1-0ubuntu3 amd64 GNU Debugger (remote server)
ii gdisk 1.0.3-1 amd64 GPT fdisk text-mode partitioning tool
ii gdm3 3.26.2.1-2ubuntu1 amd64 GNOME Display Manager
ii gedit 3.22.1-1ubuntu1 amd64 official text editor of the GNOME desktop environment
ii gedit-common 3.22.1-1ubuntu1 all official text editor of the GNOME desktop environment (support files)
ii genisoimage 9:1.1.11-3ubuntu2 amd64 Creates ISO-9660 CD-ROM filesystem images
ii geoclue-2.0 2.4.7-1ubuntu1 amd64 geoinformation service
ii geoip-database 20171107-1 all IP lookup command line tools that use the GeoIP library (country database)
ii gettext 0.19.8.1-4ubuntu2 amd64 GNU Internationalization utilities
ii gettext-base 0.19.8.1-4ubuntu2 amd64 GNU Internationalization utilities for the base system
ii ghostscript 9.21~dfsg+1-0ubuntu3 amd64 interpreter for the PostScript language and for PDF
ii ghostscript-x 9.21~dfsg+1-0ubuntu3 amd64 interpreter for the PostScript language and for PDF - X11 support
ii gimp 2.8.20-1.1 amd64 GNU Image Manipulation Program
ii gimp-data 2.8.20-1.1 all Data files for GIMP
ii gimp-help-common 2.8.2-0.1 all Data files for the GIMP documentation
ii gimp-help-en 2.8.2-0.1 all Documentation for the GIMP (English)
ii gir1.2-accountsservice-1.0 0.6.45-1ubuntu1 amd64 GObject introspection data for AccountService
ii gir1.2-atk-1.0:amd64 2.26.1-2 amd64 ATK accessibility toolkit (GObject introspection)
ii gir1.2-atspi-2.0:amd64 2.26.2-2 amd64 Assistive Technology Service Provider (GObject introspection)
ii gir1.2-caribou-1.0 0.4.21-4 amd64 GObject introspection for the Caribou library
ii gir1.2-clutter-1.0:amd64 1.26.2+dfsg-4 amd64 GObject introspection data for the Clutter 1.0 library
ii gir1.2-cogl-1.0:amd64 1.22.2-3 amd64 GObject introspection data for the Cogl 1.0 library
ii gir1.2-coglpango-1.0:amd64 1.22.2-3 amd64 GObject introspection data for the CoglPango 1.0 library
ii gir1.2-dbusmenu-glib-0.4:amd64 16.04.1+18.04.20171206-0ubuntu1 amd64 typelib file for libdbusmenu-glib4
ii gir1.2-dee-1.0 1.2.7+17.10.20170616-0ubuntu3 amd64 GObject introspection data for the Dee library
ii gir1.2-freedesktop:amd64 1.54.1-4 amd64 Introspection data for some FreeDesktop components
ii gir1.2-gck-1:amd64 3.20.0-6 amd64 GObject introspection data for the GCK library
ii gir1.2-gcr-3:amd64 3.20.0-6 amd64 GObject introspection data for the GCR library
ii gir1.2-gdesktopenums-3.0:amd64 3.24.1-1ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas
ii gir1.2-gdkpixbuf-2.0:amd64 2.36.11-1 amd64 GDK Pixbuf library - GObject-Introspection
ii gir1.2-gdm-1.0 3.26.2.1-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager
ii gir1.2-geoclue-2.0:amd64 2.4.7-1ubuntu1 amd64 convenience library to interact with geoinformation service (introspection)
ii gir1.2-geocodeglib-1.0:amd64 3.25.4.1-3 amd64 introspection data for geocode-glib library
ii gir1.2-glib-2.0:amd64 1.54.1-4 amd64 Introspection data for GLib, GObject, Gio and GModule
ii gir1.2-gmenu-3.0:amd64 3.13.3-11ubuntu1 amd64 GObject introspection data for the GNOME menu library
ii gir1.2-gnomebluetooth-1.0:amd64 3.26.1-2 amd64 Introspection data for GnomeBluetooth
ii gir1.2-gnomedesktop-3.0:amd64 3.26.2-1ubuntu1 amd64 Introspection data for GnomeDesktop
ii gir1.2-gst-plugins-base-1.0 1.12.4-1 amd64 GObject introspection data for the GStreamer Plugins Base library
ii gir1.2-gstreamer-1.0 1.12.4-1 amd64 GObject introspection data for the GStreamer library
ii gir1.2-gtk-3.0:amd64 3.22.26-2ubuntu1 amd64 GTK+ graphical user interface library -- gir bindings
ii gir1.2-gtksource-3.0:amd64 3.24.6-1 amd64 gir files for the GTK+ syntax highlighting widget
ii gir1.2-gudev-1.0:amd64 1:232-1 amd64 libgudev-1.0 introspection data
ii gir1.2-gweather-3.0:amd64 3.26.0-1ubuntu1 amd64 GObject introspection data for the GWeather library
ii gir1.2-ibus-1.0:amd64 1.5.17-3ubuntu1 amd64 Intelligent Input Bus - introspection data
ii gir1.2-javascriptcoregtk-4.0:amd64 2.18.4-1 amd64 JavaScript engine library from WebKitGTK+ - GObject introspection data
ii gir1.2-json-1.0:amd64 1.4.2-3 amd64 GLib JSON manipulation library (introspection data)
ii gir1.2-mutter-1:amd64 3.26.2-1 amd64 GObject introspection data for Mutter
ii gir1.2-networkmanager-1.0:amd64 1.8.4-1ubuntu3 amd64 GObject introspection data for the libnm-glib/libnm-util library
ii gir1.2-nm-1.0:amd64 1.8.4-1ubuntu3 amd64 GObject introspection data for the libnm library
ii gir1.2-nmgtk-1.0:amd64 1.8.4-1ubuntu1 amd64 GObject introspection data for libnm-gtk
ii gir1.2-notify-0.7:amd64 0.7.7-3 amd64 sends desktop notifications to a notification daemon (Introspection files)
ii gir1.2-packagekitglib-1.0 1.1.7-1 amd64 GObject introspection data for the PackageKit GLib library
ii gir1.2-pango-1.0:amd64 1.40.14-1 amd64 Layout and rendering of internationalized text - gir bindings
ii gir1.2-peas-1.0:amd64 1.22.0-2 amd64 Application plugin library (introspection files)
ii gir1.2-polkit-1.0 0.105-18 amd64 GObject introspection data for PolicyKit
ii gir1.2-rb-3.0:amd64 3.4.2-1ubuntu1 amd64 GObject introspection data for the rhythmbox music player
ii gir1.2-rsvg-2.0:amd64 2.40.18-2 amd64 gir files for renderer library for SVG files
ii gir1.2-secret-1:amd64 0.18.5-3.1ubuntu2 amd64 Secret store (GObject-Introspection)
ii gir1.2-soup-2.4:amd64 2.60.2-2 amd64 GObject introspection data for the libsoup HTTP library
ii gir1.2-totem-1.0:amd64 3.26.0-0ubuntu2 amd64 GObject introspection data for Totem media player
ii gir1.2-totemplparser-1.0:amd64 3.26.0-1ubuntu2 amd64 GObject introspection data for the Totem Playlist Parser library
ii gir1.2-udisks-2.0:amd64 2.6.5-2ubuntu2 amd64 GObject based library to access udisks2 - introspection data
ii gir1.2-unity-5.0:amd64 7.1.4+17.10.20170605-0ubuntu1 amd64 GObject introspection data for the Unity library
ii gir1.2-upowerglib-1.0:amd64 0.99.6-1 amd64 GObject introspection data for upower
ii gir1.2-vte-2.91:amd64 0.48.4-0ubuntu1 amd64 GObject introspection data for the VTE library
ii gir1.2-webkit2-4.0:amd64 2.18.4-1 amd64 Web content engine library for GTK+ - GObject introspection data
ii gir1.2-wnck-3.0:amd64 3.24.1-2 amd64 GObject introspection data for the WNCK library
ii git 1:2.15.1-1ubuntu2 amd64 fast, scalable, distributed revision control system
ii git-cvs 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (cvs interoperability)
ii git-doc 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (documentation)
ii git-email 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (email add-on)
ii git-gui 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (GUI)
ii git-man 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (manual pages)
ii git-mediawiki 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (MediaWiki remote helper)
ii git-svn 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (svn interoperability)
ii gitk 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (revision tree visualizer)
ii gitweb 1:2.15.1-1ubuntu2 all fast, scalable, distributed revision control system (web interface)
ii gjs 1.50.2-2 amd64 Mozilla-based javascript bindings for the GNOME platform
ii gkbd-capplet 3.26.0-2 amd64 GNOME control center tools for libgnomekbd
ii glib-networking:amd64 2.54.1-2 amd64 network-related giomodules for GLib
ii glib-networking-common 2.54.1-2 all network-related giomodules for GLib - data files
ii glib-networking-services 2.54.1-2 amd64 network-related giomodules for GLib - D-Bus services
ii glibc-doc 2.26-0ubuntu2 all GNU C Library: Documentation
ii glibc-doc-reference 2.25-3 all GNU C Library: Documentation
ii gnome-accessibility-themes 3.22.3-3ubuntu1 all High Contrast GTK+ 2 theme
ii gnome-bluetooth 3.26.1-2 amd64 GNOME Bluetooth tools
ii gnome-calculator 1:3.26.0-0ubuntu1 amd64 GNOME desktop calculator
ii gnome-calendar 3.26.2-3 amd64 Calendar application for GNOME
ii gnome-control-center 1:3.26.2-0ubuntu2 amd64 utilities to configure the GNOME desktop
ii gnome-control-center-data 1:3.26.2-0ubuntu2 all configuration applets for GNOME - data files
ii gnome-control-center-faces 1:3.26.2-0ubuntu2 all utilities to configure the GNOME desktop - faces images
ii gnome-desktop3-data 3.26.2-1ubuntu1 all Common files for GNOME desktop apps
ii gnome-disk-utility 3.26.1-0ubuntu1 amd64 manage and configure disk drives and media
ii gnome-font-viewer 3.26.0-2 amd64 font viewer for GNOME
ii gnome-getting-started-docs 3.26.1-0ubuntu1 all Help a new user get started in GNOME
ii gnome-keyring 3.20.1-1ubuntu1 amd64 GNOME keyring services (daemon and tools)
ii gnome-logs 3.26.2-2 amd64 viewer for the systemd journal.
ii gnome-mahjongg 1:3.22.0-2 amd64 classic Eastern tile game for GNOME
ii gnome-menus 3.13.3-11ubuntu1 amd64 GNOME implementation of the freedesktop menu specification
ii gnome-mines 1:3.26.0-2 amd64 popular minesweeper puzzle game for GNOME
ii gnome-online-accounts 3.26.2-1 amd64 service to manage online accounts for the GNOME desktop
ii gnome-orca 3.26.0-2ubuntu1 all Scriptable screen reader
ii gnome-power-manager 3.25.90-2 amd64 power management tool for the GNOME desktop
ii gnome-screensaver 3.6.1-8ubuntu1 amd64 GNOME screen saver and locker
ii gnome-screenshot 3.25.0-0ubuntu2 amd64 screenshot application for GNOME
ii gnome-session-bin 3.26.1-0ubuntu8 amd64 GNOME Session Manager - Minimal runtime
ii gnome-session-canberra 0.30-5ubuntu1 amd64 GNOME session log in and log out sound events
ii gnome-session-common 3.26.1-0ubuntu8 all GNOME Session Manager - common files
ii gnome-settings-daemon 3.26.2-0ubuntu1 amd64 daemon handling the GNOME session settings
ii gnome-settings-daemon-schemas 3.26.2-0ubuntu1 all Shared schemas for gnome-settings-daemon
ii gnome-shell 3.26.2-0ubuntu2 amd64 graphical shell for the GNOME desktop
ii gnome-shell-common 3.26.2-0ubuntu2 all common files for the GNOME graphical shell
ii gnome-shell-extension-appindicator 18.04 all App indicators for GNOME Shell
ii gnome-shell-extension-ubuntu-dock 0.8.1 all Ubuntu Dock for GNOME Shell
ii gnome-software 3.26.3-2ubuntu1 amd64 Software Center for GNOME
ii gnome-software-common 3.26.3-2ubuntu1 all Software Center for GNOME (common files)
ii gnome-software-plugin-snap 3.26.3-2ubuntu1 amd64 Snap support for GNOME Software
ii gnome-sudoku 1:3.26.0-2 amd64 Sudoku puzzle game for GNOME
ii gnome-system-monitor 3.26.0-1ubuntu1 amd64 Process viewer and system resource monitor for GNOME
ii gnome-terminal 3.24.2-0ubuntu4 amd64 GNOME terminal emulator application
ii gnome-terminal-data 3.24.2-0ubuntu4 all Data files for the GNOME terminal emulator
ii gnome-user-docs 3.26.2.1-0ubuntu1 all GNOME user's guide
ii gnome-user-guide 3.26.2.1-0ubuntu1 all GNOME user's guide - dummy transitional package
ii gnome-video-effects 0.4.3-1ubuntu1 all Collection of GStreamer effects
ii gnu-standards 2010.03.11-1 all GNU coding and package maintenance standards
ii gnupg 2.1.15-1ubuntu8 amd64 GNU privacy guard - a free PGP replacement
ii gnupg-agent 2.1.15-1ubuntu8 amd64 GNU privacy guard - cryptographic agent
ii gnupg-l10n 2.1.15-1ubuntu8 all GNU privacy guard - localization files
ii golang 2:1.9~2ubuntu1 amd64 Go programming language compiler - metapackage
ii golang-1.9 1.9.2-3ubuntu1 all Go programming language compiler - metapackage
ii golang-1.9-doc 1.9.2-3ubuntu1 all Go programming language - documentation
ii golang-1.9-go 1.9.2-3ubuntu1 amd64 Go programming language compiler, linker, compiled stdlib
ii golang-1.9-race-detector-runtime 0.0+svn285455-0ubuntu1 amd64 Runtime support for Go's race detector
ii golang-1.9-src 1.9.2-3ubuntu1 amd64 Go programming language - source files
ii golang-doc 2:1.9~2ubuntu1 all Go programming language - documentation
ii golang-go 2:1.9~2ubuntu1 amd64 Go programming language compiler, linker, compiled stdlib
ii golang-race-detector-runtime 2:1.9~2ubuntu1 amd64 Runtime support for Go's race detector
ii golang-src 2:1.9~2ubuntu1 amd64 Go programming language - source files
ii gpgv 2.1.15-1ubuntu8 amd64 GNU privacy guard - signature verification tool
ii grep 3.1-2 amd64 GNU grep, egrep and fgrep
ii grilo-plugins-0.3-base:amd64 0.3.5-1ubuntu1 amd64 Framework for discovering and browsing media - Plugins
ii groff-base 1.22.3-9 amd64 GNU troff text-formatting system (base system components)
ii grub-common 2.02-2ubuntu2 amd64 GRand Unified Bootloader (common files)
ii grub-gfxpayload-lists 0.7 amd64 GRUB gfxpayload blacklist
ii grub-pc 2.02-2ubuntu2 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)
ii grub-pc-bin 2.02-2ubuntu2 amd64 GRand Unified Bootloader, version 2 (PC/BIOS binaries)
ii grub2-common 2.02-2ubuntu2 amd64 GRand Unified Bootloader (common files for version 2)
ii gsettings-desktop-schemas 3.24.1-1ubuntu1 all GSettings desktop-wide schemas
ii gsettings-ubuntu-schemas 0.0.7+17.10.20170922-0ubuntu1 all GSettings deskop-wide schemas for Ubuntu
ii gsfonts 1:8.11+urwcyr1.0.7~pre44-4.4 all Fonts for the Ghostscript interpreter(s)
ii gstreamer1.0-alsa:amd64 1.12.4-1 amd64 GStreamer plugin for ALSA
ii gstreamer1.0-clutter-3.0:amd64 3.0.24-2 amd64 Clutter PLugin for GStreamer 1.0
ii gstreamer1.0-packagekit 1.1.7-1 amd64 GStreamer plugin to install codecs using PackageKit
ii gstreamer1.0-plugins-base:amd64 1.12.4-1 amd64 GStreamer plugins from the "base" set
ii gstreamer1.0-plugins-base-apps 1.12.4-1 amd64 GStreamer helper programs from the "base" set
ii gstreamer1.0-plugins-good:amd64 1.12.4-1ubuntu1 amd64 GStreamer plugins from the "good" set
ii gstreamer1.0-pulseaudio:amd64 1.12.4-1ubuntu1 amd64 GStreamer plugin for PulseAudio
ii gstreamer1.0-tools 1.12.4-1 amd64 Tools for use with GStreamer
ii gstreamer1.0-x:amd64 1.12.4-1 amd64 GStreamer plugins for X11 and Pango
ii gtk-update-icon-cache 3.22.26-2ubuntu1 amd64 icon theme caching utility
ii gtk2-engines-murrine:amd64 0.98.2-2ubuntu1 amd64 cairo-based gtk+-2.0 theme engine
ii gucharmap 1:10.0.3-2 amd64 Unicode character picker and font browser
ii guile-2.0-libs:amd64 2.0.13+1-5 amd64 Core Guile libraries
ii gvfs:amd64 1.34.1-1ubuntu4 amd64 userspace virtual filesystem - GIO module
ii gvfs-backends 1.34.1-1ubuntu4 amd64 userspace virtual filesystem - backends
ii gvfs-bin 1.34.1-1ubuntu4 amd64 userspace virtual filesystem - binaries
ii gvfs-common 1.34.1-1ubuntu4 all userspace virtual filesystem - common data files
ii gvfs-daemons 1.34.1-1ubuntu4 amd64 userspace virtual filesystem - servers
ii gvfs-fuse 1.34.1-1ubuntu4 amd64 userspace virtual filesystem - fuse server
ii gvfs-libs:amd64 1.34.1-1ubuntu4 amd64 userspace virtual filesystem - private libraries
ii gzip 1.6-5ubuntu1 amd64 GNU compression utilities
ii hdparm 9.51+ds-1 amd64 tune hard disk parameters for high performance
ii hicolor-icon-theme 0.17-1 all default fallback theme for FreeDesktop.org icon themes
ii hostname 3.18 amd64 utility to set/show the host name or domain name
ii hplip 3.17.10+repack0-2 amd64 HP Linux Printing and Imaging System (HPLIP)
ii hplip-data 3.17.10+repack0-2 all HP Linux Printing and Imaging - data files
ii humanity-icon-theme 0.6.14 all Humanity Icon theme
ii hunspell-en-us 1:2017.08.24 all English_american dictionary for hunspell
ii hyphen-en-us 2.8.8-5 all English (US) hyphenation patterns
ii i965-va-driver:amd64 2.0.0+dfsg1-1 amd64 VAAPI driver for Intel G45 & HD Graphics family
ii iamerican 3.4.00-6 all American English dictionary for ispell (standard version)
ii ibus 1.5.17-3ubuntu1 amd64 Intelligent Input Bus - core
ii ibus-gtk:amd64 1.5.17-3ubuntu1 amd64 Intelligent Input Bus - GTK+2 support
ii ibus-gtk3:amd64 1.5.17-3ubuntu1 amd64 Intelligent Input Bus - GTK+3 support
ii ibus-table 1.9.14-3 all table engine for IBus
ii ienglish-common 3.4.00-6 all Common files for British and American ispell dictionaries
ii ifupdown 0.8.16ubuntu2 amd64 high level tools to configure network interfaces
ii iio-sensor-proxy 2.2-1 amd64 IIO sensors to D-Bus proxy
ii im-config 0.32-1ubuntu3 all Input method configuration framework
ii imagemagick 8:6.9.7.4+dfsg-16ubuntu5 amd64 image manipulation programs -- binaries
ii imagemagick-6-common 8:6.9.7.4+dfsg-16ubuntu5 all image manipulation programs -- infrastructure
ii imagemagick-6.q16 8:6.9.7.4+dfsg-16ubuntu5 amd64 image manipulation programs -- quantum depth Q16
ii info 6.5.0.dfsg.1-1 amd64 Standalone GNU Info documentation browser
ii init 1.51 amd64 metapackage ensuring an init system is installed
ii init-system-helpers 1.51 all helper tools for all init systems
ii initramfs-tools 0.125ubuntu13 all generic modular initramfs generator (automation)
ii initramfs-tools-bin 0.125ubuntu13 amd64 binaries used by initramfs-tools
ii initramfs-tools-core 0.125ubuntu13 all generic modular initramfs generator (core tools)
ii inputattach 1:1.6.0-2 amd64 utility to connect serial-attached peripherals to the input subsystem
ii install-info 6.5.0.dfsg.1-1 amd64 Manage installed documentation in info format
ii intltool-debian 0.35.0+20060710.4 all Help i18n of RFC822 compliant config files
ii ippusbxd 1.31-0ubuntu1 amd64 Daemon for IPP USB printer support
ii iproute2 4.14.1-0ubuntu2 amd64 networking and traffic control tools
ii iptables 1.6.1-2ubuntu2 amd64 administration tools for packet filtering and NAT
ii iputils-arping 3:20161105-1ubuntu2 amd64 Tool to send ICMP echo requests to an ARP address
ii iputils-ping 3:20161105-1ubuntu2 amd64 Tools to test the reachability of network hosts
ii iputils-tracepath 3:20161105-1ubuntu2 amd64 Tools to trace the network path to a remote host
ii irqbalance 1.3.0-0.1 amd64 Daemon to balance interrupts for SMP systems
ii irssi 1.0.5-1ubuntu1 amd64 terminal based IRC client
ii irssi-scripts 20170711 all collection of scripts for irssi
ii isc-dhcp-client 4.3.5-3ubuntu2 amd64 DHCP client for automatically obtaining an IP address
ii isc-dhcp-common 4.3.5-3ubuntu2 amd64 common manpages relevant to all of the isc-dhcp packages
ii iso-codes 3.77-1 all ISO language, territory, currency, script codes and their translations
ii ispell 3.4.00-6 amd64 International Ispell (an interactive spelling corrector)
ii iw 4.9-0.1 amd64 tool for configuring Linux wireless devices
ii javascript-common 11 all Base support for JavaScript library packages
ii kbd 2.0.3-2ubuntu3 amd64 Linux console font and keytable utilities
ii kerneloops 0.12+git20140509-6ubuntu2 amd64 kernel oops tracker
ii keyboard-configuration 1.166ubuntu7 all system-wide keyboard preferences
ii klibc-utils 2.0.4-9ubuntu2 amd64 small utilities built with klibc for early boot
ii kmod 24-1ubuntu2 amd64 tools for managing Linux kernel modules
ii krb5-locales 1.15.1-2 all internationalization support for MIT Kerberos
ii language-pack-en 1:17.10+20171012 all translation updates for language English
ii language-pack-en-base 1:17.10+20171012 all translations for language English
ii language-pack-gnome-en 1:17.10+20171012 all GNOME translation updates for language English
ii language-pack-gnome-en-base 1:17.10+20171012 all GNOME translations for language English
ii language-selector-common 0.184 all Language selector for Ubuntu
ii language-selector-gnome 0.184 all Language selector for Ubuntu
ii laptop-detect 0.16 all system chassis type checker
ii less 487-0.1 amd64 pager program similar to more
ii libaa1:amd64 1.4p5-44build1 amd64 ASCII art library
ii libaacs0:amd64 0.9.0-1 amd64 free-and-libre implementation of AACS
ii libabw-0.1-1:amd64 0.1.1-4ubuntu1 amd64 library for reading and writing AbiWord(tm) documents
ii libaccountsservice0:amd64 0.6.45-1ubuntu1 amd64 query and manipulate user account information - shared libraries
ii libacl1:amd64 2.2.52-3build1 amd64 Access control list shared library
ii libalgorithm-c3-perl 0.10-1 all Perl module for merging hierarchies using the C3 algorithm
ii libalgorithm-diff-perl 1.19.03-1 all module to find differences between files
ii libalgorithm-diff-xs-perl 0.04-4build4 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 libamd2:amd64 1:5.1.2~beta2-1 amd64 approximate minimum degree ordering library for sparse matrices
ii libao-common 1.1.0-3ubuntu1 all Cross Platform Audio Output Library (Common files)
ii libao4:amd64 1.1.0-3ubuntu1 amd64 Cross Platform Audio Output Library
ii libapparmor-perl 2.11.0-2ubuntu18 amd64 AppArmor library Perl bindings
ii libapparmor1:amd64 2.11.0-2ubuntu18 amd64 changehat AppArmor library
ii libappindicator3-1 12.10.1+17.04.20170215-0ubuntu2 amd64 Application Indicators
ii libappstream-glib8:amd64 0.7.4-1 amd64 GNOME library to access AppStream services
ii libappstream4:amd64 0.11.7-1 amd64 Library to access AppStream services
ii libapr1:amd64 1.6.3-1 amd64 Apache Portable Runtime Library
ii libaprutil1:amd64 1.6.1-1 amd64 Apache Portable Runtime Utility Library
ii libaprutil1-dbd-sqlite3:amd64 1.6.1-1 amd64 Apache Portable Runtime Utility Library - SQLite3 Driver
ii libaprutil1-ldap:amd64 1.6.1-1 amd64 Apache Portable Runtime Utility Library - LDAP Driver
ii libapt-inst2.0:amd64 1.6~alpha5 amd64 deb package format runtime library
ii libapt-pkg-perl 0.1.33build1 amd64 Perl interface to libapt-pkg
ii libapt-pkg5.0:amd64 1.6~alpha5 amd64 package management runtime library
ii libarchive-zip-perl 1.60-1 all Perl module for manipulation of ZIP archives
ii libarchive13:amd64 3.2.2-3.1 amd64 Multi-format archive and compression library (shared library)
ii libart-2.0-2:amd64 2.3.21-3 amd64 Library of functions for 2D graphics - runtime files
ii libasan4:amd64 7.2.0-18ubuntu2 amd64 AddressSanitizer -- a fast memory error detector
ii libasn1-8-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - ASN.1 library
ii libasound2:amd64 1.1.3-5 amd64 shared library for ALSA applications
ii libasound2-data 1.1.3-5 all Configuration files and profiles for ALSA drivers
ii libasound2-plugins:amd64 1.1.1-1ubuntu1 amd64 ALSA library additional plugins
ii libaspell15:amd64 0.60.7~20110707-4 amd64 GNU Aspell spell-checker runtime library
ii libassuan0:amd64 2.5.1-1 amd64 IPC library for the GnuPG components
ii libasyncns0:amd64 0.8-6 amd64 Asynchronous name service query library
ii libatasmart4:amd64 0.19-4 amd64 ATA S.M.A.R.T. reading and parsing library
ii libatk-adaptor:amd64 2.26.1-1 amd64 AT-SPI 2 toolkit bridge
ii libatk-bridge2.0-0:amd64 2.26.1-1 amd64 AT-SPI 2 toolkit bridge - shared library
ii libatk1.0-0:amd64 2.26.1-2 amd64 ATK accessibility toolkit
ii libatk1.0-data 2.26.1-2 all Common files for the ATK accessibility toolkit
ii libatk1.0-doc 2.26.1-2 all Documentation files for the ATK toolkit
ii libatkmm-1.6-1v5:amd64 2.24.2-3 amd64 C++ wrappers for ATK accessibility toolkit (shared libraries)
ii libatm1:amd64 1:2.5.1-2 amd64 shared library for ATM (Asynchronous Transfer Mode)
ii libatomic1:amd64 7.2.0-18ubuntu2 amd64 support library providing __atomic built-in functions
ii libatspi2.0-0:amd64 2.26.2-2 amd64 Assistive Technology Service Provider Interface - shared library
ii libattr1:amd64 1:2.4.47-2build1 amd64 Extended attribute shared library
ii libaudio2:amd64 1.9.4-6 amd64 Network Audio System - shared libraries
ii libaudit-common 1:2.7.7-1ubuntu2 all Dynamic library for security auditing - common files
ii libaudit1:amd64 1:2.7.7-1ubuntu2 amd64 Dynamic library for security auditing
ii libauthen-sasl-perl 2.1600-1 all Authen::SASL - SASL Authentication framework
ii libavahi-client3:amd64 0.7-3ubuntu1 amd64 Avahi client library
ii libavahi-common-data:amd64 0.7-3ubuntu1 amd64 Avahi common data files
ii libavahi-common3:amd64 0.7-3ubuntu1 amd64 Avahi common library
ii libavahi-core7:amd64 0.7-3ubuntu1 amd64 Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1:amd64 0.7-3ubuntu1 amd64 Avahi GLib integration library
ii libavahi-ui-gtk3-0:amd64 0.7-3ubuntu1 amd64 Avahi GTK+ User interface library for GTK3
ii libavc1394-0:amd64 0.5.4-4 amd64 control IEEE 1394 audio/video devices
ii libavcodec57:amd64 7:3.4.1-1 amd64 FFmpeg library with de/encoders for audio/video codecs - runtime files
ii libavformat57:amd64 7:3.4.1-1 amd64 FFmpeg library with (de)muxers for multimedia containers - runtime files
ii libavutil55:amd64 7:3.4.1-1 amd64 FFmpeg library with functions for simplifying programming - runtime files
ii libb-hooks-endofscope-perl 0.21-1 all module for executing code after a scope finished compilation
ii libbabeltrace1:amd64 1.5.3-4 amd64 Babeltrace conversion libraries
ii libbabl-0.1-0:amd64 0.1.38-1 amd64 Dynamic, any to any, pixel format conversion library
ii libbdplus0:amd64 0.1.2-2 amd64 implementation of BD+ for reading Blu-ray Discs
ii libbind9-140:amd64 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 BIND9 Shared Library used by BIND
ii libbinutils:amd64 2.29.1-12ubuntu1 amd64 GNU binary utilities (private shared library)
ii libbison-dev:amd64 2:3.0.4.dfsg-1build1 amd64 YACC-compatible parser generator - development library
ii libblas3:amd64 3.7.1-4ubuntu1 amd64 Basic Linear Algebra Reference implementations, shared library
ii libblkid1:amd64 2.30.2-0.1ubuntu1 amd64 block device ID library
ii libbluetooth3:amd64 5.46-0ubuntu4 amd64 Library to use the BlueZ Linux Bluetooth stack
ii libbluray2:amd64 1:1.0.2-1 amd64 Blu-ray disc playback support library (shared library)
ii libboost-date-time1.65.1:amd64 1.65.1+dfsg-0ubuntu4 amd64 set of date-time libraries based on generic programming concepts
ii libboost-filesystem1.65.1:amd64 1.65.1+dfsg-0ubuntu4 amd64 filesystem operations (portable paths, iteration over directories, etc) in C++
ii libboost-iostreams1.65.1:amd64 1.65.1+dfsg-0ubuntu4 amd64 Boost.Iostreams Library
ii libboost-system1.65.1:amd64 1.65.1+dfsg-0ubuntu4 amd64 Operating system (e.g. diagnostics support) library
ii libboost-thread1.65.1:amd64 1.65.1+dfsg-0ubuntu4 amd64 portable C++ multi-threading
ii libbrlapi0.6:amd64 5.4-7ubuntu6 amd64 braille display access via BRLTTY - shared library
ii libbsd0:amd64 0.8.6-3 amd64 utility functions from BSD systems - shared library
ii libbz2-1.0:amd64 1.0.6-8.1 amd64 high-quality block-sorting file compressor library - runtime
ii libc-ares2:amd64 1.13.0-3 amd64 asynchronous name resolver
ii libc-bin 2.26-0ubuntu2 amd64 GNU C Library: Binaries
ii libc-dev-bin 2.26-0ubuntu2 amd64 GNU C Library: Development binaries
ii libc6:amd64 2.26-0ubuntu2 amd64 GNU C Library: Shared libraries
ii libc6-dbg:amd64 2.26-0ubuntu2 amd64 GNU C Library: detached debugging symbols
ii libc6-dev:amd64 2.26-0ubuntu2 amd64 GNU C Library: Development Libraries and Header Files
ii libcaca0:amd64 0.99.beta19-2build2~gcc5.2 amd64 colour ASCII art library
ii libcairo-gobject2:amd64 1.15.8-3 amd64 Cairo 2D vector graphics library (GObject library)
ii libcairo-perl 1.106-2build2 amd64 Perl interface to the Cairo graphics library
ii libcairo2:amd64 1.15.8-3 amd64 Cairo 2D vector graphics library
ii libcairomm-1.0-1v5:amd64 1.12.2-2 amd64 C++ wrappers for Cairo (shared libraries)
ii libcamd2:amd64 1:5.1.2~beta2-1 amd64 symmetric approximate minimum degree library for sparse matrices
ii libcamel-1.2-60:amd64 3.26.3-1ubuntu1 amd64 Evolution MIME message handling library
ii libcanberra-gtk3-0:amd64 0.30-5ubuntu1 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra
ii libcanberra-gtk3-module:amd64 0.30-5ubuntu1 amd64 translates GTK3 widgets signals to event sounds
ii libcanberra-pulse:amd64 0.30-5ubuntu1 amd64 PulseAudio backend for libcanberra
ii libcanberra0:amd64 0.30-5ubuntu1 amd64 simple abstract interface for playing event sounds
ii libcap-ng0:amd64 0.7.7-3.1 amd64 An alternate POSIX capabilities library
ii libcap2:amd64 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (utilities)
ii libcapnp-0.6.1 0.6.1-1 amd64 Cap'n Proto C++ library
ii libcaribou-common 0.4.21-4 all Configurable on screen keyboard with scanning mode - common files
ii libcaribou0:amd64 0.4.21-4 amd64 Configurable on screen keyboard with scanning mode - library
ii libcc1-0:amd64 7.2.0-18ubuntu2 amd64 GCC cc1 plugin for GDB
ii libccolamd2:amd64 1:5.1.2~beta2-1 amd64 constrained column approximate library for sparse matrices
ii libcdio-cdda2:amd64 10.2+0.94+2-2build1 amd64 library to read and control digital audio CDs
ii libcdio-paranoia2:amd64 10.2+0.94+2-2build1 amd64 library to read digital audio CDs with error correction
ii libcdio17:amd64 1.0.0-2 amd64 library to read and control CD-ROM
ii libcdparanoia0:amd64 3.10.2+debian-11.1 amd64 audio extraction tool for sampling CDs (library)
ii libcdr-0.1-1:amd64 0.1.4-1build1 amd64 library for reading and converting Corel DRAW files
ii libcgi-fast-perl 1:2.13-1 all CGI subclass for work with FCGI
ii libcgi-pm-perl 4.38-1 all module for Common Gateway Interface applications
ii libcheese-gtk25:amd64 3.26.0-2ubuntu1 amd64 tool to take pictures and videos from your webcam - widgets
ii libcheese8:amd64 3.26.0-2ubuntu1 amd64 tool to take pictures and videos from your webcam - base library
ii libcholmod3:amd64 1:5.1.2~beta2-1 amd64 sparse Cholesky factorization library for sparse matrices
ii libchromaprint1:amd64 1.4.2-1 amd64 audio fingerprint library
ii libcilkrts5:amd64 7.2.0-18ubuntu2 amd64 Intel Cilk Plus language extensions (runtime)
ii libclass-accessor-perl 0.51-1 all Perl module that automatically generates accessors
ii libclass-c3-perl 0.33-1 all pragma for using the C3 method resolution order
ii libclass-c3-xs-perl 0.14-1build3 amd64 Perl module to accelerate Class::C3
ii libclass-data-inheritable-perl 0.08-2 all Perl module to create accessors to class data
ii libclass-factory-util-perl 1.7-3 all utility method for factory classes
ii libclass-inspector-perl 1.32-1 all Perl module that provides information about classes
ii libclass-method-modifiers-perl 2.12-1 all Perl module providing method modifiers
ii libclass-singleton-perl 1.5-1 all implementation of a "Singleton" class
ii libclone-perl 0.39-1 amd64 module for recursively copying Perl datatypes
ii libclucene-contribs1v5:amd64 2.3.3.4+dfsg-1 amd64 language specific text analyzers (runtime)
ii libclucene-core1v5:amd64 2.3.3.4+dfsg-1 amd64 core library for full-featured text search engine (runtime)
ii libclutter-1.0-0:amd64 1.26.2+dfsg-4 amd64 Open GL based interactive canvas library
ii libclutter-1.0-common 1.26.2+dfsg-4 all Open GL based interactive canvas library (common files)
ii libclutter-gst-3.0-0:amd64 3.0.24-2 amd64 Open GL based interactive canvas library GStreamer elements
ii libclutter-gtk-1.0-0:amd64 1.8.4-3 amd64 Open GL based interactive canvas library GTK+ widget
ii libcmis-0.5-5v5 0.5.1+git20160603-3build2 amd64 CMIS protocol client library
ii libcogl-common 1.22.2-3 all Object oriented GL/GLES Abstraction/Utility Layer (common files)
ii libcogl-pango20:amd64 1.22.2-3 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcogl-path20:amd64 1.22.2-3 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcogl20:amd64 1.22.2-3 amd64 Object oriented GL/GLES Abstraction/Utility Layer
ii libcolamd2:amd64 1:5.1.2~beta2-1 amd64 column approximate minimum degree ordering library for sparse matrices
ii libcolord-gtk1:amd64 0.1.26-2 amd64 GTK+ convenience library for interacting with colord
ii libcolord2:amd64 1.3.3-2build1 amd64 system service to manage device colour profiles -- runtime
ii libcolorhug2:amd64 1.3.3-2build1 amd64 library to access the ColorHug colourimeter -- runtime
ii libcomerr2:amd64 1.43.8-1ubuntu1 amd64 common error description library
ii libcommon-sense-perl 3.74-2build2 amd64 module that implements some sane defaults for Perl programs
ii libconfig-inifiles-perl 2.94-1 all Read .ini-style configuration files
ii libcrack2:amd64 2.9.2-5build1 amd64 pro-active password checker library
ii libcroco3:amd64 0.6.12-2 amd64 Cascading Style Sheet (CSS) parsing and manipulation toolkit
ii libcryptsetup4:amd64 2:1.7.3-4ubuntu1 amd64 disk encryption support - shared library
ii libcrystalhd3:amd64 1:0.0~git20110715.fdd2f19-12 amd64 Crystal HD Video Decoder (shared library)
ii libcups2:amd64 2.2.6-4 amd64 Common UNIX Printing System(tm) - Core library
ii libcupscgi1:amd64 2.2.6-4 amd64 Common UNIX Printing System(tm) - CGI library
ii libcupsfilters1:amd64 1.17.9-1 amd64 OpenPrinting CUPS Filters - Shared library
ii libcupsimage2:amd64 2.2.6-4 amd64 Common UNIX Printing System(tm) - Raster image library
ii libcupsmime1:amd64 2.2.6-4 amd64 Common UNIX Printing System(tm) - MIME library
ii libcupsppdc1:amd64 2.2.6-4 amd64 Common UNIX Printing System(tm) - PPD manipulation library
ii libcurl3:amd64 7.57.0-1ubuntu1 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libcurl3-gnutls:amd64 7.57.0-1ubuntu1 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libdaemon0:amd64 0.14-6 amd64 lightweight C library for daemons - runtime library
ii libdata-dump-perl 1.23-1 all Perl module to help dump data structures
ii libdata-optlist-perl 0.110-1 all module to parse and validate simple name/value option pairs
ii libdatetime-format-builder-perl 0.8100-1 all module to create DateTime parsers
ii libdatetime-format-iso8601-perl 0.08-2 all module to parse ISO8601 date and time formats
ii libdatetime-format-strptime-perl 1.7400-1 all Perl module to parse and format strp and strf time patterns
ii libdatetime-locale-perl 1:1.17-1 all Perl extension providing localization support for DateTime
ii libdatetime-perl 2:1.44-1 amd64 module for manipulating dates, times and timestamps
ii libdatetime-timezone-perl 1:2.15-1+2017c all framework exposing the Olson time zone database to Perl
ii libdatrie1:amd64 0.2.10-6 amd64 Double-array trie library
ii libdb5.3:amd64 5.3.28-13.1 amd64 Berkeley v5.3 Database Libraries [runtime]
ii libdbd-sqlite3-perl 1.55~04-1 amd64 Perl DBI driver with a self-contained RDBMS
ii libdbi-perl 1.639-1 amd64 Perl Database Interface (DBI)
ii libdbus-1-3:amd64 1.12.2-1ubuntu1 amd64 simple interprocess messaging system (library)
ii libdbus-glib-1-2:amd64 0.108-3 amd64 simple interprocess messaging system (GLib-based shared library)
ii libdbusmenu-glib4:amd64 16.04.1+18.04.20171206-0ubuntu1 amd64 library for passing menus over DBus
ii libdbusmenu-gtk3-4:amd64 16.04.1+18.04.20171206-0ubuntu1 amd64 library for passing menus over DBus - GTK+ version
ii libdbusmenu-gtk4:amd64 16.04.1+18.04.20171206-0ubuntu1 amd64 library for passing menus over DBus - GTK+ version
ii libdconf1:amd64 0.26.0-2 amd64 simple configuration storage system - runtime library
ii libdebconfclient0:amd64 0.213ubuntu1 amd64 Debian Configuration Management System (C-implementation library)
ii libdee-1.0-4:amd64 1.2.7+17.10.20170616-0ubuntu3 amd64 model to synchronize multiple instances over DBus - shared lib
ii libdevel-caller-perl 2.06-1build5 amd64 module providing enhanced caller() support
ii libdevel-lexalias-perl 0.05-1build5 amd64 Perl module that provides alias lexical variables
ii libdevel-stacktrace-perl 2.0300-1 all Perl module containing stack trace and related objects
ii libdevhelp-3-4:amd64 3.26.1-1 amd64 Library providing documentation browser functionality
ii libdevmapper1.02.1:amd64 2:1.02.137-2ubuntu3 amd64 Linux Kernel Device Mapper userspace library
ii libdigest-hmac-perl 1.03+dfsg-1 all module for creating standard message integrity checks
ii libdjvulibre-text 3.5.27.1-8 all Linguistic support files for libdjvulibre
ii libdjvulibre21:amd64 3.5.27.1-8 amd64 Runtime support for the DjVu image format
ii libdmapsharing-3.0-2:amd64 2.9.39-2 amd64 DMAP client and server library - runtime
ii libdns-export162 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 Exported DNS Shared Library
ii libdns162:amd64 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 DNS Shared Library used by BIND
ii libdotconf0:amd64 1.3-0.2 amd64 Configuration file parser library - runtime files
ii libdpkg-perl 1.19.0.4ubuntu1 all Dpkg perl modules
ii libdrm-amdgpu1:amd64 2.4.89-1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii libdrm-common 2.4.89-1 all Userspace interface to kernel DRM services -- common files
ii libdrm-intel1:amd64 2.4.89-1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime
ii libdrm-nouveau2:amd64 2.4.89-1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime
ii libdrm-radeon1:amd64 2.4.89-1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime
ii libdrm2:amd64 2.4.89-1 amd64 Userspace interface to kernel DRM services -- runtime
ii libdv4:amd64 1.0.0-11 amd64 software library for DV format digital video (runtime lib)
ii libdw1:amd64 0.170-0.2 amd64 library that provides access to the DWARF debug information
ii libe-book-0.1-1:amd64 0.1.2-4build2 amd64 library for reading and converting various e-book formats
ii libebackend-1.2-10:amd64 3.26.3-1ubuntu1 amd64 Utility library for evolution data servers
ii libebook-1.2-19:amd64 3.26.3-1ubuntu1 amd64 Client library for evolution address books
ii libebook-contacts-1.2-2:amd64 3.26.3-1ubuntu1 amd64 Client library for evolution contacts books
ii libecal-1.2-19:amd64 3.26.3-1ubuntu1 amd64 Client library for evolution calendars
ii libedata-book-1.2-25:amd64 3.26.3-1ubuntu1 amd64 Backend library for evolution address books
ii libedata-cal-1.2-28:amd64 3.26.3-1ubuntu1 amd64 Backend library for evolution calendars
ii libedataserver-1.2-22:amd64 3.26.3-1ubuntu1 amd64 Utility library for evolution data servers
ii libedataserverui-1.2-1:amd64 3.26.3-1ubuntu1 amd64 Utility library for evolution data servers
ii libedit2:amd64 3.1-20170329-1 amd64 BSD editline and history libraries
ii libefiboot1:amd64 32-1 amd64 Library to manage UEFI variables
ii libefivar1:amd64 32-1 amd64 Library to manage UEFI variables
ii libegl1-mesa:amd64 17.2.4-0ubuntu2 amd64 free implementation of the EGL API -- runtime
ii libelf1:amd64 0.170-0.2 amd64 library to read and write ELF files
ii libemail-valid-perl 1.202-1 all Perl module for checking the validity of Internet email addresses
ii libenchant1c2a:amd64 1.6.0-11.1 amd64 Wrapper library for various spell checker engines (runtime libs)
ii libencode-locale-perl 1.05-1 all utility to determine the locale encoding
ii libeot0:amd64 0.01-4 amd64 Library for parsing/converting Embedded OpenType files
ii libepoxy0:amd64 1.4.3-1 amd64 OpenGL function pointer management library
ii liberror-perl 0.17025-1 all Perl module for error/exception handling in an OO-ish way
ii libespeak-ng1:amd64 1.49.1+dfsg-2 amd64 Multi-lingual software speech synthesizer: shared library
ii libestr0:amd64 0.1.10-2.1 amd64 Helper functions for handling strings (lib)
ii libetonyek-0.1-1:amd64 0.1.7-2 amd64 library for reading and converting Apple Keynote presentations
ii libeval-closure-perl 0.14-1 all Perl module to safely and cleanly create closures via string eval
ii libevdev2:amd64 1.5.7+dfsg-1 amd64 wrapper library for evdev devices
ii libevdocument3-4:amd64 3.26.0-2 amd64 Document (PostScript, PDF) rendering library
ii libevent-2.1-6:amd64 2.1.8-stable-4 amd64 Asynchronous event notification library
ii libevview3-3:amd64 3.26.0-2 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets
ii libexception-class-perl 1.43-1 all module that allows you to declare real exception classes in Perl
ii libexempi3:amd64 2.4.3-1ubuntu1 amd64 library to parse XMP metadata (Library)
ii libexif12:amd64 0.6.21-4 amd64 library to parse EXIF files
ii libexiv2-14:amd64 0.25-3.1 amd64 EXIF/IPTC/XMP metadata manipulation library
ii libexpat1:amd64 2.2.5-3 amd64 XML parsing C library - runtime library
ii libexporter-tiny-perl 1.000000-2 all tiny exporter similar to Sub::Exporter
ii libexttextcat-2.0-0:amd64 3.4.5-1 amd64 Language detection library
ii libexttextcat-data 3.4.5-1 all Language detection library - data files
ii libfakeroot:amd64 1.21-1ubuntu2 amd64 tool for simulating superuser privileges - shared libraries
ii libfcgi-perl 0.78-2build1 amd64 helper module for FastCGI
ii libfdisk1:amd64 2.30.2-0.1ubuntu1 amd64 fdisk partitioning library
ii libffi6:amd64 3.2.1-6 amd64 Foreign Function Interface library runtime
ii libfftw3-double3:amd64 3.3.7-1 amd64 Library for computing Fast Fourier Transforms - Double precision
ii libfftw3-single3:amd64 3.3.7-1 amd64 Library for computing Fast Fourier Transforms - Single precision
ii libfile-basedir-perl 0.07-1 all Perl module to use the freedesktop basedir specification
ii libfile-copy-recursive-perl 0.38-1 all Perl extension for recursively copying files and directories
ii libfile-desktopentry-perl 0.22-1 all Perl module to handle freedesktop .desktop files
ii libfile-fcntllock-perl 0.22-3build2 amd64 Perl module for file locking with fcntl(2)
ii libfile-listing-perl 6.04-1 all module to parse directory listings
ii libfile-mimeinfo-perl 0.28-1 all Perl module to determine file types
ii libfile-sharedir-perl 1.104-1 all module to locate non-code files during run-time
ii libfl-dev:amd64 2.6.1-1.3 amd64 static library for flex (a fast lexical analyzer generator)
ii libflac8:amd64 1.3.2-1 amd64 Free Lossless Audio Codec - runtime C library
ii libfont-afm-perl 1.20-2 all Font::AFM - Interface to Adobe Font Metrics files
ii libfontconfig1:amd64 2.12.6-0ubuntu1 amd64 generic font configuration library - runtime
ii libfontembed1:amd64 1.17.9-1 amd64 OpenPrinting CUPS Filters - Font Embed Shared library
ii libfontenc1:amd64 1:1.1.3-1 amd64 X11 font encoding library
ii libfreehand-0.1-1 0.1.2-2 amd64 Library for parsing the FreeHand file format structure
ii libfreerdp-client2-2:amd64 2.0.0~git20170725.1.1648deb+dfsg1-6 amd64 Free Remote Desktop Protocol library (client library)
ii libfreerdp2-2:amd64 2.0.0~git20170725.1.1648deb+dfsg1-6 amd64 Free Remote Desktop Protocol library (core library)
ii libfreetype6:amd64 2.8-0.2ubuntu2 amd64 FreeType 2 font engine, shared library files
ii libfribidi0:amd64 0.19.7-2 amd64 Free Implementation of the Unicode BiDi algorithm
ii libfuse2:amd64 2.9.7-1ubuntu1 amd64 Filesystem in Userspace (library)
ii libfwup1:amd64 9-3 amd64 Library to manage UEFI firmware updates
ii libfwupd2:amd64 1.0.2-1 amd64 Firmware update daemon library
ii libgail-3-0:amd64 3.22.26-2ubuntu1 amd64 GNOME Accessibility Implementation Library -- shared libraries
ii libgail-common:amd64 2.24.31-4ubuntu1 amd64 GNOME Accessibility Implementation Library -- common modules
ii libgail18:amd64 2.24.31-4ubuntu1 amd64 GNOME Accessibility Implementation Library -- shared libraries
ii libgbm1:amd64 17.2.4-0ubuntu2 amd64 generic buffer management API -- runtime
ii libgc1c2:amd64 1:7.4.2-8ubuntu1 amd64 conservative garbage collector for C and C++
ii libgcab-1.0-0:amd64 0.7-6 amd64 Microsoft Cabinet file manipulation library
ii libgcc-7-dev:amd64 7.2.0-18ubuntu2 amd64 GCC support library (development files)
ii libgcc1:amd64 1:7.2.0-18ubuntu2 amd64 GCC support library
ii libgck-1-0:amd64 3.20.0-6 amd64 Glib wrapper library for PKCS#11 - runtime
ii libgcr-3-common 3.20.0-6 all Library for Crypto UI related tasks - common files
ii libgcr-base-3-1:amd64 3.20.0-6 amd64 Library for Crypto related tasks
ii libgcr-ui-3-1:amd64 3.20.0-6 amd64 Library for Crypto UI related tasks
ii libgcrypt20:amd64 1.8.1-4 amd64 LGPL Crypto library - runtime library
ii libgd3:amd64 2.2.5-4 amd64 GD Graphics Library
ii libgdata-common 0.17.9-2 all Library for accessing GData webservices - common data files
ii libgdata22:amd64 0.17.9-2 amd64 Library for accessing GData webservices - shared libraries
ii libgdbm3:amd64 1.8.3-14 amd64 GNU dbm database routines (runtime version)
ii libgdk-pixbuf2.0-0:amd64 2.36.11-1 amd64 GDK Pixbuf library
ii libgdk-pixbuf2.0-bin 2.36.11-1 amd64 GDK Pixbuf library (thumbnailer)
ii libgdk-pixbuf2.0-common 2.36.11-1 all GDK Pixbuf library - data files
ii libgdm1 3.26.2.1-2ubuntu1 amd64 GNOME Display Manager (shared library)
ii libgee-0.8-2:amd64 0.20.0-1 amd64 GObject based collection and utility library
ii libgegl-0.3-0:amd64 0.3.24-1 amd64 Generic Graphics Library
ii libgeoclue-2-0:amd64 2.4.7-1ubuntu1 amd64 convenience library to interact with geoinformation service
ii libgeocode-glib0:amd64 3.25.4.1-3 amd64 geocoding and reverse geocoding GLib library using Nominatim
ii libgeoip1:amd64 1.6.11-3 amd64 non-DNS IP-to-country resolver library
ii libgexiv2-2:amd64 0.10.6-1 amd64 GObject-based wrapper around the Exiv2 library
ii libgfortran4:amd64 7.2.0-18ubuntu2 amd64 Runtime library for GNU Fortran applications
ii libgimp2.0 2.8.20-1.1 amd64 Libraries for the GNU Image Manipulation Program
ii libgirepository-1.0-1:amd64 1.54.1-4 amd64 Library for handling GObject introspection data (runtime library)
ii libgjs0g 1.50.2-2 amd64 Mozilla-based javascript bindings for the GNOME platform
ii libgl1-mesa-dri:amd64 17.2.4-0ubuntu2 amd64 free implementation of the OpenGL API -- DRI modules
ii libgl1-mesa-glx:amd64 17.2.4-0ubuntu2 amd64 free implementation of the OpenGL API -- GLX runtime
ii libglade2-0:amd64 1:2.6.4-2 amd64 library to load .glade files at runtime
ii libglapi-mesa:amd64 17.2.4-0ubuntu2 amd64 free implementation of the GL API -- shared library
ii libgles2-mesa:amd64 17.2.4-0ubuntu2 amd64 free implementation of the OpenGL|ES 2.x API -- runtime
ii libglib-perl 3:1.326-1build1 amd64 interface to the GLib and GObject libraries
ii libglib2.0-0:amd64 2.54.1-1ubuntu1 amd64 GLib library of C routines
ii libglib2.0-bin 2.54.1-1ubuntu1 amd64 Programs for the GLib library
ii libglib2.0-data 2.54.1-1ubuntu1 all Common files for GLib library
ii libglib2.0-doc 2.54.1-1ubuntu1 all Documentation files for the GLib library
ii libglibmm-2.4-1v5:amd64 2.54.1-2 amd64 C++ wrapper for the GLib toolkit (shared libraries)
ii libglu1-mesa:amd64 9.0.0-2.1build1 amd64 Mesa OpenGL utility library (GLU)
ii libgme0:amd64 0.6.2-1 amd64 Playback library for video game music files - shared library
ii libgmime-3.0-0:amd64 3.0.5-1 amd64 MIME message parser and creator library
ii libgmp10:amd64 2:6.1.2+dfsg-1 amd64 Multiprecision arithmetic library
ii libgnome-autoar-0-0:amd64 0.2.2-2 amd64 Archives integration support for GNOME
ii libgnome-bluetooth13:amd64 3.26.1-2 amd64 GNOME Bluetooth tools - support library
ii libgnome-desktop-3-12:amd64 3.26.2-1ubuntu1 amd64 Utility library for loading .desktop files - runtime files
ii libgnome-games-support-1-2:amd64 1.2.3-2 amd64 library for common functions of GNOME games
ii libgnome-games-support-common 1.2.3-2 all library for common functions of GNOME games (common files)
ii libgnome-menu-3-0:amd64 3.13.3-11ubuntu1 amd64 GNOME implementation of the freedesktop menu specification
ii libgnomekbd-common 3.26.0-2 all GNOME library to manage keyboard configuration - common files
ii libgnomekbd8:amd64 3.26.0-2 amd64 GNOME library to manage keyboard configuration - shared library
ii libgnutls30:amd64 3.5.8-6ubuntu3 amd64 GNU TLS library - main runtime library
ii libgoa-1.0-0b:amd64 3.26.2-1 amd64 library for GNOME Online Accounts
ii libgoa-1.0-common 3.26.2-1 all library for GNOME Online Accounts - common files
ii libgoa-backend-1.0-1:amd64 3.26.2-1 amd64 backend library for GNOME Online Accounts
ii libgom-1.0-0:amd64 0.3.3-3 amd64 Object mapper from GObjects to SQLite
ii libgomp1:amd64 7.2.0-18ubuntu2 amd64 GCC OpenMP (GOMP) support library
ii libgpg-error0:amd64 1.27-5 amd64 library for common error values and messages in GnuPG components
ii libgpgme11:amd64 1.8.0-3ubuntu5 amd64 GPGME - GnuPG Made Easy (library)
ii libgpgmepp6:amd64 1.8.0-3ubuntu5 amd64 C++ wrapper library for GPGME
ii libgphoto2-6:amd64 2.5.14-1 amd64 gphoto2 digital camera library
ii libgphoto2-l10n 2.5.14-1 all gphoto2 digital camera library - localized messages
ii libgphoto2-port12:amd64 2.5.14-1 amd64 gphoto2 digital camera port library
ii libgpm2:amd64 1.20.4-6.2 amd64 General Purpose Mouse - shared library
ii libgpod-common 0.8.3-11 amd64 common files for libgpod
ii libgpod4:amd64 0.8.3-11 amd64 library to read and write songs and artwork to an iPod
ii libgraphite2-3:amd64 1.3.10-8 amd64 Font rendering engine for Complex Scripts -- library
ii libgrilo-0.3-0:amd64 0.3.4-1 amd64 Framework for discovering and browsing media - Shared libraries
ii libgs9:amd64 9.21~dfsg+1-0ubuntu3 amd64 interpreter for the PostScript language and for PDF - Library
ii libgs9-common 9.21~dfsg+1-0ubuntu3 all interpreter for the PostScript language and for PDF - common files
ii libgsasl7:amd64 1.8.0-8ubuntu3 amd64 GNU SASL library
ii libgsm1:amd64 1.0.13-4 amd64 Shared libraries for GSM speech compressor
ii libgspell-1-1:amd64 1.6.1-1 amd64 spell-checking library for GTK+ applications
ii libgspell-1-common 1.6.1-1 all libgspell architecture-independent files
ii libgssapi-krb5-2:amd64 1.15.1-2 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgssapi3-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - GSSAPI support library
ii libgstreamer-plugins-base1.0-0:amd64 1.12.4-1 amd64 GStreamer libraries from the "base" set
ii libgstreamer-plugins-good1.0-0:amd64 1.12.4-1ubuntu1 amd64 GStreamer development files for libraries from the "good" set
ii libgstreamer1.0-0:amd64 1.12.4-1 amd64 Core GStreamer libraries and elements
ii libgtk-3-0:amd64 3.22.26-2ubuntu1 amd64 GTK+ graphical user interface library
ii libgtk-3-bin 3.22.26-2ubuntu1 amd64 programs for the GTK+ graphical user interface library
ii libgtk-3-common 3.22.26-2ubuntu1 all common files for the GTK+ graphical user interface library
ii libgtk-3-doc 3.22.26-2ubuntu1 all documentation for the GTK+ graphical user interface library
ii libgtk2-perl 2:1.24992-1build1 amd64 Perl interface to the 2.x series of the Gimp Toolkit library
ii libgtk2.0-0:amd64 2.24.31-4ubuntu1 amd64 GTK+ graphical user interface library
ii libgtk2.0-bin 2.24.31-4ubuntu1 amd64 programs for the GTK+ graphical user interface library
ii libgtk2.0-common 2.24.31-4ubuntu1 all common files for the GTK+ graphical user interface library
ii libgtkmm-3.0-1v5:amd64 3.22.2-2 amd64 C++ wrappers for GTK+ (shared libraries)
ii libgtksourceview-3.0-1:amd64 3.24.6-1 amd64 shared libraries for the GTK+ syntax highlighting widget
ii libgtksourceview-3.0-common 3.24.6-1 all common files for the GTK+ syntax highlighting widget
ii libgtop-2.0-11:amd64 2.38.0-2 amd64 gtop system monitoring library (shared)
ii libgtop2-common 2.38.0-2 all gtop system monitoring library (common)
ii libgucharmap-2-90-7:amd64 1:10.0.3-2 amd64 Unicode browser widget library (shared library)
ii libgudev-1.0-0:amd64 1:232-1 amd64 GObject-based wrapper library for libudev
ii libgusb2:amd64 0.2.11-1 amd64 GLib wrapper around libusb1
ii libgutenprint2 5.2.13-1 amd64 runtime for the Gutenprint printer driver library
ii libgweather-3-6:amd64 3.26.0-1ubuntu1 amd64 GWeather shared library
ii libgweather-common 3.26.0-1ubuntu1 all GWeather common files
ii libgxps2:amd64 0.3.0-2 amd64 handling and rendering XPS documents (library)
ii libharfbuzz-icu0:amd64 1.7.2-1 amd64 OpenType text shaping engine ICU backend
ii libharfbuzz0b:amd64 1.7.2-1 amd64 OpenType text shaping engine (shared library)
ii libhcrypto4-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - crypto library
ii libheimbase1-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - Base library
ii libheimntlm0-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - NTLM support library
ii libhogweed4:amd64 3.3-2 amd64 low level cryptographic library (public-key cryptos)
ii libhpmud0:amd64 3.17.10+repack0-2 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries
ii libhtml-form-perl 6.03-1 all module that represents an HTML form element
ii libhtml-format-perl 2.12-1 all module for transforming HTML into various formats
ii libhtml-parser-perl 3.72-3build1 amd64 collection of modules that parse HTML text documents
ii libhtml-tagset-perl 3.20-3 all Data tables pertaining to HTML
ii libhtml-tree-perl 5.07-1 all Perl module to represent and create HTML syntax trees
ii libhttp-cookies-perl 6.04-1 all HTTP cookie jars
ii libhttp-daemon-perl 6.01-1 all simple http server class
ii libhttp-date-perl 6.02-1 all module of date conversion routines
ii libhttp-message-perl 6.13-1 all perl interface to HTTP style messages
ii libhttp-negotiate-perl 6.00-2 all implementation of content negotiation
ii libhunspell-1.6-0:amd64 1.6.2-1 amd64 spell checker and morphological analyzer (shared library)
ii libhx509-5-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - X509 support library
ii libhyphen0:amd64 2.8.8-5 amd64 ALTLinux hyphenation library - shared library
ii libibus-1.0-5:amd64 1.5.17-3ubuntu1 amd64 Intelligent Input Bus - shared library
ii libical3:amd64 3.0.1-5 amd64 iCalendar library implementation in C (runtime)
ii libice6:amd64 2:1.0.9-2 amd64 X11 Inter-Client Exchange library
ii libicu-le-hb0:amd64 1.0.3+git161113-4 amd64 ICU Layout Engine API on top of HarfBuzz shaping library
ii libicu60:amd64 60.2-1ubuntu1 amd64 International Components for Unicode
ii libidn11:amd64 1.33-2.1 amd64 GNU Libidn library, implementation of IETF IDN specifications
ii libidn2-0:amd64 2.0.4-1 amd64 Internationalized domain names (IDNA2008/TR46) library
ii libiec61883-0:amd64 1.2.0-2 amd64 partial implementation of IEC 61883 (shared lib)
ii libieee1284-3:amd64 0.2.11-13 amd64 cross-platform library for parallel port access
ii libijs-0.35:amd64 0.35-12 amd64 IJS raster image transport protocol: shared library
ii libilmbase12:amd64 2.2.0-11ubuntu2 amd64 several utility libraries from ILM used by OpenEXR
ii libimobiledevice6:amd64 1.2.0+dfsg-3.1ubuntu3 amd64 Library for communicating with the iPhone and iPod Touch
ii libindicator3-7 16.10.0+18.04.20171205.1-0ubuntu1 amd64 panel indicator applet - shared library
ii libinput-bin 1.9.4-2 amd64 input device management and event handling library - udev quirks
ii libinput10:amd64 1.9.4-2 amd64 input device management and event handling library - shared library
ii libio-html-perl 1.001-1 all open an HTML file with automatic charset detection
ii libio-pty-perl 1:1.08-1.1build4 amd64 Perl module for pseudo tty IO
ii libio-socket-inet6-perl 2.72-2 all object interface for AF_INET6 domain sockets
ii libio-socket-ssl-perl 2.052-1 all Perl module implementing object oriented interface to SSL sockets
ii libio-string-perl 1.08-3 all Emulate IO::File interface for in-core strings
ii libip4tc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libip4tc library
ii libip6tc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libip6tc library
ii libipc-run-perl 0.96-1 all Perl module for running processes
ii libipc-system-simple-perl 1.25-3 all Perl module to run commands simply, with detailed diagnostics
ii libiptc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libiptc library
ii libisc-export160 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 Exported ISC Shared Library
ii libisc160:amd64 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 ISC Shared Library used by BIND
ii libisccc140:amd64 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 Command Channel Library used by BIND
ii libisccfg140:amd64 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 Config File Handling Library used by BIND
ii libisl15:amd64 0.18-1 amd64 manipulating sets and relations of integer points bounded by linear constraints
ii libitm1:amd64 7.2.0-18ubuntu2 amd64 GNU Transactional Memory Library
ii libiw30:amd64 30~pre9-12ubuntu1 amd64 Wireless tools - library
ii libjack-jackd2-0:amd64 1.9.10+20150825git1ed50c92~dfsg-5ubuntu1 amd64 JACK Audio Connection Kit (libraries)
ii libjansson4:amd64 2.10-1 amd64 C library for encoding, decoding and manipulating JSON data
ii libjavascriptcoregtk-4.0-18:amd64 2.18.4-1 amd64 JavaScript engine library from WebKitGTK+
ii libjbig0:amd64 2.1-3.1 amd64 JBIGkit libraries
ii libjbig2dec0:amd64 0.13-5 amd64 JBIG2 decoder library - shared libraries
ii libjpeg-turbo8:amd64 1.5.2-0ubuntu5 amd64 IJG JPEG compliant runtime library.
ii libjpeg8:amd64 8c-2ubuntu8 amd64 Independent JPEG Group's JPEG runtime library (dependency package)
ii libjs-excanvas 0.r3-4 all HTML5 Canvas for Internet Explorer
ii libjs-jquery 3.2.1-1 all JavaScript library for dynamic web applications
ii libjs-sphinxdoc 1.6.5-3 all JavaScript support for Sphinx documentation
ii libjs-underscore 1.8.3~dfsg-1 all JavaScript's functional programming helper library
ii libjson-c3:amd64 0.12.1-1.2 amd64 JSON manipulation library - shared library
ii libjson-glib-1.0-0:amd64 1.4.2-3 amd64 GLib JSON manipulation library
ii libjson-glib-1.0-common 1.4.2-3 all GLib JSON manipulation library (common files)
ii libjson-perl 2.94-1 all module for manipulating JSON-formatted data
ii libjson-xs-perl 3.040-1 amd64 module for manipulating JSON-formatted data (C/XS-accelerated)
ii libk5crypto3:amd64 1.15.1-2 amd64 MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1:amd64 1.5.9-9.2ubuntu1 amd64 Linux Key Management Utilities (library)
ii libklibc 2.0.4-9ubuntu2 amd64 minimal libc subset for use with initramfs
ii libkmod2:amd64 24-1ubuntu2 amd64 libkmod shared library
ii libkpathsea6:amd64 2017.20170613.44572-6ubuntu1 amd64 TeX Live: path search library for TeX (runtime part)
ii libkrb5-26-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - libraries
ii libkrb5-3:amd64 1.15.1-2 amd64 MIT Kerberos runtime libraries
ii libkrb5support0:amd64 1.15.1-2 amd64 MIT Kerberos runtime libraries - Support library
ii libksba8:amd64 1.3.5-2 amd64 X.509 and CMS support library
ii libkyotocabinet16v5:amd64 1.2.76-4.2 amd64 Straightforward implementation of DBM - shared library
ii liblangtag-common 0.6.2-1 all library to access tags for identifying languages -- data
ii liblangtag1:amd64 0.6.2-1 amd64 library to access tags for identifying languages
ii liblapack3:amd64 3.7.1-4ubuntu1 amd64 Library of linear algebra routines 3 - shared version
ii liblcms2-2:amd64 2.9-1 amd64 Little CMS 2 color management library
ii liblcms2-utils 2.9-1 amd64 Little CMS 2 color management library (utilities)
ii libldap-2.4-2:amd64 2.4.45+dfsg-1ubuntu1 amd64 OpenLDAP libraries
ii libldap-common 2.4.45+dfsg-1ubuntu1 all OpenLDAP common files for libraries
ii libldb1:amd64 2:1.2.2-2 amd64 LDAP-like embedded database - shared library
ii liblinear3:amd64 2.1.0+dfsg-2 amd64 Library for Large Linear Classification
ii liblirc-client0:amd64 0.10.0-2 amd64 infra-red remote control support - client library
ii liblist-moreutils-perl 0.416-1build3 amd64 Perl module with additional list functions not found in List::Util
ii libllvm5.0:amd64 1:5.0.1-2 amd64 Modular compiler and toolchain technologies, runtime library
ii liblocale-gettext-perl 1.07-3build2 amd64 module using libc functions for internationalization in Perl
ii liblouis-data 3.3.0-1 all Braille translation library - data
ii liblouis14:amd64 3.3.0-1 amd64 Braille translation library - shared libs
ii liblouisutdml-bin 2.6.0-5 amd64 Braille UTDML translation utilities
ii liblouisutdml-data 2.6.0-5 all Braille UTDML translation library - data
ii liblouisutdml7:amd64 2.6.0-5 amd64 Braille UTDML translation library - shared libs
ii liblqr-1-0:amd64 0.4.2-2.1 amd64 converts plain array images into multi-size representation
ii liblsan0:amd64 7.2.0-18ubuntu2 amd64 LeakSanitizer -- a memory leak detector (runtime)
ii libltdl-dev:amd64 2.4.6-2 amd64 System independent dlopen wrapper for GNU libtool
ii libltdl7:amd64 2.4.6-2 amd64 System independent dlopen wrapper for GNU libtool
ii liblua5.2-0:amd64 5.2.4-1.1build1 amd64 Shared library for the Lua interpreter version 5.2
ii liblua5.3-0:amd64 5.3.3-1 amd64 Shared library for the Lua interpreter version 5.3
ii liblwp-mediatypes-perl 6.02-1 all module to guess media type for a file or a URL
ii liblwp-protocol-https-perl 6.07-2 all HTTPS driver for LWP::UserAgent
ii liblwres141:amd64 1:9.10.3.dfsg.P4-12.6ubuntu1 amd64 Lightweight Resolver Library used by BIND
ii liblz4-1:amd64 0.0~r131-2ubuntu2 amd64 Fast LZ compression algorithm library - runtime
ii liblzma5:amd64 5.2.2-1.3 amd64 XZ-format compression library
ii liblzo2-2:amd64 2.08-1.2 amd64 data compression library
ii libmagic-mgc 1:5.32-1 amd64 File type determination library using "magic" numbers (compiled magic file)
ii libmagic1:amd64 1:5.32-1 amd64 Recognize the type of data in a file using "magic" numbers - library
ii libmagickcore-6.q16-3:amd64 8:6.9.7.4+dfsg-16ubuntu5 amd64 low-level image manipulation library -- quantum depth Q16
ii libmagickcore-6.q16-3-extra:amd64 8:6.9.7.4+dfsg-16ubuntu5 amd64 low-level image manipulation library - extra codecs (Q16)
ii libmagickwand-6.q16-3:amd64 8:6.9.7.4+dfsg-16ubuntu5 amd64 image manipulation library -- quantum depth Q16
ii libmailtools-perl 2.18-1 all Manipulate email in perl programs
ii libmailutils5:amd64 1:3.4-1 amd64 GNU Mail abstraction library
ii libmbim-glib4:amd64 1.14.2-2.1 amd64 Support library to use the MBIM protocol
ii libmbim-proxy 1.14.2-2.1 amd64 Proxy to communicate with MBIM ports
ii libmediaart-2.0-0:amd64 1.9.4-1 amd64 media art extraction and cache management library
ii libmediawiki-api-perl 0.41-1 all Perl interface to the MediaWiki API
ii libmessaging-menu0:amd64 13.10.1+17.04.20170120-0ubuntu2 amd64 Messaging Menu - shared library
ii libmetis5:amd64 5.1.0.dfsg-5 amd64 Serial Graph Partitioning and Fill-reducing Matrix Ordering