-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkg-thinker.lst
1946 lines (1946 loc) · 241 KB
/
pkg-thinker.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 acpi-support 0.138 scripts for handling many ACPI events
ii acpid 1:2.0.7-1ubuntu2.4 Advanced Configuration and Power Interface event daemon
ii acroread 9.4.6-0natty1 Adobe Reader
ii acroread-common 9.4.2.0-0natty1 Adobe Reader - Common Files
ii adduser 3.112+nmu1ubuntu5 add and remove users and groups
ii adium-theme-ubuntu 0.3.1-0ubuntu1 Adium message style for Ubuntu
rc aisleriot 1:2.32.1-0ubuntu5 Solitaire card games
ii alacarte 0.13.2-1ubuntu2 easy GNOME menu editing tool
ii alarm-clock-applet 0.3.1-1 Alarm Clock applet
ii alsa-base 1.0.24+dfsg-0ubuntu1 ALSA driver configuration files
ii alsa-utils 1.0.24.2-0ubuntu6 Utilities for configuring and using ALSA
rc amsn 0.98.4-0ubuntu1 An MSN messenger written in Tcl
ii amsn-data 0.98.4-0ubuntu1 Data files for aMSN
ii amule 2.2.6+debian0-8ubuntu2 client for the eD2k and Kad networks, like eMule
ii amule-common 2.2.6+debian0-8ubuntu2 common files for the rest of aMule packages
ii amule-utils 2.2.6+debian0-8ubuntu2 utilities for aMule (command-line version)
ii anacron 2.3-14ubuntu1 cron-like program that doesn't go by time
ii ant 1.8.1-1 Java based build tool like make
ii ant-optional 1.8.1-1 Java based build tool like make - optional libraries
ii antiword 0.37-6 Converts MS Word files to text, PS and PDF
ii app-install-data 0.11.04.7.4 Ubuntu applications (data files)
ii app-install-data-partner 12.11.04.2 Application Installer (data files for partner applications/repositories)
ii apparmor 2.6.1-0ubuntu3 User-space parser utility for AppArmor
ii apparmor-utils 2.6.1-0ubuntu3 Utilities for controlling AppArmor
ii appmenu-gtk 0.2.1-0ubuntu3 Export GTK menus over DBus
ii appmenu-qt 0.1.2-0ubuntu1 appmenu support for Qt
ii apport 1.20.1-0ubuntu5.1 automatically generate crash reports for debugging
ii apport-gtk 1.20.1-0ubuntu5.1 GTK+ frontend for the apport crash report system
ii apport-symptoms 0.12 symptom scripts for apport
ii apt 0.8.13.2ubuntu4.3 Advanced front-end for dpkg
ii apt-transport-https 0.8.13.2ubuntu4.3 APT https transport
ii apt-utils 0.8.13.2ubuntu4.3 APT utility programs
ii apt-xapian-index 0.41ubuntu6 maintenance and search tools for a Xapian index of Debian packages
ii aptdaemon 0.41+bzr646-0ubuntu2.1 transaction based package management service
ii aptdaemon-data 0.41+bzr646-0ubuntu2.1 data files for clients
ii aptitude 0.6.3-3.2ubuntu1 terminal-based package manager (terminal interface only)
ii apturl 0.4.2ubuntu5.1 install packages using the apt protocol - GTK+ frontend
ii apturl-common 0.4.2ubuntu5.1 install packages using the apt protocol - common data
ii aspell 0.60.6-6 GNU Aspell spell-checker
ii aspell-en 6.0-0-6ubuntu1 English dictionary for GNU Aspell
ii astyle 1.24-1 Source code indenter for C++/C/Java/C# source code
ii at 3.1.12-1ubuntu2 Delayed job execution and batch processing
ii at-spi 1.32.0-0ubuntu2 Assistive Technology Service Provider Interface
ii avahi-autoipd 0.6.30-0ubuntu2 Avahi IPv4LL network address configuration daemon
ii avahi-daemon 0.6.30-0ubuntu2 Avahi mDNS/DNS-SD daemon
ii avahi-utils 0.6.30-0ubuntu2 Avahi browsing, publishing and discovery utilities
ii bamfdaemon 0.2.90-0ubuntu3 Window matching library - daemon
ii banshee 2.0.0-2ubuntu2 Media Management and Playback application
ii banshee-extension-soundmenu 2.0.0-2ubuntu2 Media Management and Playback application - sound menu extension
ii banshee-extension-ubuntuonemusicstore 2.0.0-2ubuntu2 Media Management and Playback application - U1MS extension
ii baobab 2.32.0-0ubuntu5 GNOME disk usage analyzer
ii base-files 5.0.0ubuntu28 Debian base system miscellaneous files
ii base-passwd 3.5.22 Debian base system master password and group files
ii bash 4.2-0ubuntu3 The GNU Bourne Again SHell
ii bash-completion 1:1.3-1ubuntu3 programmable completion for the bash shell
ii bc 1.06.95-2 The GNU bc arbitrary precision calculator language
ii bind9-host 1:9.7.3.dfsg-1ubuntu2.3 Version of 'host' bundled with BIND 9.X
ii binfmt-support 2.0.3 Support for extra binary formats
ii binutils 2.21.0.20110327-2ubuntu3 The GNU assembler, linker and binary utilities
ii bison 1:2.4.1.dfsg-3 A parser generator that is compatible with YACC
ii bluefish 2.0.2-1 advanced Gtk+ HTML editor
ii bluefish-data 2.0.2-1 advanced Gtk+ HTML editor (data)
ii bluefish-plugins 2.0.2-1 advanced Gtk+ HTML editor (plugins)
ii bluez 4.91-0ubuntu1 Bluetooth tools and daemons
ii bluez-alsa 4.91-0ubuntu1 Bluetooth ALSA support
ii bluez-cups 4.91-0ubuntu1 Bluetooth printer driver for CUPS
ii bluez-gstreamer 4.91-0ubuntu1 Bluetooth GStreamer support
ii bogofilter 1.2.2-2ubuntu1 a fast Bayesian spam filter (dummy package)
ii bogofilter-bdb 1.2.2-2ubuntu1 a fast Bayesian spam filter (Berkeley DB)
ii bogofilter-common 1.2.2-2ubuntu1 a fast Bayesian spam filter (common files)
ii branding-ubuntu 0.7 Replacement artwork with Ubuntu branding
ii brasero 2.32.1-0ubuntu2 CD/DVD burning application for GNOME
ii brasero-cdrkit 2.32.1-0ubuntu2 cdrkit extensions for the Brasero burning application
ii brasero-common 2.32.1-0ubuntu2 Common files for the Brasero CD burning application and library
ii brltty 4.2-8ubuntu2 Access software for a blind person using a braille display
ii brltty-x11 4.2-8ubuntu2 Access software for a blind person using a braille display - X11 drivers
ii bsdmainutils 8.2.2 collection of more utilities from FreeBSD
ii bsdutils 1:2.17.2-9.1ubuntu4 Basic utilities from 4.4BSD-Lite
ii build-essential 11.5ubuntu1 Informational list of build-essential packages
ii busybox-initramfs 1:1.17.1-10ubuntu1 Standalone shell setup for initramfs
ii busybox-static 1:1.17.1-10ubuntu1 Standalone rescue shell with tons of builtin utilities
ii bzip2 1.0.5-6ubuntu1.11.04.1 high-quality block-sorting file compressor - utilities
ii ca-certificates 20090814+nmu2ubuntu0.1 Common CA certificates
ii ca-certificates-java 20100412 Common CA certificates (JKS keystore)
ii calibre 0.7.44+dfsg-1build1 e-book converter and library management
ii calibre-bin 0.7.44+dfsg-1build1 e-book converter and library management
ii capplets-data 1:2.32.1-0ubuntu15 configuration applets for GNOME - data files
rc cgoban 1.9.14-16 complete Go board
ii checkbox 0.11.3 System testing application
ii checkbox-gtk 0.11.3 GTK interface for checkbox
ii chmsee 1.3.0-2ubuntu1 A chm file viewer written in GTK+
ii chromium-browser 14.0.835.202~r103287-0ubuntu0.11.04.1 Chromium browser
ii chromium-browser-l10n 14.0.835.202~r103287-0ubuntu0.11.04.1 chromium-browser language packages
ii chromium-codecs-ffmpeg 14.0.835.202~r103287-0ubuntu0.11.04.1 Free ffmpeg codecs for the Chromium Browser
ii clang 2.8-0ubuntu2 Low-Level Virtual Machine (LLVM), C language family frontend
ii cli-common 0.7.1 common files between all CLI packages
ii cmap-adobe-japan1 0+20090930-2 CMaps for Adobe-Japan1
ii command-not-found 0.2.41ubuntu2 Suggest installation of packages in interactive bash sessions
ii command-not-found-data 0.2.41ubuntu2 Set of data files for command-not-found.
ii compiz 1:0.9.4+bzr20110606-0ubuntu1~natty2 OpenGL window and compositing manager
ii compiz-core 1:0.9.4+bzr20110606-0ubuntu1~natty2 OpenGL window and compositing manager
ii compiz-gnome 1:0.9.4+bzr20110606-0ubuntu1~natty2 OpenGL window and compositing manager - GNOME window decorator
ii compiz-plugins 1:0.9.4+bzr20110606-0ubuntu1~natty2 OpenGL window and compositing manager - plugins
ii compiz-plugins-main 0.9.4+bzr20110527-0ubuntu1~natty1 Compiz Fusion plugins - main collection
ii compizconfig-backend-gconf 0.9.2.4-0ubuntu1 Compiz Fusion configuration system - gconf backend
ii computer-janitor 2.1.0-0ubuntu4 Clean up a system so it's more like a freshly installed one
ii computer-janitor-gtk 2.1.0-0ubuntu4 Clean up a system so it's more like a freshly installed one
ii console-setup 1.57ubuntu20 console font and keymap setup program
ii console-terminus 4.30-2 Fixed-width fonts for fast reading on the Linux console
ii consolekit 0.4.4-1 framework for defining and tracking users, sessions and seats
ii convmv 1.12-2 filename encoding conversion tool
ii coreutils 8.5-1ubuntu6 GNU core utilities
ii couchdb-bin 1.0.1-0ubuntu15 RESTful document oriented database, programs
ii cpio 2.11-7ubuntu1 GNU cpio -- a program to manage archives of files
ii cpp 4:4.5.2-1ubuntu3 The GNU C preprocessor (cpp)
ii cpp-4.5 4.5.2-8ubuntu4 The GNU C preprocessor
ii cron 3.0pl1-116ubuntu1 process scheduling daemon
ii cscope 15.7a-3.2 Interactively examine a C program source
ii cuneiform 0.7.0+dfsg.1-1 multi-language OCR system
ii cuneiform-common 0.7.0+dfsg.1-1 multi-language OCR system (common)
ii cups 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - server
ii cups-bsd 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - BSD commands
ii cups-client 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - client programs (SysV)
ii cups-common 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - common files
ii cups-driver-gutenprint 5.2.6-1ubuntu1 printer drivers for CUPS
ii cups-ppdc 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - PPD manipulation utilities
ii curl 7.21.3-1ubuntu1.3 Get a file from an HTTP, HTTPS or FTP server
ii cvs 1:1.12.13-12ubuntu1 Concurrent Versions System
ii dash 0.5.5.1-7.2ubuntu1 POSIX-compliant shell
ii dbus 1.4.6-1ubuntu6.1 simple interprocess messaging system
ii dbus-x11 1.4.6-1ubuntu6.1 simple interprocess messaging system (X11 deps)
ii dc 1.06.95-2 The GNU dc arbitrary precision reverse-polish calculator
ii debconf 1.5.36ubuntu4 Debian configuration management system
ii debconf-i18n 1.5.36ubuntu4 full internationalization support for debconf
ii debianutils 3.4.3ubuntu1 Miscellaneous utilities specific to Debian
ii default-jdk 1:1.6-40ubuntu1 Standard Java or Java compatible Development Kit
ii default-jre 1:1.6-40ubuntu1 Standard Java or Java compatible Runtime
ii default-jre-headless 1:1.6-40ubuntu1 Standard Java or Java compatible Runtime (headless)
ii defoma 0.11.12ubuntu1 Debian Font Manager -- automatic font configuration framework
ii desktop-file-utils 0.18-0ubuntu4 Utilities for .desktop files
ii desktopcouch 1.0.7-0ubuntu2.1 A Desktop CouchDB instance
ii desktopcouch-ubuntuone 1.0.7-0ubuntu2.1 Ubuntu One connection extension for Desktop CouchDB
ii dia-common 0.97.1-7build1 Diagram editor (common files)
ii dia-gnome 0.97.1-7build1 Diagram editor (GNOME version)
ii dia-libs 0.97.1-7build1 Diagram editor (library files)
ii dictionaries-common 1.9.3ubuntu1 Common utilities for spelling dictionary tools
ii diffstat 1.54-1 produces graph of changes introduced by a diff file
ii diffutils 1:3.0-1 File comparison utilities
ii djvulibre-bin 3.5.23-3ubuntu2 Utilities for the DjVu image format
ii dkms 2.1.1.2-5ubuntu1 Dynamic Kernel Module Support Framework
ii dmidecode 2.9-1.2build1 Dump Desktop Management Interface data
ii dmsetup 2:1.02.48-4ubuntu2 The Linux Kernel Device Mapper userspace library
ii dmz-cursor-theme 0.4.3 Style neutral, scalable cursor theme
ii dnsmasq-base 2.57-1 A small caching DNS proxy and DHCP/TFTP server
ii dnsutils 1:9.7.3.dfsg-1ubuntu2.3 Clients provided with BIND
ii doc-base 0.9.5ubuntu2 utilities to manage online documentation
ii docbook-xml 4.5-7 standard XML documentation system for software and systems
ii docbook-xsl 1.75.2+dfsg-5ubuntu1 stylesheets for processing DocBook XML to various output formats
ii dos2unix 5.1.1-2 convert text file line endings between CRLF and LF
ii dosfstools 3.0.9-1 utilities for making and checking MS-DOS FAT filesystems
ii doxygen 1.7.3-6ubuntu1 Documentation system for C, C++, Java, Python and other languages
ii doxygen-doc 1.7.3-6ubuntu1 Documentation for doxygen
ii doxygen-latex 1.7.3-6ubuntu1 Documentation system for C, C++, Java, Python and other languages
ii dpkg 1.16.0~ubuntu7.1 Debian package management system
ii dpkg-dev 1.16.0~ubuntu7.1 Debian package development tools
ii dvd+rw-tools 7.1-9 DVD+-RW/R tools
ii e2fslibs 1.41.14-1ubuntu3 ext2/ext3/ext4 file system libraries
ii e2fsprogs 1.41.14-1ubuntu3 ext2/ext3/ext4 file system utilities
ii eclipse-cdt 6.0.2-1 C/C++ Development Tools for Eclipse
ii eclipse-jdt 3.5.2-8ubuntu3 Eclipse Java Development Tools (JDT)
ii eclipse-pde 3.5.2-8ubuntu3 Eclipse Plug-in Development Environment (PDE)
ii eclipse-platform 3.5.2-8ubuntu3 Eclipse platform without plug-ins to develop any language
ii eclipse-platform-data 3.5.2-8ubuntu3 Eclipse platform without plug-ins to develop any language (data)
ii eclipse-plugin-cvs 3.5.2-8ubuntu3 Eclipse Team Integration (CVS support)
ii eclipse-rcp 3.5.2-8ubuntu3 Eclipse Rich Client Platform (RCP)
ii ed 1.5-1 The classic UNIX line editor
ii eject 2.1.5+deb1+cvs20081104-7.1 ejects CDs and operates CD-Changers under Linux
ii emacsen-common 1.4.19ubuntu2 Common facilities for all emacsen
ii empathy 2.34.0-0ubuntu3.2 GNOME multi-protocol chat and call client
ii empathy-common 2.34.0-0ubuntu3.2 GNOME multi-protocol chat and call client (common files)
ii eog 2.32.1-0ubuntu2 Eye of GNOME graphics viewer program
ii epiphany-browser 2.30.6-1ubuntu5 Intuitive GNOME web browser
ii epiphany-browser-data 2.30.6-1ubuntu5 Data files for the GNOME web browser
ii epiphany-extensions 2.30.2-1ubuntu1 Extensions for Epiphany web browser
ii erlang-base 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP virtual machine and base applications
ii erlang-crypto 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP cryprographic modules
ii erlang-inets 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP Internet clients and servers
ii erlang-mnesia 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP distributed relational/object hybrid database
ii erlang-public-key 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP public key infrastructure
ii erlang-runtime-tools 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP runtime tracing/debugging tools
ii erlang-ssl 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP implementation of SSL
ii erlang-syntax-tools 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP modules for handling abstract Erlang syntax trees
ii erlang-xmerl 1:13.b.3-dfsg-2ubuntu3 Erlang/OTP XML tools
ii esound-common 0.2.41-8 Enlightened Sound Daemon - Common files
ii espeak 1.44.05-1ubuntu1 A multi-lingual software speech synthesizer
ii espeak-data 1.44.05-1ubuntu1 A multi-lingual software speech synthesizer: speech data files
ii evince 2.32.0-0ubuntu12.3 Document (postscript, pdf) viewer
ii evince-common 2.32.0-0ubuntu12.3 Document (postscript, pdf) viewer - common files
rc evolution 2.32.2-0ubuntu7 groupware suite with mail client and organizer
ii evolution-common 2.32.2-0ubuntu7 architecture independent files for Evolution
ii evolution-data-server 2.32.2-0ubuntu2 evolution database backend server
ii evolution-data-server-common 2.32.2-0ubuntu2 architecture independent files for Evolution Data Server
ii evolution-indicator 0.2.14-0ubuntu4 GNOME panel indicator applet for Evolution
ii evolution-plugins 2.32.2-0ubuntu7 standard plugins for Evolution
ii evolution-webcal 2.32.0-0ubuntu2 webcal: URL handler for GNOME and Evolution
ii example-content 43 Ubuntu example content
ii exiv2 0.21.1-0ubuntu2 EXIF/IPTC metadata manipulation tool
ii exuberant-ctags 1:5.9~svn20110310-1 build tag file indexes of source code definitions
ii faac 1.26-0.1ubuntu2 an AAC audio encoder
ii faad 2.7-6ubuntu1 freeware Advanced Audio Decoder player
ii fakeroot 1.14.4-1ubuntu1 Gives a fake root environment
ii fastjar 2:0.98-3 Jar creation utility
ii ffmpeg 4:0.6.4-0ubuntu0.11.04.1 Multimedia player, server, encoder and transcoder
ii file 5.04-5ubuntu2 Determines file type using "magic" numbers
ii file-roller 2.32.2-0ubuntu0.1 an archive manager for GNOME
ii findutils 4.4.2-1ubuntu3 utilities for finding files--find, xargs
ii firefox 9.0.1+build1-0ubuntu0.11.04.1 Safe and easy web browser from Mozilla
ii firefox-globalmenu 9.0.1+build1-0ubuntu0.11.04.1 Unity appmenu integration for Firefox
ii firefox-gnome-support 9.0.1+build1-0ubuntu0.11.04.1 Safe and easy web browser from Mozilla - GNOME support
ii firefox-locale-en 9.0.1+build1-0ubuntu0.11.04.1 English language pack for Firefox
ii flashplugin-installer 11.1.102.55ubuntu0.11.04.1 Adobe Flash Player plugin installer
ii flex 2.5.35-10ubuntu1 A fast lexical analyzer generator.
rc font-manager 0.5.7-3 font management application for the GNOME desktop
ii fontconfig 2.8.0-2.1ubuntu3 generic font configuration library - support binaries
ii fontconfig-config 2.8.0-2.1ubuntu3 generic font configuration library - configuration
ii fontforge 0.0.20100501-5ubuntu2 font editor
ii foomatic-db-compressed-ppds 20110317-0ubuntu1 OpenPrinting printer support - Compressed PPDs derived from the database
ii foomatic-db-engine 4.0.7-0ubuntu1 OpenPrinting printer support - programs
ii foomatic-filters 4.0.7-0ubuntu1.1 OpenPrinting printer support - filters
rc fprint-demo 1:0.4+git20080303-0ppa2~natty1 GUI to show and test libfprint's capabilities
rc fprintd 0.4.1-0ppa1~natty1 D-Bus daemon for fingerprint reader access
ii freepats 20060219-1 Free patch set for MIDI audio synthesis
ii friendly-recovery 0.2.11 Make recovery more user-friendly
ii ftp 0.17-23 The FTP client
ii fuse-utils 2.8.4-1.1ubuntu4 Filesystem in USErspace (utilities)
ii g++ 4:4.5.2-1ubuntu3 The GNU C++ compiler
ii g++-4.5 4.5.2-8ubuntu4 The GNU C++ compiler
ii gamin 0.1.10-2ubuntu1 File and directory monitoring system
ii gawk 1:3.1.7.dfsg-5 GNU awk, a pattern scanning and processing language
ii gbrainy 1.65-0ubuntu1 brain teaser game and trainer to have fun and to keep your brain trained
ii gcalctool 6.0.1~git20110421-0ubuntu1 GNOME desktop calculator
ii gcc 4:4.5.2-1ubuntu3 The GNU C compiler
ii gcc-4.5 4.5.2-8ubuntu4 The GNU C compiler
ii gcc-4.5-base 4.5.2-8ubuntu4 The GNU Compiler Collection (base package)
ii gcj-4.5-base 4.5.2-8ubuntu1 The GNU Compiler Collection (gcj base package)
ii gcj-4.5-jre-lib 4.5.2-8ubuntu1 Java runtime library for use with gcj (jar files)
ii gconf-defaults-service 2.32.2-0ubuntu2 GNOME configuration database system (system defaults service)
ii gconf-editor 2.32.0-0ubuntu2 An editor for the GConf configuration system
ii gconf2 2.32.2-0ubuntu2 GNOME configuration database system (support tools)
ii gconf2-common 2.32.2-0ubuntu2 GNOME configuration database system (common files)
ii gdb 7.2-1ubuntu11 The GNU Debugger
ii gdm 2.32.1-0ubuntu3.2 GNOME Display Manager
ii gdm-guest-session 0.24 gdm extension for guest session
ii gedit 2.30.4-2ubuntu1 official text editor of the GNOME desktop environment
ii gedit-common 2.30.4-2ubuntu1 official text editor of the GNOME desktop environment (support files)
ii genisoimage 9:1.1.11-1ubuntu2 Creates ISO-9660 CD-ROM filesystem images
ii geoclue 0.12.0-1ubuntu8 Geographic information framework
ii geoclue-ubuntu-geoip 0.0.2-0ubuntu5 Provide positioning for GeoClue via Ubuntu GeoIP services
ii geoip-database 1.4.7~beta6+dfsg-1 IP lookup command line tools that use the GeoIP library (country database)
ii gettext 0.18.1.1-3ubuntu1 GNU Internationalization utilities
ii gettext-base 0.18.1.1-3ubuntu1 GNU Internationalization utilities for the base system
ii ghostscript 9.01~dfsg-1ubuntu5 interpreter for the PostScript language and for PDF
ii ghostscript-cups 9.01~dfsg-1ubuntu5 interpreter for the PostScript language and for PDF - CUPS filters
ii ghostscript-x 9.01~dfsg-1ubuntu5 interpreter for the PostScript language and for PDF - X11 support
ii gimp 2.6.11-1ubuntu6.2 The GNU Image Manipulation Program
ii gimp-data 2.6.11-1ubuntu6.2 Data files for GIMP
ii gimp-help-common 2.4.1-2 Data files for the GIMP documentation
ii gimp-help-en 2.4.1-2 Documentation for the GIMP (English)
ii ginn 0.2.4-0ubuntu1 Gesture Injector: No-GEIS, No-Toolkits
ii gir1.2-appindicator-0.1 0.3.0-0ubuntu1 Typelib files for libappindicator1.
ii gir1.2-atk-1.0 2.0.0-0ubuntu1 The ATK accessibility toolkit (GObject introspection)
ii gir1.2-clutter-1.0 1.6.14-0ubuntu3 GObject introspection data for the Clutter 1.0 library
ii gir1.2-dbusmenu-glib-0.4 0.4.3-0ubuntu4 typelib file for libdbusmenu-glib3
ii gir1.2-dee-0.5 0.5.18-0ubuntu1 GObject introspection data for the Dee library
ii gir1.2-freedesktop 0.10.7-0ubuntu1 Introspection data for some FreeDesktop components
ii gir1.2-gconf-2.0 2.32.2-0ubuntu2 GNOME configuration database system (GObject-Introspection)
ii gir1.2-gdkpixbuf-2.0 2.23.3-0ubuntu1 GDK Pixbuf library - GObject-Introspection
ii gir1.2-glib-2.0 0.10.7-0ubuntu1 Introspection data for GLib, GObject, Gio and GModule
ii gir1.2-gstreamer-0.10 0.10.32-3ubuntu3.1 Description: GObject introspection data for the GStreamer library
ii gir1.2-gtk-2.0 2.24.4-0ubuntu2 The GTK+ graphical user interface library -- gir bindings
ii gir1.2-json-glib-1.0 0.12.2-0ubuntu1 GLib JSON manipulation library (documentation)
ii gir1.2-notify-0.7 0.7.2-0ubuntu2 GObject introspection data for the libnotify library
ii gir1.2-panelapplet-3.0 1:2.32.1-0ubuntu6.5 library for GNOME Panel applets (GObject-Introspection)
ii gir1.2-pango-1.0 1.28.4-0ubuntu1 Layout and rendering of internationalized text - gir bindings
ii gir1.2-soup-2.4 2.34.0-0ubuntu1.1 GObject introspection data for the libsoup HTTP library
ii gir1.2-unity-3.0 3.8.4-0ubuntu1 GObject introspection data for the Unity library
ii gir1.2-vte-0.0 1:0.27.90-0ubuntu1 GObject introspection data for the VTE library
ii git 1:1.7.4.1-3 fast, scalable, distributed revision control system
ii git-man 1:1.7.4.1-3 fast, scalable, distributed revision control system (manual pages)
ii gksu 2.0.2-5ubuntu2 graphical frontend to su
ii glib-networking 2.28.6.1-0ubuntu1 network-related giomodules for GLib
ii gnash 0.8.9-1ubuntu1 GNU Shockwave Flash (SWF) player
ii gnash-common 0.8.9-1ubuntu1 GNU Shockwave Flash (SWF) player - Common files/libraries
rc gnokii-common 0.6.29.dfsg-1ubuntu1 Datasuite for mobile phone management (base files)
ii gnome-about 1:2.32.1-0ubuntu6 The GNOME about box
ii gnome-accessibility-themes 2.32.1-0ubuntu1 accessibility themes for the GNOME desktop
ii gnome-applets 2.32.1.1-0ubuntu5 Various applets for the GNOME panel - binary files
ii gnome-applets-data 2.32.1.1-0ubuntu5 Various applets for the GNOME panel - data files
rc gnome-bluetooth 2.91.2.is.2.32.0-0ubuntu3 GNOME Bluetooth tools
ii gnome-codec-install 0.4.7ubuntu3 GStreamer codec installer
ii gnome-control-center 1:2.32.1-0ubuntu15 utilities to configure the GNOME desktop
ii gnome-desktop-data 1:2.32.1-0ubuntu6 Common files for GNOME desktop apps
ii gnome-disk-utility 2.32.1-0ubuntu4 manage and configure disk drives and media
ii gnome-doc-utils 0.20.5-0ubuntu1 a collection of documentation utilities for the GNOME project
ii gnome-games-common 1:2.32.1-0ubuntu5 Common files for GNOME Games
ii gnome-icon-theme 2.31.0-0ubuntu2 GNOME Desktop icon theme
ii gnome-js-common 0.1.2-1 Common modules for GNOME JavaScript interpreters
ii gnome-keyring 2.92.92.is.2.32.1-0ubuntu2.1 GNOME keyring services (daemon and tools)
ii gnome-mag 1:0.16.3-0ubuntu2 a screen magnifier for the GNOME desktop
rc gnome-mahjongg 1:2.32.1-0ubuntu5 Mahjongg tile solitaire game
ii gnome-media 2.32.0-0ubuntu7 GNOME media utilities
ii gnome-media-common 2.32.0-0ubuntu7 GNOME media utilities - common files
ii gnome-menus 2.30.5-0ubuntu3 an implementation of the freedesktop menu specification for GNOME
ii gnome-mime-data 2.18.0-1 base MIME and Application database for GNOME.
ii gnome-nettool 2.32.0-0ubuntu1.1 network information tool for GNOME
ii gnome-orca 3.0.0-0ubuntu2 Scriptable screen reader
ii gnome-panel 1:2.32.1-0ubuntu6.5 launcher and docking facility for GNOME
ii gnome-panel-bonobo 1:2.32.1-0ubuntu6.5 launcher and docking facility for GNOME - bonobo compatibility
ii gnome-panel-data 1:2.32.1-0ubuntu6.5 common files for the GNOME Panel
ii gnome-power-manager 2.32.0-2ubuntu2.1 power management tool for the GNOME desktop
ii gnome-screensaver 2.30.2-0ubuntu2 GNOME screen saver and locker
ii gnome-screenshot 2.32.0-0ubuntu5 screenshot application for GNOME
ii gnome-search-tool 2.32.0-0ubuntu5 GNOME tool to search files
ii gnome-session 2.32.1-0ubuntu20 The GNOME Session Manager - GNOME 2 session
ii gnome-session-bin 2.32.1-0ubuntu20 The GNOME Session Manager - Minimal runtime
ii gnome-session-canberra 0.28-0ubuntu3 GNOME session log in and log out sound events
ii gnome-session-common 2.32.1-0ubuntu20 Common files for the GNOME session manager
ii gnome-settings-daemon 2.32.1-0ubuntu13.1 daemon handling the GNOME session settings
ii gnome-specimen 0.4-6 Simple font preview and compare application for GNOME
ii gnome-sudoku 1:2.32.1-0ubuntu5 Sudoku number puzzle
ii gnome-system-log 2.32.0-0ubuntu5 system log viewer for GNOME
ii gnome-system-monitor 2.28.2-0ubuntu1 Process viewer and system resource monitor for GNOME
ii gnome-system-tools 2.32.0-0ubuntu7 Cross-platform configuration utilities for GNOME
ii gnome-terminal 2.32.1-0ubuntu3 The GNOME terminal emulator application
ii gnome-terminal-data 2.32.1-0ubuntu3 Data files for the GNOME terminal emulator
ii gnome-themes-selected 2.32.1-0ubuntu1 selected official themes for the GNOME 2 desktop
ii gnome-themes-ubuntu 0.6.1 Ubuntu community themes
ii gnome-user-guide 3.0.0+git20110406ubuntu11 GNOME user's guide
rc gnome-user-share 2.30.2-0ubuntu2 User level public file sharing via WebDAV or ObexFTP
ii gnome-utils-common 2.32.0-0ubuntu5 data files for the GNOME utilities
rc gnomine 1:2.32.1-0ubuntu5 Minesweeper logic puzzle game
ii gnugo 3.8-4 play the game of Go
ii gnupg 1.4.11-3ubuntu1 GNU privacy guard - a free PGP replacement
ii gocr 0.48-1 A command line OCR
ii google-desktop-linux 1.2.0.0088 Google Desktop: Personalize and organize your own computer.
ii gpgv 1.4.11-3ubuntu1 GNU privacy guard - signature verification tool
ii gpointing-device-settings 1.5.1-4 configuration tool for pointing devices
ii grep 2.6.3-3ubuntu1 GNU grep, egrep and fgrep
ii groff-base 1.21-5 GNU troff text-formatting system (base system components)
ii growisofs 7.1-9 DVD+-RW/R recorder
ii grub-common 1.99~rc1-13ubuntu3 GRand Unified Bootloader, version 2 (common files)
ii grub-gfxpayload-lists 0.2 GRUB gfxpayload blacklist
ii grub-pc 1.99~rc1-13ubuntu3 GRand Unified Bootloader, version 2 (PC/BIOS version)
ii gs-cjk-resource 1.20100103-2 Resource files for gs-cjk, ghostscript CJK-TrueType extension
ii gscan2pdf 0.9.31-2 A GUI to produce PDFs or DjVus from scanned documents
ii gsettings-desktop-schemas 3.0.0-0ubuntu1 GSettings deskop-wide schemas
ii gsfonts 1:8.11+urwcyr1.0.7~pre44-4.2ubuntu1 Fonts for the Ghostscript interpreter(s)
ii gsfonts-x11 0.21 Make Ghostscript fonts available to X11
ii gstreamer0.10-alsa 0.10.32-1ubuntu5 GStreamer plugin for ALSA
ii gstreamer0.10-ffmpeg 0.10.11-4 FFmpeg plugin for GStreamer
ii gstreamer0.10-fluendo-mp3 0.10.15.debian-1 Fluendo mp3 decoder GStreamer plugin
ii gstreamer0.10-gnonlin 0.10.17-1 non-linear editing module for GStreamer
ii gstreamer0.10-nice 0.1.0-2ubuntu1 ICE library (GStreamer plugin)
ii gstreamer0.10-plugins-bad 0.10.21-1ubuntu11 GStreamer plugins from the "bad" set
ii gstreamer0.10-plugins-base 0.10.32-1ubuntu5 GStreamer plugins from the "base" set
ii gstreamer0.10-plugins-base-apps 0.10.32-1ubuntu5 GStreamer helper programs from the "base" set
ii gstreamer0.10-plugins-good 0.10.28-0ubuntu7 GStreamer plugins from the "good" set
ii gstreamer0.10-plugins-ugly 0.10.17-1ubuntu2 GStreamer plugins from the "ugly" set
ii gstreamer0.10-pulseaudio 0.10.28-0ubuntu7 GStreamer plugin for PulseAudio
ii gstreamer0.10-tools 0.10.32-3ubuntu3.1 Tools for use with GStreamer
ii gstreamer0.10-x 0.10.32-1ubuntu5 GStreamer plugins for X11 and Pango
ii gtg 0.2.4-5 organizer for the GNOME desktop environment
ii gtk2-engines 1:2.20.2-0ubuntu1 theme engines for GTK+ 2.x
ii gtk2-engines-murrine 0.98.1.1-0ubuntu3 cairo-based gtk+-2.0 theme engine
ii gtk2-engines-pixbuf 2.24.4-0ubuntu2 Pixbuf-based theme for GTK+ 2.x
ii gtkpod 1.0.0-0ubuntu1 manage songs and playlists on an Apple iPod
ii gtkpod-data 1.0.0-0ubuntu1 architecture-independent files for gtkpod
ii gucharmap 1:2.32.1-0ubuntu2 Unicode character picker and font browser
ii guile-1.8-libs 1.8.7+1-3ubuntu3 Main Guile libraries
ii gvfs 1.8.0-0ubuntu3 userspace virtual filesystem - server
ii gvfs-backends 1.8.0-0ubuntu3 userspace virtual filesystem - backends
ii gvfs-fuse 1.8.0-0ubuntu3 userspace virtual filesystem - fuse server
ii gwibber 3.0.0.1-0ubuntu3 Open source social networking client for GNOME
ii gwibber-service 3.0.0.1-0ubuntu3 Open source social networking client for GNOME
ii gwibber-service-facebook 3.0.0.1-0ubuntu3 Facebook plugin for Gwibber
ii gwibber-service-identica 3.0.0.1-0ubuntu3 Identi.ca plugin for Gwibber
ii gwibber-service-twitter 3.0.0.1-0ubuntu3 Twitter plugin for Gwibber
ii gzip 1.3.12-9ubuntu1.1 GNU compression utilities
rc hal 0.5.14-5+svn1 Hardware Abstraction Layer
ii hdparm 9.32-1ubuntu3 tune hard disk parameters for high performance
ii hicolor-icon-theme 0.12-1ubuntu1 default fallback theme for FreeDesktop.org icon themes
ii hostname 3.05ubuntu1 utility to set/show the host name or domain name
ii hpijs 3.11.1-2ubuntu2 HP Linux Printing and Imaging - gs IJS driver (hpijs)
ii hplip 3.11.1-2ubuntu2 HP Linux Printing and Imaging System (HPLIP)
ii hplip-cups 3.11.1-2ubuntu2 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)
ii hplip-data 3.11.1-2ubuntu2 HP Linux Printing and Imaging - data files
ii humanity-icon-theme 0.5.3.10 Humanity Icon theme
ii hunspell-en-ca 1:3.3.0-2ubuntu2 English_canadian dictionary for hunspell
ii hunspell-en-us 20070829-4ubuntu1 English_american dictionary for hunspell
ii hwdata 0.230-1 hardware identification / configuration data
ii hyphen-en-us 2.7.1-4ubuntu1 US English hyphenation patterns for LibreOffice/OpenOffice.org
ii ia32-libs 20090808ubuntu13 ia32 shared libraries for use on amd64 and ia64 systems
ii ibus 1.3.9-0ubuntu3 New input method framework using dbus
ii ibus-gtk 1.3.9-0ubuntu3 New input method framework using dbus
ii ibus-pinyin 1.3.11-1 pinyin engine for ibus
ii ibus-pinyin-db-android 1.3.11-1 pinyin engine for ibus, android database
ii ibus-table 1.3.0.20100621-2 table engine for IBus
ii icedtea-6-jre-cacao 6b22-1.10.4-0ubuntu1~11.04.1 Alternative JVM for OpenJDK, using Cacao
ii icedtea-6-jre-jamvm 6b22-1.10.4-0ubuntu1~11.04.1 Alternative JVM for OpenJDK, using JamVM
ii icedtea-netx 1.1.1-0ubuntu1~11.04.2 NetX - implementation of the Java Network Launching Protocol (JNLP)
ii icoutils 0.29.1-0ubuntu1 Create and extract MS Windows icons and cursors
ii id3v2 0.1.12-2 A command line id3v2 tag editor
ii ifupdown 0.6.10ubuntu4 high level tools to configure network interfaces
ii ifuse 1.1.1-2 FUSE module for iPhone and iPod Touch devices
ii im-switch 1.20ubuntu3 Input method switch framework
ii imagemagick 7:6.6.2.6-1ubuntu4 image manipulation programs
ii indent 2.2.11-1 C language source code formatting program
ii indicator-applet 0.4.12-0ubuntu1 GNOME panel indicator applet
ii indicator-applet-appmenu 0.4.12-0ubuntu1 Clone of the GNOME panel indicator applet
ii indicator-applet-complete 0.4.12-0ubuntu1 Clone of the GNOME panel indicator applet
ii indicator-applet-session 0.4.12-0ubuntu1 Clone of the GNOME panel indicator applet
ii indicator-application 0.3.2-0ubuntu1 Application Indicators
ii indicator-appmenu 0.2.1-0ubuntu2 Indicator for application menus.
ii indicator-datetime 0.2.3-0ubuntu3 A very, very simple clock
ii indicator-me 0.2.19-0ubuntu1 indicator showing user information and status
ii indicator-messages 0.4.0-0ubuntu1 indicator that collects messages that need a response
ii indicator-session 0.2.17-0ubuntu1 An indicator showing session management, status and user switching.
ii indicator-sound 0.6.6.1-0ubuntu3 A system sound indicator.
ii info 4.13a.dfsg.1-6ubuntu3 Standalone GNU Info documentation browser
ii initramfs-tools 0.98.8ubuntu3.1 tools for generating an initramfs
ii initramfs-tools-bin 0.98.8ubuntu3.1 binaries used by initramfs-tools
ii initscripts 2.87dsf-4ubuntu23 scripts for initializing and shutting down the system
ii inputattach 20051019-12ubuntu1 utility to connect serial-attached peripherals to the input subsystem
ii insserv 1.14.0-2 Tool to organize boot sequence using LSB init.d script dependencies
ii install-info 4.13a.dfsg.1-6ubuntu3 Manage installed documentation in info format
ii intel-gpu-tools 1.0.2+git20100324-0ubuntu1 tools for debugging the Intel graphics driver
ii intltool-debian 0.35.0+20060710.1 Help i18n of RFC822 compliant config files
ii iozone3 373-2 Filesystem and Disk Benchmarking Tool
ii iproute 20100519-3 networking and traffic control tools
ii iptables 1.4.10-1ubuntu1 administration tools for packet filtering and NAT
ii iputils-arping 3:20100418-3ubuntu1 Tool to send ICMP echo requests to an ARP address
ii iputils-ping 3:20100418-3ubuntu1 Tools to test the reachability of network hosts
ii iputils-tracepath 3:20100418-3ubuntu1 Tools to trace the network path to a remote host
ii irqbalance 0.56-1ubuntu3 Daemon to balance interrupts for SMP systems
ii isc-dhcp-client 4.1.1-P1-15ubuntu9.3 ISC DHCP client
ii isc-dhcp-common 4.1.1-P1-15ubuntu9.3 common files used by all the isc-dhcp* packages
ii iso-codes 3.24-1 ISO language, territory, currency, script codes and their translations
ii isomaster 1.3.7-2 A graphical CD image editor
ii jarwrapper 0.32 Run executable Java .jar files
ii java-common 0.40ubuntu1 Base of all Java packages
ii jockey-common 0.9.2-0ubuntu5 user interface and desktop integration for driver management
ii jockey-gtk 0.9.2-0ubuntu5 GNOME user interface and desktop integration for driver management
ii junit 3.8.2-4 Automated testing framework for Java
ii junit4 4.8.2-2 JUnit regression test framework for Java
ii kbd 1.15-1ubuntu5 Linux console font and keytable utilities
ii kdebase-runtime 4:4.6.5-0ubuntu1 runtime components from the official KDE release
ii kdebase-runtime-data 4:4.6.5-0ubuntu1 shared data files for the KDE base runtime module
ii kdelibs-bin 4:4.6.5-0ubuntu1.1 core executables for KDE Applications
ii kdelibs5-data 4:4.6.5-0ubuntu1.1 core shared data for all KDE Applications
ii kdelibs5-plugins 4:4.6.5-0ubuntu1.1 core plugins for KDE Applications
ii kdoctools 4:4.6.5-0ubuntu1.1 various tools for accessing application documentation
ii kerneloops-daemon 0.12+git20090217-1ubuntu11 kernel oops tracker
ii keyboard-configuration 1.57ubuntu20 system-wide keyboard preferences
ii kigo 4:4.6.5-0ubuntu1 go game
ii klibc-utils 1.5.20-1ubuntu6 small utilities built with klibc for early boot
ii kubuntu-debug-installer 11.04ubuntu1 Debug package installer for Kubuntu
ii lacheck 1.26-12 A simple syntax checker for LaTeX
ii lame 3.98.4-0ubuntu1 An MP3 encoding library (frontend)
ii language-pack-en 1:11.04+20110607 translation updates for language English
ii language-pack-en-base 1:11.04+20110607 translations for language English
ii language-pack-gnome-en 1:11.04+20110607 GNOME translation updates for language English
ii language-pack-gnome-en-base 1:11.04+20110607 GNOME translations for language English
ii language-selector-common 0.34.2 Language selector for Ubuntu Linux
ii language-selector-gnome 0.34.2 Language selector for Ubuntu
ii language-support-en 1:9.10+20090909 metapackage for English language support
ii language-support-writing-en 1:10.04+20100311 Writing aids metapackage for English
ii laptop-detect 0.13.7ubuntu2 attempt to detect a laptop
ii latex-beamer 3.07-2ubuntu1 LaTeX class to produce presentations
ii latex-xcolor 2.11-1 Easy driver-independent TeX class for color
ii launchpad-integration 0.1.51 launchpad integration
ii lcov 1.9-2 Summarise Code coverage information from GCOV
ii less 436-1 pager program similar to more
ii lftp 4.0.9-2 Sophisticated command-line FTP/HTTP client programs
ii lib32asound2 1.0.24.1-0ubuntu5 shared library for ALSA applications (32 bit)
ii lib32bz2-1.0 1.0.5-6ubuntu1.11.04.1 high-quality block-sorting file compressor library - 32bit runtime
ii lib32gcc1 1:4.5.2-8ubuntu4 GCC support library (32 bit Version)
ii lib32ncurses5 5.7+20101128-1 shared libraries for terminal handling (32-bit)
ii lib32ncursesw5 5.7+20101128-1 shared libraries for terminal handling (wide character support) (32-bit)
ii lib32stdc++6 4.5.2-8ubuntu4 The GNU Standard C++ Library v3 (32 bit Version)
ii lib32v4l-0 0.8.3-1 Collection of video4linux support libraries (32 bits)
ii lib32z1 1:1.2.3.4.dfsg-3ubuntu3 compression library - 32 bit runtime
ii liba52-0.7.4 0.7.4-14ubuntu2 library for decoding ATSC A/52 streams
ii libaa1 1.4p5-38build1 ascii art library
ii libaccess-bridge-java 1.26.2-5 Java Access Bridge for GNOME
ii libaccess-bridge-java-jni 1.26.2-5 Java Access Bridge for GNOME (jni bindings)
ii libacl1 2.2.49-4ubuntu2 Access control list shared library
ii libalgorithm-diff-perl 1.19.02-2 module to find differences between files
ii libalgorithm-diff-xs-perl 0.04-1 module to find differences between files (XS accelerated)
ii libalgorithm-merge-perl 0.08-2 Perl module for three-way merge of textual data
ii libao-common 1.0.0-5 Cross Platform Audio Output Library (Common files)
ii libao4 1.0.0-5 Cross Platform Audio Output Library
ii libapparmor-perl 2.6.1-0ubuntu3 AppArmor library Perl bindings
ii libapparmor1 2.6.1-0ubuntu3 changehat AppArmor library
ii libappindicator0.1-cil 0.3.0-0ubuntu1 CLI bindings for libappindicator
ii libappindicator1 0.3.0-0ubuntu1 Application Indicators
ii libapr1 1.4.2-7ubuntu2.1 The Apache Portable Runtime Library
ii libaprutil1 1.3.9+dfsg-5ubuntu3 The Apache Portable Runtime Utility Library
ii libapt-pkg-perl 0.1.24build1 Perl interface to libapt-pkg
ii libarchive1 2.8.4-1ubuntu0.11.04.1 Single library to read/write tar, cpio, pax, zip, iso9660, etc.
ii libart-2.0-2 2.3.21-1 Library of functions for 2D graphics - runtime files
ii libart2.0-cil 2.24.2-0ubuntu1 CLI binding for libart 2.3
ii libasm3-java 3.2-3ubuntu1 Java bytecode manipulation framework
ii libasound2 1.0.24.1-0ubuntu5 shared library for ALSA applications
ii libasound2-plugins 1.0.24-0ubuntu2 ALSA library additional plugins
ii libaspell15 0.60.6-6 GNU Aspell spell-checker runtime library
ii libass4 0.9.11-1 library for SSA/ASS subtitles rendering
ii libatasmart4 0.17+git20100219-3 ATA S.M.A.R.T. reading and parsing library
ii libatk1.0-0 2.0.0-0ubuntu1 The ATK accessibility toolkit
ii libatk1.0-data 2.0.0-0ubuntu1 Common files for the ATK accessibility toolkit
ii libatkmm-1.6-1 2.22.5-0ubuntu1 C++ wrappers for ATK accessibility toolkit (shared libraries)
ii libatm1 1:2.5.1-1.2build1 shared library for ATM (Asynchronous Transfer Mode)
ii libatspi1.0-0 1.32.0-0ubuntu2 C binding libraries of at-spi for GNOME Accessibility
ii libattica0 0.2.80-0ubuntu2 a Qt library that implements the Open Collaboration Services API
ii libattr1 1:2.4.44-2ubuntu3 Extended attribute shared library
ii libaudio2 1.9.2-4ubuntu1 Network Audio System - shared libraries
ii libaudiofile0 0.2.6-8ubuntu1 Open-source version of SGI's audiofile library
ii libavahi-client3 0.6.30-0ubuntu2 Avahi client library
ii libavahi-common-data 0.6.30-0ubuntu2 Avahi common data files
ii libavahi-common3 0.6.30-0ubuntu2 Avahi common library
ii libavahi-core7 0.6.30-0ubuntu2 Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1 0.6.30-0ubuntu2 Avahi glib integration library
ii libavahi-gobject0 0.6.30-0ubuntu2 Avahi GObject library
ii libavahi-ui0 0.6.30-0ubuntu2 Avahi GTK+ User interface library
ii libavc1394-0 0.5.3-1build4 control IEEE 1394 audio/video devices
ii libavcodec52 4:0.6.4-0ubuntu0.11.04.1 Libav codec library
ii libavdevice52 4:0.6.4-0ubuntu0.11.04.1 Libav device handling library
ii libavfilter1 4:0.6.4-0ubuntu0.11.04.1 Libav video filtering library
ii libavformat52 4:0.6.4-0ubuntu0.11.04.1 Libav file format library
ii libavutil50 4:0.6.4-0ubuntu0.11.04.1 Libav utility library
ii libbabl-0.0-0 0.0.22-1build1 Dynamic, any to any, pixel format conversion library
ii libbamf0 0.2.90-0ubuntu3 Window matching library - shared library
rc libbfb0 0.23-1build1 bfb protocol library
ii libbind9-60 1:9.7.3.dfsg-1ubuntu2.3 BIND9 Shared Library used by BIND
ii libblkid1 2.17.2-9.1ubuntu4 block device id library
ii libbluetooth3 4.91-0ubuntu1 Library to use the BlueZ Linux Bluetooth stack
ii libbonobo2-0 2.32.1-0ubuntu1 Bonobo CORBA interfaces library
ii libbonobo2-common 2.32.1-0ubuntu1 Bonobo CORBA interfaces library -- support files
ii libbonoboui2-0 2.24.5-0ubuntu1 The Bonobo UI library
ii libbonoboui2-common 2.24.5-0ubuntu1 The Bonobo UI library -- common files
ii libboost-date-time1.42.0 1.42.0-4ubuntu2 set of date-time libraries based on generic programming concepts
ii libboost-iostreams1.42.0 1.42.0-4ubuntu2 Boost.Iostreams Library
ii libboost-program-options1.42.0 1.42.0-4ubuntu2 program options library for C++
ii libboost-python1.42.0 1.42.0-4ubuntu2 Boost.Python Library
ii libboost-serialization1.42.0 1.42.0-4ubuntu2 serialization library for C++
ii libboost-thread1.42.0 1.42.0-4ubuntu2 portable C++ multi-threading
ii libbrasero-media1 2.32.1-0ubuntu2 CD/DVD burning library for GNOME - runtime
ii libbrlapi0.5 4.2-8ubuntu2 braille display access via BRLTTY - shared library
ii libbsd0 0.2.0-1 utility functions from BSD systems - shared library
ii libburn4 0.8.0.pl00-2 library to provide CD/DVD writing functions
ii libbz2-1.0 1.0.5-6ubuntu1.11.04.1 high-quality block-sorting file compressor library - runtime
ii libc-bin 2.13-0ubuntu13 Embedded GNU C Library: Binaries
ii libc-dev-bin 2.13-0ubuntu13 Embedded GNU C Library: Development binaries
ii libc6 2.13-0ubuntu13 Embedded GNU C Library: Shared libraries
ii libc6-dbg 2.13-0ubuntu13 Embedded GNU C Library: detached debugging symbols
ii libc6-dev 2.13-0ubuntu13 Embedded GNU C Library: Development Libraries and Header Files
ii libc6-i386 2.13-0ubuntu13 Embedded GNU C Library: 32-bit shared libraries for AMD64
ii libcaca0 0.99.beta17-1 colour ASCII art library
ii libcairo-gobject2 1.10.2-2ubuntu2 The Cairo 2D vector graphics library (GObject library)
ii libcairo-perl 1.070-1ubuntu1 Perl interface to the Cairo graphics library
ii libcairo2 1.10.2-2ubuntu2 The Cairo 2D vector graphics library
ii libcairomm-1.0-1 1.9.8-0ubuntu1 C++ wrappers for Cairo (shared libraries)
ii libcamel1.2-19 2.32.2-0ubuntu2 The Evolution MIME message handling library
ii libcanberra-gtk-module 0.28-0ubuntu3 translates Gtk+ widgets signals to event sounds
ii libcanberra-gtk0 0.28-0ubuntu3 Gtk+ helper for playing widget event sounds with libcanberra
ii libcanberra-pulse 0.28-0ubuntu3 PulseAudio backend for libcanberra
ii libcanberra0 0.28-0ubuntu3 a simple abstract interface for playing event sounds
ii libcap-ng0 0.6.5-1 An alternate POSIX capabilities library
ii libcap2 1:2.20-1 support for getting/setting POSIX.1e capabilities
ii libcdaudio1 0.99.12p2-9 library for controlling a CD-ROM when playing audio CDs
ii libcdio-cdda0 0.81-4build1 library to read and control digital audio CDs
ii libcdio-paranoia0 0.81-4build1 library to read digital audio CDs with error correction
ii libcdio10 0.81-4build1 library to read and control CD-ROM
ii libcdparanoia0 3.10.2+debian-10 audio extraction tool for sampling CDs (library)
ii libcdt4 2.26.3-5ubuntu1 rich set of graph drawing tools - cdt library
ii libcelt0-0 0.7.1-1 The CELT codec runtime library
ii libchm1 2:0.40-3 library for dealing with Microsoft CHM files
ii libck-connector0 0.4.4-1 ConsoleKit libraries
ii libclass-accessor-perl 0.34-1 Perl module that automatically generates accessors
ii libcloog-ppl0 0.15.9-2 the Chunky Loop Generator (runtime library)
ii libclucene0ldbl 0.9.21b-2 library for full-featured text search engine (runtime)
ii libclutter-1.0-0 1.6.14-0ubuntu3 Open GL based interactive canvas library
ii libclutter-1.0-common 1.6.14-0ubuntu3 Open GL based interactive canvas library
ii libcolamd2.7.1 1:3.4.0-2ubuntu2 column approximate minimum degree ordering library for sparse matrices
ii libcomerr2 1.41.14-1ubuntu3 common error description library
ii libcommons-beanutils-java 1.8.3-1 utility for manipulating JavaBeans
ii libcommons-codec-java 1.4-2 encoder and decoders such as Base64 and hexadecimal codec
ii libcommons-collections3-java 3.2.1-4 A set of abstract data type interfaces and implementations
ii libcommons-compress-java 1.0-1 Java API for working with tar, zip and bzip2 files
ii libcommons-digester-java 1.8.1-2 Rule based XML Java object mapping tool
ii libcommons-el-java 1.0-6 Implementation of the JSP2.0 Expression Language interpreter
ii libcommons-httpclient-java 3.1-9 A Java(TM) library for creating HTTP clients
ii libcommons-logging-java 1.1.1-8 commmon wrapper interface for several logging APIs
ii libcompizconfig0 0.9.4-0ubuntu2 Settings library for plugins - OpenCompositing Project
ii libconfig-general-perl 2.48-1 Generic Configuration Module
ii libcroco3 0.6.2-1 a generic Cascading Style Sheet (CSS) parsing and manipulation toolkit
ii libcrypt-passwdmd5-perl 1.3-9 interoperable MD5-based crypt() for perl
ii libcrypto++8 5.6.0-6 General purpose cryptographic library - shared library
ii libcryptui0 2.32.0-0ubuntu3 the UI library for DBUS functions exported by seahorse
ii libcups2 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - Core library
ii libcupscgi1 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - CGI library
ii libcupsdriver1 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - Driver library
ii libcupsimage2 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - Raster image library
ii libcupsmime1 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - MIME library
ii libcupsppdc1 1.4.6-5ubuntu1.4 Common UNIX Printing System(tm) - PPD manipulation library
ii libcurl3 7.21.3-1ubuntu1.3 Multi-protocol file transfer library (OpenSSL)
ii libcurl3-gnutls 7.21.3-1ubuntu1.3 Multi-protocol file transfer library (GnuTLS)
ii libcwidget3 0.5.16-3ubuntu2 high-level terminal interface library for C++ (runtime files)
ii libdaemon0 0.14-2 lightweight C library for daemons - runtime library
ii libdatrie1 0.2.4-1 Double-array trie library
ii libdb-je-java 3.3.62-3 Oracle Berkeley Database Java Edition
ii libdb4.7-java 4.7.25-10ubuntu1 Berkeley v4.7 Database Libraries for Java
ii libdb4.7-java-gcj 4.7.25-10ubuntu1 Berkeley v4.7 Database Libraries for Java (native code)
ii libdb4.8 4.8.30-5ubuntu2 Berkeley v4.8 Database Libraries [runtime]
ii libdbus-1-3 1.4.6-1ubuntu6.1 simple interprocess messaging system
ii libdbus-glib-1-2 0.92-0ubuntu1 simple interprocess messaging system (GLib-based shared library)
ii libdbusmenu-glib3 0.4.3-0ubuntu4 library for passing menus over DBus
ii libdbusmenu-gtk3 0.4.3-0ubuntu4 library for passing menus over DBus - GTK+ version
ii libdbusmenu-qt2 0.8.2-0ubuntu2 a Qt library that implements the DBusMenu spec
ii libdc1394-22 2.1.2-3ubuntu3 high level programming interface for IEEE1394 digital camera
ii libdca0 0.0.5-3 decoding library for DTS Coherent Acoustics streams
ii libdconf0 0.7.3-0ubuntu1 Simple key-based configuration system
ii libdecoration0 1:0.9.4+bzr20110606-0ubuntu1~natty2 Compiz window decoration library
ii libdee-1.0-1 0.5.18-0ubuntu1 model to synchronize mutiple instances over DBus - shared lib
ii libdevmapper-event1.02.1 2:1.02.48-4ubuntu2 The Linux Kernel Device Mapper userspace library
ii libdevmapper1.02.1 2:1.02.48-4ubuntu2 The Linux Kernel Device Mapper userspace library
ii libdigest-hmac-perl 1.01-7 create standard message integrity checks
ii libdigest-sha1-perl 2.13-1 NIST SHA-1 message digest algorithm
ii libdirac-encoder0 1.0.2-3ubuntu1 open and royalty free high quality codec - encoder library
ii libdirectfb-1.2-9 1.2.10.0-4ubuntu2 direct frame buffer graphics - shared libraries
ii libdjvulibre-text 3.5.23-3ubuntu2 Linguistic support files for libdjvulibre
ii libdjvulibre21 3.5.23-3ubuntu2 Runtime support for the DjVu image format
ii libdns69 1:9.7.3.dfsg-1ubuntu2.3 DNS Shared Library used by BIND
ii libdotconf1.0 1.0.13-3 Configuration file parser library - runtime files
ii libdpkg-perl 1.16.0~ubuntu7.1 Dpkg perl modules
ii libdrm-intel1 2.4.23-1ubuntu6 Userspace interface to intel-specific kernel DRM services -- runtime
ii libdrm-nouveau1a 2.4.23-1ubuntu6 Userspace interface to nouveau-specific kernel DRM services -- runtime
ii libdrm-radeon1 2.4.23-1ubuntu6 Userspace interface to radeon-specific kernel DRM services -- runtime
ii libdrm2 2.4.23-1ubuntu6 Userspace interface to kernel DRM services -- runtime
ii libdv4 1.0.0-2.1ubuntu1 software library for DV format digital video (runtime lib)
ii libdvdnav4 4.1.3-7 DVD navigation library
ii libdvdread4 4.1.3-10ubuntu3 library for reading DVDs
ii libebackend1.2-0 2.32.2-0ubuntu2 Utility library for evolution data servers
ii libebook1.2-10 2.32.2-0ubuntu2 Client library for evolution address books
ii libecal1.2-8 2.32.2-0ubuntu2 Client library for evolution calendars
ii libecj-java 3.5.1-1ubuntu3 Eclipse Java compiler (library)
ii libedata-book1.2-8 2.32.2-0ubuntu2 Backend library for evolution address books
ii libedata-cal1.2-10 2.32.2-0ubuntu2 Backend library for evolution calendars
ii libedataserver1.2-14 2.32.2-0ubuntu2 Utility library for evolution data servers
ii libedataserverui1.2-11 2.32.2-0ubuntu2 GUI utility library for evolution data servers
ii libedit2 2.11-20080614-2 BSD editline and history libraries
ii libegroupwise1.2-13 2.32.2-0ubuntu2 Client library for accessing groupwise POA through SOAP interface
ii libelf1 0.148-1ubuntu1 library to read and write ELF files
ii libelfg0 0.8.13-1 an ELF object file access library
ii libemail-valid-perl 0.184-1 Perl module for checking the validity of Internet email addresses
ii libenca0 1.13-3 Extremely Naive Charset Analyser - shared library files
ii libenchant1c2a 1.6.0-2 a wrapper library for various spell checker engines
ii libept1 1.0.4 High-level library for managing Debian package information
ii libequinox-osgi-java 3.5.2-8ubuntu3 Equinox OSGi framework
ii liberror-perl 0.17-1 Perl module for error/exception handling in an OO-ish way
ii libesd0 0.2.41-8 Enlightened Sound Daemon - Shared libraries
ii libespeak1 1.44.05-1ubuntu1 A multi-lingual software speech synthesizer: shared library
ii libestools2.0 1:2.0.95~beta-2 Edinburgh Speech Tools Library
ii libevdocument3 2.32.0-0ubuntu12.3 GNOME document viewer backend library
ii libevent-1.4-2 1.4.13-stable-1 An asynchronous event notification library
ii libevolution 2.32.2-0ubuntu7 evolution libraries
ii libevview3 2.32.0-0ubuntu12.3 GNOME document viewer view library
ii libexempi3 2.1.1-1build2 library to parse XMP metadata (Library)
ii libexif12 0.6.20-0ubuntu1 library to parse EXIF files
ii libexiv2-10 0.21.1-0ubuntu2 EXIF/IPTC metadata manipulation library
ii libexpat1 2.0.1-7ubuntu3 XML parsing C library - runtime library
ii libextutils-depends-perl 0.301-1 Perl module for building extensions that depend on other extensions
ii libextutils-pkgconfig-perl 1.12-1 simplistic perl interface to pkg-config
ii libfaac0 1.26-0.1ubuntu2 an AAC audio encoder - library files
ii libfaad2 2.7-6ubuntu1 freeware Advanced Audio Decoder - runtime files
ii libffi-dev 3.0.9-3ubuntu1 Foreign Function Interface library (development files)
ii libffi5 3.0.9-3ubuntu1 Foreign Function Interface library runtime
ii libfftw3-3 3.2.2-1 library for computing Fast Fourier Transforms
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-2 Perl module to handle freedesktop .desktop files
ii libfile-mimeinfo-perl 0.15-1 Perl module to determine file types
ii libflac8 1.2.1-3 Free Lossless Audio Codec - runtime C library
ii libflite1 1.4-release-2 a small run-time speech synthesis engine - shared libraries
ii libfolks-telepathy22 0.4.2-0ubuntu1 Telepathy backend for libfolks
ii libfolks22 0.4.2-0ubuntu1 library to aggregates people into metacontacts
ii libfont-afm-perl 1.20-1 Font::AFM - Interface to Adobe Font Metrics files
ii libfontconfig1 2.8.0-2.1ubuntu3 generic font configuration library - runtime
ii libfontenc1 1:1.1.0-1 X11 font encoding library
ii libfontforge1 0.0.20100501-5ubuntu2 font editor - runtime library
rc libfprint0 1:0.4.0+git20111004-0ppa1~natty1 fingerprint library of fprint project, shared libraries
ii libfreetype6 2.4.4-1ubuntu2.2 FreeType 2 font engine, shared library files
ii libfreezethaw-perl 0.5001-1 module to serialize and deserialize Perl data structures
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.4-1.1ubuntu4 Filesystem in USErspace library
ii libgadu3 1:1.10.1-1 Gadu-Gadu protocol library - runtime files
ii libgail-common 2.24.4-0ubuntu2 GNOME Accessibility Implementation Library -- common modules
ii libgail-gnome-module 1.20.3-1 GNOME Accessibility Implementation Module for GnomeUI/BonoboUI
ii libgail18 2.24.4-0ubuntu2 GNOME Accessibility Implementation Library -- shared libraries
ii libgamin0 0.1.10-2ubuntu1 Client library for the gamin file and directory monitoring system
ii libgcc1 1:4.5.2-8ubuntu4 GCC support library
ii libgcj-bc 4.5.2-1ubuntu3 Link time only library for use with gcj
ii libgcj-common 1:4.5.2-1ubuntu3 Java runtime library (common files)
ii libgcj11 4.5.2-8ubuntu1 Java runtime library for use with gcj
ii libgconf2-4 2.32.2-0ubuntu2 GNOME configuration database system (shared libraries)
ii libgconf2.0-cil 2.24.2-0ubuntu1 CLI binding for GConf 2.24
ii libgconfmm-2.6-1c2 2.28.0-1 C++ wrappers for GConf (shared library)
ii libgcr0 2.92.92.is.2.32.1-0ubuntu2.1 Library for Crypto UI related task - runtime
ii libgcrypt11 1.4.6-4ubuntu2 LGPL Crypto library - runtime library
ii libgd-gd2-perl 1:2.41-1 Perl module wrapper for libgd - gd2 variant
ii libgd2-xpm 2.0.36~rc1~dfsg-5ubuntu2 GD Graphics Library version 2
ii libgdata-common 0.8.0-0ubuntu1 Library for accessing GData webservices - common data files
ii libgdata1.7-cil 1.7.0.1-1 Google GData CLI client library
ii libgdata11 0.8.0-0ubuntu1 Library for accessing GData webservices - shared libraries
ii libgdbm3 1.8.3-9ubuntu1 GNU dbm database routines (runtime version)
ii libgdk-pixbuf2.0-0 2.23.3-0ubuntu1 GDK Pixbuf library
ii libgdraw4 0.0.20100501-5ubuntu2 font editor - runtime graphics and widget library
ii libgdu-gtk0 2.32.1-0ubuntu4 GTK+ standard dialog library for libgdu
ii libgdu0 2.32.1-0ubuntu4 GObject based Disk Utility Library
ii libgee2 0.6.1-0ubuntu1 GObject based collection library
ii libgegl-0.0-0 0.0.22-2ubuntu2 Generic Graphics Library
ii libgeoclue0 0.12.0-1ubuntu8 C API for GeoClue
ii libgeoip1 1.4.7~beta6+dfsg-1 A non-DNS IP-to-country resolver library
ii libgexiv2-0 0.3.1-0ubuntu1 GObject-based wrapper around the Exiv2 library
ii libgif4 4.1.6-9 library for GIF images (library)
ii libgimp2.0 2.6.11-1ubuntu6.2 Libraries for the GNU Image Manipulation Program
ii libgirepository-1.0-1 0.10.7-0ubuntu1 Library for handling GObject introspection data (runtime library)
ii libgkeyfile1.0-cil 0.1-2ubuntu1 GObject-based wrapper library for GKeyFile -- CLI bindings
ii libgksu2-0 2.0.13~pre1-3ubuntu3.1 library providing su and sudo functionality
ii libgl1-mesa-dri 7.10.2-0ubuntu2 A free implementation of the OpenGL API -- DRI modules
ii libgl1-mesa-glx 7.10.2-0ubuntu2 A free implementation of the OpenGL API -- GLX runtime
ii libglade2-0 1:2.6.4-1build1 library to load .glade files at runtime
ii libglade2.0-cil 2.12.10-1ubuntu1 CLI binding for the Glade libraries 2.6
ii libglademm-2.4-1c2a 2.6.7-2build1 C++ wrappers for libglade2 (shared library)
ii libgladeui-1-11 3.8.0-0ubuntu1 GTK+ User Interface Build core library
ii libglew1.5 1.5.7.is.1.5.2-1ubuntu2 The OpenGL Extension Wrangler - runtime environment
ii libglewmx1.5 1.5.7.is.1.5.2-1ubuntu2 The OpenGL Extension Wrangler - runtime environment
ii libglib-perl 2:1.223-1 interface to the GLib and GObject libraries
ii libglib2.0-0 2.28.6-0ubuntu1 The GLib library of C routines
ii libglib2.0-bin 2.28.6-0ubuntu1 The programs for the GLib library
ii libglib2.0-cil 2.12.10-1ubuntu1 CLI binding for the GLib utility library 2.12
ii libglib2.0-data 2.28.6-0ubuntu1 Common files for GLib library
ii libglibmm-2.4-1c2a 2.28.0-1 C++ wrapper for the GLib toolkit (shared libraries)
ii libglu1-mesa 7.10.2-0ubuntu2 The OpenGL utility library (GLU)
ii libgme0 0.5.5-2 Playback library for video game music files - shared library
ii libgmime-2.4-2 2.4.24-0ubuntu1 MIME message parser and creator library - runtime
ii libgmime2.4-cil 2.4.24-0ubuntu1 CLI binding for the GMime library
ii libgmp3c2 2:4.3.2+dfsg-1ubuntu3 Multiprecision arithmetic library
ii libgmpxx4ldbl 2:4.3.2+dfsg-1ubuntu3 Multiprecision arithmetic library (C++ bindings)
rc libgnokii6 0.6.29.dfsg-1ubuntu1 Gnokii mobile phone interface library
ii libgnome-bluetooth8 2.91.2.is.2.32.0-0ubuntu3 GNOME Bluetooth tools - support library
ii libgnome-desktop-2-17 1:2.32.1-0ubuntu6 Utility library for loading .desktop files - runtime files
ii libgnome-keyring0 2.32.0-1ubuntu2 GNOME keyring services library
ii libgnome-mag2 1:0.16.3-0ubuntu2 screen magnification library for the GNOME desktop (shared library)
ii libgnome-media0 2.32.0-0ubuntu7 runtime libraries for the GNOME media utilities
ii libgnome-menu2 2.30.5-0ubuntu3 an implementation of the freedesktop menu specification for GNOME
ii libgnome-vfs2.0-cil 2.24.2-0ubuntu1 CLI binding for GnomeVFS 2.24
ii libgnome-window-settings1 1:2.32.1-0ubuntu15 Utility library for getting window manager settings
ii libgnome2-0 2.32.1-0ubuntu3 The GNOME library - runtime files
ii libgnome2-common 2.32.1-0ubuntu3 The GNOME library - common files
ii libgnome2.24-cil 2.24.2-0ubuntu1 CLI binding for GNOME 2.24
ii libgnomecanvas2-0 2.30.3-0ubuntu1 A powerful object-oriented display - runtime files
ii libgnomecanvas2-common 2.30.3-0ubuntu1 A powerful object-oriented display - common files
ii libgnomekbd-common 2.32.0-0ubuntu1 GNOME library to manage keyboard configuration - common files
ii libgnomekbd4 2.32.0-0ubuntu1 GNOME library to manage keyboard configuration - shared library
ii libgnomeui-0 2.24.5-0ubuntu1 The GNOME libraries (User Interface) - runtime files
ii libgnomeui-common 2.24.5-0ubuntu1 The GNOME libraries (User Interface) - common files
ii libgnomevfs2-0 1:2.24.4-0ubuntu4 GNOME Virtual File System (runtime libraries)
ii libgnomevfs2-common 1:2.24.4-0ubuntu4 GNOME Virtual File System (common files)
ii libgnutls26 2.8.6-1ubuntu2 the GNU TLS library - runtime library
ii libgomp1 4.5.2-8ubuntu4 GCC OpenMP (GOMP) support library
ii libgoo-canvas-perl 0.06-1 Perl interface to the GooCanvas
ii libgoocanvas-common 0.15-1 translations for goocanvas
ii libgoocanvas3 0.15-1 canvas widget for GTK+ that uses the cairo 2D library
ii libgp11-0 2.92.92.is.2.32.1-0ubuntu2.1 Glib wrapper library for PKCS#11 - runtime
ii libgpds0 1.5.1-4 library for configuration of pointing devices
ii libgpg-error0 1.10-0.2ubuntu1 library for common error values and messages in GnuPG components
ii libgpgme11 1.2.0-1.2ubuntu5 GPGME - GnuPG Made Easy
ii libgphoto2-2 2.4.10.1-2ubuntu5 gphoto2 digital camera library
ii libgphoto2-port0 2.4.10.1-2ubuntu5 gphoto2 digital camera port library
ii libgpm2 1.20.4-3.3ubuntu1 General Purpose Mouse - shared library
ii libgpod-common 0.8.0-2ubuntu0.1 common files for libgpod
ii libgpod4 0.8.0-2ubuntu0.1 library to read and write songs and artwork to an iPod
ii libgraph4 2.26.3-5ubuntu1 rich set of graph drawing tools - graph library
ii libgraphicsmagick++3 1.3.12-1 format-independent image processing - C++ shared library
ii libgraphicsmagick3 1.3.12-1 format-independent image processing - C shared library
ii libgraphite3 1:2.3.1-0.2 SILGraphite - a "smart font" rendering engine
ii libgs9 9.01~dfsg-1ubuntu5 interpreter for the PostScript language and for PDF - Library
ii libgs9-common 9.01~dfsg-1ubuntu5 interpreter for the PostScript language and for PDF - common files
ii libgsasl7 1.4.4-2ubuntu1 GNU SASL library
rc libgsf-1-114 1.14.19-2 Structured File Library - runtime version
ii libgsl0ldbl 1.14+dfsg-1 GNU Scientific Library (GSL) -- library package
ii libgsm1 1.0.13-3 Shared libraries for GSM speech compressor
ii libgssapi-krb5-2 1.8.3+dfsg-5ubuntu2.2 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgssdp-1.0-2 0.8.2-1 GObject-based library for SSDP
ii libgstfarsight0.10-0 0.0.26-1ubuntu1 Audio/Video communications framework: core library
ii libgstreamer-plugins-base0.10-0 0.10.32-1ubuntu5 GStreamer libraries from the "base" set
ii libgstreamer0.10-0 0.10.32-3ubuntu3.1 Core GStreamer libraries and elements
ii libgtk-sharp-beans-cil 2.14.1-1 Supplementary CLI bindings for GTK 2.14+
ii libgtk-vnc-1.0-0 0.4.3-0ubuntu3 A VNC viewer widget for GTK+ (runtime libraries)
ii libgtk2-ex-podviewer-perl 0.18-1 Perl Gtk2 widget for displaying Plain Old Documentation (POD)
ii libgtk2-ex-simple-list-perl 0.50-2 simple interface to Gtk2's complex MVC list widget
ii libgtk2-imageview-perl 0.05-1 Perl bindings for the GtkImageView image viewer widget
ii libgtk2-perl 2:1.223-1 Perl interface to the 2.x series of the Gimp Toolkit library
ii libgtk2.0-0 2.24.4-0ubuntu2 The GTK+ graphical user interface library
ii libgtk2.0-bin 2.24.4-0ubuntu2 The programs for the GTK+ graphical user interface library
ii libgtk2.0-cil 2.12.10-1ubuntu1 CLI binding for the GTK+ toolkit 2.12
ii libgtk2.0-common 2.24.4-0ubuntu2 Common files for the GTK+ graphical user interface library
ii libgtkglext1 1.2.0-1.1ubuntu1 OpenGL Extension to GTK+ (shared libraries)
ii libgtkhtml-editor-common 1:3.32.2-0ubuntu1 HTML rendering/editing library - editor widget data
ii libgtkhtml-editor0 1:3.32.2-0ubuntu1 HTML rendering/editing library - editor widget
ii libgtkhtml3.14-19 1:3.32.2-0ubuntu1 HTML rendering/editing library - runtime files
ii libgtkimageview0 1.6.4-1 image viewer widget for GTK+
ii libgtkmm-2.4-1c2a 1:2.24.0-0ubuntu1 C++ wrappers for GTK+ (shared libraries)
ii libgtksourceview2.0-0 2.10.5-0ubuntu3 shared libraries for the GTK+ syntax highlighting widget
ii libgtksourceview2.0-common 2.10.5-0ubuntu3 common files for the GTK+ syntax highlighting widget
ii libgtkspell0 2.0.16-1 a spell-checking addon for GTK's TextView widget
ii libgtop2-7 2.28.3-0ubuntu1 gtop system monitoring library (shared)
ii libgtop2-common 2.28.3-0ubuntu1 gtop system monitoring library (common)
ii libgucharmap7 1:2.32.1-0ubuntu2 Unicode browser widget library (shared library)
ii libgudev-1.0-0 1:167-0ubuntu3 GObject-based wrapper library for libudev
ii libgudev1.0-cil 0.1-2 GObject-based wrapper library for libudev -- CLI bindings
ii libgupnp-1.0-3 0.14.1-1 GObject-based library for UPnP
ii libgupnp-igd-1.0-3 0.1.7-3 library to handle UPnP IGD port mapping
ii libgutenprint2 5.2.6-1ubuntu1 runtime for the Gutenprint printer driver library
ii libgvc5 2.26.3-5ubuntu1 rich set of graph drawing tools - gvc library
ii libgvfscommon0 1.8.0-0ubuntu3 userspace virtual filesystem - library
ii libgweather-common 2.30.3-1ubuntu1 GWeather common files
ii libgweather1 2.30.3-1ubuntu1 GWeather shared library
ii libgwibber1 0.1.1-0ubuntu1 Gwibber - shared library
rc libhal-storage1 0.5.14-5+svn1 Hardware Abstraction Layer - shared library for storage devices
rc libhal1 0.5.14-5+svn1 Hardware Abstraction Layer - shared library
ii libhamcrest-java 1.1-8 library of matchers for building test expressions
ii libhpmud0 3.11.1-2ubuntu2 HP Multi-Point Transport Driver (hpmud) run-time libraries
ii libhtml-format-perl 2.04-2 format HTML syntax trees into text, PostScript or RTF
ii libhtml-parser-perl 3.68-1 collection of modules that parse HTML text documents
ii libhtml-tagset-perl 3.20-2 Data tables pertaining to HTML
ii libhtml-tree-perl 4.1-1 Perl module to represent and create HTML syntax trees
ii libhunspell-1.2-0 1.2.14-4 spell checker and morphological analyzer (shared library)
ii libhyphen0 2.7.1-4ubuntu1 ALTLinux hyphenation library - shared library
ii libibus2 1.3.9-0ubuntu3 New input method framework using dbus
ii libical0 0.44-3 iCalendar library implementation in C (runtime)
ii libice-dev 2:1.0.7-1ubuntu1 X11 Inter-Client Exchange library (development headers)
ii libice6 2:1.0.7-1ubuntu1 X11 Inter-Client Exchange library
ii libicu-dev 4.4.2-2 Development files for International Components for Unicode
ii libicu44 4.4.2-2 International Components for Unicode
ii libicu4j-java 4.0.1.1-1 Library for unicode support and internalisation
ii libid3-3.8.3c2a 3.8.3-13ubuntu1 A library for manipulating ID3v1 and ID3v2 tags
ii libid3tag0 0.15.1b-10build2 ID3 tag reading library from the MAD project
ii libidl0 0.8.14-0.1ubuntu1 library for parsing CORBA IDL files
ii libidn11 1.18-1build1 GNU Libidn library, implementation of IETF IDN specifications
ii libido-0.1-0 0.2.2-0ubuntu1 Shared library providing extra gtk menu items for display in
ii libiec61883-0 1.2.0-0.1build1 an partial implementation of IEC 61883
ii libieee1284-3 0.2.11-5ubuntu4 cross-platform library for parallel port access
ii libijs-0.35 0.35-7ubuntu1 IJS raster image transport protocol: shared library
ii libilmbase6 1.0.1-3build2 several utility libraries from ILM used by OpenEXR
ii libimobiledevice2 1.1.0-3 Library for communicating with the iPhone and iPod Touch
ii libindicate-gtk2 0.5.0-0ubuntu2 library for raising indicators via DBus - GTK bindings
ii libindicate5 0.5.0-0ubuntu2 library for raising indicators via DBus
ii libindicator3 0.3.22-0ubuntu1 panel indicator applet - shared library
ii libio-pty-perl 1:1.08-1 Perl module for pseudo tty IO
ii libio-string-perl 1.08-2 Emulate IO::File interface for in-core strings
ii libio-stringy-perl 2.110-4 Perl modules for IO from scalars and arrays
ii libiodbc2 3.52.6-4ubuntu1 iODBC Driver Manager
ii libipc-run-perl 0.89-1 Perl module for running processes
ii libisc62 1:9.7.3.dfsg-1ubuntu2.3 ISC Shared Library used by BIND
ii libisccc60 1:9.7.3.dfsg-1ubuntu2.3 Command Channel Library used by BIND
ii libisccfg62 1:9.7.3.dfsg-1ubuntu2.3 Config File Handling Library used by BIND
ii libisofs6 0.6.32-2ubuntu2 library to create ISO9960 images
ii libiw30 30~pre9-3ubuntu6 Wireless tools - library
ii libjack-jackd2-0 1.9.6~dfsg.1-5ubuntu1 JACK Audio Connection Kit (libraries)
ii libjasper-java 5.5.26-5 Implementation of the JSP Container
ii libjasper1 1.900.1-7ubuntu2.11.04.1 The JasPer JPEG-2000 runtime library
ii libjaxp1.3-java 1.3.05-1ubuntu1 Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX)
ii libjbig2dec0 0.11-1ubuntu1 JBIG2 decoder library - shared libraries
ii libjetty-java 6.1.24-6 Java servlet engine and webserver -- core libraries
ii libjline-java 0.9.94-5 Java library for handling console input
ii libjpeg-progs 8b-1 Programs for manipulating JPEG files
ii libjpeg62 6b1-1ubuntu1 The Independent JPEG Group's JPEG runtime library (version 6.2)
ii libjpeg8 8b-1 The Independent JPEG Group's JPEG runtime library
ii libjs-jquery 1.5-2ubuntu1 JavaScript library for dynamic web applications
ii libjsch-java 0.1.42-2fakesync1 pure Java implementation of the SSH2 protocol
ii libjson-glib-1.0-0 0.12.2-0ubuntu1 GLib JSON manipulation library
ii libjtidy-java 7+svn20070309-4 a Java port of HTML Tidy, a HTML syntax checker and pretty printer
ii libk5crypto3 1.8.3+dfsg-5ubuntu2.2 MIT Kerberos runtime libraries - Crypto Library
ii libkate1 0.3.8-1 Kate is a codec for karaoke and text encapsulation
ii libkatepartinterfaces4 4:4.6.5-0ubuntu1.1 the kate part library
ii libkcmutils4 4:4.6.5-0ubuntu1.1 utility classes for using KCM modules
ii libkdecore5 4:4.6.5-0ubuntu1.1 the KDE Platform Core Library
ii libkdegames5 4:4.6.5-0ubuntu1 libraries and common files for KDE games
ii libkdesu5 4:4.6.5-0ubuntu1.1 the Console-mode Authentication Library for the KDE Platform
ii libkdeui5 4:4.6.5-0ubuntu1.1 the KDE Platform User Interface Library
ii libkdewebkit5 4:4.6.5-0ubuntu1.1 the KDE WebKit Library
ii libkdnssd4 4:4.6.5-0ubuntu1.1 the DNS-SD Protocol Library for the KDE Platform
ii libkemoticons4 4:4.6.5-0ubuntu1.1 utility classes to deal with emoticon themes
ii libkeyutils1 1.4-4ubuntu2 Linux Key Management Utilities (library)
ii libkfile4 4:4.6.5-0ubuntu1.1 the File Selection Dialog Library for KDE Platform
ii libkhtml5 4:4.6.5-0ubuntu1.1 the KHTML Web Content Rendering Engine
ii libkidletime4 4:4.6.5-0ubuntu1.1 library to provide information about idle time
ii libkio5 4:4.6.5-0ubuntu1.1 the Network-enabled File Management Library for the KDE Platform
ii libkjsapi4 4:4.6.5-0ubuntu1.1 the KJS API Library for the KDE Development Platform
ii libkjsembed4 4:4.6.5-0ubuntu1.1 library for binding JavaScript objects to QObjects
ii libklibc 1.5.20-1ubuntu6 minimal libc subset for use with initramfs
ii libkmediaplayer4 4:4.6.5-0ubuntu1.1 the KMediaPlayer Interface for the KDE Platform
ii libknewstuff3-4 4:4.6.5-0ubuntu1.1 the "Get Hot New Stuff" v3 Library for the KDE Platform
ii libknotifyconfig4 4:4.6.5-0ubuntu1.1 library for configuring KDE Notifications
ii libkntlm4 4:4.6.5-0ubuntu1.1 the NTLM Authentication Library for the KDE Platform
ii libkparts4 4:4.6.5-0ubuntu1.1 the Framework for the KDE Platform Graphical Components
ii libkpathsea5 2009-8ubuntu2 TeX Live: path search library for TeX (runtime part)
ii libkpty4 4:4.6.5-0ubuntu1.1 the Pseudo Terminal Library for the KDE Platform
ii libkrb5-3 1.8.3+dfsg-5ubuntu2.2 MIT Kerberos runtime libraries
ii libkrb5support0 1.8.3+dfsg-5ubuntu2.2 MIT Kerberos runtime libraries - Support library
ii libkrosscore4 4:4.6.5-0ubuntu1.1 the Kross Core Library
ii libktexteditor4 4:4.6.5-0ubuntu1.1 the KTextEditor interfaces for the KDE Platform
ii liblaunchpad-integration-common 0.1.51 library for launchpad integration common data
ii liblaunchpad-integration1 0.1.51 library for launchpad integration
ii liblaunchpad-integration1.0-cil 0.1.51 CLI bindings for liblaunchpad-integration
ii liblcms1 1.18.dfsg-1.2ubuntu1 Little CMS Color management library
ii libldap-2.4-2 2.4.23-6ubuntu6.1 OpenLDAP libraries
ii liblircclient0 0.8.7-0ubuntu4.1 infra-red remote control support - client library
ii libllvm2.8 2.8-0ubuntu1 Low-Level Virtual Machine (LLVM), runtime library
ii liblocale-gettext-perl 1.05-6 Using libc functions for internationalization in Perl
ii liblockfile1 1.08-4 NFS-safe locking library, includes dotlockfile program
ii liblouis-data 2.0.0-1ubuntu2 Braille translation library - data
ii liblouis2 2.0.0-1ubuntu2 Braille translation library - shared libs
ii liblqr-1-0 0.4.1-1ubuntu2 converts plain array images into multi-size representation
ii libltdl7 2.2.6b-2ubuntu3 A system independent dlopen wrapper for GNU libtool
ii liblua5.1-0 5.1.4-5 Simple, extensible, embeddable programming language
ii liblucene2-java 2.9.3+ds1-1 Full-text search engine library for Java(TM)
ii liblunar-1-0 2.0.1-2.1build1 Chinese Lunar library
ii liblvm2app2.2 2.02.66-4ubuntu2 LVM2 application library
ii liblwres60 1:9.7.3.dfsg-1ubuntu2.3 Lightweight Resolver Library used by BIND
ii liblzma2 5.0.0-2 XZ-format compression library
ii liblzo2-2 2.03-2 data compression library
ii libmad0 0.15.1b-5ubuntu1 MPEG audio decoder library
ii libmagic1 5.04-5ubuntu2 File type determination library using "magic" numbers
ii libmagick++3 7:6.6.2.6-1ubuntu4 object-oriented C++ interface to ImageMagick
ii libmagickcore3 7:6.6.2.6-1ubuntu4 low-level image manipulation library
ii libmagickcore3-extra 7:6.6.2.6-1ubuntu4 low-level image manipulation library - extra codecs
ii libmagickwand3 7:6.6.2.6-1ubuntu4 image manipulation library
ii libmailtools-perl 2.06-1 Manipulate email in perl programs
ii libmailutils2 1:2.1+dfsg1-7build1 GNU Mail abstraction library
ii libmeanwhile1 1.0.2-3ubuntu1 open implementation of the Lotus Sametime Community Client protocol
ii libmetacity-private0 1:2.30.3-0ubuntu8 library for the Metacity window manager
ii libmimic0 1.0.4-2ubuntu1 A video codec for Mimic V2.x content
ii libmission-control-plugins0 1:5.7.7-1 management daemon for Telepathy (library for plugins)
ii libmldbm-perl 2.04-1 module for storing multidimensional hash structures in perl tied hashes
ii libmms0 0.6.2-1 MMS stream protocol library - shared library
ii libmng1 1.0.10-1 Multiple-image Network Graphics library
ii libmodplug1 1:0.8.8.1-2ubuntu0.3 shared libraries for mod music based on ModPlug
ii libmono-addins-gui0.2-cil 0.4-8 GTK# frontend library for Mono.Addins
ii libmono-addins0.2-cil 0.4-8 addin framework for extensible CLI applications/libraries
ii libmono-cairo2.0-cil 2.6.7-5ubuntu3 Mono Cairo library (for CLI 2.0)
ii libmono-corlib2.0-cil 2.6.7-5ubuntu3 Mono core library (for CLI 2.0)
ii libmono-i18n-west2.0-cil 2.6.7-5ubuntu3 Mono I18N.West library (for CLI 2.0)
ii libmono-management2.0-cil 2.6.7-5ubuntu3 Mono Management library (for CLI 2.0)
ii libmono-posix2.0-cil 2.6.7-5ubuntu3 Mono.Posix library (for CLI 2.0)
ii libmono-security2.0-cil 2.6.7-5ubuntu3 Mono Security library (for CLI 2.0)
ii libmono-sharpzip2.84-cil 2.6.7-5ubuntu3 Mono SharpZipLib library (for CLI 2.0)
ii libmono-system2.0-cil 2.6.7-5ubuntu3 Mono System libraries (for CLI 2.0)
ii libmono-zeroconf1.0-cil 0.9.0-2 CLI library for multicast DNS service discovery
ii libmozjs185-1.0 1.8.5-1.0.0-0ubuntu5 Spidermonkey javascript engine
ii libmp3lame0 3.98.4-0ubuntu1 An MP3 encoding library
ii libmp4v2-0 1:1.6dfsg-0.2ubuntu9 freeware Advanced Audio Decoder - runtime files
ii libmpc2 0.9-1 multiple precision complex floating-point library
ii libmpcdec6 2:0.1~r459-1ubuntu1 MusePack decoder - library
ii libmpeg2-4 0.4.1-3 MPEG1 and MPEG2 video decoder library
ii libmpfr4 3.0.0-7 multiple precision floating-point computation
ii libmtdev1 1.1.0-0ubuntu1 Multitouch Protocol Translation Library - shared library
ii libmtp8 1.0.6-2 Media Transfer Protocol (MTP) library
rc libmulticobex1 0.23-1build1 multi-protocol cable OBEX library
ii libmusicbrainz4c2a 2.1.5-4ubuntu2 Second generation incarnation of the CD Index - library
ii libmysqlclient16 5.1.54-1ubuntu4 MySQL database client library
ii libmythes-1.2-0 2:1.2.1-1 simple thesaurus library
ii libnautilus-extension1 1:2.32.2.1-0ubuntu13 libraries for nautilus components - runtime version
ii libncurses5 5.7+20101128-1 shared libraries for terminal handling
ii libncursesw5 5.7+20101128-1 shared libraries for terminal handling (wide character support)
ii libndesk-dbus-glib1.0-cil 0.4.1-3 CLI implementation of D-Bus (GLib mainloop integration)
ii libndesk-dbus1.0-cil 0.6.0-4 CLI implementation of D-Bus
ii libneon27-gnutls 0.29.5-3 An HTTP and WebDAV client library (GnuTLS enabled)
ii libnepomuk4 4:4.6.5-0ubuntu1.1 the Nepomuk Meta Data Library
ii libnepomukquery4a 4:4.6.5-0ubuntu1.1 the Nepomuk Query Library for the KDE Platform
ii libnepomukutils4 4:4.6.5-0ubuntu1.1 the Nepomuk Utility Library
ii libnet-dbus-perl 0.33.6-2 Extension for the DBus bindings
ii libnet-dns-perl 0.66-2ubuntu1 Perform DNS queries from a Perl script