forked from intel-cloud/cosbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkg.lst
1576 lines (1576 loc) · 197 KB
/
pkg.lst
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 Description
+++-======================================-==========================================-==============================================================================
ii accountsservice 0.6.15-2ubuntu9.3 query and manipulate user account information
ii acl 2.2.51-5ubuntu1 Access control list utilities
ii acpi-support 0.140 scripts for handling many ACPI events
ii acpid 1:2.0.10-1ubuntu3 Advanced Configuration and Power Interface event daemon
ii activity-log-manager-common 0.9.4-0ubuntu3 blacklist configuration for Zeitgeist (assets)
ii activity-log-manager-control-center 0.9.4-0ubuntu3 blacklist configuration for Zeitgeist (control center integration)
ii adduser 3.113ubuntu2 add and remove users and groups
ii adium-theme-ubuntu 0.3.2-0ubuntu1 Adium message style for Ubuntu
ii aisleriot 1:3.2.3.2-0ubuntu1 Solitaire card games
ii alsa-base 1.0.25+dfsg-0ubuntu1 ALSA driver configuration files
ii alsa-utils 1.0.25-1ubuntu5 Utilities for configuring and using ALSA
ii anacron 2.3-14ubuntu1 cron-like program that doesn't go by time
ii apache2 2.2.22-1ubuntu1.2 Apache HTTP Server metapackage
ii apache2-mpm-worker 2.2.22-1ubuntu1.2 Apache HTTP Server - high speed threaded model
ii apache2-utils 2.2.22-1ubuntu1.2 utility programs for webservers
ii apache2.2-bin 2.2.22-1ubuntu1.2 Apache HTTP Server common binary files
ii apache2.2-common 2.2.22-1ubuntu1.2 Apache HTTP Server common files
ii apg 2.2.3.dfsg.1-2 Automated Password Generator - Standalone version
ii app-install-data 0.12.04.4 Ubuntu applications (data files)
ii app-install-data-partner 12.12.04.1 Application Installer (data files for partner applications/repositories)
ii apparmor 2.7.102-0ubuntu3.1 User-space parser utility for AppArmor
ii appmenu-gtk 0.3.92-0ubuntu1 Export GTK menus over DBus
ii appmenu-gtk3 0.3.92-0ubuntu1 Export GTK menus over DBus
ii appmenu-qt 0.2.6-0ubuntu1 appmenu support for Qt
ii apport 2.0.1-0ubuntu12 automatically generate crash reports for debugging
ii apport-gtk 2.0.1-0ubuntu12 GTK+ frontend for the apport crash report system
ii apport-symptoms 0.16 symptom scripts for apport
ii apt 0.8.16~exp12ubuntu10.2 commandline package manager
ii apt-transport-https 0.8.16~exp12ubuntu10.2 https download transport for APT
ii apt-utils 0.8.16~exp12ubuntu10.2 package managment related utility programs
ii apt-xapian-index 0.44ubuntu5 maintenance and search tools for a Xapian index of Debian packages
ii aptdaemon 0.43+bzr805-0ubuntu4 transaction based package management service
ii aptdaemon-data 0.43+bzr805-0ubuntu4 data files for clients
ii apturl 0.5.1ubuntu3 install packages using the apt protocol - GTK+ frontend
ii apturl-common 0.5.1ubuntu3 install packages using the apt protocol - common data
ii aspell 0.60.7~20110707-1 GNU Aspell spell-checker
ii aspell-en 6.0-0-6ubuntu2 English dictionary for GNU Aspell
ii at 3.1.13-1ubuntu1 Delayed job execution and batch processing
ii at-spi2-core 2.4.2-0ubuntu0.1 Assistive Technology Service Provider Interface (dbus core)
ii avahi-autoipd 0.6.30-5ubuntu2 Avahi IPv4LL network address configuration daemon
ii avahi-daemon 0.6.30-5ubuntu2 Avahi mDNS/DNS-SD daemon
ii avahi-utils 0.6.30-5ubuntu2 Avahi browsing, publishing and discovery utilities
ii bamfdaemon 0.2.118-0ubuntu0.2 Window matching library - daemon
ii baobab 3.4.1-0ubuntu1 GNOME disk usage analyzer
ii base-files 6.5ubuntu6.2 Debian base system miscellaneous files
ii base-passwd 3.5.24 Debian base system master password and group files
ii bash 4.2-2ubuntu2 GNU Bourne Again SHell
ii bash-completion 1:1.3-1ubuntu8 programmable completion for the bash shell
ii bc 1.06.95-2 The GNU bc arbitrary precision calculator language
ii bind9-host 1:9.8.1.dfsg.P1-4ubuntu0.2 Version of 'host' bundled with BIND 9.X
ii binutils 2.22-6ubuntu1 GNU assembler, linker and binary utilities
ii blt 2.4z-4.2ubuntu1 the BLT extension library for Tcl/Tk - run-time package
ii bluez 4.98-2ubuntu7 Bluetooth tools and daemons
ii bluez-alsa 4.98-2ubuntu7 Bluetooth ALSA support
ii bluez-cups 4.98-2ubuntu7 Bluetooth printer driver for CUPS
ii bluez-gstreamer 4.98-2ubuntu7 Bluetooth GStreamer support
ii branding-ubuntu 0.7 Replacement artwork with Ubuntu branding
ii brasero 3.4.1-0ubuntu1 CD/DVD burning application for GNOME
ii brasero-cdrkit 3.4.1-0ubuntu1 cdrkit extensions for the Brasero burning application
ii brasero-common 3.4.1-0ubuntu1 Common files for the Brasero CD burning application and library
ii bridge-utils 1.5-2ubuntu7 Utilities for configuring the Linux Ethernet bridge
ii brltty 4.3-1ubuntu5 Access software for a blind person using a braille display
ii bsdmainutils 8.2.3ubuntu1 collection of more utilities from FreeBSD
ii bsdutils 1:2.20.1-1ubuntu3 Basic utilities from 4.4BSD-Lite
ii busybox-initramfs 1:1.18.5-1ubuntu4 Standalone shell setup for initramfs
ii busybox-static 1:1.18.5-1ubuntu4 Standalone rescue shell with tons of builtin utilities
ii bzip2 1.0.6-1 high-quality block-sorting file compressor - utilities
ii ca-certificates 20111211 Common CA certificates
ii cgroup-lite 1.1.2 Light-weight package to set up cgroups at system boot
ii checkbox 0.13.7 System testing application
ii checkbox-qt 0.13.7 QT4 interface for checkbox
ii cloud-utils 0.25-0ubuntu5 cloud image management utilities
ii cmap-adobe-japan2 0+20090930-2 CMaps for Adobe-Japan2
ii colord 0.1.16-2 system service to manage device colour profiles -- system daemon
ii command-not-found 0.2.46ubuntu6 Suggest installation of packages in interactive bash sessions
ii command-not-found-data 0.2.46ubuntu6 Set of data files for command-not-found.
ii compiz 1:0.9.7.8-0ubuntu1.4 OpenGL window and compositing manager
ii compiz-core 1:0.9.7.8-0ubuntu1.4 OpenGL window and compositing manager
ii compiz-gnome 1:0.9.7.8-0ubuntu1.4 OpenGL window and compositing manager - GNOME window decorator
ii compiz-plugins-default 1:0.9.7.8-0ubuntu1.4 OpenGL window and compositing manager - default plugins
ii compiz-plugins-main-default 1:0.9.7.0~bzr19-0ubuntu10 Compiz plugins - main default collection
ii compizconfig-backend-gconf 0.9.5.92-0ubuntu5 Compiz Fusion configuration system - gconf backend
ii console-setup 1.70ubuntu5 console font and keymap setup program
ii consolekit 0.4.5-2 framework for defining and tracking users, sessions and seats
ii coreutils 8.13-3ubuntu3 GNU core utilities
ii cpio 2.11-7ubuntu3 GNU cpio -- a program to manage archives of files
ii cpp 4:4.6.3-1ubuntu5 GNU C preprocessor (cpp)
ii cpp-4.6 4.6.3-1ubuntu5 GNU C preprocessor
ii cpu-checker 0.7-0ubuntu1 tools to help evaluate certain CPU (or BIOS) features
ii crda 1.1.2-1ubuntu1 wireless Central Regulatory Domain Agent
ii cron 3.0pl1-120ubuntu4 process scheduling daemon
ii cryptsetup-bin 2:1.4.1-2ubuntu4 disk encryption support - command line tools
ii cups 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - server
ii cups-bsd 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - BSD commands
ii cups-client 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - client programs (SysV)
ii cups-common 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - common files
ii cups-filters 1.0.18-0ubuntu0.1 OpenPrinting CUPS Filters
ii cups-ppdc 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - PPD manipulation utilities
ii dash 0.5.7-2ubuntu2 POSIX-compliant shell
ii dbus 1.4.18-1ubuntu1 simple interprocess messaging system (daemon and utilities)
ii dbus-x11 1.4.18-1ubuntu1 simple interprocess messaging system (X11 deps)
ii dc 1.06.95-2 The GNU dc arbitrary precision reverse-polish calculator
ii dconf-gsettings-backend 0.12.0-0ubuntu1.1 simple configuration storage system - GSettings back-end
ii dconf-service 0.12.0-0ubuntu1.1 simple configuration storage system - D-Bus service
ii debconf 1.5.42ubuntu1 Debian configuration management system
ii debconf-i18n 1.5.42ubuntu1 full internationalization support for debconf
ii debianutils 4.2.1ubuntu2 Miscellaneous utilities specific to Debian
ii deja-dup 22.0-0ubuntu2 Back up your files
ii desktop-file-utils 0.20-0ubuntu3 Utilities for .desktop files
ii dictionaries-common 1.12.1ubuntu2 Common utilities for spelling dictionary tools
ii diffutils 1:3.2-1ubuntu1 File comparison utilities
ii dmidecode 2.11-4 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.48-4ubuntu7.1 The Linux Kernel Device Mapper userspace library
ii dmz-cursor-theme 0.4.3 Style neutral, scalable cursor theme
ii dnsmasq-base 2.59-4 Small caching DNS proxy and DHCP/TFTP server
ii dnsmasq-utils 2.59-4 Utilities for manipulating DHCP leases
ii dnsutils 1:9.8.1.dfsg.P1-4ubuntu0.2 Clients provided with BIND
ii doc-base 0.10.3 utilities to manage online documentation
ii docutils-common 0.8.1-4ubuntu1 text processing system for reStructuredText - common data
ii docutils-doc 0.8.1-4ubuntu1 text processing system for reStructuredText - documentation
ii dosfstools 3.0.12-1ubuntu1 utilities for making and checking MS-DOS FAT filesystems
ii dpkg 1.16.1.2ubuntu7 Debian package management system
ii duplicity 0.6.18-0ubuntu3 encrypted bandwidth-efficient backup
ii dvd+rw-tools 7.1-10 DVD+-RW/R tools
ii e2fslibs 1.42-1ubuntu2 ext2/ext3/ext4 file system libraries
ii e2fsprogs 1.42-1ubuntu2 ext2/ext3/ext4 file system utilities
ii ebtables 2.0.9.2-2ubuntu2 Ethernet bridge frame table administration
ii ed 1.5-3 classic UNIX line editor
ii eject 2.1.5+deb1+cvs20081104-9 ejects CDs and operates CD-Changers under Linux
ii empathy 3.4.2.3-0ubuntu1 GNOME multi-protocol chat and call client
ii empathy-common 3.4.2.3-0ubuntu1 GNOME multi-protocol chat and call client (common files)
ii enchant 1.6.0-7 Wrapper for various spell checker engines (binary programs)
ii eog 3.4.2-0ubuntu1 Eye of GNOME graphics viewer program
ii erlang-asn1 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP modules for ASN.1 support
ii erlang-base 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP virtual machine and base applications
ii erlang-corba 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP applications for CORBA support
ii erlang-crypto 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP cryptographic modules
ii erlang-dev 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP development libraries and headers
ii erlang-diameter 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP implementation of RFC 3588 protocol
ii erlang-docbuilder 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP application for building HTML documentation
ii erlang-edoc 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP module for generating documentation
ii erlang-erl-docgen 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP documentation stylesheets
ii erlang-eunit 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP module for unit testing
ii erlang-ic 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP IDL compiler
ii erlang-inets 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP Internet clients and servers
ii erlang-inviso 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP trace tool
ii erlang-mnesia 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP distributed relational/object hybrid database
ii erlang-nox 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP applications that don't require X Window System
ii erlang-odbc 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP interface to SQL databases
ii erlang-os-mon 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP operating system monitor
ii erlang-parsetools 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP parsing tools
ii erlang-percept 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP concurrency profiling tool
ii erlang-public-key 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP public key infrastructure
ii erlang-runtime-tools 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP runtime tracing/debugging tools
ii erlang-snmp 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP SNMP applications
ii erlang-ssh 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP implementation of SSH protocol
ii erlang-ssl 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP implementation of SSL
ii erlang-syntax-tools 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP modules for handling abstract Erlang syntax trees
ii erlang-tools 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP various tools
ii erlang-webtool 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP helper for web-based tools
ii erlang-xmerl 1:14.b.4-dfsg-1ubuntu1 Erlang/OTP XML tools
ii espeak 1.46.02-0ubuntu1 Multi-lingual software speech synthesizer
ii espeak-data 1.46.02-0ubuntu1 Multi-lingual software speech synthesizer: speech data files
ii euca2ools 2.0.0~bzr516-0ubuntu3.1 managing cloud instances for Eucalyptus
ii evince 3.4.0-0ubuntu1.3 Document (PostScript, PDF) viewer
ii evince-common 3.4.0-0ubuntu1.3 Document (PostScript, PDF) viewer - common files
ii evolution-data-server 3.2.3-0ubuntu7 evolution database backend server
ii evolution-data-server-common 3.2.3-0ubuntu7 architecture independent files for Evolution Data Server
ii example-content 46 Ubuntu example content
ii file 5.09-2 Determines file type using "magic" numbers
ii file-roller 3.4.1-0ubuntu1 archive manager for GNOME
ii findutils 4.4.2-4ubuntu1 utilities for finding files--find, xargs
ii firefox 14.0.1+build1-0ubuntu0.12.04.1 Safe and easy web browser from Mozilla
ii firefox-globalmenu 14.0.1+build1-0ubuntu0.12.04.1 Unity appmenu integration for Firefox
ii firefox-gnome-support 14.0.1+build1-0ubuntu0.12.04.1 Safe and easy web browser from Mozilla - GNOME support
ii firefox-locale-en 14.0.1+build1-0ubuntu0.12.04.1 English language pack for Firefox
ii folks-common 0.6.8-2 library to aggregates people into metacontacts (common files)
ii fontconfig 2.8.0-3ubuntu9.1 generic font configuration library - support binaries
ii fontconfig-config 2.8.0-3ubuntu9.1 generic font configuration library - configuration
ii fonts-kacst 2.01+mry-3 KACST free TrueType Arabic fonts
ii fonts-kacst-one 5.0+svn11846-2 TrueType font designed for Arabic language
ii fonts-khmeros-core 5.0-5ubuntu1 KhmerOS Unicode fonts for the Khmer language of Cambodia
ii fonts-lao 0.0.20060226-8 TrueType font for Lao language
ii fonts-liberation 1.07.0-2ubuntu0.1 Fonts with the same metrics as Times, Arial and Courier
ii fonts-nanum 3.010-2 Nanum Korean fonts
ii fonts-opensymbol 2:102.2+LibO3.5.4-0ubuntu1.1 OpenSymbol TrueType font
ii fonts-takao-pgothic 003.02.01-5ubuntu1 Japanese TrueType font set, Takao P Gothic Fonts
ii fonts-thai-tlwg 1:0.4.17-1ubuntu1 Thai fonts maintained by TLWG (meta package)
ii fonts-tlwg-garuda 1:0.4.17-1ubuntu1 Thai Garuda font
ii fonts-tlwg-kinnari 1:0.4.17-1ubuntu1 Thai Kinnari font
ii fonts-tlwg-loma 1:0.4.17-1ubuntu1 Thai Loma font
ii fonts-tlwg-mono 1:0.4.17-1ubuntu1 Thai TlwgMono font
ii fonts-tlwg-norasi 1:0.4.17-1ubuntu1 Thai Norasi font
ii fonts-tlwg-purisa 1:0.4.17-1ubuntu1 Thai Purisa font
ii fonts-tlwg-sawasdee 1:0.4.17-1ubuntu1 Thai Sawasdee font
ii fonts-tlwg-typewriter 1:0.4.17-1ubuntu1 Thai TlwgTypewriter font
ii fonts-tlwg-typist 1:0.4.17-1ubuntu1 Thai TlwgTypist font
ii fonts-tlwg-typo 1:0.4.17-1ubuntu1 Thai TlwgTypo font
ii fonts-tlwg-umpush 1:0.4.17-1ubuntu1 Thai Umpush font
ii fonts-tlwg-waree 1:0.4.17-1ubuntu1 Thai Waree font
ii foomatic-db-compressed-ppds 20120322-0ubuntu1 OpenPrinting printer support - Compressed PPDs derived from the database
ii foomatic-db-engine 4.0.8-2ubuntu1 OpenPrinting printer support - programs
ii foomatic-filters 4.0.16-0ubuntu0.2 OpenPrinting printer support - filters
ii friendly-recovery 0.2.25 Make recovery more user-friendly
ii ftp 0.17-25 classical file transfer client
ii fuse 2.8.6-2ubuntu2 Filesystem in Userspace
ii gawk 1:3.1.8+dfsg-0.1ubuntu1 GNU awk, a pattern scanning and processing language
ii gcalctool 6.4.1.1-0ubuntu3 GNOME desktop calculator
ii gcc 4:4.6.3-1ubuntu5 GNU C compiler
ii gcc-4.6 4.6.3-1ubuntu5 GNU C compiler
ii gcc-4.6-base 4.6.3-1ubuntu5 GCC, the GNU Compiler Collection (base package)
ii gconf-service 3.2.5-0ubuntu2 GNOME configuration database system (D-Bus service)
ii gconf-service-backend 3.2.5-0ubuntu2 GNOME configuration database system (D-Bus service)
ii gconf2 3.2.5-0ubuntu2 GNOME configuration database system (support tools)
ii gconf2-common 3.2.5-0ubuntu2 GNOME configuration database system (common files)
ii gdb 7.4-2012.04-0ubuntu2 The GNU Debugger
ii gedit 3.4.1-0ubuntu1 official text editor of the GNOME desktop environment
ii gedit-common 3.4.1-0ubuntu1 official text editor of the GNOME desktop environment (support files)
ii genisoimage 9:1.1.11-2ubuntu2 Creates ISO-9660 CD-ROM filesystem images
ii geoclue 0.12.0-1ubuntu12 Geographic information framework
ii geoclue-ubuntu-geoip 0.0.2-0ubuntu6 Provide positioning for GeoClue via Ubuntu GeoIP services
ii geoip-database 20111220-1 IP lookup command line tools that use the GeoIP library (country database)
ii gettext-base 0.18.1.1-5ubuntu3 GNU Internationalization utilities for the base system
ii ghostscript 9.05~dfsg-0ubuntu4.1 interpreter for the PostScript language and for PDF
ii ghostscript-cups 9.05~dfsg-0ubuntu4.1 interpreter for the PostScript language and for PDF - CUPS filters
ii ghostscript-x 9.05~dfsg-0ubuntu4.1 interpreter for the PostScript language and for PDF - X11 support
ii ginn 0.2.4-0ubuntu1 Gesture Injector: No-GEIS, No-Toolkits
ii gir1.2-appindicator3-0.1 0.4.92-0ubuntu1 Typelib files for libappindicator3-1.
ii gir1.2-atk-1.0 2.4.0-0ubuntu1 ATK accessibility toolkit (GObject introspection)
ii gir1.2-atspi-2.0 2.4.2-0ubuntu0.1 Assistive Technology Service Provider (GObject introspection)
ii gir1.2-dbusmenu-glib-0.4 0.6.2-0ubuntu0.1 typelib file for libdbusmenu-glib4
ii gir1.2-dbusmenu-gtk-0.4 0.6.2-0ubuntu0.1 typelib file for libdbusmenu-gtk4
ii gir1.2-dee-1.0 1.0.10-0ubuntu1 GObject introspection data for the Dee library
ii gir1.2-freedesktop 1.32.0-1 Introspection data for some FreeDesktop components
ii gir1.2-gdkpixbuf-2.0 2.26.1-1 GDK Pixbuf library - GObject-Introspection
ii gir1.2-glib-2.0 1.32.0-1 Introspection data for GLib, GObject, Gio and GModule
ii gir1.2-gmenu-3.0 3.4.0-0ubuntu1 GObject introspection data for the GNOME menu library
ii gir1.2-gnomebluetooth-1.0 3.2.2-0ubuntu5 Introspection data for GnomeBluetooth
ii gir1.2-gnomekeyring-1.0 3.2.2-2 GNOME keyring services library - introspection data
ii gir1.2-gst-plugins-base-0.10 0.10.36-1ubuntu0.1 Description: GObject introspection data for the GStreamer Plugins Base library
ii gir1.2-gstreamer-0.10 0.10.36-1ubuntu1 Description: GObject introspection data for the GStreamer library
ii gir1.2-gtk-2.0 2.24.10-0ubuntu6 GTK+ graphical user interface library -- gir bindings
ii gir1.2-gtk-3.0 3.4.2-0ubuntu0.4 GTK+ graphical user interface library -- gir bindings
ii gir1.2-gtksource-3.0 3.4.2-0ubuntu1 gir files for the GTK+ syntax highlighting widget
ii gir1.2-gudev-1.0 175-0ubuntu9.1 libgudev-1.0 introspection data
ii gir1.2-indicate-0.7 0.6.92-0ubuntu1 Typelib file for libindicate5
ii gir1.2-javascriptcoregtk-3.0 1.8.1-0ubuntu0.12.04.1 GObject introspection data for the GTK+-based JavaScriptCore library
ii gir1.2-launchpad-integration-3.0 0.1.56.1 library for launchpad integration (gir files)
ii gir1.2-notify-0.7 0.7.5-1 sends desktop notifications to a notification daemon (Introspection files)
ii gir1.2-pango-1.0 1.30.0-0ubuntu3.1 Layout and rendering of internationalized text - gir bindings
ii gir1.2-peas-1.0 1.2.0-1ubuntu1 Application plugin library (introspection files)
ii gir1.2-rb-3.0 2.96-0ubuntu4.1 GObject introspection data for the rhythmbox music player
ii gir1.2-soup-2.4 2.38.1-1 GObject introspection data for the libsoup HTTP library
ii gir1.2-totem-1.0 3.0.1-0ubuntu21 GObject introspection data for Totem media player
ii gir1.2-totem-plparser-1.0 3.4.1-1 GObject introspection data for the Totem Playlist Parser library
ii gir1.2-ubuntuoneui-3.0 3.0.1-0ubuntu1 Ubuntu One widget library
ii gir1.2-unity-5.0 5.12.0-0ubuntu1.1 GObject introspection data for the Unity library
ii gir1.2-vte-2.90 1:0.32.1-0ubuntu1 GObject introspection data for the VTE library
ii gir1.2-webkit-3.0 1.8.1-0ubuntu0.12.04.1 GObject introspection data for the WebKit library
ii gir1.2-wnck-3.0 3.4.0-0ubuntu1 GObject introspection data for the WNCK library
ii git 1:1.7.9.5-1 fast, scalable, distributed revision control system
ii git-man 1:1.7.9.5-1 fast, scalable, distributed revision control system (manual pages)
ii gksu 2.0.2-6ubuntu1 graphical frontend to su
ii glib-networking 2.32.1-1ubuntu1 network-related giomodules for GLib
ii glib-networking-common 2.32.1-1ubuntu1 network-related giomodules for GLib - data files
ii glib-networking-services 2.32.1-1ubuntu1 network-related giomodules for GLib - D-Bus services
ii gnome-accessibility-themes 3.4.1-0ubuntu1.1 accessibility themes for the GNOME desktop
ii gnome-bluetooth 3.2.2-0ubuntu5 GNOME Bluetooth tools
ii gnome-control-center 1:3.4.2-0ubuntu0.4 utilities to configure the GNOME desktop
ii gnome-control-center-data 1:3.4.2-0ubuntu0.4 configuration applets for GNOME - data files
ii gnome-desktop3-data 3.4.2-0ubuntu0.1 Common files for GNOME desktop apps
ii gnome-disk-utility 3.0.2-2ubuntu7 manage and configure disk drives and media
ii gnome-font-viewer 3.4.0-1 font viewer for GNOME
ii gnome-games-data 1:3.4.1-0ubuntu2.1 data files for the GNOME games
ii gnome-icon-theme 3.4.0-0ubuntu1.1 GNOME Desktop icon theme (small subset)
ii gnome-icon-theme-symbolic 3.4.0-1 GNOME desktop icon theme (symbolic icons)
ii gnome-keyring 3.2.2-2ubuntu4 GNOME keyring services (daemon and tools)
ii gnome-media 3.4.0-0ubuntu2.1 GNOME media utilities
ii gnome-menus 3.4.0-0ubuntu1 GNOME implementation of the freedesktop menu specification
ii gnome-nettool 3.2.0-0ubuntu1 network information tool for GNOME
ii gnome-online-accounts 3.4.0-0ubuntu1 GNOME Online Accounts
ii gnome-orca 3.4.2-0ubuntu0.1 Scriptable screen reader
ii gnome-power-manager 3.4.0-0ubuntu1 power management tool for the GNOME desktop
ii gnome-screensaver 3.4.1-0ubuntu1 GNOME screen saver and locker
ii gnome-screenshot 3.4.1-0ubuntu1 screenshot application for GNOME
ii gnome-session 3.2.1-0ubuntu8 GNOME Session Manager - GNOME 3 session
ii gnome-session-bin 3.2.1-0ubuntu8 GNOME Session Manager - Minimal runtime
ii gnome-session-canberra 0.28-3ubuntu3 GNOME session log in and log out sound events
ii gnome-session-common 3.2.1-0ubuntu8 GNOME Session Manager - common files
ii gnome-settings-daemon 3.4.2-0ubuntu0.4 daemon handling the GNOME session settings
ii gnome-sudoku 1:3.4.1-0ubuntu2.1 Sudoku puzzle game for GNOME
ii gnome-system-log 3.4.1-0ubuntu1 system log viewer for GNOME
ii gnome-system-monitor 3.4.1-0ubuntu1 Process viewer and system resource monitor for GNOME
ii gnome-terminal 3.4.1.1-0ubuntu1 GNOME terminal emulator application
ii gnome-terminal-data 3.4.1.1-0ubuntu1 Data files for the GNOME terminal emulator
ii gnome-user-guide 3.4.1-1 GNOME user's guide
ii gnome-user-share 3.0.2-0ubuntu1 User level public file sharing via WebDAV or ObexFTP
ii gnomine 1:3.4.1-0ubuntu2.1 popular minesweeper puzzle game for GNOME
ii gnupg 1.4.11-3ubuntu2 GNU privacy guard - a free PGP replacement
ii gpgv 1.4.11-3ubuntu2 GNU privacy guard - signature verification tool
ii grep 2.10-1 GNU grep, egrep and fgrep
ii groff-base 1.21-7 GNU troff text-formatting system (base system components)
ii growisofs 7.1-10 DVD+-RW/R recorder
ii grub-common 1.99-21ubuntu3.1 GRand Unified Bootloader (common files)
ii grub-gfxpayload-lists 0.6 GRUB gfxpayload blacklist
ii grub-pc 1.99-21ubuntu3.1 GRand Unified Bootloader, version 2 (PC/BIOS version)
ii grub-pc-bin 1.99-21ubuntu3.1 GRand Unified Bootloader, version 2 (PC/BIOS binaries)
ii grub2-common 1.99-21ubuntu3.1 GRand Unified Bootloader (common files for version 2)
ii gs-cjk-resource 1.20100103-3 Resource files for gs-cjk, ghostscript CJK-TrueType extension
ii gsettings-desktop-schemas 3.4.1-0ubuntu1 GSettings deskop-wide schemas
ii gsfonts 1:8.11+urwcyr1.0.7~pre44-4.2ubuntu1 Fonts for the Ghostscript interpreter(s)
ii gstreamer0.10-alsa 0.10.36-1ubuntu0.1 GStreamer plugin for ALSA
ii gstreamer0.10-gconf 0.10.31-1ubuntu1 GStreamer plugin for getting the sink/source information from GConf
ii gstreamer0.10-nice 0.1.1-2ubuntu1 ICE library (GStreamer plugin)
ii gstreamer0.10-plugins-base 0.10.36-1ubuntu0.1 GStreamer plugins from the "base" set
ii gstreamer0.10-plugins-base-apps 0.10.36-1ubuntu0.1 GStreamer helper programs from the "base" set
ii gstreamer0.10-plugins-good 0.10.31-1ubuntu1 GStreamer plugins from the "good" set
ii gstreamer0.10-pulseaudio 0.10.31-1ubuntu1 GStreamer plugin for PulseAudio
ii gstreamer0.10-tools 0.10.36-1ubuntu1 Tools for use with GStreamer
ii gstreamer0.10-x 0.10.36-1ubuntu0.1 GStreamer plugins for X11 and Pango
ii gtk2-engines 1:2.20.2-1ubuntu1 theme engines for GTK+ 2.x
ii gtk2-engines-murrine 0.98.2-0ubuntu1 cairo-based gtk+-2.0 theme engine
ii gtk3-engines-unico 1.0.2-0ubuntu1 Unico Gtk+ 3 theme engine
ii gucharmap 1:3.4.1.1-0ubuntu1 Unicode character picker and font browser
ii guile-1.8-libs 1.8.8+1-6ubuntu2 Core Guile libraries
ii gvfs 1.12.1-0ubuntu1 userspace virtual filesystem - GIO module
ii gvfs-backends 1.12.1-0ubuntu1 userspace virtual filesystem - backends
ii gvfs-bin 1.12.1-0ubuntu1 userspace virtual filesystem - binaries
ii gvfs-common 1.12.1-0ubuntu1 userspace virtual filesystem - common data files
ii gvfs-daemons 1.12.1-0ubuntu1 userspace virtual filesystem - servers
ii gvfs-fuse 1.12.1-0ubuntu1 userspace virtual filesystem - fuse server
ii gvfs-libs 1.12.1-0ubuntu1 userspace virtual filesystem - private libraries
ii gwibber 3.4.2-0ubuntu2 Open source social networking client for GNOME
ii gwibber-service 3.4.2-0ubuntu2 Open source social networking client for GNOME
ii gwibber-service-facebook 3.4.2-0ubuntu2 Facebook plugin for Gwibber
ii gwibber-service-identica 3.4.2-0ubuntu2 Identi.ca plugin for Gwibber
ii gwibber-service-twitter 3.4.2-0ubuntu2 Twitter plugin for Gwibber
ii gzip 1.4-1ubuntu2 GNU compression utilities
ii hdparm 9.37-0ubuntu3.1 tune hard disk parameters for high performance
ii hicolor-icon-theme 0.12-1ubuntu2 default fallback theme for FreeDesktop.org icon themes
ii hostname 3.06ubuntu1 utility to set/show the host name or domain name
ii hplip 3.12.2-1ubuntu3.1 HP Linux Printing and Imaging System (HPLIP)
ii hplip-data 3.12.2-1ubuntu3.1 HP Linux Printing and Imaging - data files
ii humanity-icon-theme 0.5.3.11 Humanity Icon theme
ii hunspell-en-us 20070829-4ubuntu3 English_american dictionary for hunspell
ii hwdata 0.233-1ubuntu1 hardware identification / configuration data
ii ibus 1.4.1-3ubuntu1 Intelligent Input Bus - core
ii ibus-gtk 1.4.1-3ubuntu1 Intelligent Input Bus - GTK+2 support
ii ibus-gtk3 1.4.1-3ubuntu1 Intelligent Input Bus - GTK+3 support
ii ibus-pinyin 1.4.0-1 Pinyin engine for IBus
ii ibus-pinyin-db-android 1.4.0-1 Pinyin engine for IBus - Android database
ii ibus-table 1.3.9.20110827-1ubuntu1 table engine for IBus
ii ifupdown 0.7~beta2ubuntu8 high level tools to configure network interfaces
ii im-switch 1.20ubuntu5 Input method switch framework
ii indicator-application 0.5.0-0ubuntu1 Application Indicators
ii indicator-appmenu 0.3.97-0ubuntu1 Indicator for application menus.
ii indicator-datetime 0.3.94-0ubuntu2 Simple clock
ii indicator-messages 0.6.0-0ubuntu1 indicator that collects messages that need a response
ii indicator-power 2.0-0ubuntu1 Indicator showing power state.
ii indicator-printers 0.1.6-0ubuntu1 indicator showing active print jobs
ii indicator-session 0.3.96-0ubuntu1 indicator showing session management, status and user switching
ii indicator-sound 0.8.5.0-0ubuntu2.1 System sound indicator.
ii indicator-status-provider-mc5 0.6.0-0ubuntu1 indicator-messages status provider for telepathy mission-control-5
ii info 4.13a.dfsg.1-8ubuntu2 Standalone GNU Info documentation browser
ii initramfs-tools 0.99ubuntu13 tools for generating an initramfs
ii initramfs-tools-bin 0.99ubuntu13 binaries used by initramfs-tools
ii initscripts 2.88dsf-13.10ubuntu11.1 scripts for initializing and shutting down the system
ii inputattach 1:1.4.2-1 utility to connect serial-attached peripherals to the input subsystem
ii insserv 1.14.0-2.1ubuntu2 Tool to organize boot sequence using LSB init.d script dependencies
ii install-info 4.13a.dfsg.1-8ubuntu2 Manage installed documentation in info format
ii intel-gpu-tools 1.2-1 tools for debugging the Intel graphics driver
ii iproute 20111117-1ubuntu2 networking and traffic control tools
ii iptables 1.4.12-1ubuntu4 administration tools for packet filtering and NAT
ii iputils-arping 3:20101006-1ubuntu1 Tool to send ICMP echo requests to an ARP address
ii iputils-ping 3:20101006-1ubuntu1 Tools to test the reachability of network hosts
ii iputils-tracepath 3:20101006-1ubuntu1 Tools to trace the network path to a remote host
ii irqbalance 0.56-1ubuntu4 Daemon to balance interrupts for SMP systems
ii isc-dhcp-client 4.1.ESV-R4-0ubuntu5.2 ISC DHCP client
ii isc-dhcp-common 4.1.ESV-R4-0ubuntu5.2 common files used by all the isc-dhcp* packages
ii iso-codes 3.31-1 ISO language, territory, currency, script codes and their translations
ii iw 3.2-1 tool for configuring Linux wireless devices
ii javascript-common 8 Base support for JavaScript library packages
ii jockey-common 0.9.7-0ubuntu7.1 user interface and desktop integration for driver management
ii jockey-gtk 0.9.7-0ubuntu7.1 GNOME user interface and desktop integration for driver management
ii kbd 1.15.2-3ubuntu4 Linux console font and keytable utilities
ii kerneloops-daemon 0.12+git20090217-1ubuntu19 kernel oops tracker
ii keyboard-configuration 1.70ubuntu5 system-wide keyboard preferences
ii klibc-utils 1.5.25-1ubuntu2 small utilities built with klibc for early boot
ii kpartx 0.4.9-3ubuntu5 create device mappings for partitions
ii krb5-locales 1.10+dfsg~beta1-2ubuntu0.3 Internationalization support for MIT Kerberos
ii kvm 1:84+dfsg-0ubuntu16+1.0+noroms+0ubuntu14.7 dummy transitional package from kvm to qemu-kvm
ii kvm-ipxe 1.0.0+git-3.55f6c88-0ubuntu1 PXE ROM's for KVM
ii landscape-client-ui-install 12.05-0ubuntu0.12.04 The Landscape administration system client - UI installer
ii language-pack-en 1:12.04+20120801 translation updates for language English
ii language-pack-en-base 1:12.04+20120801 translations for language English
ii language-pack-gnome-en 1:12.04+20120801 GNOME translation updates for language English
ii language-pack-gnome-en-base 1:12.04+20120801 GNOME translations for language English
ii language-selector-common 0.79 Language selector for Ubuntu
ii language-selector-gnome 0.79 Language selector for Ubuntu
ii laptop-detect 0.13.7ubuntu2 attempt to detect a laptop
ii launchpad-integration 0.1.56.1 launchpad integration
ii less 444-1ubuntu1 pager program similar to more
ii libaa1 1.4p5-39ubuntu1 ASCII art library
ii libaccountsservice0 0.6.15-2ubuntu9.3 query and manipulate user account information - shared libraries
ii libacl1 2.2.51-5ubuntu1 Access control list shared library
ii libaio1 0.3.109-2ubuntu1 Linux kernel AIO access library - shared library
ii libapache2-mod-wsgi 3.3-4build1 Python WSGI adapter module for Apache
ii libapparmor1 2.7.102-0ubuntu3.7 changehat AppArmor library
ii libappindicator1 0.4.92-0ubuntu1 Application Indicators
ii libappindicator3-1 0.4.92-0ubuntu1 Application Indicators
ii libapr1 1.4.6-1 Apache Portable Runtime Library
ii libaprutil1 1.3.12+dfsg-3 Apache Portable Runtime Utility Library
ii libaprutil1-dbd-sqlite3 1.3.12+dfsg-3 Apache Portable Runtime Utility Library - SQLite3 Driver
ii libaprutil1-ldap 1.3.12+dfsg-3 Apache Portable Runtime Utility Library - LDAP Driver
ii libapt-inst1.4 0.8.16~exp12ubuntu10.2 deb package format runtime library
ii libapt-pkg4.12 0.8.16~exp12ubuntu10.2 package managment runtime library
ii libarchive12 3.0.3-6ubuntu1 Multi-format archive and compression library (shared library)
ii libart-2.0-2 2.3.21-1 Library of functions for 2D graphics - runtime files
ii libasn1-8-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - ASN.1 library
ii libasound2 1.0.25-1ubuntu10.1 shared library for ALSA applications
ii libasound2-plugins 1.0.25-1ubuntu1 ALSA library additional plugins
ii libaspell15 0.60.7~20110707-1 GNU Aspell spell-checker runtime library
ii libasyncns0 0.8-4 Asynchronous name service query library
ii libatasmart4 0.18-3 ATA S.M.A.R.T. reading and parsing library
ii libatk-adaptor 2.4.0-1ubuntu2 at-spi2-atk
ii libatk-adaptor-schemas 2.4.0-1ubuntu2 at-spi2-atk GSettings schemas
ii libatk1.0-0 2.4.0-0ubuntu1 ATK accessibility toolkit
ii libatk1.0-data 2.4.0-0ubuntu1 Common files for the ATK accessibility toolkit
ii libatkmm-1.6-1 2.22.6-1ubuntu1 C++ wrappers for ATK accessibility toolkit (shared libraries)
ii libatspi2.0-0 2.4.2-0ubuntu0.1 Assistive Technology Service Provider Interface - shared library
ii libattr1 1:2.4.46-5ubuntu1 Extended attribute shared library
ii libaudio2 1.9.3-4 Network Audio System - shared libraries
ii libavahi-client3 0.6.30-5ubuntu2 Avahi client library
ii libavahi-common-data 0.6.30-5ubuntu2 Avahi common data files
ii libavahi-common3 0.6.30-5ubuntu2 Avahi common library
ii libavahi-core7 0.6.30-5ubuntu2 Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1 0.6.30-5ubuntu2 Avahi glib integration library
ii libavahi-gobject0 0.6.30-5ubuntu2 Avahi GObject library
ii libavahi-ui-gtk3-0 0.6.30-5ubuntu2 Avahi GTK+ User interface library for GTK3
ii libavc1394-0 0.5.3-1ubuntu2 control IEEE 1394 audio/video devices
ii libbamf0 0.2.118-0ubuntu0.2 Window matching library - shared library
ii libbamf3-0 0.2.118-0ubuntu0.2 Window matching library - shared library
ii libbind9-80 1:9.8.1.dfsg.P1-4ubuntu0.2 BIND9 Shared Library used by BIND
ii libblas3gf 1.2.20110419-2ubuntu1 Basic Linear Algebra Reference implementations, shared library
ii libblkid1 2.20.1-1ubuntu3 block device id library
ii libbluetooth3 4.98-2ubuntu7 Library to use the BlueZ Linux Bluetooth stack
ii libboost-serialization1.46.1 1.46.1-7ubuntu3 serialization library for C++
ii libbrasero-media3-1 3.4.1-0ubuntu1 CD/DVD burning library for GNOME - runtime
ii libbrlapi0.5 4.3-1ubuntu5 braille display access via BRLTTY - shared library
ii libbsd0 0.3.0-2 utility functions from BSD systems - shared library
ii libburn4 1.1.8-1 library to provide CD/DVD writing functions
ii libbz2-1.0 1.0.6-1 high-quality block-sorting file compressor library - runtime
ii libc-ares2 1.7.5-1 library for asyncronous name resolves
ii libc-bin 2.15-0ubuntu10 Embedded GNU C Library: Binaries
ii libc-dev-bin 2.15-0ubuntu10 Embedded GNU C Library: Development binaries
ii libc6 2.15-0ubuntu10 Embedded GNU C Library: Shared libraries
ii libc6-dev 2.15-0ubuntu10 Embedded GNU C Library: Development Libraries and Header Files
ii libcaca0 0.99.beta17-2.1ubuntu2 colour ASCII art library
ii libcairo-gobject2 1.10.2-6.1ubuntu3 The Cairo 2D vector graphics library (GObject library)
ii libcairo-perl 1.081-1build2 Perl interface to the Cairo graphics library
ii libcairo2 1.10.2-6.1ubuntu3 The Cairo 2D vector graphics library
ii libcairomm-1.0-1 1.10.0-1ubuntu1 C++ wrappers for Cairo (shared libraries)
ii libcamel-1.2-29 3.2.3-0ubuntu7 Evolution MIME message handling library
ii libcanberra-gtk-module 0.28-3ubuntu3 translates GTK+ widgets signals to event sounds
ii libcanberra-gtk0 0.28-3ubuntu3 GTK+ helper for playing widget event sounds with libcanberra
ii libcanberra-gtk3-0 0.28-3ubuntu3 GTK+ 3.0 helper for playing widget event sounds with libcanberra
ii libcanberra-gtk3-module 0.28-3ubuntu3 translates GTK3 widgets signals to event sounds
ii libcanberra-pulse 0.28-3ubuntu3 PulseAudio backend for libcanberra
ii libcanberra0 0.28-3ubuntu3 simple abstract interface for playing event sounds
ii libcap-ng0 0.6.6-1ubuntu1 An alternate POSIX capabilities library
ii libcap2 1:2.22-1ubuntu3 support for getting/setting POSIX.1e capabilities
ii libcap2-bin 1:2.22-1ubuntu3 basic utility programs for using capabilities
ii libcdio-cdda1 0.83-1 library to read and control digital audio CDs
ii libcdio-paranoia1 0.83-1 library to read digital audio CDs with error correction
ii libcdio13 0.83-1 library to read and control CD-ROM
ii libcdparanoia0 3.10.2+debian-10ubuntu1 audio extraction tool for sampling CDs (library)
ii libck-connector0 0.4.5-2 ConsoleKit libraries
ii libclass-isa-perl 0.36-3 report the search path for a class's ISA tree
ii libcmis-0.2-0 0.1.0-1 CMIS protocol client library
ii libcolord1 0.1.16-2 system service to manage device colour profiles -- runtime
ii libcomerr2 1.42-1ubuntu2 common error description library
ii libcompizconfig0 0.9.7.0~bzr428-0ubuntu6 Settings library for plugins - OpenCompositing Project
ii libconfig-general-perl 2.50-1 Generic Configuration Module
ii libcroco3 0.6.5-1 Cascading Style Sheet (CSS) parsing and manipulation toolkit
ii libcrypt-passwdmd5-perl 1.3-10 interoperable MD5-based crypt() for perl
ii libcryptsetup4 2:1.4.1-2ubuntu4 disk encryption support - shared library
ii libcups2 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - Core library
ii libcupscgi1 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - CGI library
ii libcupsdriver1 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - Driver library
ii libcupsfilters1 1.0.18-0ubuntu0.1 OpenPrinting CUPS Filters - Shared library
ii libcupsimage2 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - Raster image library
ii libcupsmime1 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - MIME library
ii libcupsppdc1 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - PPD manipulation library
ii libcurl3 7.22.0-3ubuntu4 Multi-protocol file transfer library (OpenSSL)
ii libcurl3-gnutls 7.22.0-3ubuntu4 Multi-protocol file transfer library (GnuTLS)
ii libcurl3-nss 7.22.0-3ubuntu4 Multi-protocol file transfer library (NSS)
ii libdaemon0 0.14-2 lightweight C library for daemons - runtime library
ii libdatrie1 0.2.5-3 Double-array trie library
ii libdb5.1 5.1.25-11build1 Berkeley v5.1 Database Libraries [runtime]
ii libdbd-mysql-perl 4.020-1build2 Perl5 database interface to the MySQL database
ii libdbi-perl 1.616-1build2 Perl Database Interface (DBI)
ii libdbus-1-3 1.4.18-1ubuntu1 simple interprocess messaging system (library)
ii libdbus-glib-1-2 0.98-1ubuntu1 simple interprocess messaging system (GLib-based shared library)
ii libdbusmenu-glib4 0.6.2-0ubuntu0.1 library for passing menus over DBus
ii libdbusmenu-gtk3-4 0.6.2-0ubuntu0.1 library for passing menus over DBus - GTK+ version
ii libdbusmenu-gtk4 0.6.2-0ubuntu0.1 library for passing menus over DBus - GTK+ version
ii libdbusmenu-qt2 0.9.2-0ubuntu1 Qt implementation of the DBusMenu protocol
ii libdconf-dbus-1-0 0.12.0-0ubuntu1.1 simple configuration storage system - D-Bus library
ii libdconf-qt0 0.0.0.110722-0ubuntu4 dconf Qt bindings (library)
ii libdconf0 0.12.0-0ubuntu1.1 simple configuration storage system - runtime library
ii libdecoration0 1:0.9.7.8-0ubuntu1.4 Compiz window decoration library
ii libdee-1.0-4 1.0.10-0ubuntu1 model to synchronize mutiple instances over DBus - shared lib
ii libdevmapper-event1.02.1 2:1.02.48-4ubuntu7.1 The Linux Kernel Device Mapper userspace library
ii libdevmapper1.02.1 2:1.02.48-4ubuntu7.1 The Linux Kernel Device Mapper userspace library
ii libdiscid0 0.2.2-3 Library for creating MusicBrainz DiscIDs
ii libdjvulibre-text 3.5.24-9 Linguistic support files for libdjvulibre
ii libdjvulibre21 3.5.24-9 Runtime support for the DjVu image format
ii libdmapsharing-3.0-2 2.9.14-1 DMAP client and server library - runtime
ii libdns81 1:9.8.1.dfsg.P1-4ubuntu0.2 DNS Shared Library used by BIND
ii libdotconf1.0 1.0.13-3 Configuration file parser library - runtime files
ii libdrm-intel1 2.4.32-1ubuntu1 Userspace interface to intel-specific kernel DRM services -- runtime
ii libdrm-nouveau1a 2.4.32-1ubuntu1 Userspace interface to nouveau-specific kernel DRM services -- runtime
ii libdrm-radeon1 2.4.32-1ubuntu1 Userspace interface to radeon-specific kernel DRM services -- runtime
ii libdrm2 2.4.32-1ubuntu1 Userspace interface to kernel DRM services -- runtime
ii libdv4 1.0.0-3ubuntu1 software library for DV format digital video (runtime lib)
ii libebackend-1.2-1 3.2.3-0ubuntu7 Utility library for evolution data servers
ii libebook-1.2-12 3.2.3-0ubuntu7 Client library for evolution address books
ii libecal-1.2-10 3.2.3-0ubuntu7 Client library for evolution calendars
ii libedata-book-1.2-11 3.2.3-0ubuntu7 Backend library for evolution address books
ii libedata-cal-1.2-13 3.2.3-0ubuntu7 Backend library for evolution calendars
ii libedataserver-1.2-15 3.2.3-0ubuntu7 Utility library for evolution data servers
ii libedataserverui-3.0-1 3.2.3-0ubuntu7 GUI utility library for evolution data servers
ii libedit2 2.11-20080614-3ubuntu2 BSD editline and history libraries
ii libelf1 0.152-1ubuntu3 library to read and write ELF files
ii libenchant1c2a 1.6.0-7 Wrapper library for various spell checker engines (runtime libs)
ii liberror-perl 0.17-1 Perl module for error/exception handling in an OO-ish way
ii libespeak1 1.46.02-0ubuntu1 Multi-lingual software speech synthesizer: shared library
ii libev4 1:4.11-1 high-performance event loop library modelled after libevent
ii libevent-2.0-5 2.0.16-stable-1 Asynchronous event notification library
ii libevince3-3 3.4.0-0ubuntu1.3 Document (PostScript, PDF) rendering library
ii libexempi3 2.2.0-1 library to parse XMP metadata (Library)
ii libexif12 0.6.20-2ubuntu0.1 library to parse EXIF files
ii libexiv2-11 0.22-2 EXIF/IPTC metadata manipulation library
ii libexpat1 2.0.1-7.2ubuntu1.1 XML parsing C library - runtime library
ii libexpat1-dev 2.0.1-7.2ubuntu1.1 XML parsing C library - development kit
ii libexttextcat-data 3.2.0-1ubuntu1 Language detection library - data files
ii libexttextcat0 3.2.0-1ubuntu1 Language detection library
ii libfarstream-0.1-0 0.1.2-0ubuntu1 Audio/Video communications framework: core library
ii libffi6 3.0.11~rc1-5 Foreign Function Interface library runtime
ii libfile-basedir-perl 0.03-1fakesync1 Perl module to use the freedesktop basedir specification
ii libfile-copy-recursive-perl 0.38-1 Perl extension for recursively copying files and directories
ii libfile-desktopentry-perl 0.04-3 Perl module to handle freedesktop .desktop files
ii libfile-mimeinfo-perl 0.15-2 Perl module to determine file types
ii libflac8 1.2.1-6 Free Lossless Audio Codec - runtime C library
ii libfolks-eds25 0.6.8-2 Evolution-data-server backend for libfolks
ii libfolks-telepathy25 0.6.8-2 Telepathy backend for libfolks
ii libfolks25 0.6.8-2 library to aggregates people into metacontacts
ii libfontconfig1 2.8.0-3ubuntu9.1 generic font configuration library - runtime
ii libfontenc1 1:1.1.0-1 X11 font encoding library
ii libfreerdp-plugins-standard 1.0.1-1ubuntu2.1 RDP client for Windows Terminal Services (plugins)
ii libfreerdp1 1.0.1-1ubuntu2.1 RDP client for Windows Terminal Services (library)
ii libfreetype6 2.4.8-1ubuntu2 FreeType 2 font engine, shared library files
ii libfribidi0 0.19.2-1 Free Implementation of the Unicode BiDi algorithm
ii libfs6 2:1.0.3-1 X11 Font Services library
ii libfuse2 2.8.6-2ubuntu2 Filesystem in Userspace (library)
ii libgail-3-0 3.4.2-0ubuntu0.4 GNOME Accessibility Implementation Library -- shared libraries
ii libgail-common 2.24.10-0ubuntu6 GNOME Accessibility Implementation Library -- common modules
ii libgail18 2.24.10-0ubuntu6 GNOME Accessibility Implementation Library -- shared libraries
ii libgcc1 1:4.6.3-1ubuntu5 GCC support library
ii libgck-1-0 3.2.2-2ubuntu4 Glib wrapper library for PKCS#11 - runtime
ii libgconf-2-4 3.2.5-0ubuntu2 GNOME configuration database system (shared libraries)
ii libgconf2-4 3.2.5-0ubuntu2 GNOME configuration database system (dummy package)
ii libgcr-3-1 3.2.2-2ubuntu4 Library for Crypto UI related task - runtime
ii libgcr-3-common 3.2.2-2ubuntu4 Library for Crypto UI related task - common files
ii libgcrypt11 1.5.0-3ubuntu0.1 LGPL Crypto library - runtime library
ii libgd2-xpm 2.0.36~rc1~dfsg-6ubuntu2 GD Graphics Library version 2
ii libgdata-common 0.12.0-1 Library for accessing GData webservices - common data files
ii libgdata13 0.12.0-1 Library for accessing GData webservices - shared libraries
ii libgdbm3 1.8.3-10 GNU dbm database routines (runtime version)
ii libgdk-pixbuf2.0-0 2.26.1-1 GDK Pixbuf library
ii libgdk-pixbuf2.0-common 2.26.1-1 GDK Pixbuf library - data files
ii libgdu-gtk0 3.0.2-2ubuntu7 GTK+ standard dialog library for libgdu
ii libgdu0 3.0.2-2ubuntu7 GObject based Disk Utility Library
ii libgee2 0.6.4-1 GObject based collection library
ii libgeoclue0 0.12.0-1ubuntu12 C API for GeoClue
ii libgeoip1 1.4.8+dfsg-2 non-DNS IP-to-country resolver library
ii libgexiv2-1 0.4.1-1build1 GObject-based wrapper around the Exiv2 library
ii libgfortran3 4.6.3-1ubuntu5 Runtime library for GNU Fortran applications
ii libgirepository-1.0-1 1.32.0-1 Library for handling GObject introspection data (runtime library)
ii libgksu2-0 2.0.13~pre1-5ubuntu2 library providing su and sudo functionality
ii libgl1-mesa-dri 8.0.3+8.0.2-0ubuntu3.2 free implementation of the OpenGL API -- DRI modules
ii libgl1-mesa-glx 8.0.3+8.0.2-0ubuntu3.2 free implementation of the OpenGL API -- GLX runtime
ii libglapi-mesa 8.0.3+8.0.2-0ubuntu3.2 free implementation of the GL API -- shared library
ii libglew1.6 1.6.0-4 OpenGL Extension Wrangler - runtime environment
ii libglewmx1.6 1.6.0-4 OpenGL Extension Wrangler - runtime environment
ii libglib-perl 2:1.241-1 interface to the GLib and GObject libraries
ii libglib2.0-0 2.32.3-0ubuntu1 GLib library of C routines
ii libglib2.0-bin 2.32.3-0ubuntu1 Programs for the GLib library
ii libglib2.0-data 2.32.3-0ubuntu1 Common files for GLib library
ii libglibmm-2.4-1c2a 2.32.0-0ubuntu1 C++ wrapper for the GLib toolkit (shared libraries)
ii libglu1-mesa 8.0.3+8.0.2-0ubuntu3.2 Mesa OpenGL utility library (GLU)
ii libgmime-2.6-0 2.6.7-1 MIME message parser and creator library - runtime
ii libgmp10 2:5.0.2+dfsg-2ubuntu1 Multiprecision arithmetic library
ii libgnome-bluetooth8 3.2.2-0ubuntu5 GNOME Bluetooth tools - support library
ii libgnome-control-center1 1:3.4.2-0ubuntu0.4 utilities to configure the GNOME desktop
ii libgnome-desktop-3-2 3.4.2-0ubuntu0.1 Utility library for loading .desktop files - runtime files
ii libgnome-keyring-common 3.2.2-2 GNOME keyring services library - data files
ii libgnome-keyring0 3.2.2-2 GNOME keyring services library
ii libgnome-media-profiles-3.0-0 3.0.0-1 GNOME Media Profiles library
ii libgnome-menu-3-0 3.4.0-0ubuntu1 GNOME implementation of the freedesktop menu specification
ii libgnome-menu2 3.0.1-0ubuntu7 GNOME implementation of the freedesktop menu specification
ii libgnome2-common 2.32.1-2ubuntu1 The GNOME library - common files
ii libgnomekbd-common 3.4.0.2-1 GNOME library to manage keyboard configuration - common files
ii libgnomekbd7 3.4.0.2-1 GNOME library to manage keyboard configuration - shared library
ii libgnutls26 2.12.14-5ubuntu3.1 GNU TLS library - runtime library
ii libgoa-1.0-0 3.4.0-0ubuntu1 library for GNOME Online Accounts
ii libgoa-1.0-common 3.4.0-0ubuntu1 library for GNOME Online Accounts - common files
ii libgomp1 4.6.3-1ubuntu5 GCC OpenMP (GOMP) support library
ii libgpg-error0 1.10-2ubuntu1 library for common error values and messages in GnuPG components
ii libgpgme11 1.2.0-1.4ubuntu2 GPGME - GnuPG Made Easy
ii libgphoto2-2 2.4.13-1ubuntu1.2 gphoto2 digital camera library
ii libgphoto2-l10n 2.4.13-1ubuntu1.2 gphoto2 digital camera library - localized messages
ii libgphoto2-port0 2.4.13-1ubuntu1.2 gphoto2 digital camera port library
ii libgpm2 1.20.4-4 General Purpose Mouse - shared library
ii libgpod-common 0.8.2-4 common files for libgpod
ii libgpod4 0.8.2-4 library to read and write songs and artwork to an iPod
ii libgrip0 0.3.4-0ubuntu2~ubuntu12.04.1 Shared library providing multitouch gestures to GTK+ apps.
ii libgs9 9.05~dfsg-0ubuntu4.1 interpreter for the PostScript language and for PDF - Library
ii libgs9-common 9.05~dfsg-0ubuntu4.1 interpreter for the PostScript language and for PDF - common files
ii libgssapi-krb5-2 1.10+dfsg~beta1-2ubuntu0.3 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgssapi3-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - GSSAPI support library
ii libgssdp-1.0-3 0.12.1-2 GObject-based library for SSDP
ii libgstreamer-plugins-base0.10-0 0.10.36-1ubuntu0.1 GStreamer libraries from the "base" set
ii libgstreamer0.10-0 0.10.36-1ubuntu1 Core GStreamer libraries and elements
ii libgtk-3-0 3.4.2-0ubuntu0.4 GTK+ graphical user interface library
ii libgtk-3-bin 3.4.2-0ubuntu0.4 programs for the GTK+ graphical user interface library
ii libgtk-3-common 3.4.2-0ubuntu0.4 common files for the GTK+ graphical user interface library
ii libgtk2-perl 2:1.223-1build3 Perl interface to the 2.x series of the Gimp Toolkit library
ii libgtk2.0-0 2.24.10-0ubuntu6 GTK+ graphical user interface library
ii libgtk2.0-bin 2.24.10-0ubuntu6 programs for the GTK+ graphical user interface library
ii libgtk2.0-common 2.24.10-0ubuntu6 common files for the GTK+ graphical user interface library
ii libgtkmm-3.0-1 3.4.0-0ubuntu1 C++ wrappers for GTK+ (shared libraries)
ii libgtksourceview-3.0-0 3.4.2-0ubuntu1 shared libraries for the GTK+ syntax highlighting widget
ii libgtksourceview-3.0-common 3.4.2-0ubuntu1 common files for the GTK+ syntax highlighting widget
ii libgtkspell-3-0 3.0.0~hg20110814-1 spell-checking addon for GTK's TextView widget
ii libgtop2-7 2.28.4-2 gtop system monitoring library (shared)
ii libgtop2-common 2.28.4-2 gtop system monitoring library (common)
ii libgucharmap-2-90-7 1:3.4.1.1-0ubuntu1 Unicode browser widget library (shared library)
ii libgudev-1.0-0 1:175-0ubuntu9.1 GObject-based wrapper library for libudev
ii libgupnp-1.0-4 0.18.1-2 GObject-based library for UPnP
ii libgupnp-igd-1.0-4 0.2.1-2 library to handle UPnP IGD port mapping
ii libgutenprint2 5.2.8~pre1-0ubuntu2.1 runtime for the Gutenprint printer driver library
ii libgweather-3-0 3.4.1-0ubuntu1 GWeather shared library
ii libgweather-common 3.4.1-0ubuntu1 GWeather common files
ii libgwibber-gtk2 3.4.2-0ubuntu2 Gwibber GTK Widgets
ii libgwibber2 3.4.2-0ubuntu2 Gwibber - shared library
ii libhcrypto4-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - crypto library
ii libheimbase1-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - Base library
ii libheimntlm0-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - NTLM support library
ii libhpmud0 3.12.2-1ubuntu3.1 HP Multi-Point Transport Driver (hpmud) run-time libraries
ii libhtml-template-perl 2.10-1 module for using HTML Templates with Perl
ii libhunspell-1.3-0 1.3.2-4 spell checker and morphological analyzer (shared library)
ii libhx509-5-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - X509 support library
ii libhyphen0 2.8.3-1 ALTLinux hyphenation library - shared library
ii libibus-1.0-0 1.4.1-3ubuntu1 Intelligent Input Bus - shared library
ii libibverbs1 1.1.5-1ubuntu1 Library for direct userspace use of RDMA (InfiniBand/iWARP)
ii libical0 0.48-1ubuntu3 iCalendar library implementation in C (runtime)
ii libice6 2:1.0.7-2build1 X11 Inter-Client Exchange library
ii libicu48 4.8.1.1-3 International Components for Unicode
ii libidl-common 0.8.14-0.2ubuntu2 library for parsing CORBA IDL files (common files)
ii libidl0 0.8.14-0.2ubuntu2 library for parsing CORBA IDL files
ii libidn11 1.23-2 GNU Libidn library, implementation of IETF IDN specifications
ii libido3-0.1-0 0.3.4-0ubuntu1 Shared library providing extra gtk menu items for display in
ii libiec61883-0 1.2.0-0.1ubuntu1 an partial implementation of IEC 61883
ii libieee1284-3 0.2.11-10build1 cross-platform library for parallel port access
ii libijs-0.35 0.35-8 IJS raster image transport protocol: shared library
ii libimobiledevice2 1.1.1-4 Library for communicating with the iPhone and iPod Touch
ii libindicate-gtk3 0.6.92-0ubuntu1 library for raising indicators via DBus - GTK+ bindings
ii libindicate5 0.6.92-0ubuntu1 library for raising indicators via DBus
ii libindicator-messages-status-provider1 0.6.0-0ubuntu1 indicator status provider - shared library
ii libindicator3-7 0.5.0-0ubuntu1 panel indicator applet - shared library
ii libindicator7 0.5.0-0ubuntu1 panel indicator applet - shared library
ii libisc83 1:9.8.1.dfsg.P1-4ubuntu0.2 ISC Shared Library used by BIND
ii libisccc80 1:9.8.1.dfsg.P1-4ubuntu0.2 Command Channel Library used by BIND
ii libisccfg82 1:9.8.1.dfsg.P1-4ubuntu0.2 Config File Handling Library used by BIND
ii libisofs6 1.1.6-1ubuntu1 library to create ISO9660 images
ii libiw30 30~pre9-5ubuntu2 Wireless tools - library
ii libjack-jackd2-0 1.9.8~dfsg.1-1ubuntu1 JACK Audio Connection Kit (libraries)
ii libjasper1 1.900.1-13 JasPer JPEG-2000 runtime library
ii libjavascriptcoregtk-3.0-0 1.8.1-0ubuntu0.12.04.1 Javascript engine library for GTK+
ii libjbig2dec0 0.11-1ubuntu1 JBIG2 decoder library - shared libraries
ii libjpeg-turbo8 1.1.90+svn733-0ubuntu4.1 IJG JPEG compliant runtime library.
ii libjpeg8 8c-2ubuntu7 Independent JPEG Group's JPEG runtime library (dependency package)
ii libjs-jquery 1.7.1-1ubuntu1 JavaScript library for dynamic web applications
ii libjs-jquery-metadata 4-1 jQuery plugin for parsing metadata from elements
ii libjs-jquery-tablesorter 4-1 Flexible client-side table sorting
ii libjs-sphinxdoc 1.1.3+dfsg-2ubuntu2.1 JavaScript support for Sphinx documentation
ii libjs-underscore 1.1.6-1ubuntu2 JavaScript's functional programming helper library
ii libjson-glib-1.0-0 0.14.2-1 GLib JSON manipulation library
ii libjson0 0.9-1ubuntu1 JSON manipulation library - shared library
ii libjte1 1.19-1 Jigdo Template Export - runtime library
ii libk5crypto3 1.10+dfsg~beta1-2ubuntu0.3 MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1 1.5.2-2 Linux Key Management Utilities (library)
ii libklibc 1.5.25-1ubuntu2 minimal libc subset for use with initramfs
ii libkpathsea5 2009-11ubuntu2 TeX Live: path search library for TeX (runtime part)
ii libkrb5-26-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - libraries
ii libkrb5-3 1.10+dfsg~beta1-2ubuntu0.3 MIT Kerberos runtime libraries
ii libkrb5support0 1.10+dfsg~beta1-2ubuntu0.3 MIT Kerberos runtime libraries - Support library
ii liblapack3gf 3.3.1-1 library of linear algebra routines 3 - shared version
ii liblaunchpad-integration-3.0-1 0.1.56.1 library for launchpad integration
ii liblaunchpad-integration-common 0.1.56.1 library for launchpad integration common data
ii liblcms1 1.19.dfsg-1ubuntu3 Little CMS color management library
ii liblcms2-2 2.2+git20110628-2ubuntu3 Little CMS 2 color management library
ii libldap-2.4-2 2.4.28-1.1ubuntu4.2 OpenLDAP libraries
ii libldap2-dev 2.4.28-1.1ubuntu4.2 OpenLDAP development libraries
ii liblightdm-gobject-1-0 1.2.1-0ubuntu1.1 LightDM GObject client library
ii liblircclient0 0.9.0-0ubuntu1 infra-red remote control support - client library
ii libllvm3.0 3.0-4ubuntu1 Low-Level Virtual Machine (LLVM), runtime library
ii liblocale-gettext-perl 1.05-7build1 module using libc functions for internationalization in Perl
ii liblockfile-bin 1.09-3 support binaries for and cli utilities based on liblockfile
ii liblockfile1 1.09-3 NFS-safe locking library
ii liblouis-data 2.3.0-3 Braille translation library - data
ii liblouis2 2.3.0-3 Braille translation library - shared libs
ii libltdl7 2.4.2-1ubuntu1 A system independent dlopen wrapper for GNU libtool
ii liblua5.1-0 5.1.4-12ubuntu1 Shared library for the Lua interpreter version 5.1
ii liblvm2app2.2 2.02.66-4ubuntu7.1 LVM2 application library
ii liblwres80 1:9.8.1.dfsg.P1-4ubuntu0.2 Lightweight Resolver Library used by BIND
ii liblzma5 5.1.1alpha+20110809-3 XZ-format compression library
ii libmagic1 5.09-2 File type determination library using "magic" numbers
ii libmeanwhile1 1.0.2-4ubuntu1 open implementation of the Lotus Sametime Community Client protocol
ii libmetacity-private0 1:2.34.1-1ubuntu11 library for the Metacity window manager
ii libmhash2 0.9.9.9-1 Library for cryptographic hashing and message authentication
ii libminiupnpc8 1.6-3ubuntu1 UPnP IGD client lightweight library
ii libmission-control-plugins0 1:5.12.0-0ubuntu2.1 management daemon for Telepathy (library for plugins)
ii libmng1 1.0.10-3 Multiple-image Network Graphics library
ii libmount1 2.20.1-1ubuntu3 block device id library
ii libmpc2 0.9-4 multiple precision complex floating-point library
ii libmpfr4 3.1.0-3ubuntu2 multiple precision floating-point computation
ii libmtdev1 1.1.0-2ubuntu1 Multitouch Protocol Translation Library - shared library
ii libmtp-common 1.1.3-1ubuntu0.1 Media Transfer Protocol (MTP) common files
ii libmtp-runtime 1.1.3-1ubuntu0.1 Media Transfer Protocol (MTP) runtime tools
ii libmtp9 1.1.3-1ubuntu0.1 Media Transfer Protocol (MTP) library
ii libmusicbrainz3-6 3.0.2-2.1 library to access the MusicBrainz.org database
ii libmysqlclient18 5.5.29-0ubuntu0.12.04.1 MySQL database client library
ii libmythes-1.2-0 2:1.2.2-1 simple thesaurus library
ii libnautilus-extension1a 1:3.4.2-0ubuntu4 libraries for nautilus components - runtime version
ii libncurses5 5.9-4 shared libraries for terminal handling
ii libncursesw5 5.9-4 shared libraries for terminal handling (wide character support)
ii libneon27-gnutls 0.29.6-1 HTTP and WebDAV client library (GnuTLS enabled)
ii libnet-daemon-perl 0.48-1 Perl module for building portable Perl daemons easily
ii libnetfilter-conntrack3 0.9.1-1ubuntu1 Netfilter netlink-conntrack library
ii libnettle4 2.4-1 low level cryptographic library (symmetric and one-way cryptos)
ii libnewt0.52 0.52.11-2ubuntu10 Not Erik's Windowing Toolkit - text mode windowing with slang
ii libnfnetlink0 1.0.0-1 Netfilter netlink library
ii libnice10 0.1.1-2ubuntu1 ICE library (shared library)
ii libnih-dbus1 1.0.3-4ubuntu9 NIH D-Bus Bindings Library
ii libnih1 1.0.3-4ubuntu9 NIH Utility Library
ii libnl-3-200 3.2.3-2ubuntu2 library for dealing with netlink sockets
ii libnl-genl-3-200 3.2.3-2ubuntu2 library for dealing with netlink sockets - generic netlink
ii libnl-route-3-200 3.2.3-2ubuntu2 library for dealing with netlink sockets - route interface
ii libnm-glib-vpn1 0.9.4.0-0ubuntu4.1 network management framework (GLib VPN shared library)
ii libnm-glib4 0.9.4.0-0ubuntu4.1 network management framework (GLib shared library)
ii libnm-gtk-common 0.9.4.1-0ubuntu2 network management framework (common files for wifi and mobile)
ii libnm-gtk0 0.9.4.1-0ubuntu2 network management framework (GNOME dialogs for wifi and mobile)
ii libnm-util2 0.9.4.0-0ubuntu4.1 network management framework (shared library)
ii libnotify-bin 0.7.5-1 sends desktop notifications to a notification daemon (Utilities)
ii libnotify4 0.7.5-1 sends desktop notifications to a notification daemon
ii libnspr4 4.8.9-1ubuntu2.3 NetScape Portable Runtime Library
ii libnss-mdns 0.10-3.2 NSS module for Multicast DNS name resolution
ii libnss3 3.13.1.with.ckbi.1.88-1ubuntu6.1 Network Security Service libraries
ii libnuma1 2.0.8~rc3-1 Libraries for controlling NUMA policy
ii libnux-2.0-0 2.14.0-0ubuntu1 Visual rendering toolkit for real-time applications - shared lib
ii libnux-2.0-common 2.14.0-0ubuntu1 Visual rendering toolkit for real-time applications - common files
ii liboauth0 0.9.4-3 C library for implementing OAuth 1.0
ii libodbc1 2.2.14p2-5ubuntu3 ODBC library for Unix
ii libogg0 1.2.2~dfsg-1ubuntu1 Ogg bitstream library
ii libopencc1 0.3.0-1 simplified-traditional chinese conversion library - runtime
ii libopenobex1 1.5-2build1 OBEX protocol library
ii liborbit2 1:2.14.19-0.1ubuntu1 libraries for ORBit2 - a CORBA ORB
ii liborc-0.4-0 1:0.4.16-1ubuntu2 Library of Optimized Inner Loops Runtime Compiler
ii liboverlay-scrollbar-0.2-0 0.2.16-0ubuntu1 Scrollbar overlayed widget - shared lib
ii liboverlay-scrollbar3-0.2-0 0.2.16-0ubuntu1 Scrollbar overlayed widget - shared lib
ii libp11-kit0 0.12-2ubuntu1 Library for loading and coordinating access to PKCS#11 modules - runtime
ii libpackagekit-glib2-14 0.7.2-4ubuntu3 Library for accessing PackageKit using GLib
ii libpam-cap 1:2.22-1ubuntu3 PAM module for implementing capabilities
ii libpam-ck-connector 0.4.5-2 ConsoleKit PAM module
ii libpam-gnome-keyring 3.2.2-2ubuntu4 PAM module to unlock the GNOME keyring upon login
ii libpam-modules 1.1.3-7ubuntu2 Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.1.3-7ubuntu2 Pluggable Authentication Modules for PAM - helper binaries
ii libpam-runtime 1.1.3-7ubuntu2 Runtime support for the PAM library
ii libpam0g 1.1.3-7ubuntu2 Pluggable Authentication Modules library
ii libpango-perl 1.222-1build1 Perl module to layout and render international text
ii libpango1.0-0 1.30.0-0ubuntu3.1 Layout and rendering of internationalized text
ii libpangomm-1.4-1 2.28.4-1ubuntu1 C++ Wrapper for pango (shared libraries)
ii libpaper-utils 1.1.24+nmu1build1 library for handling paper characteristics (utilities)
ii libpaper1 1.1.24+nmu1build1 library for handling paper characteristics
ii libparted0debian1 2.3-8ubuntu5 disk partition manipulator - shared library
ii libpcap0.8 1.1.1-10 system interface for user-level packet capture
ii libpci3 1:3.1.8-2ubuntu5 Linux PCI Utilities (shared library)
ii libpciaccess0 0.12.902-1 Generic PCI access library for X
ii libpcre3 8.12-4 Perl 5 Compatible Regular Expression Library - runtime files
ii libpcsclite1 1.7.4-2ubuntu2 Middleware to access a smart card using PC/SC (library)
ii libpeas-1.0-0 1.2.0-1ubuntu1 Application plugin library
ii libpeas-common 1.2.0-1ubuntu1 Application plugin library (common files)
ii libperl5.14 5.14.2-6ubuntu2.1 shared Perl library
ii libpipeline1 1.2.1-1 pipeline manipulation library
ii libpixman-1-0 0.24.4-1 pixel-manipulation library for X and cairo
ii libplist1 1.8-1 Library for handling Apple binary and XML property lists
ii libplrpc-perl 0.2020-2 Perl extensions for writing PlRPC servers and clients
ii libplymouth2 0.8.2-2ubuntu30 graphical boot animation and logger - shared libraries
ii libpng12-0 1.2.46-3ubuntu4 PNG library - runtime
ii libpolkit-agent-1-0 0.104-1ubuntu1 PolicyKit Authentication Agent API
ii libpolkit-backend-1-0 0.104-1ubuntu1 PolicyKit backend API
ii libpolkit-gobject-1-0 0.104-1ubuntu1 PolicyKit Authorization API
ii libpoppler-glib8 0.18.4-1ubuntu2 PDF rendering library (GLib-based shared library)
ii libpoppler19 0.18.4-1ubuntu2 PDF rendering library
ii libpopt0 1.16-3ubuntu1 lib for parsing cmdline parameters
ii libportaudio2 19+svn20111121-1 Portable audio I/O - shared library
ii libprotobuf7 2.4.1-1ubuntu2 protocol buffers C++ library
ii libprotoc7 2.4.1-1ubuntu2 protocol buffers compiler library
ii libproxy1 0.4.7-0ubuntu4 automatic proxy configuration management library (shared)
ii libproxy1-plugin-gsettings 0.4.7-0ubuntu4 automatic proxy configuration management library (GSettings plugin)
ii libproxy1-plugin-networkmanager 0.4.7-0ubuntu4 automatic proxy configuration management library (Network Manager plugin)
ii libpth20 2.0.7-16ubuntu3 The GNU Portable Threads
ii libpulse-mainloop-glib0 1:1.1-0ubuntu15.1 PulseAudio client libraries (glib support)
ii libpulse0 1:1.1-0ubuntu15.1 PulseAudio client libraries
ii libpulsedsp 1:1.1-0ubuntu15.1 PulseAudio OSS pre-load library
ii libpurple-bin 1:2.10.3-0ubuntu1.1 multi-protocol instant messaging library - extra utilities
ii libpurple0 1:2.10.3-0ubuntu1.1 multi-protocol instant messaging library
ii libpython2.7 2.7.3-0ubuntu3.1 Shared Python runtime library (version 2.7)
ii libqt4-dbus 4:4.8.1-0ubuntu4.2 Qt 4 D-Bus module
ii libqt4-declarative 4:4.8.1-0ubuntu4.2 Qt 4 Declarative module
ii libqt4-network 4:4.8.1-0ubuntu4.2 Qt 4 network module
ii libqt4-opengl 4:4.8.1-0ubuntu4.2 Qt 4 OpenGL module
ii libqt4-script 4:4.8.1-0ubuntu4.2 Qt 4 script module
ii libqt4-sql 4:4.8.1-0ubuntu4.2 Qt 4 SQL module
ii libqt4-sql-sqlite 4:4.8.1-0ubuntu4.2 Qt 4 SQLite 3 database driver
ii libqt4-svg 4:4.8.1-0ubuntu4.2 Qt 4 SVG module
ii libqt4-xml 4:4.8.1-0ubuntu4.2 Qt 4 XML module
ii libqt4-xmlpatterns 4:4.8.1-0ubuntu4.2 Qt 4 XML patterns module
ii libqtbamf1 0.2.4-0ubuntu1 Qt binding and QML plugin for bamf - shared library
ii libqtcore4 4:4.8.1-0ubuntu4.2 Qt 4 core module
ii libqtdee2 0.2.4-0ubuntu1 Qt binding and QML plugin for Dee - shared library
ii libqtgconf1 0.1-0ubuntu5 Qt binding and QML plugin for GConf - shared library
ii libqtgui4 4:4.8.1-0ubuntu4.2 Qt 4 GUI module
ii libquadmath0 4.6.3-1ubuntu5 GCC Quad-Precision Math Library
ii libquvi-scripts 0.4.2-1 library for parsing video download links (Lua scripts)
ii libquvi7 0.4.0-1 library for parsing video download links (runtime libraries)
ii librados2 0.41-1ubuntu2.1 RADOS distributed object store client library
ii libraptor2-0 2.0.6-1 Raptor 2 RDF syntax library
ii librasqal3 0.9.28-1 Rasqal RDF query library
ii libraw1394-11 2.0.7-1ubuntu1 library for direct access to IEEE 1394 bus (aka FireWire)
ii libraw5 0.14.4-0ubuntu2 raw image decoder library
ii librbd1 0.41-1ubuntu2.1 RADOS block device client library
ii librdf0 1.0.14-1 Redland Resource Description Framework (RDF) library
ii librdmacm1 1.0.14.1-2 Library for managing RDMA connections
ii libreadline5 5.2-11 GNU readline and history libraries, run-time libraries
ii libreadline6 6.2-8 GNU readline and history libraries, run-time libraries
ii libreoffice-base-core 1:3.5.4-0ubuntu1.1 office productivity suite -- shared library
ii libreoffice-calc 1:3.5.4-0ubuntu1.1 office productivity suite -- spreadsheet
ii libreoffice-common 1:3.5.4-0ubuntu1.1 office productivity suite -- arch-independent files
ii libreoffice-core 1:3.5.4-0ubuntu1.1 office productivity suite -- arch-dependent files
ii libreoffice-draw 1:3.5.4-0ubuntu1.1 office productivity suite -- drawing
ii libreoffice-emailmerge 1:3.5.4-0ubuntu1.1 office productivity suite -- email mail merge
ii libreoffice-gnome 1:3.5.4-0ubuntu1.1 office productivity suite -- GNOME integration
ii libreoffice-gtk 1:3.5.4-0ubuntu1.1 office productivity suite -- GTK+ integration
ii libreoffice-help-en-us 1:3.5.4-0ubuntu1.1 office productivity suite -- English_american help
ii libreoffice-impress 1:3.5.4-0ubuntu1.1 office productivity suite -- presentation
ii libreoffice-math 1:3.5.4-0ubuntu1.1 office productivity suite -- equation editor
ii libreoffice-style-human 1:3.5.4-0ubuntu1.1 office productivity suite -- Human symbol style
ii libreoffice-style-tango 1:3.5.4-0ubuntu1.1 office productivity suite -- Tango symbol style
ii libreoffice-writer 1:3.5.4-0ubuntu1.1 office productivity suite -- word processor
ii librest-0.7-0 0.7.12-1ubuntu2 REST service access library
ii librhythmbox-core5 2.96-0ubuntu4.1 support library for the rhythmbox music player
ii libroken18-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - roken support library
ii librsvg2-2 2.36.1-0ubuntu1 SAX-based renderer library for SVG files (runtime)
ii librsvg2-common 2.36.1-0ubuntu1 SAX-based renderer library for SVG files (extra runtime)
ii librsync1 0.9.7-8build1 rsync remote-delta algorithm library
ii librtmp0 2.4~20110711.gitc28f1bab-1 toolkit for RTMP streams (shared library)
ii libruby1.8 1.8.7.352-2ubuntu1.1 Libraries necessary to run Ruby 1.8
ii libsamplerate0 0.1.8-4 Audio sample rate conversion library
ii libsane 1.0.22-7ubuntu1 API library for scanners
ii libsane-common 1.0.22-7ubuntu1 API library for scanners -- documentation and support files
ii libsane-hpaio 3.12.2-1ubuntu3.1 HP SANE backend for multi-function peripherals
ii libsasl2-2 2.1.25.dfsg1-3ubuntu0.1 Cyrus SASL - authentication abstraction library
ii libsasl2-dev 2.1.25.dfsg1-3ubuntu0.1 Cyrus SASL - development files for authentication abstraction library
ii libsasl2-modules 2.1.25.dfsg1-3ubuntu0.1 Cyrus SASL - pluggable authentication modules
ii libsctp1 1.0.11+dfsg-2 user-space access to Linux Kernel SCTP - shared library
ii libsdl1.2debian 1.2.14-6.4ubuntu3 Simple DirectMedia Layer
ii libselinux1 2.1.0-4.1ubuntu1 SELinux runtime shared libraries
ii libsensors4 1:3.3.1-2ubuntu1 library to read temperature/voltage/fan sensors
ii libsgutils2-2 1.33-1 utilities for devices using the SCSI command set (shared libraries)
ii libshout3 2.2.2-7ubuntu1 MP3/Ogg Vorbis broadcast streaming library
ii libsigc++-2.0-0c2a 2.2.10-0ubuntu2 type-safe Signal Framework for C++ - runtime
ii libsigsegv2 2.9-4ubuntu2 Library for handling page faults in a portable way
ii libslang2 2.2.4-3ubuntu1 S-Lang programming library - runtime version
ii libslp1 1.2.1-7.8ubuntu1 OpenSLP libraries
ii libsm6 2:1.2.0-2build1 X11 Session Management library
ii libsmbclient 2:3.6.3-2ubuntu2.3 shared library for communication with SMB/CIFS servers
ii libsndfile1 1.0.25-4 Library for reading/writing audio files
ii libsnmp-base 5.4.3~dfsg-2.4ubuntu1.1 SNMP (Simple Network Management Protocol) MIBs and documentation
ii libsnmp15 5.4.3~dfsg-2.4ubuntu1.1 SNMP (Simple Network Management Protocol) library
ii libsonic0 0.1.17-1.1 Simple library to speed up or slow down speech
ii libsoup-gnome2.4-1 2.38.1-1 HTTP library implementation in C -- GNOME support library
ii libsoup2.4-1 2.38.1-1 HTTP library implementation in C -- Shared library
ii libspectre1 0.2.6-1build1 Library for rendering PostScript documents
ii libspeechd2 0.7.1-6ubuntu3 Speech Dispatcher: Shared libraries
ii libspeex1 1.2~rc1-3ubuntu2 The Speex codec runtime library
ii libspeexdsp1 1.2~rc1-3ubuntu2 The Speex extended runtime library
ii libsqlite3-0 3.7.9-2ubuntu1.1 SQLite 3 shared library
ii libss2 1.42-1ubuntu2 command-line interface parsing library
ii libssh-4 0.5.2-1 tiny C SSH library
ii libssl-dev 1.0.1-4ubuntu5.5 SSL development libraries, header files and documentation
ii libssl-doc 1.0.1-4ubuntu5.5 SSL development documentation documentation
ii libssl1.0.0 1.0.1-4ubuntu5.5 SSL shared libraries
ii libstartup-notification0 0.12-1ubuntu1 library for program launch feedback (shared library)
ii libstdc++6 4.6.3-1ubuntu5 GNU Standard C++ Library v3
ii libswitch-perl 2.16-2 switch statement for Perl
ii libsyncdaemon-1.0-1 3.0.2-0ubuntu1 Ubuntu One synchronization daemon library
ii libsysfs2 2.1.0+repack-1 interface library to sysfs
ii libt1-5 5.1.2-3.4ubuntu1 Type 1 font rasterizer library - runtime
ii libtag1-vanilla 1.7-1ubuntu5 audio meta-data library - vanilla flavour
ii libtag1c2a 1.7-1ubuntu5 audio meta-data library
ii libtalloc2 2.0.7-3 hierarchical pool based memory allocator
ii libtasn1-3 2.10-1ubuntu1.1 Manage ASN.1 structures (runtime)
ii libtdb1 1.2.9-4 Trivial Database - shared library
ii libtelepathy-farstream2 0.4.0-0ubuntu1 Glue library between telepathy and farstream
ii libtelepathy-glib0 0.18.0-1ubuntu1 Telepathy framework - GLib library
ii libtelepathy-logger2 0.4.0-0ubuntu1 Telepathy logger service - utility library
ii libtext-charwidth-perl 0.04-7build1 get display widths of characters on the terminal
ii libtext-iconv-perl 1.7-5 converts between character sets in Perl
ii libtext-wrapi18n-perl 0.06-7 internationalized substitute of Text::Wrap
ii libthai-data 0.1.16-3 Data files for Thai language support library
ii libthai0 0.1.16-3 Thai language support library
ii libtheora0 1.1.1+dfsg.1-3ubuntu2 The Theora Video Compression Codec
ii libtidy-0.99-0 20091223cvs-1ubuntu2 HTML syntax checker and reformatter - library
ii libtiff4 3.9.5-2ubuntu1.2 Tag Image File Format (TIFF) library
ii libtimezonemap1 0.3.2 GTK+3 timezone map widget
ii libtinfo5 5.9-4 shared low-level terminfo library for terminal handling
ii libtotem-plparser17 3.4.1-1 Totem Playlist Parser library - runtime files
ii libtotem0 3.0.1-0ubuntu21 Main library for the Totem media player
ii libubuntuoneui-3.0-1 3.0.1-0ubuntu1 Ubuntu One widget library
ii libudev0 175-0ubuntu9.1 udev library
ii libunique-3.0-0 3.0.2-1 Library for writing single instance applications - shared libraries
ii libunity-2d-private0 5.12.0-0ubuntu1.1 Unity 2D shared library
ii libunity-core-5.0-5 5.14.0-0ubuntu1 Core library for the Unity interface.
ii libunity-misc4 4.0.4-0ubuntu2 Miscellaneous functions for Unity - shared library
ii libunity9 5.12.0-0ubuntu1.1 binding to get places into the launcher - shared library
ii libupower-glib1 0.9.15-3git1 abstraction for power management - shared library
ii libusb-0.1-4 2:0.1.12-20 userspace USB programming library
ii libusb-1.0-0 2:1.0.9~rc3-2ubuntu1 userspace USB programming library
ii libusbmuxd1 1.0.7-2 USB multiplexor daemon for iPhone and iPod Touch devices - library
ii libutempter0 1.1.5-4 A privileged helper for utmp/wtmp updates (runtime)
ii libutouch-evemu1 1.0.9-0ubuntu1 KernelInput Event Device Emulation Library
ii libutouch-frame1 2.2.3-0ubuntu1 Touch Frame Library
ii libutouch-geis1 2.2.9-0ubuntu3 Gesture engine interface support
ii libutouch-grail1 3.0.5-0ubuntu1 Gesture Recognition And Instantiation Library
ii libuuid-perl 0.02-4ubuntu1 Perl extension for using UUID interfaces as defined in e2fsprogs
ii libuuid1 2.20.1-1ubuntu3 Universally Unique ID library
ii libv4l-0 0.8.6-1ubuntu2 Collection of video4linux support libraries
ii libv4lconvert0 0.8.6-1ubuntu2 Video4linux frame format conversion library
ii libv8-3.7.12.22 3.7.12.22-3 v8 JavaScript engine - runtime library
ii libvirt-bin 0.9.8-2ubuntu17.7 programs for the libvirt library
ii libvirt0 0.9.8-2ubuntu17.7 library for interfacing with different virtualization systems
ii libvisual-0.4-0 0.4.0-4 Audio visualization framework
ii libvisual-0.4-plugins 0.4.0.dfsg.1-7 Audio visualization framework plugins
ii libvncserver0 0.9.8.2-2ubuntu1 API to write one's own vnc server
ii libvorbis0a 1.3.2-1ubuntu3 The Vorbis General Audio Compression Codec (Decoder library)
ii libvorbisenc2 1.3.2-1ubuntu3 The Vorbis General Audio Compression Codec (Encoder library)
ii libvorbisfile3 1.3.2-1ubuntu3 The Vorbis General Audio Compression Codec (High Level API)
ii libvte-2.90-9 1:0.32.1-0ubuntu1 Terminal emulator widget for GTK+ 3.0 - runtime files
ii libvte-2.90-common 1:0.32.1-0ubuntu1 Terminal emulator widget for GTK+ 3.0 - common files
ii libwacom-common 0.4-1ubuntu1 Wacom model feature query library (common files)
ii libwacom2 0.4-1ubuntu1 Wacom model feature query library
ii libwavpack1 4.60.1-2 audio codec (lossy and lossless) - library
ii libwbclient0 2:3.6.3-2ubuntu2.3 Samba winbind client library
ii libwebkitgtk-3.0-0 1.8.1-0ubuntu0.12.04.1 Web content engine library for GTK+
ii libwebkitgtk-3.0-common 1.8.1-0ubuntu0.12.04.1 Web content engine library for GTK+ - data files
ii libwind0-heimdal 1.6~git20120311.dfsg.1-2 Heimdal Kerberos - stringprep implementation
ii libwmf0.2-7 0.2.8.4-10ubuntu1 Windows metafile conversion library
ii libwmf0.2-7-gtk 0.2.8.4-10ubuntu1 Windows metafile conversion library
ii libwnck-3-0 3.4.0-0ubuntu1 Window Navigator Construction Kit - runtime files
ii libwnck-3-common 3.4.0-0ubuntu1 Window Navigator Construction Kit - common files
ii libwnck-common 1:2.30.7-0ubuntu1 Window Navigator Construction Kit - common files
ii libwnck22 1:2.30.7-0ubuntu1 Window Navigator Construction Kit - runtime files
ii libwpd-0.9-9 0.9.4-1 Library for handling WordPerfect documents (shared library)
ii libwpg-0.2-2 0.2.1-1 WordPerfect graphics import/convert library (shared library)
ii libwps-0.2-2 0.2.4-1 Works text file format import filter library (shared library)
ii libwrap0 7.6.q-21 Wietse Venema's TCP wrappers library
ii libx11-6 2:1.4.99.1-0ubuntu2 X11 client-side library
ii libx11-data 2:1.4.99.1-0ubuntu2 X11 client-side library
ii libx11-xcb1 2:1.4.99.1-0ubuntu2 Xlib/XCB interface library
ii libx86-1 1.1+ds1-7ubuntu1 x86 real-mode library
ii libxapian22 1.2.8-1 Search engine library
ii libxatracker1 8.0.3+8.0.2-0ubuntu3.2 X acceleration library -- runtime