Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 15/10/2015, à 18:22

niemand

Chargement .vimrc manuel

Salut la communauté Ubuntu, big_smile

Je me lance dans la grande aventure de Vim avec le livre libre fait par Vincent Jusse, Vim pour les humains.
En suivant le guide j'ai donc supprimé le fichier caché .vimrc pour le recréer en suivant les étapes du livre.

Le problème lorsque j'ouvre un fichier avec vim, le fichier de configuration n'est pas pris en compte, je n'ai par exemple aucune couleur ou pas la numérotation pour les lignes,  pourtant celui ci est bien crée dans mon repertoire personnel avec les bon paramètres.

Lorsque j'ouvre mon fichier avec vim, je suis obligé de rentrer la commande ci dessous :

:source ~/.vimrc

Pour que mon fichier de configuration soit prit en compte.

J'aimerai savoir comment peux t-on automatiser cette commande pour tout les fichiers que j'ouvre avec Vim.
J'ai tenté de rajouter la ligne dans le fichier .vimrc mais sans résultat sad

Merci à toutes les personnes qui tenteront de m'aider !!!

Dernière modification par niemand (Le 15/10/2015, à 18:24)

Hors ligne

#2 Le 15/10/2015, à 18:44

pingouinux

Re : Chargement .vimrc manuel

Bonjour,
Peux-tu donner le retour de

type vim
ls -l ~/.vimrc
cat ~/.vimrc

Hors ligne

#3 Le 15/10/2015, à 19:03

niemand

Re : Chargement .vimrc manuel

Hello,

type vim
vim est /usr/bin/vim

_________________

ls -l ~/.vimrc
-rw-rw-r-- 1 pierro pierro 1180 oct.  15 18:32 /home/pierro/.vimrc

_________________

cat ~/.vimrc
" FICHIER_CONFIGURATION VIM

set nocompatible 	" Annule la compatibilite avec l’ancetre Vi : totalement indispensable

" -- Affichage
set title		" Met a jour le tire de votre fenetre ou de votre terminal

set number		" Afifche le numéro des lignes

set ruler		" Affiche la position du curseur

set wrap		" Affiche les lignes trop longues sur plusiers lignes

set scrolloff=3		" Affiche un minimum de 3 lignes autour du curseur

" -- Recherche
set ignorecase		" Ignore la casse lors de la recherche

set smartcase		" si une recherche contient un majuscule réactive la casse

set incsearch		" Surligne les résultats de la recherche pendant la saisie

set hlsearch		" Surligne les résultats de recherche

" -- Beep
set visualbell		" Empeche Vim de beeper

set noerrorbells	" Empeche Vim de beeper

" Active le comportement ’habituel’ de la touche retour en arriere
set backspace=indent,eol,start

" Cache les fichiers lors de l’ouverture d’autres fichiers
set hidden

syntax enable 		" Active la coloration syntaxique

" Active les comportements specifiques aux types de fichiers
" comme la syntaxe et l'indentation
filetype off
filetype plugin off
filetype indent off

Dernière modification par niemand (Le 15/10/2015, à 19:07)

Hors ligne

#4 Le 15/10/2015, à 19:41

pingouinux

Re : Chargement .vimrc manuel

Les commandes set doivent être précédées de :

:set number

Pour la coloration syntaxique, j'ai ceci

autocmd BufRead,BufNewFile *.cpp syntax on
autocmd BufRead,BufNewFile *.cc syntax on
autocmd BufRead,BufNewFile *.tex syntax on
autocmd BufRead,BufNewFile *.py syntax on
autocmd BufRead,BufNewFile *.txt syntax on

Remarque : Ces informations sont tirées d'un vieux fichier .vimrc, peut-être plus au goût du jour.

Dernière modification par pingouinux (Le 15/10/2015, à 20:37)

Hors ligne

#5 Le 15/10/2015, à 20:07

niemand

Re : Chargement .vimrc manuel

J'ai juste repris le fichier de Vincent Jousse, ici https://github.com/vjousse/vim-for-huma … nfig/vimrc
Les deux points ne sont pas nécessaire à mon avis, ( je les ai mis tout de même au cas ou ).

J'ai ajouté pour la coloration syntaxique les lignes, ficher de configuration de vim ci dessous :

" FICHIER_CONFIGURATION VIM

set nocompatible 	" Annule la compatibilite avec l’ancetre Vi : totalement indispensable

" -- Affichage
set title		" Met a jour le tire de votre fenetre ou de votre terminal

:set number		" Afifche le numéro des lignes

set ruler		" Affiche la position du curseur

set wrap		" Affiche les lignes trop longues sur plusiers lignes

set scrolloff=3		" Affiche un minimum de 3 lignes autour du curseur

" -- Recherche
set ignorecase		" Ignore la casse lors de la recherche

set smartcase		" si une recherche contient un majuscule réactive la casse

set incsearch		" Surligne les résultats de la recherche pendant la saisie

set hlsearch		" Surligne les résultats de recherche

" -- Beep
set visualbell		" Empeche Vim de beeper

set noerrorbells	" Empeche Vim de beeper

" Active le comportement ’habituel’ de la touche retour en arriere
set backspace=indent,eol,start

" Cache les fichiers lors de l’ouverture d’autres fichiers
set hidden

syntax enable 		" Active la coloration syntaxique

" Active les comportements specifiques aux types de fichiers
" comme la syntaxe et l'indentation
filetype off
filetype plugin off
filetype indent off

" Coloration syntaxique
autocmd BufRead,BufNewFile *.cpp syntax on
autocmd BufRead,BufNewFile *.cc syntax on
autocmd BufRead,BufNewFile *.tex syntax on
autocmd BufRead,BufNewFile *.py syntax on
autocmd BufRead,BufNewFile *.txt syntax on

J'ai également changé les droit du ficher pour le rendre exécutable,

-rwxrwxr-- 1 pierro pierro 1419 oct.  15 20:04 .vimrc

Le probléme est toujours le même je suis obligé de faire la commande,

:source ~/.vimrc

pour que le fichier de configuration de vim s’exécute manuellement au lieu que celui ci se fasse automatiquement au lancement de vim mad

Dernière modification par niemand (Le 15/10/2015, à 20:08)

Hors ligne

#6 Le 15/10/2015, à 20:36

pingouinux

Re : Chargement .vimrc manuel

Du coup, je ne vois pas. Je ne t'ai peut-être pas donné des informations pertinentes en #4 (tirées de mon fichier .vimrc, qui date d'il y a longtemps).

Hors ligne

#7 Le 15/10/2015, à 20:45

niemand

Re : Chargement .vimrc manuel

Si je désinstalle Vim et le réinstalle peux être que cela réglera le pépin.

je connais les deux PPA que j'ai installé et les greffons,

PPA = vim + vim-nox:i386

Et les greffons de vim nox sont documentation HTML et Visualisert des documentes LaTex.

Si j'arrive à supprimer tout ca et que je le réinstalle ensuite peut être cela fonctionnera.

J'ai cherché dans la logithéque Ubuntu mais je n'ai pas trouvé Vim dans les logiciel installé, es ce que tu sais pourquoi ?

Comment je peux faire pour les supprimer ?

pingouinux, es ce que tu peux me donner ton fichier .bashrc, celui par défaut si possible de ubuntu ou bien le tient avec tes modifications .

Peut être que les deux problèmes sont liés.

Merci pour ton aide wink

Dernière modification par niemand (Le 15/10/2015, à 20:58)

Hors ligne

#8 Le 17/10/2015, à 03:28

niemand

Re : Chargement .vimrc manuel

Lu pinguinux,

j'ai résolu mon souci pour le fichier .vimrc qui ne se charge pas en automatiquement.
Il faut désintaller le paquet et le réinstaller.
Lorsque je l'ai fait la première fois cela n'a pasd fonctionné j'ai portant fait ces 3 commandes :

sudo apt-get remove nomPaquet
sudo apt-get autoremove nomPaquet
sudo apt-get purge nomPaquet

et en réinstallant derrière  avec la commande

sudo apt-get install vim

Il faut également supprimer le fichier .vim dans /etc et tout ce qu'il y a dedans et ensuite refaire une installation et voila le tour est joué.
Sauvgarder votre fichier vimrc avant et le tour est joué.
Bon c'est pas génial mais ça marche wink

Dernière modification par niemand (Le 17/10/2015, à 03:28)

Hors ligne

#9 Le 17/10/2015, à 04:01

MicP

Re : Chargement .vimrc manuel

Je viens de le tester, et après quelques essais, j'ai constaté que dans le fichier ~ /.vimrc du message #5,
il te faudrait déplacer la ligne contenant syntax enable tout à la fin du fichier pour que la colorisation soit effective.

J'ai pu le constater en éditant le fichier ~/.vimrc qui est un copié/collé de ton vimrc dont j'ai juste déplacé la ligne en question tout à la fin du fichier.

vim ~/.vimrc

Je pense que le problème venait du fait que tu as du faire la concaténation de deux fichiers vimrc.

Mais je n'ai pas vérifié si toutes les directives de ce fichier vimrc fonctionnaient.

=======
Explore les fichiers contenus dans le répertoire et les sous-répertoires de /usr/share/vim/
Je n'ai pas encore lu tout ça, mais il me semble que ça pourrait t'intéresser.

=======
Je ne me souviens pas avoir installé vim en installant très récemment le système Ubuntu 14.04.3 LTS depuis le fichier image ISO encore proposé ici,
et vim fonctionne très bien chez moi avec ton fichier de configuration.

Dernière modification par MicP (Le 17/10/2015, à 04:12)

Hors ligne

#10 Le 17/10/2015, à 19:17

niemand

Re : Chargement .vimrc manuel

Salut Micp,

J'ai regardé rapidement le fichier, /usr/share/vim/

J'ai repéré un truc qui me parait étrange, j'ai des liens "brisés" comme le montre l'image ci dessous,
http://pix.tdct.org/upload/original/1445102176.png

Le repertoire usr, contient des applications, les bibliothèques utilisateurs.
Si mes liens sont "brisés" c'est d'autant plus étrange que mon fichier .vimrc se charge bien automatiquement maintenant.
Tout cela ne me dit rien qui vaille .....:rolleyes:

Dernière modification par niemand (Le 17/10/2015, à 19:22)

Hors ligne

#11 Le 17/10/2015, à 20:18

MicP

Re : Chargement .vimrc manuel

Ça doit sans doute venir du fait que la désinstallation de vim ne s'était pas très bien déroulée (comme tu l'avais déjà constaté par d'autres effets dans ce fil)

Je vais refaire une machine virtuelle ubuntu (14.04.3 LTS) pour essayer de comprendre ce qui s'est passé.

Dernière modification par MicP (Le 17/10/2015, à 20:19)

Hors ligne

#12 Le 17/10/2015, à 21:01

niemand

Re : Chargement .vimrc manuel

C'est vraiment bizarroïde cette histoire,

Ci dessous les deux commandes,

/usr/share/vim$ ls -la vimrc

Puis

lrwxrwxrwx 1 root root 14 janv.  2  2014 vimrc -> /etc/vim/vimrc

Le 1 indique bien un lien physique qui existe non ?

C'est exactement la même chose pour,

/usr/share/vim$ ls -la vimfiles

Puis
lrwxrwxrwx 1 root root 8 mai   21 00:04 vimfiles -> /etc/vim

Pareil comment je peux voir un 1 alors que le lien est brisé ?

J'ai fait la commande suivante :

/usr/share/vim$ file vimrc

Puis

vimrc: broken symbolic link to `/etc/vim/vim

Donc si je résume il existe un lien mais le système ne sais pas ou il va ?

Je mets également le contenu du fichier /etc ci dessous, il n 'y a pas de répertoire .vim comme la dernière fois:

/etc$ ls -a

Puis

.			       hosts			protocols
..			       hosts.allow		pulse
acpi			       hosts.deny		.pwd.lock
adduser.conf		       hp			python
alternatives		       ifplugd			python2.7
anacrontab		       ImageMagick		python3
apg.conf		       init			python3.4
apm			       init.d			rc0.d
apparmor		       initramfs-tools		rc1.d
apparmor.d		       inputrc			rc2.d
apport			       insserv			rc3.d
apt			       insserv.conf		rc4.d
aptdaemon		       insserv.conf.d		rc5.d
at-spi2			       iproute2			rc6.d
avahi			       issue			rc.local
bash.bashrc		       issue.net		rcS.d
bash_completion		       kbd			request-key.conf
bash_completion.d	       kernel			request-key.d
bindresvport.blacklist	       kernel-img.conf		resolvconf
blkid.conf		       kerneloops.conf		resolv.conf
blkid.tab		       ldap			rmt
bluetooth		       ld.so.cache		rpc
brlapi.key		       ld.so.conf		rsyslog.conf
brltty			       ld.so.conf.d		rsyslog.d
brltty.conf		       legal			samba
ca-certificates		       libaudit.conf		sane.d
ca-certificates.conf	       libnl-3			securetty
ca-certificates.conf.dpkg-old  libpaper.d		security
calendar		       libreoffice		selinux
chatscripts		       lightdm			sensors3.conf
colord.conf		       lintianrc		sensors.d
compizconfig		       locale.alias		services
console-setup		       localtime		sgml
cracklib		       logcheck			shadow
cron.d			       login.defs		shadow-
cron.daily		       logrotate.conf		shells
cron.hourly		       logrotate.d		signond.conf
cron.monthly		       lsb-release		signon-ui
crontab			       ltrace.conf		skel
cron.weekly		       magic			speech-dispatcher
cups			       magic.mime		ssh
cupshelpers		       mailcap			ssl
dbus-1			       mailcap.order		subgid
dconf			       manpath.config		subgid-
debconf.conf		       mime.types		subuid
debian_version		       mke2fs.conf		subuid-
default			       modprobe.d		subversion
deluser.conf		       modules			sudoers
depmod.d		       modules-load.d		sudoers.d
dhcp			       mtab			sysctl.conf
dictionaries-common	       mtab.fuselock		sysctl.d
dkms			       mtools.conf		systemd
dnsmasq.d		       nanorc			terminfo
doc-base		       netscsid.conf		texmf
dpkg			       network			thunderbird
drirc			       NetworkManager		timezone
emacs			       networks			timidity
environment		       newt			ts.conf
firefox			       nsswitch.conf		ucf.conf
fonts			       obex-data-server		udev
fstab			       openal			udisks2
fstab.d			       OpenCL			ufw
fuse.conf		       opt			updatedb.conf
gai.conf		       os-release		update-manager
gconf			       pam.conf			update-motd.d
gdb			       pam.d			update-notifier
ghostscript		       papersize		UPower
gimp			       passwd			upstart-xsessions
gnome			       passwd-			usb_modeswitch.conf
gnome-app-install	       pcmcia			usb_modeswitch.d
groff			       perl			vdpau_wrapper.cfg
group			       pki			vtrgb
group-			       pm			wgetrc
grub.d			       pnm2ppa.conf		wildmidi
gshadow			       polkit-1			wodim.conf
gshadow-		       popularity-contest.conf	wpa_supplicant
gtk-2.0			       ppp			X11
gtk-3.0			       prime-discrete		xdg
hdparm.conf		       printcap			xml
host.conf		       profile			xul-ext
hostname		       profile.d		zsh_command_not_found

France Vs Nouvelle Zélande ce soir je reviens dans 1h tongue

Dernière modification par niemand (Le 17/10/2015, à 21:03)

Hors ligne

#13 Le 17/10/2015, à 21:30

Postmortem

Re : Chargement .vimrc manuel

Salut,

niemand a écrit :
lrwxrwxrwx 1 root root 14 janv.  2  2014 vimrc -> /etc/vim/vimrc

Le 1 indique bien un lien physique qui existe non ?

Le 1 indique qu'il y a un lien physique oui... Mais un lien symbolique est un fichier et ce fichier n'a qu'un lien physique.
Euhhhh... C'est clair ?? lol
Je veux dire que le 1 que tu vois là concerne le lien symbolique lui même et non pas la cible du lien.

Édit :
Essaie ceci, ça sera plus clair :

cd /tmp
touch toto
ln toto tata
ln -s toto titi
ls -l

Dernière modification par Postmortem (Le 17/10/2015, à 21:45)


Mot' a dit : « Un Hellfest sans Slayer, c'est comme une galette-saucisse sans saucisse ! »

Hors ligne

#14 Le 17/10/2015, à 21:53

MicP

Re : Chargement .vimrc manuel

Ok, je crois avoir compris ce qui s'est passé pour les liens "cassés":

Dans ton message #8, tu nous informe que tu as entré les 3 premières commande, mais qu'elles n'avaient rien donné.

En fait, c'est pas étonnant, car dans ces lignes de commandes, tu n'avais pas remplacé nomPaquet par vim,
du coup, comme la commande n'a pas trouvé de paquetage nommé nomPaquet à désinstaller, et elle n'a donc rien fait.

Ensuite , tu dis que tu as "supprimer le fichier .vim dans /etc et tout ce qu'il y a dedans", et comme les liens pointaient sur des fichiers contenus dans ces répertoires, les liens ci-desous:

…
lrwxrwxrwx 1 root root    8 avril  1  2015 vimfiles -> /etc/vim
lrwxrwxrwx 1 root root   14 avril  1  2015 vimrc -> /etc/vim/vimrc
…

sont "brisés".

=======
Il me reste à comprendre ce qui s'est passé pour :

lrwxrwxrwx 1 root root   19 avril  1  2015 vimrc.tiny -> /etc/vim/vimrc.tiny

mais quoi qu'il en soit, tout ça n'est pas très grave.

=======
Il me faudrait peut-être voir ce qui s'est passé ici => "…Les deux paquets que j'ai installé sont vim vim-nox et vim Latek suite dans ce genre la pour le dernier. …"
(et lire les messages qui ont étés écrits entre temps)

Hors ligne

#15 Le 17/10/2015, à 23:16

niemand

Re : Chargement .vimrc manuel

Ci j'ai remplacé nomPaquet par:
vim , vim-nox, et latex-suite successivement pour les 3 commandes ci dessous :

sudo apt-get remove nomPaquet
sudo apt-get purge nomPaquet
sudo apt-get autoremove nomPaquet

Ce n'est qu’après avoir fait ces 3 commandes que je suis allé voir dans le /etc et que j'ai vue le répertoire .vim à l'intérieur.

===========

voici la liste des paquets que j'ai actuellement normalement il n'y a pas vim-nox et latex-suite.
J'ai vérifier et pour moi c'est bon.

Liste des paquets ci dessous, les paquets en rapport avec vim sont en gras et surlignés.

dpkg -l > ~/Bureau/paquet.txt

Puis

Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ Nom                                                   Version                                                Architecture Description
+++-=====================================================-======================================================-============-===============================================================================
ii  account-plugin-aim                                    3.8.6-0ubuntu9.2                                       amd64        Messaging account plugin for AIM
ii  account-plugin-facebook                               0.11+14.04.20140409.1-0ubuntu2                         all          GNOME Control Center account plugin for single signon - facebook
ii  account-plugin-flickr                                 0.11+14.04.20140409.1-0ubuntu2                         all          GNOME Control Center account plugin for single signon - flickr
ii  account-plugin-google                                 0.11+14.04.20140409.1-0ubuntu2                         all          GNOME Control Center account plugin for single signon
ii  account-plugin-jabber                                 3.8.6-0ubuntu9.2                                       amd64        Messaging account plugin for Jabber/XMPP
ii  account-plugin-salut                                  3.8.6-0ubuntu9.2                                       amd64        Messaging account plugin for Local XMPP (Salut)
ii  account-plugin-twitter                                0.11+14.04.20140409.1-0ubuntu2                         all          GNOME Control Center account plugin for single signon - twitter
ii  account-plugin-windows-live                           0.11+14.04.20140409.1-0ubuntu2                         all          GNOME Control Center account plugin for single signon - windows live
ii  account-plugin-yahoo                                  3.8.6-0ubuntu9.2                                       amd64        Messaging account plugin for Yahoo!
ii  accountsservice                                       0.6.35-0ubuntu7.2                                      amd64        query and manipulate user account information
ii  acl                                                   2.2.52-1                                               amd64        Access control list utilities
ii  acpi-support                                          0.142                                                  amd64        scripts for handling many ACPI events
ii  acpid                                                 1:2.0.21-1ubuntu2                                      amd64        Advanced Configuration and Power Interface event daemon
ii  activity-log-manager                                  0.9.7-0ubuntu14.1                                      amd64        blacklist configuration user interface for Zeitgeist
ii  activity-log-manager-control-center                   0.9.7-0ubuntu14.1                                      all          blacklist configuration for Zeitgeist (transitional package)
ii  adduser                                               3.113+nmu3ubuntu3                                      all          add and remove users and groups
ii  adium-theme-ubuntu                                    0.3.4-0ubuntu1                                         all          Adium message style for Ubuntu
rc  aisleriot                                             1:3.10.2-1                                             amd64        GNOME solitaire card game collection
ii  alsa-base                                             1.0.25+dfsg-0ubuntu4                                   all          ALSA driver configuration files
ii  alsa-utils                                            1.0.27.2-1ubuntu2                                      amd64        Utilities for configuring and using ALSA
ii  anacron                                               2.3-20ubuntu1                                          amd64        cron-like program that doesn't go by time
ii  apg                                                   2.2.3.dfsg.1-2ubuntu1                                  amd64        Automated Password Generator - Standalone version
ii  app-install-data                                      14.04.1                                                all          Ubuntu applications (data files)
ii  app-install-data-partner                              13.04                                                  all          Application Installer (data files for partner applications/repositories)
ii  apparmor                                              2.8.95~2430-0ubuntu5.3                                 amd64        User-space parser utility for AppArmor
ii  appmenu-qt                                            0.2.7+14.04.20140305-0ubuntu1                          amd64        application menu for Qt
ii  appmenu-qt5                                           0.3.0+14.04.20140415-0ubuntu1                          amd64        application menu for Qt5
ii  apport                                                2.14.1-0ubuntu3.15                                     all          automatically generate crash reports for debugging
ii  apport-gtk                                            2.14.1-0ubuntu3.15                                     all          GTK+ frontend for the apport crash report system
ii  apport-symptoms                                       0.20                                                   all          symptom scripts for apport
ii  apt                                                   1.0.1ubuntu2.10                                        amd64        commandline package manager
ii  apt-transport-https                                   1.0.1ubuntu2.10                                        amd64        https download transport for APT
ii  apt-utils                                             1.0.1ubuntu2.10                                        amd64        package management related utility programs
ii  apt-xapian-index                                      0.45ubuntu4                                            all          maintenance and search tools for a Xapian index of Debian packages
ii  aptdaemon                                             1.1.1-1ubuntu5.2                                       all          transaction based package management service
ii  aptdaemon-data                                        1.1.1-1ubuntu5.2                                       all          data files for clients
ii  apturl                                                0.5.2ubuntu4                                           amd64        install packages using the apt protocol - GTK+ frontend
ii  apturl-common                                         0.5.2ubuntu4                                           amd64        install packages using the apt protocol - common data
ii  aspell                                                0.60.7~20110707-1ubuntu1                               amd64        GNU Aspell spell-checker
ii  aspell-en                                             7.1-0-1                                                all          English dictionary for GNU Aspell
rc  asymptote                                             2.15-2build2                                           amd64        script-based vector graphics language inspired by MetaPost
ii  at-spi2-core                                          2.10.2.is.2.10.1-0ubuntu1                              amd64        Assistive Technology Service Provider Interface (dbus core)
ii  audacity                                              2.0.5-1ubuntu3.2                                       amd64        fast, cross-platform audio editor
ii  audacity-data                                         2.0.5-1ubuntu3.2                                       all          fast, cross-platform audio editor (data)
ii  avahi-autoipd                                         0.6.31-4ubuntu1                                        amd64        Avahi IPv4LL network address configuration daemon
ii  avahi-daemon                                          0.6.31-4ubuntu1                                        amd64        Avahi mDNS/DNS-SD daemon
ii  avahi-utils                                           0.6.31-4ubuntu1                                        amd64        Avahi browsing, publishing and discovery utilities
ii  bamfdaemon                                            0.5.1+14.04.20140409-0ubuntu1                          amd64        Window matching library - daemon
ii  baobab                                                3.8.2-1ubuntu1                                         amd64        GNOME disk usage analyzer
ii  base-files                                            7.2ubuntu5.3                                           amd64        Debian base system miscellaneous files
ii  base-passwd                                           3.5.33                                                 amd64        Debian base system master password and group files
ii  bash                                                  4.3-7ubuntu1.5                                         amd64        GNU Bourne Again SHell
ii  bash-completion                                       1:2.1-4ubuntu0.1                                       all          programmable completion for the bash shell
ii  bbswitch-dkms                                         0.7-2ubuntu1                                           amd64        Interface for toggling the power on nVidia Optimus video cards
ii  bc                                                    1.06.95-8ubuntu1                                       amd64        GNU bc arbitrary precision calculator language
ii  bind9-host                                            1:9.9.5.dfsg-3ubuntu0.5                                amd64        Version of 'host' bundled with BIND 9.X
ii  binutils                                              2.24-5ubuntu14                                         amd64        GNU assembler, linker and binary utilities
ii  bluez                                                 4.101-0ubuntu13.1                                      amd64        Bluetooth tools and daemons
ii  bluez-alsa:amd64                                      4.101-0ubuntu13.1                                      amd64        Bluetooth ALSA support
ii  bluez-cups                                            4.101-0ubuntu13.1                                      amd64        Bluetooth printer driver for CUPS
ii  branding-ubuntu                                       0.8                                                    all          Replacement artwork with Ubuntu branding
ii  brasero                                               3.10.0-0ubuntu1                                        amd64        CD/DVD burning application for GNOME
ii  brasero-cdrkit                                        3.10.0-0ubuntu1                                        amd64        cdrkit extensions for the Brasero burning application
ii  brasero-common                                        3.10.0-0ubuntu1                                        all          Common files for the Brasero CD burning application and library
ii  brltty                                                5.0-2ubuntu2                                           amd64        Access software for a blind person using a braille display
ii  bsdmainutils                                          9.0.5ubuntu1                                           amd64        collection of more utilities from FreeBSD
ii  bsdutils                                              1:2.20.1-5.1ubuntu20.7                                 amd64        Basic utilities from 4.4BSD-Lite
ii  build-essential                                       11.6ubuntu6                                            amd64        Informational list of build-essential packages
ii  busybox-initramfs                                     1:1.21.0-1ubuntu1                                      amd64        Standalone shell setup for initramfs
ii  busybox-static                                        1:1.21.0-1ubuntu1                                      amd64        Standalone rescue shell with tons of builtin utilities
ii  bzip2                                                 1.0.6-5                                                amd64        high-quality block-sorting file compressor - utilities
ii  ca-certificates                                       20141019ubuntu0.14.04.1                                all          Common CA certificates
ii  checkbox-gui                                          0.17.6-0ubuntu6                                        amd64        QML based interface for system testing based on Plainbox.
ii  checkbox-ng                                           0.3-2                                                  all          PlainBox based test runner
ii  checkbox-ng-service                                   0.3-2                                                  all          CheckBox D-Bus service
ii  cheese                                                3.10.2-0ubuntu2                                        amd64        tool to take pictures and videos from your webcam
ii  cheese-common                                         3.10.2-0ubuntu2                                        all          Common files for the Cheese tool to take pictures and videos
ii  chromium-codecs-ffmpeg-extra                          45.0.2454.101-0ubuntu0.14.04.1.1099                    amd64        Extra ffmpeg codecs for the Chromium Browser
ii  cmake                                                 2.8.12.2-0ubuntu3                                      amd64        cross-platform, open-source make system
ii  cmake-data                                            2.8.12.2-0ubuntu3                                      all          CMake data files (modules, templates and documentation)
ii  colord                                                1.0.6-1                                                amd64        system service to manage device colour profiles -- system daemon
ii  command-not-found                                     0.3ubuntu12                                            all          Suggest installation of packages in interactive bash sessions
ii  command-not-found-data                                0.3ubuntu12                                            amd64        Set of data files for command-not-found.
ii  compiz                                                1:0.9.11.3+14.04.20150313-0ubuntu1                     all          OpenGL window and compositing manager
ii  compiz-core                                           1:0.9.11.3+14.04.20150313-0ubuntu1                     amd64        OpenGL window and compositing manager
ii  compiz-gnome                                          1:0.9.11.3+14.04.20150313-0ubuntu1                     amd64        OpenGL window and compositing manager - GNOME window decorator
ii  compiz-plugins-default                                1:0.9.11.3+14.04.20150313-0ubuntu1                     amd64        OpenGL window and compositing manager - default plugins
ii  console-setup                                         1.70ubuntu8                                            all          console font and keymap setup program
ii  coreutils                                             8.21-1ubuntu5.1                                        amd64        GNU core utilities
ii  cpio                                                  2.11+dfsg-1ubuntu1.1                                   amd64        GNU cpio -- a program to manage archives of files
ii  cpp                                                   4:4.8.2-1ubuntu6                                       amd64        GNU C preprocessor (cpp)
ii  cpp-4.8                                               4.8.4-2ubuntu1~14.04                                   amd64        GNU C preprocessor
ii  cracklib-runtime                                      2.9.1-1build1                                          amd64        runtime support for password checker library cracklib2
ii  crda                                                  1.1.2-1ubuntu2                                         amd64        wireless Central Regulatory Domain Agent
ii  cron                                                  3.0pl1-124ubuntu2                                      amd64        process scheduling daemon
ii  cryptsetup                                            2:1.6.1-1ubuntu1                                       amd64        disk encryption support - startup scripts
ii  cryptsetup-bin                                        2:1.6.1-1ubuntu1                                       amd64        disk encryption support - command line tools
ii  cups                                                  1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - PPD/driver support, web interface
ii  cups-browsed                                          1.0.52-0ubuntu1.5                                      amd64        OpenPrinting CUPS Filters - cups-browsed
ii  cups-bsd                                              1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - BSD commands
ii  cups-client                                           1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - client programs (SysV)
ii  cups-common                                           1.7.2-0ubuntu1.6                                       all          Common UNIX Printing System(tm) - common files
ii  cups-core-drivers                                     1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - PPD-less printing
ii  cups-daemon                                           1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - daemon
ii  cups-filters                                          1.0.52-0ubuntu1.5                                      amd64        OpenPrinting CUPS Filters - Main Package
ii  cups-filters-core-drivers                             1.0.52-0ubuntu1.5                                      amd64        OpenPrinting CUPS Filters - PPD-less printing
ii  cups-pk-helper                                        0.2.5-0ubuntu1                                         amd64        PolicyKit helper to configure cups with fine-grained privileges
ii  cups-ppdc                                             1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - PPD manipulation utilities
ii  cups-server-common                                    1.7.2-0ubuntu1.6                                       all          Common UNIX Printing System(tm) - server common files
ii  dash                                                  0.5.7-4ubuntu1                                         amd64        POSIX-compliant shell
ii  dbus                                                  1.6.18-0ubuntu4.3                                      amd64        simple interprocess messaging system (daemon and utilities)
ii  dbus-x11                                              1.6.18-0ubuntu4.3                                      amd64        simple interprocess messaging system (X11 deps)
ii  dc                                                    1.06.95-8ubuntu1                                       amd64        GNU dc arbitrary precision reverse-polish calculator
ii  dconf-cli                                             0.20.0-1                                               amd64        simple configuration storage system - utilities
ii  dconf-gsettings-backend:amd64                         0.20.0-1                                               amd64        simple configuration storage system - GSettings back-end
ii  dconf-service                                         0.20.0-1                                               amd64        simple configuration storage system - D-Bus service
ii  debconf                                               1.5.51ubuntu2                                          all          Debian configuration management system
ii  debconf-i18n                                          1.5.51ubuntu2                                          all          full internationalization support for debconf
ii  debianutils                                           4.4                                                    amd64        Miscellaneous utilities specific to Debian
ii  deja-dup                                              30.0-0ubuntu4                                          amd64        Back up your files
ii  deja-dup-backend-gvfs                                 30.0-0ubuntu4                                          all          Remote server support for Déjà Dup
ii  desktop-file-utils                                    0.22-1ubuntu1                                          amd64        Utilities for .desktop files
ii  dh-python                                             1.20140128-1ubuntu8.2                                  all          Debian helper tools for packaging Python libraries and applications
ii  dialog                                                1.2-20130928-1                                         amd64        Displays user-friendly dialog boxes from shell scripts
ii  dictionaries-common                                   1.20.5                                                 all          Common utilities for spelling dictionary tools
ii  diffstat                                              1.58-1                                                 amd64        produces graph of changes introduced by a diff file
ii  diffutils                                             1:3.3-1                                                amd64        File comparison utilities
ii  dkms                                                  2.2.0.3-1.1ubuntu5.14.04.5                             all          Dynamic Kernel Module Support Framework
ii  dmidecode                                             2.12-2                                                 amd64        SMBIOS/DMI table decoder
ii  dmsetup                                               2:1.02.77-6ubuntu2                                     amd64        Linux Kernel Device Mapper userspace library
ii  dmz-cursor-theme                                      0.4.4ubuntu1                                           all          Style neutral, scalable cursor theme
ii  dnsmasq-base                                          2.68-1ubuntu0.1                                        amd64        Small caching DNS proxy and DHCP/TFTP server
ii  dnsutils                                              1:9.9.5.dfsg-3ubuntu0.5                                amd64        Clients provided with BIND
ii  doc-base                                              0.10.5                                                 all          utilities to manage online documentation
ii  docbook-xml                                           4.5-7.2                                                all          standard XML documentation system for software and systems
ii  dosfstools                                            3.0.26-1                                               amd64        utilities for making and checking MS-DOS FAT filesystems
ii  dpkg                                                  1.17.5ubuntu5.4                                        amd64        Debian package management system
ii  dpkg-dev                                              1.17.5ubuntu5.4                                        all          Debian package development tools
ii  duplicity                                             0.6.23-1ubuntu4.1                                      amd64        encrypted bandwidth-efficient backup
ii  dvd+rw-tools                                          7.1-10build1                                           amd64        DVD+-RW/R tools
ii  e2fslibs:amd64                                        1.42.9-3ubuntu1.3                                      amd64        ext2/ext3/ext4 file system libraries
ii  e2fsprogs                                             1.42.9-3ubuntu1.3                                      amd64        ext2/ext3/ext4 file system utilities
ii  ecryptfs-utils                                        104-0ubuntu1.14.04.3                                   amd64        ecryptfs cryptographic filesystem (utilities)
ii  ed                                                    1.9-2                                                  amd64        classic UNIX line editor
ii  efibootmgr                                            0.5.4-7ubuntu1.2                                       amd64        Interact with the EFI Boot Manager
ii  eject                                                 2.1.5+deb1+cvs20081104-13.1                            amd64        ejects CDs and operates CD-Changers under Linux
ii  empathy                                               3.8.6-0ubuntu9.2                                       amd64        GNOME multi-protocol chat and call client
ii  empathy-common                                        3.8.6-0ubuntu9.2                                       all          GNOME multi-protocol chat and call client (common files)
ii  enchant                                               1.6.0-10ubuntu1                                        amd64        Wrapper for various spell checker engines (binary programs)
ii  eog                                                   3.10.2-0ubuntu5                                        amd64        Eye of GNOME graphics viewer program
ii  espeak-data:amd64                                     1.47.11-1ubuntu1                                       amd64        Multi-lingual software speech synthesizer: speech data files
ii  ethtool                                               1:3.13-1                                               amd64        display or change Ethernet device settings
ii  evince                                                3.10.3-0ubuntu10.2                                     amd64        Document (PostScript, PDF) viewer
ii  evince-common                                         3.10.3-0ubuntu10.2                                     all          Document (PostScript, PDF) viewer - common files
ii  evolution-data-server                                 3.10.4-0ubuntu1.5                                      amd64        evolution database backend server
ii  evolution-data-server-common                          3.10.4-0ubuntu1.5                                      all          architecture independent files for Evolution Data Server
ii  evolution-data-server-online-accounts                 3.10.4-0ubuntu1.5                                      amd64        evolution data server integration with Ubuntu Online Accounts
ii  example-content                                       48                                                     all          Ubuntu example content
ii  fakeroot                                              1.20-3ubuntu2                                          amd64        tool for simulating superuser privileges
ii  file                                                  1:5.14-2ubuntu3.3                                      amd64        Determines file type using "magic" numbers
ii  file-roller                                           3.10.2.1-0ubuntu4.1                                    amd64        archive manager for GNOME
ii  findutils                                             4.4.2-7                                                amd64        utilities for finding files--find, xargs
ii  firefox                                               41.0.2+build2-0ubuntu0.14.04.1                         amd64        Safe and easy web browser from Mozilla
ii  firefox-locale-en                                     41.0.2+build2-0ubuntu0.14.04.1                         amd64        English language pack for Firefox
ii  firefox-locale-fr                                     41.0.2+build2-0ubuntu0.14.04.1                         amd64        French language pack for Firefox
ii  flashplugin-installer                                 11.2.202.540ubuntu0.14.04.2                            amd64        Adobe Flash Player plugin installer
rc  flpsed                                                0.5.2-1                                                amd64        a WYSIWYG pseudo PostScript editor
ii  folks-common                                          0.9.5-1ubuntu5                                         all          library to aggregates people into metacontacts (common files)
ii  fontconfig                                            2.11.0-0ubuntu4.1                                      amd64        generic font configuration library - support binaries
ii  fontconfig-config                                     2.11.0-0ubuntu4.1                                      all          generic font configuration library - configuration
ii  fonts-dejavu-core                                     2.34-1ubuntu1                                          all          Vera font family derivate with additional characters
ii  fonts-droid                                           1:4.3-3ubuntu1.2                                       all          handheld device font with extensive style and language support
ii  fonts-freefont-ttf                                    20120503-4                                             all          Freefont Serif, Sans and Mono Truetype fonts
ii  fonts-kacst                                           2.01+mry-10                                            all          KACST free TrueType Arabic fonts
ii  fonts-kacst-one                                       5.0+svn11846-7                                         all          TrueType font designed for Arabic language
ii  fonts-khmeros-core                                    5.0-7ubuntu1                                           all          KhmerOS Unicode fonts for the Khmer language of Cambodia
ii  fonts-lao                                             0.0.20060226-9                                         all          TrueType font for Lao language
ii  fonts-liberation                                      1.07.3-3                                               all          Fonts with the same metrics as Times, Arial and Courier
ii  fonts-lklug-sinhala                                   0.6-3                                                  all          Unicode Sinhala font by Lanka Linux User Group
ii  fonts-lmodern                                         2.004.4-3                                              all          OpenType fonts based on Computer Modern
ii  fonts-nanum                                           20131007-1                                             all          Nanum Korean fonts
ii  fonts-opensymbol                                      2:102.6+LibO4.2.8-0ubuntu2                             all          OpenSymbol TrueType font
ii  fonts-sil-abyssinica                                  1.200-6                                                all          smart Unicode font for Ethiopian and Erythrean scripts (Amharic et al.)
ii  fonts-sil-padauk                                      2.80-2                                                 all          smart Unicode font for languages in Myanmar
ii  fonts-takao-pgothic                                   003.02.01-9ubuntu2                                     all          Japanese TrueType font set, Takao P Gothic Fonts
ii  fonts-texgyre                                         2.004.2-4                                              all          OpenType fonts based on URW Fonts
ii  fonts-thai-tlwg                                       1:0.5.1-3                                              all          Thai fonts maintained by TLWG (meta package)
ii  fonts-tibetan-machine                                 1.901b-5                                               all          font for Tibetan, Dzongkha and Ladakhi (OpenType Unicode)
ii  fonts-tlwg-garuda                                     1:0.5.1-3                                              all          Thai Garuda font
ii  fonts-tlwg-kinnari                                    1:0.5.1-3                                              all          Thai Kinnari font
ii  fonts-tlwg-loma                                       1:0.5.1-3                                              all          Thai Loma font
ii  fonts-tlwg-mono                                       1:0.5.1-3                                              all          Thai TlwgMono font
ii  fonts-tlwg-norasi                                     1:0.5.1-3                                              all          Thai Norasi font
ii  fonts-tlwg-purisa                                     1:0.5.1-3                                              all          Thai Purisa font
ii  fonts-tlwg-sawasdee                                   1:0.5.1-3                                              all          Thai Sawasdee font
ii  fonts-tlwg-typewriter                                 1:0.5.1-3                                              all          Thai TlwgTypewriter font
ii  fonts-tlwg-typist                                     1:0.5.1-3                                              all          Thai TlwgTypist font
ii  fonts-tlwg-typo                                       1:0.5.1-3                                              all          Thai TlwgTypo font
ii  fonts-tlwg-umpush                                     1:0.5.1-3                                              all          Thai Umpush font
ii  fonts-tlwg-waree                                      1:0.5.1-3                                              all          Thai Waree font
ii  foomatic-db-compressed-ppds                           20140410-0ubuntu1                                      all          OpenPrinting printer support - Compressed PPDs derived from the database
rc  freeglut3:amd64                                       2.8.1-1                                                amd64        OpenGL Utility Toolkit
ii  freepats                                              20060219-1                                             all          Free patch set for MIDI audio synthesis
ii  friendly-recovery                                     0.2.25                                                 all          Make recovery more user-friendly
ii  friends                                               0.2.0+14.04.20140217.1-0ubuntu1                        amd64        Social integration with the desktop
ii  friends-dispatcher                                    0.2.0+14.04.20140217.1-0ubuntu1                        all          Social integration with the desktop
ii  friends-facebook                                      0.2.0+14.04.20140217.1-0ubuntu1                        all          Social integration with the desktop - Facebook
ii  friends-twitter                                       0.2.0+14.04.20140217.1-0ubuntu1                        all          Social integration with the desktop - Twitter
ii  ftp                                                   0.17-28                                                amd64        classical file transfer client
ii  fuse                                                  2.9.2-4ubuntu4.14.04.1                                 amd64        Filesystem in Userspace
ii  g++                                                   4:4.8.2-1ubuntu6                                       amd64        GNU C++ compiler
ii  g++-4.8                                               4.8.4-2ubuntu1~14.04                                   amd64        GNU C++ compiler
ii  gcc                                                   4:4.8.2-1ubuntu6                                       amd64        GNU C compiler
ii  gcc-4.8                                               4.8.4-2ubuntu1~14.04                                   amd64        GNU C compiler
ii  gcc-4.8-base:amd64                                    4.8.4-2ubuntu1~14.04                                   amd64        GCC, the GNU Compiler Collection (base package)
ii  gcc-4.9-base:amd64                                    4.9.1-0ubuntu1                                         amd64        GCC, the GNU Compiler Collection (base package)
ii  gconf-service                                         3.2.6-0ubuntu2                                         amd64        GNOME configuration database system (D-Bus service)
ii  gconf-service-backend                                 3.2.6-0ubuntu2                                         amd64        GNOME configuration database system (D-Bus service)
ii  gconf2                                                3.2.6-0ubuntu2                                         amd64        GNOME configuration database system (support tools)
ii  gconf2-common                                         3.2.6-0ubuntu2                                         all          GNOME configuration database system (common files)
ii  gcr                                                   3.10.1-1                                               amd64        GNOME crypto services (daemon and tools)
ii  gdb                                                   7.7.1-0ubuntu5~14.04.2                                 amd64        GNU Debugger
ii  gdisk                                                 0.8.8-1ubuntu0.1                                       amd64        GPT fdisk text-mode partitioning tool
ii  gedit                                                 3.10.4-0ubuntu4                                        amd64        official text editor of the GNOME desktop environment
ii  gedit-common                                          3.10.4-0ubuntu4                                        all          official text editor of the GNOME desktop environment (support files)
ii  genisoimage                                           9:1.1.11-2ubuntu3                                      amd64        Creates ISO-9660 CD-ROM filesystem images
ii  geoclue                                               0.12.99-3ubuntu1                                       amd64        Geographic information framework
ii  geoclue-ubuntu-geoip                                  1.0.2+14.04.20131125-0ubuntu2                          amd64        Provide positioning for GeoClue via Ubuntu GeoIP services
ii  geoip-database                                        20140313-1                                             all          IP lookup command line tools that use the GeoIP library (country database)
ii  gettext                                               0.18.3.1-1ubuntu3                                      amd64        GNU Internationalization utilities
ii  gettext-base                                          0.18.3.1-1ubuntu3                                      amd64        GNU Internationalization utilities for the base system
ii  ghostscript                                           9.10~dfsg-0ubuntu10.4                                  amd64        interpreter for the PostScript language and for PDF
ii  ghostscript-x                                         9.10~dfsg-0ubuntu10.4                                  amd64        interpreter for the PostScript language and for PDF - X11 support
ii  gimp                                                  2.8.10-0ubuntu1                                        amd64        The GNU Image Manipulation Program
ii  gimp-data                                             2.8.10-0ubuntu1                                        all          Data files for GIMP
ii  gir1.2-accounts-1.0                                   1.15+14.04.20131126.2-0ubuntu3                         amd64        typelib file for libaccounts-glib0
ii  gir1.2-appindicator3-0.1                              12.10.1+13.10.20130920-0ubuntu4.1                      amd64        Typelib files for libappindicator3-1.
ii  gir1.2-atk-1.0                                        2.10.0-2ubuntu2                                        amd64        ATK accessibility toolkit (GObject introspection)
ii  gir1.2-atspi-2.0                                      2.10.2.is.2.10.1-0ubuntu1                              amd64        Assistive Technology Service Provider (GObject introspection)
ii  gir1.2-dbusmenu-glib-0.4                              12.10.3+14.04.20140612-0ubuntu1                        amd64        typelib file for libdbusmenu-glib4
ii  gir1.2-dee-1.0                                        1.2.7+14.04.20140324-0ubuntu1                          amd64        GObject introspection data for the Dee library
ii  gir1.2-ebook-1.2                                      3.10.4-0ubuntu1.5                                      amd64        GObject introspection for the EBook library
ii  gir1.2-ebookcontacts-1.2                              3.10.4-0ubuntu1.5                                      amd64        GObject introspection for the EBook Contacts library
ii  gir1.2-edataserver-1.2                                3.10.4-0ubuntu1.5                                      amd64        GObject introspection for the EDataServer library
ii  gir1.2-freedesktop                                    1.40.0-1ubuntu0.2                                      amd64        Introspection data for some FreeDesktop components
ii  gir1.2-gdata-0.0                                      0.14.1-1                                               amd64        GObject introspection data for the GData webservices library
ii  gir1.2-gdkpixbuf-2.0                                  2.30.7-0ubuntu1.2                                      amd64        GDK Pixbuf library - GObject-Introspection
ii  gir1.2-glib-2.0                                       1.40.0-1ubuntu0.2                                      amd64        Introspection data for GLib, GObject, Gio and GModule
ii  gir1.2-gmenu-3.0                                      3.10.1-0ubuntu2                                        amd64        GObject introspection data for the GNOME menu library
ii  gir1.2-gnomebluetooth-1.0                             3.8.2.1-0ubuntu4.2                                     amd64        Introspection data for GnomeBluetooth
ii  gir1.2-gnomekeyring-1.0                               3.8.0-2                                                amd64        GNOME keyring services library - introspection data
ii  gir1.2-goa-1.0                                        3.10.3-0ubuntu1                                        amd64        Introspection data for GNOME Online Accounts
ii  gir1.2-gst-plugins-base-1.0                           1.2.4-1~ubuntu1                                        amd64        Description: GObject introspection data for the GStreamer Plugins Base library
ii  gir1.2-gstreamer-1.0                                  1.2.4-0ubuntu1                                         amd64        Description: GObject introspection data for the GStreamer library
ii  gir1.2-gtk-3.0                                        3.10.8-0ubuntu1.6                                      amd64        GTK+ graphical user interface library -- gir bindings
ii  gir1.2-gtksource-3.0                                  3.10.2-0ubuntu1                                        amd64        gir files for the GTK+ syntax highlighting widget
ii  gir1.2-gudev-1.0                                      1:204-5ubuntu20.15                                     amd64        libgudev-1.0 introspection data
ii  gir1.2-ibus-1.0                                       1.5.5-1ubuntu3                                         amd64        Intelligent Input Bus - introspection data
ii  gir1.2-javascriptcoregtk-3.0                          2.4.8-1ubuntu1~ubuntu14.04.1                           amd64        JavaScript engine library from WebKitGTK+ - GObject introspection data
ii  gir1.2-messagingmenu-1.0                              13.10.1+14.04.20140410-0ubuntu1                        amd64        Messaging Menu - gir bindings
ii  gir1.2-networkmanager-1.0                             0.9.8.8-0ubuntu7.1                                     amd64        GObject introspection data for NetworkManager
ii  gir1.2-notify-0.7                                     0.7.6-1ubuntu3                                         amd64        sends desktop notifications to a notification daemon (Introspection files)
ii  gir1.2-packagekitglib-1.0                             0.8.12-1ubuntu5                                        amd64        GObject introspection data for the PackageKit GLib library
ii  gir1.2-pango-1.0                                      1.36.3-1ubuntu1.1                                      amd64        Layout and rendering of internationalized text - gir bindings
ii  gir1.2-peas-1.0                                       1.8.1-2ubuntu2                                         amd64        Application plugin library (introspection files)
ii  gir1.2-rb-3.0                                         3.0.2-0ubuntu2                                         amd64        GObject introspection data for the rhythmbox music player
ii  gir1.2-secret-1                                       0.16-0ubuntu1                                          amd64        Secret store (GObject-Introspection)
ii  gir1.2-signon-1.0                                     1.10daily13.06.25-0ubuntu2                             amd64        GObject introspection data for the Signon library
ii  gir1.2-soup-2.4                                       2.44.2-1ubuntu2                                        amd64        GObject introspection data for the libsoup HTTP library
ii  gir1.2-totem-1.0                                      3.10.1-1ubuntu4                                        amd64        GObject introspection data for Totem media player
ii  gir1.2-totem-plparser-1.0                             3.10.2-0ubuntu1                                        amd64        GObject introspection data for the Totem Playlist Parser library
ii  gir1.2-udisks-2.0                                     2.1.3-1ubuntu0.1                                       amd64        GObject based library to access udisks2 - introspection data
ii  gir1.2-unity-5.0:amd64                                7.1.4+14.04.20140210-0ubuntu1                          amd64        GObject introspection data for the Unity library
ii  gir1.2-vte-2.90                                       1:0.34.9-1ubuntu1                                      amd64        GObject introspection data for the VTE library
ii  gir1.2-webkit-3.0                                     2.4.8-1ubuntu1~ubuntu14.04.1                           amd64        Web content engine library for GTK+ - GObject introspection data
ii  gir1.2-wnck-3.0                                       3.4.7-0ubuntu3.1                                       amd64        GObject introspection data for the WNCK library
ii  git                                                   1:1.9.1-1ubuntu0.1                                     amd64        fast, scalable, distributed revision control system
ii  git-core                                              1:1.9.1-1ubuntu0.1                                     all          fast, scalable, distributed revision control system (obsolete)
ii  git-man                                               1:1.9.1-1ubuntu0.1                                     all          fast, scalable, distributed revision control system (manual pages)
ii  gkbd-capplet                                          3.6.0-0ubuntu2                                         amd64        GNOME Panel applet for libgnomekbd
ii  gksu                                                  2.0.2-6ubuntu2                                         amd64        graphical frontend to su
ii  glib-networking:amd64                                 2.40.0-1                                               amd64        network-related giomodules for GLib
ii  glib-networking-common                                2.40.0-1                                               all          network-related giomodules for GLib - data files
ii  glib-networking-services                              2.40.0-1                                               amd64        network-related giomodules for GLib - D-Bus services
ii  gnome-accessibility-themes                            3.10.0-1ubuntu2                                        all          Accessibility themes for the GNOME desktop
ii  gnome-bluetooth                                       3.8.2.1-0ubuntu4.2                                     amd64        GNOME Bluetooth tools
ii  gnome-calculator                                      1:3.10.3-0ubuntu0.1.1                                  amd64        GNOME desktop calculator
ii  gnome-contacts                                        3.8.3-1ubuntu1                                         amd64        Contacts manager for GNOME
ii  gnome-control-center-shared-data                      1:3.6.3-0ubuntu56.1                                    all          configuration applets for GNOME - shared data
ii  gnome-desktop3-data                                   3.8.4-0ubuntu3.1                                       all          Common files for GNOME desktop apps
ii  gnome-disk-utility                                    3.10.0-1ubuntu3                                        amd64        manage and configure disk drives and media
ii  gnome-font-viewer                                     3.8.0-1build1                                          amd64        font viewer for GNOME
ii  gnome-icon-theme                                      3.10.0-0ubuntu2                                        all          GNOME Desktop icon theme (small subset)
ii  gnome-icon-theme-symbolic                             3.10.1-1ubuntu1                                        all          GNOME desktop icon theme (symbolic icons)
ii  gnome-keyring                                         3.10.1-1ubuntu4.2                                      amd64        GNOME keyring services (daemon and tools)
rc  gnome-mahjongg                                        1:3.10.2-0ubuntu1                                      amd64        classic Eastern tile game for GNOME
ii  gnome-menus                                           3.10.1-0ubuntu2                                        amd64        GNOME implementation of the freedesktop menu specification
ii  gnome-orca                                            3.10.3-0ubuntu1                                        all          Scriptable screen reader
ii  gnome-power-manager                                   3.8.2-1ubuntu2                                         amd64        power management tool for the GNOME desktop
ii  gnome-screensaver                                     3.6.1-0ubuntu13                                        amd64        GNOME screen saver and locker
ii  gnome-screenshot                                      3.10.1-0ubuntu1                                        amd64        screenshot application for GNOME
ii  gnome-session-bin                                     3.9.90-0ubuntu12.1                                     amd64        GNOME Session Manager - Minimal runtime
ii  gnome-session-canberra                                0.30-0ubuntu3                                          amd64        GNOME session log in and log out sound events
ii  gnome-session-common                                  3.9.90-0ubuntu12.1                                     all          GNOME Session Manager - common files
ii  gnome-settings-daemon-schemas                         3.8.6.1-0ubuntu11.2                                    all          gnome-settings-daemon schemas
rc  gnome-sudoku                                          1:3.10.2-0ubuntu3.1                                    all          Sudoku puzzle game for GNOME
ii  gnome-system-log                                      3.8.1-1svn1                                            amd64        system log viewer for GNOME
ii  gnome-system-monitor                                  3.8.2.1-2ubuntu1                                       amd64        Process viewer and system resource monitor for GNOME
ii  gnome-terminal                                        3.6.2-0ubuntu1                                         amd64        GNOME terminal emulator application
ii  gnome-terminal-data                                   3.6.2-0ubuntu1                                         all          Data files for the GNOME terminal emulator
ii  gnome-user-guide                                      3.8.2-1                                                all          GNOME user's guide
ii  gnome-user-share                                      3.0.4-0ubuntu1                                         amd64        User level public file sharing via WebDAV or ObexFTP
ii  gnome-video-effects                                   0.4.1-0ubuntu1                                         all          GNOME Video Effects
ii  gnupg                                                 1.4.16-1ubuntu2.3                                      amd64        GNU privacy guard - a free PGP replacement
ii  gparted                                               0.18.0-1                                               amd64        GNOME partition editor
ii  gpgv                                                  1.4.16-1ubuntu2.3                                      amd64        GNU privacy guard - signature verification tool
ii  grep                                                  2.16-1                                                 amd64        GNU grep, egrep and fgrep
ii  groff-base                                            1.22.2-5                                               amd64        GNU troff text-formatting system (base system components)
ii  growisofs                                             7.1-10build1                                           amd64        DVD+-RW/R recorder
ii  grub-common                                           2.02~beta2-9ubuntu1.3                                  amd64        GRand Unified Bootloader (common files)
ii  grub-efi-amd64                                        2.02~beta2-9ubuntu1.3                                  amd64        GRand Unified Bootloader, version 2 (EFI-AMD64 version)
ii  grub-efi-amd64-bin                                    2.02~beta2-9ubuntu1.3                                  amd64        GRand Unified Bootloader, version 2 (EFI-AMD64 binaries)
ii  grub-efi-amd64-signed                                 1.34.4+2.02~beta2-9ubuntu1.3                           amd64        GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)
ii  grub2-common                                          2.02~beta2-9ubuntu1.3                                  amd64        GRand Unified Bootloader (common files for version 2)
ii  gsettings-desktop-schemas                             3.10.1-0ubuntu1                                        all          GSettings deskop-wide schemas
ii  gsettings-ubuntu-schemas                              0.0.1+14.04.20140401-0ubuntu1                          all          GSettings deskop-wide schemas for Ubuntu
ii  gsfonts                                               1:8.11+urwcyr1.0.7~pre44-4.2ubuntu1                    all          Fonts for the Ghostscript interpreter(s)
ii  gstreamer0.10-alsa:amd64                              0.10.36-1.1ubuntu2                                     amd64        GStreamer plugin for ALSA
ii  gstreamer0.10-fluendo-mp3:amd64                       0.10.23.debian-3                                       amd64        Fluendo mp3 decoder GStreamer 0.10 plugin
ii  gstreamer0.10-nice:amd64                              0.1.4-1                                                amd64        ICE library (GStreamer 0.10 plugin)
ii  gstreamer0.10-plugins-bad:amd64                       0.10.23-7.2ubuntu1.1                                   amd64        GStreamer plugins from the "bad" set
ii  gstreamer0.10-plugins-base:amd64                      0.10.36-1.1ubuntu2                                     amd64        GStreamer plugins from the "base" set
ii  gstreamer0.10-plugins-base-apps                       0.10.36-1.1ubuntu2                                     amd64        GStreamer helper programs from the "base" set
ii  gstreamer0.10-plugins-good:amd64                      0.10.31-3+nmu1ubuntu5                                  amd64        GStreamer plugins from the "good" set
ii  gstreamer0.10-plugins-ugly:amd64                      0.10.19-2ubuntu5                                       amd64        GStreamer plugins from the "ugly" set
ii  gstreamer0.10-pulseaudio:amd64                        0.10.31-3+nmu1ubuntu5                                  amd64        GStreamer plugin for PulseAudio
ii  gstreamer0.10-tools                                   0.10.36-1.2ubuntu3                                     amd64        Tools for use with GStreamer
ii  gstreamer0.10-x:amd64                                 0.10.36-1.1ubuntu2                                     amd64        GStreamer plugins for X11 and Pango
ii  gstreamer1.0-alsa:amd64                               1.2.4-1~ubuntu1                                        amd64        GStreamer plugin for ALSA
ii  gstreamer1.0-clutter                                  2.0.8-1build1                                          amd64        Clutter PLugin for GStreamer 1.0
ii  gstreamer1.0-fluendo-mp3:amd64                        0.10.23.debian-3                                       amd64        Fluendo mp3 decoder GStreamer 1.0 plugin
ii  gstreamer1.0-libav:amd64                              1.2.4-1~ubuntu1                                        amd64        libav plugin for GStreamer
ii  gstreamer1.0-nice:amd64                               0.1.4-1                                                amd64        ICE library (GStreamer plugin)
ii  gstreamer1.0-plugins-bad:amd64                        1.2.4-1~ubuntu1                                        amd64        GStreamer plugins from the "bad" set
ii  gstreamer1.0-plugins-bad-faad:amd64                   1.2.4-1~ubuntu1                                        amd64        GStreamer faad plugin from the "bad" set
ii  gstreamer1.0-plugins-bad-videoparsers:amd64           1.2.4-1~ubuntu1                                        amd64        GStreamer videoparsers plugin from the "bad" set
ii  gstreamer1.0-plugins-base:amd64                       1.2.4-1~ubuntu1                                        amd64        GStreamer plugins from the "base" set
ii  gstreamer1.0-plugins-base-apps                        1.2.4-1~ubuntu1                                        amd64        GStreamer helper programs from the "base" set
ii  gstreamer1.0-plugins-good:amd64                       1.2.4-1~ubuntu1                                        amd64        GStreamer plugins from the "good" set
ii  gstreamer1.0-plugins-ugly:amd64                       1.2.3-2build1                                          amd64        GStreamer plugins from the "ugly" set
ii  gstreamer1.0-pulseaudio:amd64                         1.2.4-1~ubuntu1                                        amd64        GStreamer plugin for PulseAudio
ii  gstreamer1.0-tools                                    1.2.4-0ubuntu1                                         amd64        Tools for use with GStreamer
ii  gstreamer1.0-x:amd64                                  1.2.4-1~ubuntu1                                        amd64        GStreamer plugins for X11 and Pango
ii  gtk2-engines-murrine:amd64                            0.98.2-0ubuntu2                                        amd64        cairo-based gtk+-2.0 theme engine
ii  gtk3-engines-unico:amd64                              1.0.3+14.04.20140109-0ubuntu1                          amd64        Unico Gtk+ 3 theme engine
ii  gucharmap                                             1:3.10.1-0ubuntu2                                      amd64        Unicode character picker and font browser
ii  guile-2.0-libs                                        2.0.9+1-1ubuntu1                                       amd64        Core Guile libraries
ii  gvfs:amd64                                            1.20.3-0ubuntu1.2                                      amd64        userspace virtual filesystem - GIO module
ii  gvfs-backends                                         1.20.3-0ubuntu1.2                                      amd64        userspace virtual filesystem - backends
ii  gvfs-bin                                              1.20.3-0ubuntu1.2                                      amd64        userspace virtual filesystem - binaries
ii  gvfs-common                                           1.20.3-0ubuntu1.2                                      all          userspace virtual filesystem - common data files
ii  gvfs-daemons                                          1.20.3-0ubuntu1.2                                      amd64        userspace virtual filesystem - servers
ii  gvfs-fuse                                             1.20.3-0ubuntu1.2                                      amd64        userspace virtual filesystem - fuse server
ii  gvfs-libs:amd64                                       1.20.3-0ubuntu1.2                                      amd64        userspace virtual filesystem - private libraries
ii  gzip                                                  1.6-3ubuntu1                                           amd64        GNU compression utilities
ii  hardening-includes                                    2.5ubuntu2.1                                           all          Makefile for enabling compiler flags for security hardening
ii  hdparm                                                9.43-1ubuntu3                                          amd64        tune hard disk parameters for high performance
ii  hicolor-icon-theme                                    0.13-1                                                 all          default fallback theme for FreeDesktop.org icon themes
ii  hostname                                              3.15ubuntu1                                            amd64        utility to set/show the host name or domain name
ii  hplip                                                 3.14.3-0ubuntu3.4                                      amd64        HP Linux Printing and Imaging System (HPLIP)
ii  hplip-data                                            3.14.3-0ubuntu3.4                                      all          HP Linux Printing and Imaging - data files
ii  htop                                                  1.0.2-3                                                amd64        interactive processes viewer
ii  hud                                                   14.04+14.04.20140604-0ubuntu1                          amd64        Backend for the Unity HUD
ii  humanity-icon-theme                                   0.6.5                                                  all          Humanity Icon theme
ii  hunspell-en-us                                        20070829-4ubuntu3                                      all          English_american dictionary for hunspell
ii  hunspell-fr                                           1:5.0.2-1                                              all          French dictionary for hunspell (dependency package)
ii  hunspell-fr-classical                                 1:5.0.2-1                                              all          French dictionary for hunspell (classical version)
ii  hwdata                                                0.249-1                                                all          hardware identification / configuration data
ii  hyphen-en-us                                          2.8.6-3ubuntu2                                         all          US English hyphenation patterns for LibreOffice/OpenOffice.org
ii  hyphen-fr                                             1:4.2.1-0ubuntu1.1                                     all          French hyphenation patterns for LibreOffice
ii  i965-va-driver:amd64                                  1.5.0-1~xedgers~trusty                                 amd64        VAAPI driver for Intel G45 & HD Graphics family
ii  ibus                                                  1.5.5-1ubuntu3                                         amd64        Intelligent Input Bus - core
ii  ibus-gtk:amd64                                        1.5.5-1ubuntu3                                         amd64        Intelligent Input Bus - GTK+2 support
ii  ibus-gtk3:amd64                                       1.5.5-1ubuntu3                                         amd64        Intelligent Input Bus - GTK+3 support
ii  ibus-pinyin                                           1.5.0-1ubuntu1                                         amd64        Pinyin engine for IBus
ii  ibus-qt4                                              1.3.2-2                                                amd64        qt-immodule for ibus (QT4) (plugin)
ii  ibus-table                                            1.5.0.is.1.5.0.20130419-2                              all          table engine for IBus
ii  ifupdown                                              0.7.47.2ubuntu4.1                                      amd64        high level tools to configure network interfaces
ii  im-config                                             0.24-1ubuntu4.1                                        all          Input method configuration framework
ii  imagemagick                                           8:6.7.7.10-6ubuntu3                                    amd64        image manipulation programs
ii  imagemagick-common                                    8:6.7.7.10-6ubuntu3                                    all          image manipulation programs -- infrastructure
ii  indicator-application                                 12.10.1+14.04.20140407-0ubuntu1                        amd64        Application Indicators
ii  indicator-appmenu                                     13.01.0+14.04.20140404-0ubuntu1                        amd64        Indicator for application menus.
ii  indicator-bluetooth                                   0.0.6+14.04.20140207-0ubuntu2                          amd64        System bluetooth indicator.
ii  indicator-datetime                                    13.10.0+14.04.20140415.3-0ubuntu1                      amd64        Simple clock
ii  indicator-keyboard                                    0.0.0+14.04.20140410.1-0ubuntu1                        amd64        Keyboard indicator
ii  indicator-messages                                    13.10.1+14.04.20140410-0ubuntu1                        amd64        indicator that collects messages that need a response
ii  indicator-power                                       12.10.6+14.04.20140411-0ubuntu1                        amd64        Indicator showing power state.
ii  indicator-printers                                    0.1.7+14.04.20140527-0ubuntu1                          amd64        indicator showing active print jobs
ii  indicator-session                                     12.10.5+14.04.20150404-0ubuntu1                        amd64        indicator showing session management, status and user switching
ii  indicator-sound                                       12.10.2+14.04.20140401-0ubuntu1                        amd64        System sound indicator.
ii  info                                                  5.2.0.dfsg.1-2                                         amd64        Standalone GNU Info documentation browser
ii  init-system-helpers                                   1.14                                                   all          helper tools for all init systems
ii  initramfs-tools                                       0.103ubuntu4.2                                         all          tools for generating an initramfs
ii  initramfs-tools-bin                                   0.103ubuntu4.2                                         amd64        binaries used by initramfs-tools
ii  initscripts                                           2.88dsf-41ubuntu6.2                                    amd64        scripts for initializing and shutting down the system
ii  inputattach                                           1:1.4.7-1                                              amd64        utility to connect serial-attached peripherals to the input subsystem
ii  insserv                                               1.14.0-5ubuntu2                                        amd64        boot sequence organizer using LSB init.d script dependency information
ii  install-info                                          5.2.0.dfsg.1-2                                         amd64        Manage installed documentation in info format
ii  intel-gpu-tools                                       1.8-1~xedgers~trusty                                   amd64        tools for debugging the Intel graphics driver
ii  intltool-debian                                       0.35.0+20060710.1                                      all          Help i18n of RFC822 compliant config files
ii  iproute                                               1:3.12.0-2ubuntu1                                      all          transitional dummy package for iproute2
ii  iproute2                                              3.12.0-2ubuntu1                                        amd64        networking and traffic control tools
ii  iptables                                              1.4.21-1ubuntu1                                        amd64        administration tools for packet filtering and NAT
ii  iputils-arping                                        3:20121221-4ubuntu1.1                                  amd64        Tool to send ICMP echo requests to an ARP address
ii  iputils-ping                                          3:20121221-4ubuntu1.1                                  amd64        Tools to test the reachability of network hosts
ii  iputils-tracepath                                     3:20121221-4ubuntu1.1                                  amd64        Tools to trace the network path to a remote host
ii  irqbalance                                            1.0.6-2ubuntu0.14.04.4                                 amd64        Daemon to balance interrupts for SMP systems
ii  isc-dhcp-client                                       4.2.4-7ubuntu12.3                                      amd64        ISC DHCP client
ii  isc-dhcp-common                                       4.2.4-7ubuntu12.3                                      amd64        common files used by all the isc-dhcp* packages
ii  iso-codes                                             3.52-1                                                 all          ISO language, territory, currency, script codes and their translations
ii  iw                                                    3.4-1                                                  amd64        tool for configuring Linux wireless devices
ii  kbd                                                   1.15.5-1ubuntu1                                        amd64        Linux console font and keytable utilities
ii  kerneloops-daemon                                     0.12+git20090217-3ubuntu8                              amd64        kernel oops tracker
ii  keyboard-configuration                                1.70ubuntu8                                            all          system-wide keyboard preferences
ii  keyutils                                              1.5.6-1                                                amd64        Linux Key Management Utilities
ii  klibc-utils                                           2.0.3-0ubuntu1                                         amd64        small utilities built with klibc for early boot
ii  kmod                                                  15-0ubuntu6                                            amd64        tools for managing Linux kernel modules
ii  krb5-locales                                          1.12+dfsg-2ubuntu5.1                                   all          Internationalization support for MIT Kerberos
ii  landscape-client-ui-install                           14.12-0ubuntu0.14.04                                   amd64        The Landscape administration system client - UI installer
ii  language-pack-en                                      1:14.04+20150219                                       all          translation updates for language English
ii  language-pack-en-base                                 1:14.04+20150219                                       all          translations for language English
ii  language-pack-fr                                      1:14.04+20140707                                       all          translation updates for language French
ii  language-pack-fr-base                                 1:14.04+20140707                                       all          translations for language French
ii  language-pack-gnome-en                                1:14.04+20150219                                       all          GNOME translation updates for language English
ii  language-pack-gnome-en-base                           1:14.04+20150219                                       all          GNOME translations for language English
ii  language-pack-gnome-fr                                1:14.04+20140707                                       all          GNOME translation updates for language French
ii  language-pack-gnome-fr-base                           1:14.04+20140707                                       all          GNOME translations for language French
ii  language-selector-common                              0.129.3                                                all          Language selector for Ubuntu
ii  language-selector-gnome                               0.129.3                                                all          Language selector for Ubuntu
ii  laptop-detect                                         0.13.7ubuntu2                                          amd64        attempt to detect a laptop
ii  latex-beamer                                          3.24-1                                                 all          LaTeX class to produce presentations
ii  latex-xcolor                                          2.11-1.1                                               all          Easy driver-independent TeX class for color
ii  less                                                  458-2                                                  amd64        pager program similar to more
ii  lib32gcc1                                             1:4.9.1-0ubuntu1                                       amd64        GCC support library (32 bit Version)
ii  liba52-0.7.4                                          0.7.4-17                                               amd64        library for decoding ATSC A/52 streams
ii  libaa1:amd64                                          1.4p5-41                                               amd64        ASCII art library
ii  libaacs0:amd64                                        0.7.0-1                                                amd64        free-and-libre implementation of AACS
ii  libaccount-plugin-1.0-0                               0.1.7~+14.04.20140211.2-0ubuntu4                       amd64        libaccount-plugin for Unity Control Center
ii  libaccount-plugin-generic-oauth                       0.11+14.04.20140409.1-0ubuntu2                         amd64        GNOME Control Center account plugin for single signon - generic OAuth
ii  libaccount-plugin-google                              0.11+14.04.20140409.1-0ubuntu2                         amd64        GNOME Control Center account plugin for single signon - Google Auth
ii  libaccounts-glib0:amd64                               1.15+14.04.20131126.2-0ubuntu3                         amd64        library for single signon
ii  libaccounts-qt5-1                                     1.11+14.04.20140410.1-0ubuntu1                         amd64        QT library for single sign on
ii  libaccountsservice0:amd64                             0.6.35-0ubuntu7.2                                      amd64        query and manipulate user account information - shared libraries
ii  libacl1:amd64                                         2.2.52-1                                               amd64        Access control list shared library
ii  libalgorithm-diff-perl                                1.19.02-3                                              all          module to find differences between files
ii  libalgorithm-diff-xs-perl                             0.04-2build4                                           amd64        module to find differences between files (XS accelerated)
ii  libalgorithm-merge-perl                               0.08-2                                                 all          Perl module for three-way merge of textual data
ii  libamd2.3.1:amd64                                     1:4.2.1-3ubuntu1                                       amd64        approximate minimum degree ordering library for sparse matrices
ii  libapparmor-perl                                      2.8.95~2430-0ubuntu5.3                                 amd64        AppArmor library Perl bindings
ii  libapparmor1:amd64                                    2.8.95~2430-0ubuntu5.3                                 amd64        changehat AppArmor library
ii  libappindicator3-1                                    12.10.1+13.10.20130920-0ubuntu4.1                      amd64        Application Indicators
ii  libapr1:amd64                                         1.5.0-1                                                amd64        Apache Portable Runtime Library
ii  libaprutil1:amd64                                     1.5.3-1                                                amd64        Apache Portable Runtime Utility Library
ii  libapt-inst1.5:amd64                                  1.0.1ubuntu2.10                                        amd64        deb package format runtime library
ii  libapt-pkg-perl                                       0.1.29build1                                           amd64        Perl interface to libapt-pkg
ii  libapt-pkg4.12:amd64                                  1.0.1ubuntu2.10                                        amd64        package management runtime library
ii  libarchive-extract-perl                               0.70-1                                                 all          generic archive extracting module
ii  libarchive-zip-perl                                   1.30-7                                                 all          Perl module for manipulation of ZIP archives
ii  libarchive13:amd64                                    3.1.2-7ubuntu2.1                                       amd64        Multi-format archive and compression library (shared library)
ii  libart-2.0-2:amd64                                    2.3.21-2                                               amd64        Library of functions for 2D graphics - runtime files
ii  libasan0:amd64                                        4.8.4-2ubuntu1~14.04                                   amd64        AddressSanitizer -- a fast memory error detector
ii  libasn1-8-heimdal:amd64                               1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - ASN.1 library
ii  libasound2:amd64                                      1.0.27.2-3ubuntu7                                      amd64        shared library for ALSA applications
ii  libasound2-data                                       1.0.27.2-3ubuntu7                                      all          Configuration files and profiles for ALSA drivers
ii  libasound2-plugins:amd64                              1.0.27-2ubuntu2                                        amd64        ALSA library additional plugins
ii  libaspell15                                           0.60.7~20110707-1ubuntu1                               amd64        GNU Aspell spell-checker runtime library
ii  libasprintf-dev:amd64                                 0.18.3.1-1ubuntu3                                      amd64        GNU Internationalization library development files
ii  libasprintf0c2:amd64                                  0.18.3.1-1ubuntu3                                      amd64        GNU library to use fprintf and friends in C++
ii  libass4:amd64                                         0.10.1-3ubuntu1                                        amd64        library for SSA/ASS subtitles rendering
ii  libassuan0:amd64                                      2.1.1-1ubuntu1                                         amd64        IPC library for the GnuPG components
ii  libasyncns0:amd64                                     0.8-4ubuntu2                                           amd64        Asynchronous name service query library
ii  libatasmart4:amd64                                    0.19-3                                                 amd64        ATA S.M.A.R.T. reading and parsing library
ii  libatk-adaptor:amd64                                  2.10.2-2ubuntu1                                        amd64        AT-SPI 2 toolkit bridge
ii  libatk-bridge2.0-0:amd64                              2.10.2-2ubuntu1                                        amd64        AT-SPI 2 toolkit bridge - shared library
ii  libatk1.0-0:amd64                                     2.10.0-2ubuntu2                                        amd64        ATK accessibility toolkit
ii  libatk1.0-data                                        2.10.0-2ubuntu2                                        all          Common files for the ATK accessibility toolkit
ii  libatkmm-1.6-1:amd64                                  2.22.7-2ubuntu1                                        amd64        C++ wrappers for ATK accessibility toolkit (shared libraries)
ii  libatomic1:amd64                                      4.8.4-2ubuntu1~14.04                                   amd64        support library providing __atomic built-in functions
ii  libatspi2.0-0:amd64                                   2.10.2.is.2.10.1-0ubuntu1                              amd64        Assistive Technology Service Provider Interface - shared library
ii  libattr1:amd64                                        1:2.4.47-1ubuntu1                                      amd64        Extended attribute shared library
ii  libaudio2:amd64                                       1.9.4-1                                                amd64        Network Audio System - shared libraries
ii  libaudit-common                                       1:2.3.2-2ubuntu1                                       all          Dynamic library for security auditing - common files
ii  libaudit1:amd64                                       1:2.3.2-2ubuntu1                                       amd64        Dynamic library for security auditing
ii  libauthen-sasl-perl                                   2.1500-1                                               all          Authen::SASL - SASL Authentication framework
ii  libautodie-perl                                       2.23-1                                                 all          Perl pragma to make certain failures fatal
ii  libavahi-client3:amd64                                0.6.31-4ubuntu1                                        amd64        Avahi client library
ii  libavahi-common-data:amd64                            0.6.31-4ubuntu1                                        amd64        Avahi common data files
ii  libavahi-common3:amd64                                0.6.31-4ubuntu1                                        amd64        Avahi common library
ii  libavahi-core7:amd64                                  0.6.31-4ubuntu1                                        amd64        Avahi's embeddable mDNS/DNS-SD library
ii  libavahi-glib1:amd64                                  0.6.31-4ubuntu1                                        amd64        Avahi GLib integration library
ii  libavahi-gobject0:amd64                               0.6.31-4ubuntu1                                        amd64        Avahi GObject library
ii  libavc1394-0:amd64                                    0.5.4-2                                                amd64        control IEEE 1394 audio/video devices
ii  libavcodec54:amd64                                    6:9.18-0ubuntu0.14.04.1                                amd64        Libav codec library
ii  libavformat54:amd64                                   6:9.18-0ubuntu0.14.04.1                                amd64        Libav file format library
ii  libavutil52:amd64                                     6:9.18-0ubuntu0.14.04.1                                amd64        Libav utility library
ii  libbabl-0.1-0:amd64                                   0.1.10-1ubuntu2                                        amd64        Dynamic, any to any, pixel format conversion library
ii  libbamf3-2:amd64                                      0.5.1+14.04.20140409-0ubuntu1                          amd64        Window matching library - shared library
ii  libbasicusageenvironment0                             2014.01.13-1                                           amd64        multimedia RTSP streaming library (BasicUsageEnvironment class)
ii  libbind9-90                                           1:9.9.5.dfsg-3ubuntu0.5                                amd64        BIND9 Shared Library used by BIND
ii  libblas3                                              1.2.20110419-7                                         amd64        Basic Linear Algebra Reference implementations, shared library
ii  libblkid1:amd64                                       2.20.1-5.1ubuntu20.7                                   amd64        block device id library
ii  libbluetooth3:amd64                                   4.101-0ubuntu13.1                                      amd64        Library to use the BlueZ Linux Bluetooth stack
ii  libbluray1:amd64                                      1:0.5.0-1                                              amd64        Blu-ray disc playback support library (shared library)
ii  libboost-date-time1.54.0:amd64                        1.54.0-4ubuntu3.1                                      amd64        set of date-time libraries based on generic programming concepts
ii  libboost-system1.54.0:amd64                           1.54.0-4ubuntu3.1                                      amd64        Operating system (e.g. diagnostics support) library
ii  libbotan-1.10-0                                       1.10.5-1ubuntu1                                        amd64        multiplatform crypto library
ii  libbrasero-media3-1                                   3.10.0-0ubuntu1                                        amd64        CD/DVD burning library for GNOME - runtime
ii  libbrlapi0.6:amd64                                    5.0-2ubuntu2                                           amd64        braille display access via BRLTTY - shared library
ii  libbsd0:amd64                                         0.6.0-2ubuntu1                                         amd64        utility functions from BSD systems - shared library
ii  libburn4                                              1.3.4-0ubuntu1                                         amd64        library to provide CD/DVD writing functions
ii  libbz2-1.0:amd64                                      1.0.6-5                                                amd64        high-quality block-sorting file compressor library - runtime
ii  libc-bin                                              2.19-0ubuntu6.6                                        amd64        Embedded GNU C Library: Binaries
ii  libc-dev-bin                                          2.19-0ubuntu6.6                                        amd64        Embedded GNU C Library: Development binaries
ii  libc6:amd64                                           2.19-0ubuntu6.6                                        amd64        Embedded GNU C Library: Shared libraries
ii  libc6-dbg:amd64                                       2.19-0ubuntu6.6                                        amd64        Embedded GNU C Library: detached debugging symbols
ii  libc6-dev:amd64                                       2.19-0ubuntu6.6                                        amd64        Embedded GNU C Library: Development Libraries and Header Files
ii  libc6-i386                                            2.19-0ubuntu6.6                                        amd64        Embedded GNU C Library: 32-bit shared libraries for AMD64
ii  libcaca0:amd64                                        0.99.beta18-1ubuntu5                                   amd64        colour ASCII art library
ii  libcairo-gobject2:amd64                               1.13.0~20140204-0ubuntu1.1                             amd64        The Cairo 2D vector graphics library (GObject library)
ii  libcairo-perl                                         1.104-1                                                amd64        Perl interface to the Cairo graphics library
ii  libcairo2:amd64                                       1.13.0~20140204-0ubuntu1.1                             amd64        The Cairo 2D vector graphics library
ii  libcairomm-1.0-1:amd64                                1.10.0-1ubuntu3                                        amd64        C++ wrappers for Cairo (shared libraries)
ii  libcamd2.3.1:amd64                                    1:4.2.1-3ubuntu1                                       amd64        symmetric approximate minimum degree library for sparse matrices
ii  libcamel-1.2-45                                       3.10.4-0ubuntu1.5                                      amd64        Evolution MIME message handling library
ii  libcanberra-gtk-module:amd64                          0.30-0ubuntu3                                          amd64        translates GTK+ widgets signals to event sounds
ii  libcanberra-gtk0:amd64                                0.30-0ubuntu3                                          amd64        GTK+ helper for playing widget event sounds with libcanberra
ii  libcanberra-gtk3-0:amd64                              0.30-0ubuntu3                                          amd64        GTK+ 3.0 helper for playing widget event sounds with libcanberra
ii  libcanberra-gtk3-module:amd64                         0.30-0ubuntu3                                          amd64        translates GTK3 widgets signals to event sounds
ii  libcanberra-pulse:amd64                               0.30-0ubuntu3                                          amd64        PulseAudio backend for libcanberra
ii  libcanberra0:amd64                                    0.30-0ubuntu3                                          amd64        simple abstract interface for playing event sounds
ii  libcap-ng0                                            0.7.3-1ubuntu2                                         amd64        An alternate POSIX capabilities library
ii  libcap2:amd64                                         1:2.24-0ubuntu2                                        amd64        support for getting/setting POSIX.1e capabilities
ii  libcap2-bin                                           1:2.24-0ubuntu2                                        amd64        basic utility programs for using capabilities
ii  libccolamd2.8.0:amd64                                 1:4.2.1-3ubuntu1                                       amd64        constrained column approximate library for sparse matrices
ii  libcdaudio1                                           0.99.12p2-13                                           amd64        library for controlling a CD-ROM when playing audio CDs
ii  libcddb2                                              1.3.2-4fakesync2                                       amd64        library to access CDDB data - runtime files
ii  libcdio-cdda1                                         0.83-4.1ubuntu1                                        amd64        library to read and control digital audio CDs
ii  libcdio-paranoia1                                     0.83-4.1ubuntu1                                        amd64        library to read digital audio CDs with error correction
ii  libcdio13                                             0.83-4.1ubuntu1                                        amd64        library to read and control CD-ROM
ii  libcdparanoia0:amd64                                  3.10.2+debian-11                                       amd64        audio extraction tool for sampling CDs (library)
ii  libcdr-0.0-0                                          0.0.15-1ubuntu1                                        amd64        library for reading and converting Corel DRAW files
ii  libcgmanager0:amd64                                   0.24-0ubuntu7.5                                        amd64        Central cgroup manager daemon (client library)
ii  libcheese-gtk23:amd64                                 3.10.2-0ubuntu2                                        amd64        tool to take pictures and videos from your webcam - widgets
ii  libcheese7:amd64                                      3.10.2-0ubuntu2                                        amd64        tool to take pictures and videos from your webcam - base library
ii  libcholmod2.1.2:amd64                                 1:4.2.1-3ubuntu1                                       amd64        sparse Cholesky factorization library for sparse matrices
ii  libchromaprint0:amd64                                 1.1-1                                                  amd64        audio fingerprint library
ii  libclass-accessor-perl                                0.34-1                                                 all          Perl module that automatically generates accessors
ii  libclone-perl                                         0.36-1                                                 amd64        module for recursively copying Perl datatypes
ii  libcloog-isl4:amd64                                   0.18.2-1                                               amd64        Chunky Loop Generator (runtime library)
ii  libclucene-contribs1:amd64                            2.3.3.4-4build1                                        amd64        language specific text analyzers (runtime)
ii  libclucene-core1:amd64                                2.3.3.4-4build1                                        amd64        core library for full-featured text search engine (runtime)
ii  libclutter-1.0-0:amd64                                1.16.4-0ubuntu2                                        amd64        Open GL based interactive canvas library
ii  libclutter-1.0-common                                 1.16.4-0ubuntu2                                        all          Open GL based interactive canvas library (common files)
ii  libclutter-gst-2.0-0:amd64                            2.0.8-1build1                                          amd64        Open GL based interactive canvas library GStreamer elements
ii  libclutter-gtk-1.0-0:amd64                            1.4.4-3ubuntu2.2                                       amd64        Open GL based interactive canvas library GTK+ widget
ii  libcmis-0.4-4                                         0.4.1-3ubuntu4                                         amd64        CMIS protocol client library
ii  libcogl-common                                        1.16.2-1                                               all          Object oriented GL/GLES Abstraction/Utility Layer (common files)
ii  libcogl-pango15:amd64                                 1.16.2-1                                               amd64        Object oriented GL/GLES Abstraction/Utility Layer
ii  libcogl15:amd64                                       1.16.2-1                                               amd64        Object oriented GL/GLES Abstraction/Utility Layer
ii  libcolamd2.8.0:amd64                                  1:4.2.1-3ubuntu1                                       amd64        column approximate minimum degree ordering library for sparse matrices
ii  libcolord1:amd64                                      1.0.6-1                                                amd64        system service to manage device colour profiles -- runtime
ii  libcolorhug1:amd64                                    1.0.6-1                                                amd64        library to access the ColorHug colourimeter -- runtime
ii  libcolumbus1:amd64                                    1.1.0+14.04.20140325.3-0ubuntu1                        amd64        error tolerant matching engine - shared library
ii  libcolumbus1-common                                   1.1.0+14.04.20140325.3-0ubuntu1                        all          error tolerant matching engine - common files
ii  libcomerr2:amd64                                      1.42.9-3ubuntu1.3                                      amd64        common error description library
ii  libcompizconfig0                                      1:0.9.11.3+14.04.20150313-0ubuntu1                     amd64        Settings library for plugins - OpenCompositing Project
ii  libcrack2:amd64                                       2.9.1-1build1                                          amd64        pro-active password checker library
ii  libcroco3:amd64                                       0.6.8-2ubuntu1                                         amd64        Cascading Style Sheet (CSS) parsing and manipulation toolkit
ii  libcrypt-passwdmd5-perl                               1.3-10                                                 all          interoperable MD5-based crypt() for perl
ii  libcryptsetup4                                        2:1.6.1-1ubuntu1                                       amd64        disk encryption support - shared library
ii  libcrystalhd3:amd64                                   1:0.0~git20110715.fdd2f19-9ubuntu1                     amd64        Crystal HD Video Decoder (shared library)
ii  libcuda1-352                                          352.30-0ubuntu0~xedgers14.04.1                         amd64        NVIDIA CUDA runtime library
ii  libcups2:amd64                                        1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - Core library
ii  libcupscgi1:amd64                                     1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - CGI library
ii  libcupsfilters1:amd64                                 1.0.52-0ubuntu1.5                                      amd64        OpenPrinting CUPS Filters - Shared library
ii  libcupsimage2:amd64                                   1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - Raster image library
ii  libcupsmime1:amd64                                    1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - MIME library
ii  libcupsppdc1:amd64                                    1.7.2-0ubuntu1.6                                       amd64        Common UNIX Printing System(tm) - PPD manipulation library
ii  libcurl3:amd64                                        7.35.0-1ubuntu2.5                                      amd64        easy-to-use client-side URL transfer library (OpenSSL flavour)
ii  libcurl3-gnutls:amd64                                 7.35.0-1ubuntu2.5                                      amd64        easy-to-use client-side URL transfer library (GnuTLS flavour)
ii  libdaemon0                                            0.14-2ubuntu1                                          amd64        lightweight C library for daemons - runtime library
ii  libdatrie1:amd64                                      0.2.8-1                                                amd64        Double-array trie library
ii  libdb5.3:amd64                                        5.3.28-3ubuntu3                                        amd64        Berkeley v5.3 Database Libraries [runtime]
ii  libdbus-1-3:amd64                                     1.6.18-0ubuntu4.3                                      amd64        simple interprocess messaging system (library)
ii  libdbus-glib-1-2:amd64                                0.100.2-1                                              amd64        simple interprocess messaging system (GLib-based shared library)
ii  libdbusmenu-glib4:amd64                               12.10.3+14.04.20140612-0ubuntu1                        amd64        library for passing menus over DBus
ii  libdbusmenu-gtk3-4:amd64                              12.10.3+14.04.20140612-0ubuntu1                        amd64        library for passing menus over DBus - GTK+ version
ii  libdbusmenu-gtk4:amd64                                12.10.3+14.04.20140612-0ubuntu1                        amd64        library for passing menus over DBus - GTK+ version
ii  libdbusmenu-qt2:amd64                                 0.9.3+14.04.20140314-0ubuntu1                          amd64        Qt implementation of the DBusMenu protocol
ii  libdbusmenu-qt5:amd64                                 0.9.3+14.04.20140314-0ubuntu1                          amd64        Qt5 implementation of the DBusMenu protocol
ii  libdc1394-22:amd64                                    2.2.1-2ubuntu2                                         amd64        high level programming interface for IEEE1394 digital camera
ii  libdca0:amd64                                         0.0.5-6ubuntu1                                         amd64        decoding library for DTS Coherent Acoustics streams
ii  libdconf1:amd64                                       0.20.0-1                                               amd64        simple configuration storage system - runtime library
ii  libdebconfclient0:amd64                               0.187ubuntu1                                           amd64        Debian Configuration Management System (C-implementation library)
ii  libdecoration0                                        1:0.9.11.3+14.04.20150313-0ubuntu1                     amd64        Compiz window decoration library
ii  libdee-1.0-4:amd64                                    1.2.7+14.04.20140324-0ubuntu1                          amd64        model to synchronize multiple instances over DBus - shared lib
ii  libdevmapper1.02.1:amd64                              2:1.02.77-6ubuntu2                                     amd64        Linux Kernel Device Mapper userspace library
ii  libdigest-hmac-perl                                   1.03+dfsg-1                                            all          module for creating standard message integrity checks
ii  libdirac-encoder0:amd64                               1.0.2-6ubuntu1                                         amd64        open and royalty free high quality video codec - encoder library
ii  libdirectfb-1.2-9:amd64                               1.2.10.0-5                                             amd64        direct frame buffer graphics - shared libraries
ii  libdjvulibre-text                                     3.5.25.4-3                                             all          Linguistic support files for libdjvulibre
ii  libdjvulibre21:amd64                                  3.5.25.4-3                                             amd64        Runtime support for the DjVu image format
ii  libdmapsharing-3.0-2                                  2.9.24-0ubuntu1                                        amd64        DMAP client and server library - runtime
ii  libdns100                                             1:9.9.5.dfsg-3ubuntu0.5                                amd64        DNS Shared Library used by BIND
ii  libdotconf0:amd64                                     1.3-0ubuntu2                                           amd64        Configuration file parser library - runtime files
ii  libdpkg-perl                                          1.17.5ubuntu5.4                                        all          Dpkg perl modules
ii  libdrm-amdgpu1:amd64                                  2.4.65+git20151008.8c4a1cbd-0ubuntu0ricotz~trusty      amd64        Userspace interface to amdgpu-specific kernel DRM services -- runtime
ii  libdrm-dev:amd64                                      2.4.65+git20151008.8c4a1cbd-0ubuntu0ricotz~trusty      amd64        Userspace interface to kernel DRM services -- development files
ii  libdrm-intel1:amd64                                   2.4.65+git20151008.8c4a1cbd-0ubuntu0ricotz~trusty      amd64        Userspace interface to intel-specific kernel DRM services -- runtime
ii  libdrm-nouveau2:amd64                                 2.4.65+git20151008.8c4a1cbd-0ubuntu0ricotz~trusty      amd64        Userspace interface to nouveau-specific kernel DRM services -- runtime
ii  libdrm-radeon1:amd64                                  2.4.65+git20151008.8c4a1cbd-0ubuntu0ricotz~trusty      amd64        Userspace interface to radeon-specific kernel DRM services -- runtime
ii  libdrm2:amd64                                         2.4.65+git20151008.8c4a1cbd-0ubuntu0ricotz~trusty      amd64        Userspace interface to kernel DRM services -- runtime
ii  libdv4:amd64                                          1.0.0-6                                                amd64        software library for DV format digital video (runtime lib)
ii  libdvbpsi8:amd64                                      1.0.0-3                                                amd64        library for MPEG TS and DVB PSI tables decoding and generating
ii  libdvdnav4:amd64                                      4.2.1-3                                                amd64        DVD navigation library
ii  libdvdread4:amd64                                     4.2.1-2ubuntu1                                         amd64        library for reading DVDs
ii  libebackend-1.2-7                                     3.10.4-0ubuntu1.5                                      amd64        Utility library for evolution data servers
ii  libebml4:amd64                                        1.3.0-2                                                amd64        access library for the EBML format (shared library)
ii  libebook-1.2-14                                       3.10.4-0ubuntu1.5                                      amd64        Client library for evolution address books
ii  libebook-contacts-1.2-0                               3.10.4-0ubuntu1.5                                      amd64        Client library for evolution contacts books
ii  libecal-1.2-16                                        3.10.4-0ubuntu1.5                                      amd64        Client library for evolution calendars
ii  libecryptfs0                                          104-0ubuntu1.14.04.3                                   amd64        ecryptfs cryptographic filesystem (library)
ii  libedata-book-1.2-20                                  3.10.4-0ubuntu1.5                                      amd64        Backend library for evolution address books
ii  libedata-cal-1.2-23                                   3.10.4-0ubuntu1.5                                      amd64        Backend library for evolution calendars
ii  libedataserver-1.2-18                                 3.10.4-0ubuntu1.5                                      amd64        Utility library for evolution data servers
ii  libedit2:amd64                                        3.1-20130712-2                                         amd64        BSD editline and history libraries
ii  libegl1-mesa:amd64                                    11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        free implementation of the EGL API -- runtime
ii  libegl1-mesa-dev:amd64                                11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        free implementation of the EGL API -- development files
ii  libegl1-mesa-drivers:amd64                            11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        transitional dummy package
ii  libelf1:amd64                                         0.158-0ubuntu5.2                                       amd64        library to read and write ELF files
ii  libelfg0:amd64                                        0.8.13-5                                               amd64        an ELF object file access library
ii  libemail-valid-perl                                   1.192-1                                                all          Perl module for checking the validity of Internet email addresses
ii  libenca0:amd64                                        1.15-2                                                 amd64        Extremely Naive Charset Analyser - shared library files
ii  libenchant1c2a:amd64                                  1.6.0-10ubuntu1                                        amd64        Wrapper library for various spell checker engines (runtime libs)
ii  libept1.4.12:amd64                                    1.0.12                                                 amd64        High-level library for managing Debian package information
ii  liberror-perl                                         0.17-1.1                                               all          Perl module for error/exception handling in an OO-ish way
ii  libespeak1:amd64                                      1.47.11-1ubuntu1                                       amd64        Multi-lingual software speech synthesizer: shared library
ii  libestr0                                              0.1.9-0ubuntu2                                         amd64        Helper functions for handling strings (lib)
ii  libevdocument3-4                                      3.10.3-0ubuntu10.2                                     amd64        Document (PostScript, PDF) rendering library
ii  libevent-2.0-5:amd64                                  2.0.21-stable-1ubuntu1.14.04.1                         amd64        Asynchronous event notification library
ii  libevview3-3                                          3.10.3-0ubuntu10.2                                     amd64        Document (PostScript, PDF) rendering library - Gtk+ widgets
ii  libexempi3:amd64                                      2.2.1-1ubuntu1                                         amd64        library to parse XMP metadata (Library)
ii  libexif12:amd64                                       0.6.21-1ubuntu1                                        amd64        library to parse EXIF files
ii  libexiv2-12                                           0.23-1ubuntu2                                          amd64        EXIF/IPTC metadata manipulation library
ii  libexpat1:amd64                                       2.1.0-4ubuntu1.1                                       amd64        XML parsing C library - runtime library
ii  libexttextcat-2.0-0                                   3.4.3-1ubuntu1                                         amd64        Language detection library
ii  libexttextcat-data                                    3.4.3-1ubuntu1                                         all          Language detection library - data files
ii  libfaad2:amd64                                        2.7-8                                                  amd64        freeware Advanced Audio Decoder - runtime files
ii  libfakeroot:amd64                                     1.20-3ubuntu2                                          amd64        tool for simulating superuser privileges - shared libraries
ii  libfarstream-0.1-0:amd64                              0.1.2-1ubuntu3                                         amd64        Audio/Video communications framework: core library
ii  libfarstream-0.2-2:amd64                              0.2.3-1ubuntu2                                         amd64        Audio/Video communications framework: core library
ii  libffi6:amd64                                         3.1~rc1+r3.0.13-12                                     amd64        Foreign Function Interface library runtime
ii  libfftw3-double3:amd64                                3.3.3-7ubuntu3                                         amd64        Library for computing Fast Fourier Transforms - Double precision
ii  libfftw3-single3:amd64                                3.3.3-7ubuntu3                                         amd64        Library for computing Fast Fourier Transforms - Single precision
ii  libfile-basedir-perl                                  0.03-1fakesync1                                        all          Perl module to use the freedesktop basedir specification
ii  libfile-copy-recursive-perl                           0.38-1                                                 all          Perl extension for recursively copying files and directories
ii  libfile-desktopentry-perl                             0.07-1                                                 all          Perl module to handle freedesktop .desktop files
ii  libfile-fcntllock-perl                                0.14-2build1                                           amd64        Perl module for file locking with fcntl(2)
ii  libfile-mimeinfo-perl                                 0.22-1                                                 all          Perl module to determine file types
ii  libflac++6:amd64                                      1.3.0-2ubuntu0.14.04.1                                 amd64        Free Lossless Audio Codec - C++ runtime library
ii  libflac8:amd64                                        1.3.0-2ubuntu0.14.04.1                                 amd64        Free Lossless Audio Codec - runtime C library
ii  libflite1:amd64                                       1.4-release-8ubuntu0.1                                 amd64        Small run-time speech synthesis engine - shared libraries
rc  libfltk1.1:amd64                                      1.1.10-17                                              amd64        Fast Light Toolkit - shared libraries
ii  libfluidsynth1:amd64                                  1.1.6-2                                                amd64        Real-time MIDI software synthesizer (runtime library)
ii  libfolks-eds25:amd64                                  0.9.5-1ubuntu5                                         amd64        Evolution-data-server backend for libfolks
ii  libfolks-telepathy25:amd64                            0.9.5-1ubuntu5                                         amd64        Telepathy backend for libfolks
ii  libfolks25:amd64                                      0.9.5-1ubuntu5                                         amd64        library to aggregates people into metacontacts
ii  libfontconfig1:amd64                                  2.11.0-0ubuntu4.1                                      amd64        generic font configuration library - runtime
ii  libfontembed1:amd64                                   1.0.52-0ubuntu1.5                                      amd64        OpenPrinting CUPS Filters - Font Embed Shared library
ii  libfontenc1:amd64                                     1:1.1.2-1                                              amd64        X11 font encoding library
ii  libframe6:amd64                                       2.5.0daily13.06.05-0ubuntu1                            amd64        Touch Frame Library
ii  libfreerdp-plugins-standard:amd64                     1.0.2-2ubuntu1                                         amd64        RDP client for Windows Terminal Services (plugins)
ii  libfreerdp1:amd64                                     1.0.2-2ubuntu1                                         amd64        RDP client for Windows Terminal Services (library)
ii  libfreetype6:amd64                                    2.5.2-1ubuntu2.5                                       amd64        FreeType 2 font engine, shared library files
ii  libfribidi0:amd64                                     0.19.6-1                                               amd64        Free Implementation of the Unicode BiDi algorithm
ii  libfriends0:amd64                                     0.1.2+14.04.20131108.1-0ubuntu1                        amd64        Provides an API for accessing social networks
ii  libfs6:amd64                                          2:1.0.5-1                                              amd64        X11 Font Services library
ii  libfuse2:amd64                                        2.9.2-4ubuntu4.14.04.1                                 amd64        Filesystem in Userspace (library)
ii  libgail-3-0:amd64                                     3.10.8-0ubuntu1.6                                      amd64        GNOME Accessibility Implementation Library -- shared libraries
ii  libgail-common:amd64                                  2.24.23-0ubuntu1.3                                     amd64        GNOME Accessibility Implementation Library -- common modules
ii  libgail18:amd64                                       2.24.23-0ubuntu1.3                                     amd64        GNOME Accessibility Implementation Library -- shared libraries
ii  libgbm1:amd64                                         11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        generic buffer management API -- runtime
ii  libgc1c2:amd64                                        1:7.2d-5ubuntu2                                        amd64        conservative garbage collector for C and C++
ii  libgcc-4.8-dev:amd64                                  4.8.4-2ubuntu1~14.04                                   amd64        GCC support library (development files)
ii  libgcc1:amd64                                         1:4.9.1-0ubuntu1                                       amd64        GCC support library
ii  libgck-1-0:amd64                                      3.10.1-1                                               amd64        Glib wrapper library for PKCS#11 - runtime
ii  libgconf-2-4:amd64                                    3.2.6-0ubuntu2                                         amd64        GNOME configuration database system (shared libraries)
ii  libgcr-3-common                                       3.10.1-1                                               all          Library for Crypto UI related tasks - common files
ii  libgcr-base-3-1:amd64                                 3.10.1-1                                               amd64        Library for Crypto related tasks
ii  libgcr-ui-3-1:amd64                                   3.10.1-1                                               amd64        Library for Crypto UI related tasks
ii  libgcrypt11:amd64                                     1.5.3-2ubuntu4.2                                       amd64        LGPL Crypto library - runtime library
ii  libgd3:amd64                                          2.1.0-3                                                amd64        GD Graphics Library
ii  libgdata-common                                       0.14.1-1                                               all          Library for accessing GData webservices - common data files
ii  libgdata13                                            0.14.1-1                                               amd64        Library for accessing GData webservices - shared libraries
ii  libgdbm3:amd64                                        1.8.3-12build1                                         amd64        GNU dbm database routines (runtime version)
ii  libgdk-pixbuf2.0-0:amd64                              2.30.7-0ubuntu1.2                                      amd64        GDK Pixbuf library
ii  libgdk-pixbuf2.0-common                               2.30.7-0ubuntu1.2                                      all          GDK Pixbuf library - data files
ii  libgee-0.8-2:amd64                                    0.10.5-1ubuntu1                                        amd64        GObject based collection library
ii  libgee2:amd64                                         0.6.8-1ubuntu1                                         amd64        GObject based collection library
ii  libgegl-0.2-0:amd64                                   0.2.0-4ubuntu1                                         amd64        Generic Graphics Library
ii  libgeis1:amd64                                        2.2.16+14.04.20140303-0ubuntu1                         amd64        Gesture engine interface support
ii  libgeoclue0:amd64                                     0.12.99-3ubuntu1                                       amd64        C API for GeoClue
ii  libgeoip1:amd64                                       1.6.0-1                                                amd64        non-DNS IP-to-country resolver library
ii  libgettextpo-dev:amd64                                0.18.3.1-1ubuntu3                                      amd64        GNU Internationalization library development files
ii  libgettextpo0:amd64                                   0.18.3.1-1ubuntu3                                      amd64        GNU Internationalization library
ii  libgexiv2-2:amd64                                     0.10.0-1ubuntu2                                        amd64        GObject-based wrapper around the Exiv2 library
ii  libgfortran3:amd64                                    4.8.4-2ubuntu1~14.04                                   amd64        Runtime library for GNU Fortran applications
ii  libgimp2.0                                            2.8.10-0ubuntu1                                        amd64        Libraries for the GNU Image Manipulation Program
ii  libgirepository-1.0-1                                 1.40.0-1ubuntu0.2                                      amd64        Library for handling GObject introspection data (runtime library)
ii  libgksu2-0                                            2.0.13~pre1-6ubuntu4                                   amd64        library providing su and sudo functionality
ii  libgl1-mesa-dev:amd64                                 11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        free implementation of the OpenGL API -- GLX development files
ii  libgl1-mesa-dri:amd64                                 11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        free implementation of the OpenGL API -- DRI modules
ii  libgl1-mesa-glx:amd64                                 11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        free implementation of the OpenGL API -- GLX runtime
ii  libglamor0:amd64                                      0.6.0+git20140801.347ef4f0-0ubuntu0sarvatt~trusty      amd64        shared graphics acceleration library based on OpenGL
ii  libglapi-mesa:amd64                                   11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        free implementation of the GL API -- shared library
ii  libgles2-mesa:amd64                                   11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        free implementation of the OpenGL|ES 2.x API -- runtime
ii  libgles2-mesa-dev:amd64                               11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        free implementation of the OpenGL|ES 2.x API -- development files
ii  libglew1.10:amd64                                     1.10.0-3                                               amd64        OpenGL Extension Wrangler - runtime environment
ii  libglewmx1.10:amd64                                   1.10.0-3                                               amd64        OpenGL Extension Wrangler (Multiple Rendering Contexts)
ii  libglib-perl                                          3:1.304-1                                              amd64        interface to the GLib and GObject libraries
ii  libglib2.0-0:amd64                                    2.40.2-0ubuntu1                                        amd64        GLib library of C routines
ii  libglib2.0-bin                                        2.40.2-0ubuntu1                                        amd64        Programs for the GLib library
ii  libglib2.0-data                                       2.40.2-0ubuntu1                                        all          Common files for GLib library
ii  libglibmm-2.4-1c2a:amd64                              2.39.93-0ubuntu1                                       amd64        C++ wrapper for the GLib toolkit (shared libraries)
ii  libglu1-mesa:amd64                                    9.0.0-2                                                amd64        Mesa OpenGL utility library (GLU)
ii  libglu1-mesa-dev                                      9.0.0-2                                                amd64        Mesa OpenGL utility library -- development files
ii  libgme0                                               0.5.5-2                                                amd64        Playback library for video game music files - shared library
ii  libgmime-2.6-0:amd64                                  2.6.20-0ubuntu1                                        amd64        MIME message parser and creator library - runtime
ii  libgmp10:amd64                                        2:5.1.3+dfsg-1ubuntu1                                  amd64        Multiprecision arithmetic library
ii  libgnome-bluetooth11                                  3.8.2.1-0ubuntu4.2                                     amd64        GNOME Bluetooth tools - support library
ii  libgnome-control-center1                              1:3.6.3-0ubuntu56.1                                    amd64        utilities to configure the GNOME desktop
ii  libgnome-desktop-3-7                                  3.8.4-0ubuntu3.1                                       amd64        Utility library for loading .desktop files - runtime files
ii  libgnome-keyring-common                               3.8.0-2                                                all          GNOME keyring services library - data files
ii  libgnome-keyring0:amd64                               3.8.0-2                                                amd64        GNOME keyring services library
ii  libgnome-menu-3-0                                     3.10.1-0ubuntu2                                        amd64        GNOME implementation of the freedesktop menu specification
ii  libgnomekbd-common                                    3.6.0-0ubuntu2                                         all          GNOME library to manage keyboard configuration - common files
ii  libgnomekbd8                                          3.6.0-0ubuntu2                                         amd64        GNOME library to manage keyboard configuration - shared library
ii  libgnutls-openssl27:amd64                             2.12.23-12ubuntu2.2                                    amd64        GNU TLS library - OpenSSL wrapper
ii  libgnutls26:amd64                                     2.12.23-12ubuntu2.2                                    amd64        GNU TLS library - runtime library
ii  libgnutls28:amd64                                     3.2.11-2ubuntu1.1                                      amd64        GNU TLS library - main runtime library
ii  libgoa-1.0-0b:amd64                                   3.10.3-0ubuntu1                                        amd64        library for GNOME Online Accounts
ii  libgoa-1.0-common                                     3.10.3-0ubuntu1                                        all          library for GNOME Online Accounts - common files
ii  libgomp1:amd64                                        4.8.4-2ubuntu1~14.04                                   amd64        GCC OpenMP (GOMP) support library
ii  libgpg-error0:amd64                                   1.12-0.2ubuntu1                                        amd64        library for common error values and messages in GnuPG components
ii  libgpgme11:amd64                                      1.4.3-0.1ubuntu5.1                                     amd64        GPGME - GnuPG Made Easy (library)
ii  libgphoto2-6:amd64                                    2.5.3.1-1ubuntu2.2                                     amd64        gphoto2 digital camera library
ii  libgphoto2-l10n                                       2.5.3.1-1ubuntu2.2                                     all          gphoto2 digital camera library - localized messages
ii  libgphoto2-port10:amd64                               2.5.3.1-1ubuntu2.2                                     amd64        gphoto2 digital camera port library
ii  libgpm2:amd64                                         1.20.4-6.1                                             amd64        General Purpose Mouse - shared library
ii  libgpod-common                                        0.8.3-4ubuntu3                                         amd64        common files for libgpod
ii  libgpod4:amd64                                        0.8.3-4ubuntu3                                         amd64        library to read and write songs and artwork to an iPod
ii  libgrail6                                             3.1.0daily13.06.05-0ubuntu1                            amd64        Gesture Recognition And Instantiation Library
ii  libgraphite2-3:amd64                                  1.2.4-1ubuntu1                                         amd64        Font rendering engine for Complex Scripts -- library
ii  libgrip0                                              0.3.7+14.04.20140303-0ubuntu1                          amd64        multitouch gestures for GTK+ apps
ii  libgroupsock1                                         2014.01.13-1                                           amd64        multimedia RTSP streaming library (network interfaces and sockets)
ii  libgs9                                                9.10~dfsg-0ubuntu10.4                                  amd64        interpreter for the PostScript language and for PDF - Library
ii  libgs9-common                                         9.10~dfsg-0ubuntu10.4                                  all          interpreter for the PostScript language and for PDF - common files
ii  libgsettings-qt1:amd64                                0.1+14.04.20140408-0ubuntu1                            amd64        Library to access GSettings from Qt
rc  libgsl0ldbl                                           1.16+dfsg-1ubuntu1                                     amd64        GNU Scientific Library (GSL) -- library package
ii  libgsm1:amd64                                         1.0.13-4                                               amd64        Shared libraries for GSM speech compressor
ii  libgssapi-krb5-2:amd64                                1.12+dfsg-2ubuntu5.1                                   amd64        MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii  libgssapi3-heimdal:amd64                              1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - GSSAPI support library
ii  libgssdp-1.0-3                                        0.14.7-1ubuntu1                                        amd64        GObject-based library for SSDP
ii  libgstreamer-plugins-bad0.10-0:amd64                  0.10.23-7.2ubuntu1.1                                   amd64        GStreamer shared libraries from the "bad" set
ii  libgstreamer-plugins-bad1.0-0:amd64                   1.2.4-1~ubuntu1                                        amd64        GStreamer development files for libraries from the "bad" set
ii  libgstreamer-plugins-base0.10-0:amd64                 0.10.36-1.1ubuntu2                                     amd64        GStreamer libraries from the "base" set
ii  libgstreamer-plugins-base1.0-0:amd64                  1.2.4-1~ubuntu1                                        amd64        GStreamer libraries from the "base" set
ii  libgstreamer-plugins-good1.0-0:amd64                  1.2.4-1~ubuntu1                                        amd64        GStreamer development files for libraries from the "good" set
ii  libgstreamer0.10-0:amd64                              0.10.36-1.2ubuntu3                                     amd64        Core GStreamer libraries and elements
ii  libgstreamer1.0-0:amd64                               1.2.4-0ubuntu1                                         amd64        Core GStreamer libraries and elements
ii  libgtk-3-0:amd64                                      3.10.8-0ubuntu1.6                                      amd64        GTK+ graphical user interface library
ii  libgtk-3-bin                                          3.10.8-0ubuntu1.6                                      amd64        programs for the GTK+ graphical user interface library
ii  libgtk-3-common                                       3.10.8-0ubuntu1.6                                      all          common files for the GTK+ graphical user interface library
ii  libgtk2-perl                                          2:1.249-2                                              amd64        Perl interface to the 2.x series of the Gimp Toolkit library
ii  libgtk2.0-0:amd64                                     2.24.23-0ubuntu1.3                                     amd64        GTK+ graphical user interface library
ii  libgtk2.0-bin                                         2.24.23-0ubuntu1.3                                     amd64        programs for the GTK+ graphical user interface library
ii  libgtk2.0-common                                      2.24.23-0ubuntu1.3                                     all          common files for the GTK+ graphical user interface library
ii  libgtkglext1                                          1.2.0-3.1fakesync3                                     amd64        OpenGL Extension to GTK+ (shared libraries)
ii  libgtkmm-2.4-1c2a:amd64                               1:2.24.4-1ubuntu1                                      amd64        C++ wrappers for GTK+ (shared libraries)
ii  libgtkmm-3.0-1:amd64                                  3.10.1-0ubuntu2                                        amd64        C++ wrappers for GTK+ (shared libraries)
ii  libgtksourceview-3.0-1:amd64                          3.10.2-0ubuntu1                                        amd64        shared libraries for the GTK+ syntax highlighting widget
ii  libgtksourceview-3.0-common                           3.10.2-0ubuntu1                                        all          common files for the GTK+ syntax highlighting widget
ii  libgtop2-7                                            2.28.5-2                                               amd64        gtop system monitoring library (shared)
ii  libgtop2-common                                       2.28.5-2                                               all          gtop system monitoring library (common)
ii  libgucharmap-2-90-7                                   1:3.10.1-0ubuntu2                                      amd64        Unicode browser widget library (shared library)
ii  libgudev-1.0-0:amd64                                  1:204-5ubuntu20.15                                     amd64        GObject-based wrapper library for libudev
ii  libgupnp-1.0-4                                        0.20.10-1ubuntu1                                       amd64        GObject-based library for UPnP
ii  libgupnp-igd-1.0-4:amd64                              0.2.2-1                                                amd64        library to handle UPnP IGD port mapping
ii  libgusb2:amd64                                        0.1.6-5                                                amd64        GLib wrapper around libusb1
ii  libgutenprint2                                        5.2.10~pre2-0ubuntu2                                   amd64        runtime for the Gutenprint printer driver library
ii  libgweather-3-6                                       3.10.2-0ubuntu2                                        amd64        GWeather shared library
ii  libgweather-common                                    3.10.2-0ubuntu2                                        all          GWeather common files
ii  libgxps2:amd64                                        0.2.2-2ubuntu2                                         amd64        handling and rendering XPS documents (library)
ii  libharfbuzz-icu0:amd64                                0.9.27-1ubuntu1                                        amd64        OpenType text shaping engine ICU backend
ii  libharfbuzz0b:amd64                                   0.9.27-1ubuntu1                                        amd64        OpenType text shaping engine (shared library)
ii  libhcrypto4-heimdal:amd64                             1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - crypto library
ii  libheimbase1-heimdal:amd64                            1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - Base library
ii  libheimntlm0-heimdal:amd64                            1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - NTLM support library
ii  libhogweed2:amd64                                     2.7.1-1                                                amd64        low level cryptographic library (public-key cryptos)
ii  libhpmud0                                             3.14.3-0ubuntu3.4                                      amd64        HP Multi-Point Transport Driver (hpmud) run-time libraries
ii  libhud2:amd64                                         14.04+14.04.20140604-0ubuntu1                          amd64        library for exporting items to the Unity HUD
ii  libhunspell-1.3-0:amd64                               1.3.2-6ubuntu2.1                                       amd64        spell checker and morphological analyzer (shared library)
ii  libhx509-5-heimdal:amd64                              1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - X509 support library
ii  libhyphen0                                            2.8.6-3ubuntu2                                         amd64        ALTLinux hyphenation library - shared library
ii  libibus-1.0-5:amd64                                   1.5.5-1ubuntu3                                         amd64        Intelligent Input Bus - shared library
ii  libibus-qt1                                           1.3.2-2                                                amd64        qt-immodule for ibus (QT4) (library)
ii  libical1                                              1.0-0ubuntu1                                           amd64        iCalendar library implementation in C (runtime)
ii  libice6:amd64                                         2:1.0.8-2                                              amd64        X11 Inter-Client Exchange library
ii  libicu52:amd64                                        52.1-3ubuntu0.4                                        amd64        International Components for Unicode
ii  libid3tag0                                            0.15.1b-10ubuntu1                                      amd64        ID3 tag reading library from the MAD project
ii  libidn11:amd64                                        1.28-1ubuntu2                                          amd64        GNU Libidn library, implementation of IETF IDN specifications
ii  libido3-0.1-0:amd64                                   13.10.0+14.04.20140423-0ubuntu1                        amd64        Shared library providing extra gtk menu items for display in
ii  libiec61883-0:amd64                                   1.2.0-0.1ubuntu3                                       amd64        an partial implementation of IEC 61883
ii  libieee1284-3:amd64                                   0.2.11-12                                              amd64        cross-platform library for parallel port access
ii  libijs-0.35                                           0.35-8build1                                           amd64        IJS raster image transport protocol: shared library
ii  libilmbase6:amd64                                     1.0.1-6ubuntu1                                         amd64        several utility libraries from ILM used by OpenEXR
ii  libimobiledevice4:amd64                               1.1.5+git20140313.bafe6a9e-0ubuntu1                    amd64        Library for communicating with the iPhone and iPod Touch
ii  libindicator3-7                                       12.10.2+14.04.20141007.1-0ubuntu1                      amd64        panel indicator applet - shared library
ii  libio-pty-perl                                        1:1.08-1build4                                         amd64        Perl module for pseudo tty IO
ii  libio-socket-inet6-perl                               2.71-1                                                 all          object interface for AF_INET6 domain sockets
ii  libio-socket-ssl-perl                                 1.965-1ubuntu1                                         all          Perl module implementing object oriented interface to SSL sockets
ii  libio-string-perl                                     1.08-3                                                 all          Emulate IO::File interface for in-core strings
ii  libipc-run-perl                                       0.92-1                                                 all          Perl module for running processes
ii  libipc-system-simple-perl                             1.25-2                                                 all          Perl module to run commands simply, with detailed diagnostics
ii  libisc95                                              1:9.9.5.dfsg-3ubuntu0.5                                amd64        ISC Shared Library used by BIND
ii  libisccc90                                            1:9.9.5.dfsg-3ubuntu0.5                                amd64        Command Channel Library used by BIND
ii  libisccfg90                                           1:9.9.5.dfsg-3ubuntu0.5                                amd64        Config File Handling Library used by BIND
ii  libisl10:amd64                                        0.12.2-1                                               amd64        manipulating sets and relations of integer points bounded by linear constraints
ii  libiso9660-8                                          0.83-4.1ubuntu1                                        amd64        library to work with ISO9660 filesystems
ii  libisofs6                                             1.3.4-0ubuntu1                                         amd64        library to create ISO9660 images
ii  libitm1:amd64                                         4.8.4-2ubuntu1~14.04                                   amd64        GNU Transactional Memory Library
ii  libiw30:amd64                                         30~pre9-8ubuntu1                                       amd64        Wireless tools - library
ii  libjack-jackd2-0:amd64                                1.9.9.5+20130622git7de15e7a-1ubuntu1                   amd64        JACK Audio Connection Kit (libraries)
ii  libjansson4:amd64                                     2.5-2                                                  amd64        C library for encoding, decoding and manipulating JSON data
ii  libjasper1:amd64                                      1.900.1-14ubuntu3.2                                    amd64        JasPer JPEG-2000 runtime library
ii  libjavascriptcoregtk-1.0-0:amd64                      2.4.8-1ubuntu1~ubuntu14.04.1                           amd64        JavaScript engine library from WebKitGTK+
ii  libjavascriptcoregtk-3.0-0:amd64                      2.4.8-1ubuntu1~ubuntu14.04.1                           amd64        JavaScript engine library from WebKitGTK+
ii  libjbig0:amd64                                        2.0-2ubuntu4.1                                         amd64        JBIGkit libraries
ii  libjbig2dec0                                          0.11+20120125-1ubuntu1                                 amd64        JBIG2 decoder library - shared libraries
ii  libjpeg-turbo8:amd64                                  1.3.0-0ubuntu2                                         amd64        IJG JPEG compliant runtime library.
ii  libjpeg8:amd64                                        8c-2ubuntu8                                            amd64        Independent JPEG Group's JPEG runtime library (dependency package)
ii  libjs-jquery                                          1.7.2+dfsg-2ubuntu1                                    all          JavaScript library for dynamic web applications
ii  libjson-c2:amd64                                      0.11-3ubuntu1.2                                        amd64        JSON manipulation library - shared library
ii  libjson-glib-1.0-0:amd64                              0.16.2-1ubuntu1                                        amd64        GLib JSON manipulation library
ii  libjson-glib-1.0-common                               0.16.2-1ubuntu1                                        all          GLib JSON manipulation library (common files)
ii  libjson0:amd64                                        0.11-3ubuntu1.2                                        amd64        JSON manipulation library (transitional package)
ii  libjte1                                               1.19-2                                                 amd64        Jigdo Template Export - runtime library
ii  libk5crypto3:amd64                                    1.12+dfsg-2ubuntu5.1                                   amd64        MIT Kerberos runtime libraries - Crypto Library
ii  libkate1                                              0.4.1-1ubuntu1                                         amd64        Kate is a codec for karaoke and text encapsulation
ii  libkeyutils1:amd64                                    1.5.6-1                                                amd64        Linux Key Management Utilities (library)
ii  libklibc                                              2.0.3-0ubuntu1                                         amd64        minimal libc subset for use with initramfs
ii  libkmod2:amd64                                        15-0ubuntu6                                            amd64        libkmod shared library
ii  libkpathsea6                                          2013.20130729.30972-2build3                            amd64        TeX Live: path search library for TeX (runtime part)
ii  libkrb5-26-heimdal:amd64                              1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - libraries
ii  libkrb5-3:amd64                                       1.12+dfsg-2ubuntu5.1                                   amd64        MIT Kerberos runtime libraries
ii  libkrb5support0:amd64                                 1.12+dfsg-2ubuntu5.1                                   amd64        MIT Kerberos runtime libraries - Support library
ii  liblangtag-common                                     0.5.1-2                                                all          library to access tags for identifying languages -- data
ii  liblangtag1                                           0.5.1-2                                                amd64        library to access tags for identifying languages
ii  liblapack3                                            3.5.0-2ubuntu1                                         amd64        Library of linear algebra routines 3 - shared version
ii  liblcms2-2:amd64                                      2.5-0ubuntu4                                           amd64        Little CMS 2 color management library
ii  libldap-2.4-2:amd64                                   2.4.31-1+nmu2ubuntu8.2                                 amd64        OpenLDAP libraries
ii  libldb1:amd64                                         1:1.1.16-1                                             amd64        LDAP-like embedded database - shared library
ii  liblightdm-gobject-1-0                                1.10.5-0ubuntu1.1                                      amd64        LightDM GObject client library
ii  liblircclient0                                        0.9.0-0ubuntu5                                         amd64        infra-red remote control support - client library
ii  liblist-moreutils-perl                                0.33-1build3                                           amd64        Perl module with additional list functions not found in List::Util
ii  liblivemedia23                                        2014.01.13-1                                           amd64        multimedia RTSP streaming library
ii  libllvm3.4:amd64                                      1:3.4.2-3ubuntu2~xedgers                               amd64        Modular compiler and toolchain technologies, runtime library
ii  libllvm3.6:amd64                                      1:3.6-2ubuntu1~trusty1                                 amd64        Modular compiler and toolchain technologies, runtime library
ii  liblocale-gettext-perl                                1.05-7build3                                           amd64        module using libc functions for internationalization in Perl
ii  liblockfile-bin                                       1.09-6ubuntu1                                          amd64        support binaries for and cli utilities based on liblockfile
ii  liblockfile1:amd64                                    1.09-6ubuntu1                                          amd64        NFS-safe locking library
ii  liblog-message-simple-perl                            0.10-1                                                 all          simplified interface to Log::Message
ii  liblouis-data                                         2.5.3-2ubuntu1                                         all          Braille translation library - data
ii  liblouis2:amd64                                       2.5.3-2ubuntu1                                         amd64        Braille translation library - shared libs
ii  liblqr-1-0:amd64                                      0.4.1-2ubuntu1                                         amd64        converts plain array images into multi-size representation
ii  libltdl7:amd64                                        2.4.2-1.7ubuntu1                                       amd64        A system independent dlopen wrapper for GNU libtool
ii  liblua5.2-0:amd64                                     5.2.3-1                                                amd64        Shared library for the Lua interpreter version 5.2
ii  liblwres90                                            1:9.9.5.dfsg-3ubuntu0.5                                amd64        Lightweight Resolver Library used by BIND
ii  liblzma5:amd64                                        5.1.1alpha+20120614-2ubuntu2                           amd64        XZ-format compression library
ii  liblzo2-2:amd64                                       2.06-1.2ubuntu1.1                                      amd64        data compression library
ii  libmad0:amd64                                         0.15.1b-8ubuntu1                                       amd64        MPEG audio decoder library
ii  libmagic1:amd64                                       1:5.14-2ubuntu3.3                                      amd64        File type determination library using "magic" numbers
ii  libmagickcore5:amd64                                  8:6.7.7.10-6ubuntu3                                    amd64        low-level image manipulation library
ii  libmagickcore5-extra:amd64                            8:6.7.7.10-6ubuntu3                                    amd64        low-level image manipulation library - extra codecs
ii  libmagickwand5:amd64                                  8:6.7.7.10-6ubuntu3                                    amd64        image manipulation library
ii  libmailtools-perl                                     2.12-1                                                 all          Manipulate email in perl programs
ii  libmatroska6:amd64                                    1.4.1-2                                                amd64        extensible open standard audio/video container format (shared library)
ii  libmbim-glib0:amd64                                   1.6.0-2                                                amd64        Support library to use the MBIM protocol
ii  libmeanwhile1                                         1.0.2-4.1ubuntu1                                       amd64        open implementation of the Lotus Sametime Community Client protocol
ii  libmessaging-menu0                                    13.10.1+14.04.20140410-0ubuntu1                        amd64        Messaging Menu - shared library
ii  libmetacity-private0a                                 1:2.34.13-0ubuntu4.1                                   amd64        library for the Metacity window manager
ii  libmhash2:amd64                                       0.9.9.9-4                                              amd64        Library for cryptographic hashing and message authentication
ii  libmimic0                                             1.0.4-2.1ubuntu1                                       amd64        A video codec for Mimic V2.x content
ii  libminiupnpc8                                         1.6-3ubuntu2.14.04.1                                   amd64        UPnP IGD client lightweight library
ii  libmission-control-plugins0                           1:5.16.1-1ubuntu3                                      amd64        management daemon for Telepathy (library for plugins)
ii  libmm-glib0:amd64                                     1.0.0-2ubuntu1                                         amd64        D-Bus service for managing modems - shared libraries
ii  libmms0:amd64                                         0.6.2-3ubuntu2                                         amd64        MMS stream protocol library - shared library
ii  libmng2:amd64                                         2.0.2-0ubuntu3                                         amd64        Multiple-image Network Graphics library
ii  libmnl0:amd64                                         1.0.3-3ubuntu1                                         amd64        minimalistic Netlink communication library
ii  libmodplug1                                           1:0.8.8.4-4.1                                          amd64        shared libraries for mod music based on ModPlug
ii  libmodule-pluggable-perl                              5.1-1                                                  all          module for giving  modules the ability to have plugins
ii  libmount1:amd64                                       2.20.1-5.1ubuntu20.7                                   amd64        block device id library
ii  libmp3lame0:amd64                                     3.99.5+repack1-3ubuntu1                                amd64        MP3 encoding library
ii  libmpc3:amd64                                         1.0.1-1ubuntu1                                         amd64        multiple precision complex floating-point library
ii  libmpcdec6                                            2:0.1~r459-1ubuntu3                                    amd64        MusePack decoder - library
ii  libmpdec2:amd64                                       2.4.0-6                                                amd64        library for decimal floating point arithmetic (runtime library)
ii  libmpeg2-4:amd64                                      0.5.1-5ubuntu1                                         amd64        MPEG1 and MPEG2 video decoder library
ii  libmpfr4:amd64                                        3.1.2-1                                                amd64        multiple precision floating-point computation
ii  libmpg123-0:amd64                                     1.16.0-1ubuntu1                                        amd64        MPEG layer 1/2/3 audio decoder (shared library)
ii  libmspub-0.0-0                                        0.0.6-1ubuntu2                                         amd64        library for parsing the mspub file structure
ii  libmtdev1:amd64                                       1.1.4-1ubuntu1                                         amd64        Multitouch Protocol Translation Library - shared library
ii  libmtp-common                                         1.1.6-20-g1b9f164-1ubuntu2                             all          Media Transfer Protocol (MTP) common files
ii  libmtp-runtime                                        1.1.6-20-g1b9f164-1ubuntu2                             amd64        Media Transfer Protocol (MTP) runtime tools
ii  libmtp9:amd64                                         1.1.6-20-g1b9f164-1ubuntu2                             amd64        Media Transfer Protocol (MTP) library
ii  libmythes-1.2-0                                       2:1.2.2-1ubuntu2                                       amd64        simple thesaurus library
ii  libnatpmp1                                            20110808-3ubuntu2                                      amd64        portable and fully compliant implementation of NAT-PMP
ii  libnautilus-extension1a                               1:3.10.1-0ubuntu9.9                                    amd64        libraries for nautilus components - runtime version
ii  libncurses5:amd64                                     5.9+20140118-1ubuntu1                                  amd64        shared libraries for terminal handling
ii  libncursesw5:amd64                                    5.9+20140118-1ubuntu1                                  amd64        shared libraries for terminal handling (wide character support)
ii  libneon27-gnutls                                      0.30.0-1ubuntu1                                        amd64        HTTP and WebDAV client library (GnuTLS enabled)
ii  libnet-dns-perl                                       0.68-1.2build1                                         amd64        Perform DNS queries from a Perl script
ii  libnet-domain-tld-perl                                1.70-1                                                 all          list of currently available Top-level Domains (TLDs)
ii  libnet-ip-perl                                        1.26-1                                                 all          Perl extension for manipulating IPv4/IPv6 addresses
ii  libnet-libidn-perl                                    0.12.ds-1build4                                        amd64        Perl bindings for GNU Libidn
ii  libnet-smtp-ssl-perl                                  1.01-3                                                 all          Perl module providing SSL support to Net::SMTP
ii  libnet-ssleay-perl                                    1.58-1                                                 amd64        Perl module for Secure Sockets Layer (SSL)
ii  libnetfilter-conntrack3:amd64                         1.0.4-1                                                amd64        Netfilter netlink-conntrack library
ii  libnetpbm10                                           2:10.0-15ubuntu2                                       amd64        Graphics conversion tools shared libraries
ii  libnettle4:amd64                                      2.7.1-1                                                amd64        low level cryptographic library (symmetric and one-way cryptos)
ii  libnewt0.52:amd64                                     0.52.15-2ubuntu5                                       amd64        Not Erik's Windowing Toolkit - text mode windowing with slang
ii  libnfnetlink0:amd64                                   1.0.1-2                                                amd64        Netfilter netlink library
ii  libnice10:amd64                                       0.1.4-1                                                amd64        ICE library (shared library)
ii  libnih-dbus1:amd64                                    1.0.3-4ubuntu25                                        amd64        NIH D-Bus Bindings Library
ii  libnih1:amd64                                         1.0.3-4ubuntu25                                        amd64        NIH Utility Library
ii  libnl-3-200:amd64                                     3.2.21-1                                               amd64        library for dealing with netlink sockets
ii  libnl-genl-3-200:amd64                                3.2.21-1                                               amd64        library for dealing with netlink sockets - generic netlink
ii  libnl-route-3-200:amd64                               3.2.21-1                                               amd64        library for dealing with netlink sockets - route interface
ii  libnm-glib-vpn1                                       0.9.8.8-0ubuntu7.1                                     amd64        network management framework (GLib VPN shared library)
ii  libnm-glib4                                           0.9.8.8-0ubuntu7.1                                     amd64        network management framework (GLib shared library)
ii  libnm-gtk-common                                      0.9.8.8-0ubuntu4.3                                     all          network management framework (common files for wifi and mobile)
ii  libnm-gtk0                                            0.9.8.8-0ubuntu4.3                                     amd64        network management framework (GNOME dialogs for wifi and mobile)
ii  libnm-util2                                           0.9.8.8-0ubuntu7.1                                     amd64        network management framework (shared library)
ii  libnotify-bin                                         0.7.6-1ubuntu3                                         amd64        sends desktop notifications to a notification daemon (Utilities)
ii  libnotify4:amd64                                      0.7.6-1ubuntu3                                         amd64        sends desktop notifications to a notification daemon
ii  libnspr4:amd64                                        2:4.10.7-0ubuntu0.14.04.1                              amd64        NetScape Portable Runtime Library
ii  libnss-mdns:amd64                                     0.10-6                                                 amd64        NSS module for Multicast DNS name resolution
ii  libnss3:amd64                                         2:3.19.2-0ubuntu0.14.04.1                              amd64        Network Security Service libraries
ii  libnss3-1d:amd64                                      2:3.19.2-0ubuntu0.14.04.1                              amd64        Network Security Service libraries - transitional package
ii  libnss3-nssdb                                         2:3.19.2-0ubuntu0.14.04.1                              all          Network Security Security libraries - shared databases
ii  libntdb1:amd64                                        1.0-2ubuntu1                                           amd64        New Trivial Database - shared library
ii  libnuma1:amd64                                        2.0.9~rc5-1ubuntu3.14.04.1                             amd64        Libraries for controlling NUMA policy
ii  libnux-4.0-0                                          4.0.6+14.04.20141107-0ubuntu1                          amd64        Visual rendering toolkit for real-time applications - shared lib
ii  libnux-4.0-common                                     4.0.6+14.04.20141107-0ubuntu1                          amd64        Visual rendering toolkit for real-time applications - common files
ii  liboauth0:amd64                                       1.0.1-1                                                amd64        C library for implementing OAuth 1.0
ii  libofa0                                               0.9.3-5ubuntu1                                         amd64        Library for acoustic fingerprinting
ii  libogg0:amd64                                         1.3.1-1ubuntu1                                         amd64        Ogg bitstream library
ii  liboil0.3:amd64                                       0.3.17-2ubuntu4                                        amd64        Library of Optimized Inner Loops
ii  libopenal-data                                        1:1.14-4ubuntu1                                        all          Software implementation of the OpenAL API (data files)
ii  libopenal1:amd64                                      1:1.14-4ubuntu1                                        amd64        Software implementation of the OpenAL API (shared library)
ii  libopencc1:amd64                                      0.4.3-2build1                                          amd64        simplified-traditional chinese conversion library - runtime
ii  libopencore-amrnb0:amd64                              0.1.3-2ubuntu1                                         amd64        Adaptive Multi Rate speech codec - shared library
ii  libopencore-amrwb0:amd64                              0.1.3-2ubuntu1                                         amd64        Adaptive Multi-Rate - Wideband speech codec - shared library
ii  libopencv-calib3d2.4:amd64                            2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision Camera Calibration library
ii  libopencv-contrib2.4:amd64                            2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision contrib library
ii  libopencv-core2.4:amd64                               2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision core library
ii  libopencv-features2d2.4:amd64                         2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision Feature Detection and Descriptor Extraction library
ii  libopencv-flann2.4:amd64                              2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision Clustering and Search in Multi-Dimensional spaces library
ii  libopencv-highgui2.4:amd64                            2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision High-level GUI and Media I/O library
ii  libopencv-imgproc2.4:amd64                            2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision Image Processing library
ii  libopencv-legacy2.4:amd64                             2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision legacy library
ii  libopencv-ml2.4:amd64                                 2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision Machine Learning library
ii  libopencv-objdetect2.4:amd64                          2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision Object Detection library
ii  libopencv-video2.4:amd64                              2.4.8+dfsg1-2ubuntu1                                   amd64        computer vision Video analysis library
ii  libopenexr6:amd64                                     1.6.1-7ubuntu1                                         amd64        runtime files for the OpenEXR image library
ii  libopenjpeg2:amd64                                    1.3+dfsg-4.7ubuntu1                                    amd64        JPEG 2000 image compression/decompression library
ii  libopenobex1                                          1.5-2.1                                                amd64        OBEX protocol library
ii  libopenvg1-mesa:amd64                                 10.1.3-0ubuntu0.5                                      amd64        free implementation of the OpenVG API -- runtime
ii  libopus0                                              1.1-0ubuntu1                                           amd64        Opus codec runtime library
ii  liborc-0.4-0:amd64                                    1:0.4.18-1ubuntu1                                      amd64        Library of Optimized Inner Loops Runtime Compiler
ii  liborcus-0.6-0                                        0.5.1-7                                                amd64        library for processing spreadsheet documents
ii  liboxideqt-qmlplugin:amd64                            1.9.5-0ubuntu0.14.04.1                                 amd64        Web browser engine library for Qt (QML plugin)
ii  liboxideqtcore0:amd64                                 1.9.5-0ubuntu0.14.04.1                                 amd64        Web browser engine library for Qt (core library and components)
ii  liboxideqtquick0:amd64                                1.9.5-0ubuntu0.14.04.1                                 amd64        Web browser engine library for Qt (QtQuick library)
ii  libp11-kit-gnome-keyring:amd64                        3.10.1-1ubuntu4.2                                      amd64        GNOME keyring module for the PKCS#11 module loading library
ii  libp11-kit0:amd64                                     0.20.2-2ubuntu2                                        amd64        Library for loading and coordinating access to PKCS#11 modules - runtime
ii  libpackagekit-glib2-16:amd64                          0.8.12-1ubuntu5                                        amd64        Library for accessing PackageKit using GLib
ii  libpam-cap:amd64                                      1:2.24-0ubuntu2                                        amd64        PAM module for implementing capabilities
ii  libpam-gnome-keyring:amd64                            3.10.1-1ubuntu4.2                                      amd64        PAM module to unlock the GNOME keyring upon login
ii  libpam-modules:amd64                                  1.1.8-1ubuntu2                                         amd64        Pluggable Authentication Modules for PAM
ii  libpam-modules-bin                                    1.1.8-1ubuntu2                                         amd64        Pluggable Authentication Modules for PAM - helper binaries
ii  libpam-runtime                                        1.1.8-1ubuntu2                                         all          Runtime support for the PAM library
ii  libpam-systemd:amd64                                  204-5ubuntu20.15                                       amd64        system and service manager - PAM module
ii  libpam0g:amd64                                        1.1.8-1ubuntu2                                         amd64        Pluggable Authentication Modules library
ii  libpango-1.0-0:amd64                                  1.36.3-1ubuntu1.1                                      amd64        Layout and rendering of internationalized text
ii  libpango-perl                                         1.224-2                                                amd64        Perl module to layout and render international text
ii  libpango1.0-0:amd64                                   1.36.3-1ubuntu1.1                                      amd64        Layout and rendering of internationalized text
ii  libpangocairo-1.0-0:amd64                             1.36.3-1ubuntu1.1                                      amd64        Layout and rendering of internationalized text
ii  libpangoft2-1.0-0:amd64                               1.36.3-1ubuntu1.1                                      amd64        Layout and rendering of internationalized text
ii  libpangomm-1.4-1:amd64                                2.34.0-1ubuntu1                                        amd64        C++ Wrapper for pango (shared libraries)
ii  libpangox-1.0-0:amd64                                 0.0.2-4ubuntu1                                         amd64        pango library X backend
ii  libpangoxft-1.0-0:amd64                               1.36.3-1ubuntu1.1                                      amd64        Layout and rendering of internationalized text
ii  libpaper-utils                                        1.1.24+nmu2ubuntu3                                     amd64        library for handling paper characteristics (utilities)
ii  libpaper1:amd64                                       1.1.24+nmu2ubuntu3                                     amd64        library for handling paper characteristics
ii  libparse-debianchangelog-perl                         1.2.0-1ubuntu1                                         all          parse Debian changelogs and output them in other formats
ii  libparted0debian1:amd64                               2.3-19ubuntu1.14.04.1                                  amd64        disk partition manipulator - shared library
ii  libpcap0.8:amd64                                      1.5.3-2                                                amd64        system interface for user-level packet capture
ii  libpci3:amd64                                         1:3.2.1-1ubuntu5                                       amd64        Linux PCI Utilities (shared library)
ii  libpciaccess0:amd64                                   0.13.2-1                                               amd64        Generic PCI access library for X
ii  libpcre3:amd64                                        1:8.31-2ubuntu2.1                                      amd64        Perl 5 Compatible Regular Expression Library - runtime files
ii  libpcsclite1:amd64                                    1.8.10-1ubuntu1                                        amd64        Middleware to access a smart card using PC/SC (library)
ii  libpeas-1.0-0                                         1.8.1-2ubuntu2                                         amd64        Application plugin library
ii  libpeas-common                                        1.8.1-2ubuntu2                                         all          Application plugin library (common files)
ii  libperl5.18                                           5.18.2-2ubuntu1                                        amd64        shared Perl library
ii  libperlio-gzip-perl                                   0.18-1build3                                           amd64        module providing a PerlIO layer to gzip/gunzip
ii  libphonon-dev                                         4:4.7.80-0ubuntu1~ubuntu14.04                          amd64        multimedia framework from KDE - development files
ii  libphonon4:amd64                                      4:4.7.80-0ubuntu1~ubuntu14.04                          amd64        multimedia framework from KDE - core library
ii  libpipeline1:amd64                                    1.3.0-1                                                amd64        pipeline manipulation library
ii  libpixman-1-0:amd64                                   0.30.2-2ubuntu1                                        amd64        pixel-manipulation library for X and cairo
ii  libplist1:amd64                                       1.10-1                                                 amd64        Library for handling Apple binary and XML property lists
ii  libplymouth2:amd64                                    0.8.8-0ubuntu17.1                                      amd64        graphical boot animation and logger - shared libraries
ii  libpng12-0:amd64                                      1.2.50-1ubuntu2                                        amd64        PNG library - runtime
ii  libpocketsphinx1                                      0.8.0+real-0ubuntu6                                    amd64        lightweight speech recognition - library
ii  libpod-latex-perl                                     0.61-1                                                 all          module to convert Pod data to formatted LaTeX
ii  libpolkit-agent-1-0:amd64                             0.105-4ubuntu2.14.04.1                                 amd64        PolicyKit Authentication Agent API
ii  libpolkit-backend-1-0:amd64                           0.105-4ubuntu2.14.04.1                                 amd64        PolicyKit backend API
ii  libpolkit-gobject-1-0:amd64                           0.105-4ubuntu2.14.04.1                                 amd64        PolicyKit Authorization API
ii  libpoppler-glib8:amd64                                0.24.5-2ubuntu4.2                                      amd64        PDF rendering library (GLib-based shared library)
rc  libpoppler-qt4-4:amd64                                0.24.5-2ubuntu4.2                                      amd64        PDF rendering library (Qt 4 based shared library)
ii  libpoppler44:amd64                                    0.24.5-2ubuntu4.2                                      amd64        PDF rendering library
ii  libpopt0:amd64                                        1.16-8ubuntu1                                          amd64        lib for parsing cmdline parameters
ii  libportaudio2:amd64                                   19+svn20140130-1                                       amd64        Portable audio I/O - shared library
ii  libportsmf0:amd64                                     0.1~svn20101010-4                                      amd64        Portable Standard Midi File Library
ii  libpostproc52                                         6:0.git20120821-4                                      amd64        FFmpeg derived postprocessing library
ii  libprocps3:amd64                                      1:3.3.9-1ubuntu2.2                                     amd64        library for accessing process information from /proc
ii  libprotobuf8:amd64                                    2.5.0-9ubuntu1                                         amd64        protocol buffers C++ library
ii  libproxy-tools                                        0.4.11-0ubuntu4                                        amd64        automatic proxy configuration management library (tools)
ii  libproxy1:amd64                                       0.4.11-0ubuntu4                                        amd64        automatic proxy configuration management library (shared)
ii  libproxy1-plugin-gsettings:amd64                      0.4.11-0ubuntu4                                        amd64        automatic proxy configuration management library (GSettings plugin)
ii  libproxy1-plugin-networkmanager:amd64                 0.4.11-0ubuntu4                                        amd64        automatic proxy configuration management library (Network Manager plugin)
ii  libptexenc1                                           2013.20130729.30972-2build3                            amd64        TeX Live: pTeX encoding library
ii  libpthread-stubs0-dev:amd64                           0.3-4                                                  amd64        pthread stubs not provided by native libc, development files
ii  libpulse-mainloop-glib0:amd64                         1:4.0-0ubuntu11.1                                      amd64        PulseAudio client libraries (glib support)
ii  libpulse0:amd64                                       1:4.0-0ubuntu11.1                                      amd64        PulseAudio client libraries
ii  libpulsedsp:amd64                                     1:4.0-0ubuntu11.1                                      amd64        PulseAudio OSS pre-load library
ii  libpurple-bin                                         1:2.10.9-0ubuntu3.2                                    all          multi-protocol instant messaging library - extra utilities
ii  libpurple0                                            1:2.10.9-0ubuntu3.2                                    amd64        multi-protocol instant messaging library
ii  libpwquality-common                                   1.2.3-1ubuntu1.1                                       all          library for password quality checking and generation (data files)
ii  libpwquality1:amd64                                   1.2.3-1ubuntu1.1                                       amd64        library for password quality checking and generation
ii  libpython-stdlib:amd64                                2.7.5-5ubuntu3                                         amd64        interactive high-level object-oriented language (default python version)
ii  libpython2.7:amd64                                    2.7.6-8ubuntu0.2                                       amd64        Shared Python runtime library (version 2.7)
ii  libpython2.7-minimal:amd64                            2.7.6-8ubuntu0.2                                       amd64        Minimal subset of the Python language (version 2.7)
ii  libpython2.7-stdlib:amd64                             2.7.6-8ubuntu0.2                                       amd64        Interactive high-level object-oriented language (standard library, version 2.7)
ii  libpython3-stdlib:amd64                               3.4.0-0ubuntu2                                         amd64        interactive high-level object-oriented language (default python3 version)
ii  libpython3.4:amd64                                    3.4.3-1ubuntu1~14.04.1                                 amd64        Shared Python runtime library (version 3.4)
ii  libpython3.4-minimal:amd64                            3.4.3-1ubuntu1~14.04.1                                 amd64        Minimal subset of the Python language (version 3.4)
ii  libpython3.4-stdlib:amd64                             3.4.3-1ubuntu1~14.04.1                                 amd64        Interactive high-level object-oriented language (standard library, version 3.4)
ii  libpyzy-1.0-0                                         1.0.1-4                                                amd64        Chinese PinYin and Bopomofo conversion library
ii  libqmi-glib0:amd64                                    1.4.0-1                                                amd64        Support library to use the Qualcomm MSM Interface (QMI) protocol
ii  libqpdf13:amd64                                       5.1.1-1                                                amd64        runtime library for PDF transformation/inspection software
ii  libqt4-dbus:amd64                                     4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 D-Bus module
ii  libqt4-declarative:amd64                              4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 Declarative module
ii  libqt4-designer:amd64                                 4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 designer module
ii  libqt4-dev                                            4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 development files
ii  libqt4-dev-bin                                        4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 development programs
ii  libqt4-help:amd64                                     4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 help module
ii  libqt4-network:amd64                                  4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 network module
ii  libqt4-opengl:amd64                                   4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 OpenGL module
ii  libqt4-opengl-dev                                     4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 OpenGL library development files
ii  libqt4-qt3support:amd64                               4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 3 compatibility library for Qt 4
ii  libqt4-script:amd64                                   4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 script module
ii  libqt4-scripttools:amd64                              4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 script tools module
ii  libqt4-sql:amd64                                      4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 SQL module
ii  libqt4-sql-sqlite:amd64                               4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 SQLite 3 database driver
ii  libqt4-svg:amd64                                      4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 SVG module
ii  libqt4-test:amd64                                     4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 test module
ii  libqt4-xml:amd64                                      4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 XML module
ii  libqt4-xmlpatterns:amd64                              4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 XML patterns module
ii  libqt5clucene5:amd64                                  5.2.1-8build1                                          amd64        Qt 5 CLucene module
ii  libqt5concurrent5:amd64                               5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 concurrent module
ii  libqt5core5a:amd64                                    5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 core module
ii  libqt5dbus5:amd64                                     5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 D-Bus module
ii  libqt5declarative5:amd64                              5.2.1-1ubuntu1                                         amd64        Qt Quick 1 module for Qt 5
ii  libqt5designer5:amd64                                 5.2.1-8build1                                          amd64        Qt 5 designer module
ii  libqt5designercomponents5:amd64                       5.2.1-8build1                                          amd64        Qt 5 Designer components module
ii  libqt5feedback5:amd64                                 5.0~git20130529-0ubuntu3                               amd64        Qt Feedback module
ii  libqt5gui5:amd64                                      5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 GUI module
ii  libqt5help5:amd64                                     5.2.1-8build1                                          amd64        Qt 5 help module
ii  libqt5multimedia5:amd64                               5.2.1-0ubuntu5                                         amd64        Qt 5 Multimedia module
ii  libqt5network5:amd64                                  5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 network module
ii  libqt5opengl5:amd64                                   5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 OpenGL module
ii  libqt5opengl5-dev:amd64                               5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 OpenGL library development files
ii  libqt5organizer5:amd64                                5.0~git20140203~e0c5eebe-0ubuntu2                      amd64        Qt PIM module, Organizer library
ii  libqt5positioning5:amd64                              5.2.1-1ubuntu2                                         amd64        Qt Positioning module
ii  libqt5printsupport5:amd64                             5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 print support module
ii  libqt5qml-graphicaleffects:amd64                      5.2.1-1                                                amd64        Qt 5 Graphical Effects module
ii  libqt5qml5:amd64                                      5.2.1-3ubuntu15.1                                      amd64        Qt 5 QML module
ii  libqt5quick5:amd64                                    5.2.1-3ubuntu15.1                                      amd64        Qt 5 Quick library
ii  libqt5quickparticles5:amd64                           5.2.1-3ubuntu15.1                                      amd64        Qt 5 Quick particules module
ii  libqt5quicktest5:amd64                                5.2.1-3ubuntu15.1                                      amd64        Qt 5 Quick Test library
ii  libqt5script5:amd64                                   5.2.1+dfsg-1ubuntu1                                    amd64        Qt 5 script module
ii  libqt5sensors5:amd64                                  5.2.1+dfsg-2ubuntu2                                    amd64        Qt Sensors module
ii  libqt5sql5:amd64                                      5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 SQL module
ii  libqt5sql5-sqlite:amd64                               5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 SQLite 3 database driver
ii  libqt5svg5:amd64                                      5.2.1-1                                                amd64        Qt 5 SVG module
ii  libqt5test5:amd64                                     5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 test module
ii  libqt5webkit5:amd64                                   5.1.1-1ubuntu8                                         amd64        Web content engine library for Qt
ii  libqt5webkit5-qmlwebkitplugin:amd64                   5.1.1-1ubuntu8                                         amd64        Qt WebKit QML plugin
ii  libqt5widgets5:amd64                                  5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 widgets module
ii  libqt5xml5:amd64                                      5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 XML module
ii  libqtassistantclient4:amd64                           4.6.3-6                                                amd64        Qt Assistant client library (runtime)
ii  libqtcore4:amd64                                      4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 core module
ii  libqtdbus4:amd64                                      4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 D-Bus module library
ii  libqtgui4:amd64                                       4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 GUI module
ii  libqtwebkit-dev                                       2.3.2-0ubuntu7                                         amd64        Web content engine library for Qt - development files
ii  libqtwebkit4:amd64                                    2.3.2-0ubuntu7                                         amd64        Web content engine library for Qt
ii  libquadmath0:amd64                                    4.8.4-2ubuntu1~14.04                                   amd64        GCC Quad-Precision Math Library
ii  libraptor2-0:amd64                                    2.0.13-1                                               amd64        Raptor 2 RDF syntax library
ii  librarian0                                            0.8.1-5ubuntu1                                         amd64        Documentation meta-data library (library package)
ii  librasqal3:amd64                                      0.9.32-1                                               amd64        Rasqal RDF query library
ii  libraw1394-11:amd64                                   2.1.0-1ubuntu1                                         amd64        library for direct access to IEEE 1394 bus (aka FireWire)
ii  libraw9:amd64                                         0.15.4-1                                               amd64        raw image decoder library
ii  librdf0:amd64                                         1.0.17-1                                               amd64        Redland Resource Description Framework (RDF) library
ii  libreadline5:amd64                                    5.2+dfsg-2                                             amd64        GNU readline and history libraries, run-time libraries
ii  libreadline6:amd64                                    6.3-4ubuntu2                                           amd64        GNU readline and history libraries, run-time libraries
ii  libreoffice-avmedia-backend-gstreamer                 1:4.2.8-0ubuntu2                                       amd64        GStreamer backend for LibreOffice
ii  libreoffice-base-core                                 1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- shared library
ii  libreoffice-calc                                      1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- spreadsheet
ii  libreoffice-common                                    1:4.2.8-0ubuntu2                                       all          office productivity suite -- arch-independent files
ii  libreoffice-core                                      1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- arch-dependent files
ii  libreoffice-draw                                      1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- drawing
ii  libreoffice-gnome                                     1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- GNOME integration
ii  libreoffice-gtk                                       1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- GTK+ integration
ii  libreoffice-help-en-us                                1:4.2.8-0ubuntu1                                       all          office productivity suite -- English_american help
ii  libreoffice-help-fr                                   1:4.2.8-0ubuntu1                                       all          office productivity suite -- French help
ii  libreoffice-impress                                   1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- presentation
ii  libreoffice-l10n-fr                                   1:4.2.8-0ubuntu1                                       all          office productivity suite -- French language package
ii  libreoffice-math                                      1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- equation editor
ii  libreoffice-ogltrans                                  1:4.2.8-0ubuntu2                                       amd64        LibreOffice Impress extension for transitions using OpenGL
ii  libreoffice-pdfimport                                 1:4.2.8-0ubuntu2                                       amd64        PDF Import component for LibreOffice
ii  libreoffice-presentation-minimizer                    1:4.2.8-0ubuntu2                                       all          transitional package for the LibreOffice presentation minimizer
ii  libreoffice-style-human                               1:4.2.8-0ubuntu2                                       all          office productivity suite -- Human symbol style
ii  libreoffice-writer                                    1:4.2.8-0ubuntu2                                       amd64        office productivity suite -- word processor
ii  libresid-builder0c2a                                  2.1.1-14                                               amd64        SID chip emulation class based on resid
ii  librest-0.7-0:amd64                                   0.7.90-0ubuntu1                                        amd64        REST service access library
ii  librhythmbox-core8                                    3.0.2-0ubuntu2                                         amd64        support library for the rhythmbox music player
ii  libroken18-heimdal:amd64                              1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - roken support library
ii  librsvg2-2:amd64                                      2.40.2-1                                               amd64        SAX-based renderer library for SVG files (runtime)
ii  librsvg2-common:amd64                                 2.40.2-1                                               amd64        SAX-based renderer library for SVG files (extra runtime)
ii  librsync1:amd64                                       0.9.7-10                                               amd64        rsync remote-delta algorithm library
ii  librtmp0:amd64                                        2.4+20121230.gitdf6c518-1                              amd64        toolkit for RTMP streams (shared library)
ii  libruby1.9.1                                          1.9.3.484-2ubuntu1.2                                   amd64        Libraries necessary to run Ruby 1.9.1
ii  libsamplerate0:amd64                                  0.1.8-7                                                amd64        Audio sample rate conversion library
ii  libsane:amd64                                         1.0.23-3ubuntu3.1                                      amd64        API library for scanners
ii  libsane-common                                        1.0.23-3ubuntu3.1                                      amd64        API library for scanners -- documentation and support files
ii  libsane-hpaio                                         3.14.3-0ubuntu3.4                                      amd64        HP SANE backend for multi-function peripherals
ii  libsasl2-2:amd64                                      2.1.25.dfsg1-17build1                                  amd64        Cyrus SASL - authentication abstraction library
ii  libsasl2-modules:amd64                                2.1.25.dfsg1-17build1                                  amd64        Cyrus SASL - pluggable authentication modules
ii  libsasl2-modules-db:amd64                             2.1.25.dfsg1-17build1                                  amd64        Cyrus SASL - pluggable authentication modules (DB)
ii  libsbc1:amd64                                         1.1-2ubuntu2                                           amd64        Sub Band CODEC library - runtime
ii  libsbsms10:amd64                                      2.0.1-1                                                amd64        Subband Sinusoidal Modeling Synthesis
ii  libschroedinger-1.0-0:amd64                           1.0.11-2ubuntu1                                        amd64        library for encoding/decoding of Dirac video streams
ii  libsdl-image1.2:amd64                                 1.2.12-5build2                                         amd64        Image loading library for Simple DirectMedia Layer 1.2, libraries
ii  libsdl1.2debian:amd64                                 1.2.15-8ubuntu1.1                                      amd64        Simple DirectMedia Layer
ii  libsecret-1-0:amd64                                   0.16-0ubuntu1                                          amd64        Secret store
ii  libsecret-common                                      0.16-0ubuntu1                                          all          Secret store (common files)
ii  libselinux1:amd64                                     2.2.2-1ubuntu0.1                                       amd64        SELinux runtime shared libraries
ii  libsemanage-common                                    2.2-1                                                  all          Common files for SELinux policy management libraries
ii  libsemanage1:amd64                                    2.2-1                                                  amd64        SELinux policy management library
ii  libsensors4:amd64                                     1:3.3.4-2ubuntu1                                       amd64        library to read temperature/voltage/fan sensors
ii  libsepol1:amd64                                       2.2-1ubuntu0.1                                         amd64        SELinux library for manipulating binary security policies
ii  libserf-1-1:amd64                                     1.3.3-1ubuntu0.1                                       amd64        high-performance asynchronous HTTP client library
ii  libsgutils2-2                                         1.36-1ubuntu1                                          amd64        utilities for devices using the SCSI command set (shared libraries)
ii  libshout3:amd64                                       2.3.1-3                                                amd64        MP3/Ogg Vorbis broadcast streaming library
ii  libsidplay1                                           1.36.59-5ubuntu1                                       amd64        SID (MOS 6581) emulation library
ii  libsidplay2                                           2.1.1-14                                               amd64        SID (MOS 6581) emulation library
ii  libsigc++-2.0-0c2a:amd64                              2.2.10-0.2ubuntu2                                      amd64        type-safe Signal Framework for C++ - runtime
ii  libsignon-extension1                                  8.56+14.04.20140307-0ubuntu2                           amd64        Single Sign On framework
ii  libsignon-glib1                                       1.10daily13.06.25-0ubuntu2                             amd64        library for signond
ii  libsignon-plugins-common1                             8.56+14.04.20140307-0ubuntu2                           amd64        Single Sign On framework
ii  libsignon-qt5-1                                       8.56+14.04.20140307-0ubuntu2                           amd64        Single Sign On framework
rc  libsigsegv2:amd64                                     2.10-2                                                 amd64        Library for handling page faults in a portable way
ii  libslang2:amd64                                       2.2.4-15ubuntu1                                        amd64        S-Lang programming library - runtime version
ii  libslv2-9                                             0.6.6+dfsg1-2                                          amd64        library for simple use of LV2 plugins
ii  libsm6:amd64                                          2:1.2.1-2                                              amd64        X11 Session Management library
ii  libsmbclient:amd64                                    2:4.1.6+dfsg-1ubuntu2.14.04.9                          amd64        shared library for communication with SMB/CIFS servers
ii  libsndfile1:amd64                                     1.0.25-7ubuntu2                                        amd64        Library for reading/writing audio files
ii  libsnmp-base                                          5.7.2~dfsg-8.1ubuntu3.1                                all          SNMP configuration script, MIBs and documentation
ii  libsnmp30:amd64                                       5.7.2~dfsg-8.1ubuntu3.1                                amd64        SNMP (Simple Network Management Protocol) library
ii  libsocket6-perl                                       0.25-1                                                 amd64        Perl extensions for IPv6
ii  libsonic0:amd64                                       0.1.18-0ubuntu1                                        amd64        Simple library to speed up or slow down speech
ii  libsoundtouch0:amd64                                  1.7.1-5                                                amd64        Sound stretching library
ii  libsoup-gnome2.4-1:amd64                              2.44.2-1ubuntu2                                        amd64        HTTP library implementation in C -- GNOME support library
ii  libsoup2.4-1:amd64                                    2.44.2-1ubuntu2                                        amd64        HTTP library implementation in C -- Shared library
ii  libsoxr0:amd64                                        0.1.1-1                                                amd64        High quality 1D sample-rate conversion library
ii  libspandsp2                                           0.0.6~pre21-2                                          amd64        Telephony signal processing library
ii  libspectre1:amd64                                     0.2.7-2ubuntu1.1                                       amd64        Library for rendering PostScript documents
ii  libspeechd2:amd64                                     0.8-5ubuntu1                                           amd64        Speech Dispatcher: Shared libraries
ii  libspeex1:amd64                                       1.2~rc1.1-1ubuntu1                                     amd64        The Speex codec runtime library
ii  libspeexdsp1:amd64                                    1.2~rc1.1-1ubuntu1                                     amd64        The Speex extended runtime library
ii  libsphinxbase1                                        0.8-0ubuntu10                                          amd64        Sphinx base libraries
ii  libspice-server1:amd64                                0.12.4-0nocelt2ubuntu1.2                               amd64        Implements the server side of the SPICE protocol
ii  libsqlite3-0:amd64                                    3.8.2-1ubuntu2.1                                       amd64        SQLite 3 shared library
ii  libsrtp0                                              1.4.5~20130609~dfsg-1                                  amd64        Secure RTP (SRTP) and UST Reference Implementations - shared library
ii  libss2:amd64                                          1.42.9-3ubuntu1.3                                      amd64        command-line interface parsing library
ii  libssh-4:amd64                                        0.6.1-0ubuntu3.1                                       amd64        tiny C SSH library
ii  libssh2-1:amd64                                       1.4.3-2                                                amd64        SSH2 client-side library
ii  libssl1.0.0:amd64                                     1.0.1f-1ubuntu2.15                                     amd64        Secure Sockets Layer toolkit - shared libraries
ii  libstartup-notification0:amd64                        0.12-3ubuntu1                                          amd64        library for program launch feedback (shared library)
ii  libstdc++-4.8-dev:amd64                               4.8.4-2ubuntu1~14.04                                   amd64        GNU Standard C++ Library v3 (development files)
ii  libstdc++6:amd64                                      4.8.4-2ubuntu1~14.04                                   amd64        GNU Standard C++ Library v3
ii  libsub-identify-perl                                  0.04-1build3                                           amd64        Retrieve names of code references
ii  libsub-name-perl                                      0.05-1build4                                           amd64        module for assigning a new name to referenced sub
ii  libsvn1:amd64                                         1.8.8-1ubuntu3.2                                       amd64        Shared libraries used by Apache Subversion
ii  libswscale2:amd64                                     6:9.18-0ubuntu0.14.04.1                                amd64        Libav video scaling library
ii  libsystemd-daemon0:amd64                              204-5ubuntu20.15                                       amd64        systemd utility library
ii  libsystemd-journal0:amd64                             204-5ubuntu20.15                                       amd64        systemd journal utility library
ii  libsystemd-login0:amd64                               204-5ubuntu20.15                                       amd64        systemd login utility library
ii  libt1-5                                               5.1.2-3.6ubuntu1                                       amd64        Type 1 font rasterizer library - runtime
ii  libtag1-vanilla:amd64                                 1.9.1-2                                                amd64        audio meta-data library - vanilla flavour
ii  libtag1c2a:amd64                                      1.9.1-2                                                amd64        audio meta-data library
ii  libtalloc2:amd64                                      2.1.0-1                                                amd64        hierarchical pool based memory allocator
ii  libtar0                                               1.2.20-3ubuntu0.1                                      amd64        C library for manipulating tar archives
ii  libtasn1-6:amd64                                      3.4-3ubuntu0.3                                         amd64        Manage ASN.1 structures (runtime)
ii  libtbb2                                               4.2~20130725-1.1ubuntu1                                amd64        parallelism library for C++ - runtime files
ii  libtcl8.6:amd64                                       8.6.1-4ubuntu1                                         amd64        Tcl (the Tool Command Language) v8.6 - run-time library files
ii  libtdb1:amd64                                         1.2.12-1                                               amd64        Trivial Database - shared library
ii  libtelepathy-farstream3:amd64                         0.6.1-0ubuntu1                                         amd64        Glue library between telepathy and farstream
ii  libtelepathy-glib0:amd64                              0.22.1-1ubuntu2                                        amd64        Telepathy framework - GLib library
ii  libtelepathy-logger3:amd64                            0.8.0-3                                                amd64        Telepathy logger service - utility library
ii  libterm-ui-perl                                       0.42-1                                                 all          Term::ReadLine UI made easy
ii  libtevent0:amd64                                      0.9.19-1                                               amd64        talloc-based event loop library - shared library
ii  libtext-charwidth-perl                                0.04-7build3                                           amd64        get display widths of characters on the terminal
ii  libtext-iconv-perl                                    1.7-5build2                                            amd64        converts between character sets in Perl
ii  libtext-levenshtein-perl                              0.06~01-2                                              all          implementation of the Levenshtein edit distance
ii  libtext-soundex-perl                                  3.4-1build1                                            amd64        implementation of the soundex algorithm
ii  libtext-wrapi18n-perl                                 0.06-7                                                 all          internationalized substitute of Text::Wrap
ii  libthai-data                                          0.1.20-3                                               all          Data files for Thai language support library
ii  libthai0:amd64                                        0.1.20-3                                               amd64        Thai language support library
ii  libtheora0:amd64                                      1.1.1+dfsg.1-3.2                                       amd64        Theora Video Compression Codec
ii  libthumbnailer0:amd64                                 1.1+14.04.20150205-0ubuntu1                            amd64        generate thumbnails from files
ii  libtiff5:amd64                                        4.0.3-7ubuntu0.3                                       amd64        Tag Image File Format (TIFF) library
ii  libtimedate-perl                                      2.3000-1                                               all          collection of modules to manipulate date/time information
ii  libtimezonemap1                                       0.4.1                                                  amd64        GTK+3 timezone map widget
ii  libtinfo5:amd64                                       5.9+20140118-1ubuntu1                                  amd64        shared low-level terminfo library for terminal handling
ii  libtk8.6:amd64                                        8.6.1-3ubuntu2                                         amd64        Tk toolkit for Tcl and X11 v8.6 - run-time files
ii  libtotem-plparser18                                   3.10.2-0ubuntu1                                        amd64        Totem Playlist Parser library - runtime files
ii  libtotem0                                             3.10.1-1ubuntu4                                        amd64        Main library for the Totem media player
ii  libts-0.0-0:amd64                                     1.0-12                                                 amd64        touch screen library
ii  libtsan0:amd64                                        4.8.4-2ubuntu1~14.04                                   amd64        ThreadSanitizer -- a Valgrind-based detector of data races (runtime)
ii  libtwolame0                                           0.3.13-1ubuntu1                                        amd64        MPEG Audio Layer 2 encoding library
ii  libtxc-dxtn-s2tc0:amd64                               0~git20131104-1.1                                      amd64        Texture compression library for Mesa
ii  libudev1:amd64                                        204-5ubuntu20.15                                       amd64        libudev shared library
ii  libudisks2-0:amd64                                    2.1.3-1ubuntu0.1                                       amd64        GObject based library to access udisks2
ii  libufe-xidgetter0                                     3.0.0+14.04.20140416-0ubuntu1.14.04.1                  amd64        Firefox extension: Unity Integration
ii  libumfpack5.6.2:amd64                                 1:4.2.1-3ubuntu1                                       amd64        sparse LU factorization library
ii  libunistring0:amd64                                   0.9.3-5ubuntu3                                         amd64        Unicode string library for C
ii  libunity-action-qt1:amd64                             1.1.0+14.04.20140304-0ubuntu1                          amd64        Unity Action Qt API
ii  libunity-control-center1                              14.04.3+14.04.20140922-0ubuntu1.1                      amd64        utilities to configure the GNOME desktop
ii  libunity-core-6.0-9                                   7.2.5+14.04.20150603-0ubuntu1                          amd64        core library for the Unity interface
ii  libunity-gtk2-parser0:amd64                           0.0.0+14.04.20141212-0ubuntu1                          amd64        GtkMenuShell to GMenuModel parser
ii  libunity-gtk3-parser0:amd64                           0.0.0+14.04.20141212-0ubuntu1                          amd64        GtkMenuShell to GMenuModel parser
ii  libunity-misc4                                        4.0.5+14.04.20140115-0ubuntu1                          amd64        Miscellaneous functions for Unity - shared library
ii  libunity-protocol-private0:amd64                      7.1.4+14.04.20140210-0ubuntu1                          amd64        binding to get places into the launcher - private library
ii  libunity-scopes-json-def-desktop                      7.1.4+14.04.20140210-0ubuntu1                          all          binding to get places into the launcher - desktop def file
ii  libunity-webapps0                                     2.5.0~+14.04.20140409-0ubuntu1                         amd64        Web Apps integration with the Unity desktop
ii  libunity9:amd64                                       7.1.4+14.04.20140210-0ubuntu1                          amd64        binding to get places into the launcher - shared library
ii  libunityvoice1:amd64                                  0.1+14.04.20140304-0ubuntu1                            amd64        client library for Unity voice service
ii  libupnp6                                              1:1.6.17-1.2                                           amd64        Portable SDK for UPnP Devices, version 1.6 (shared libraries)
ii  libupower-glib1:amd64                                 0.9.23-2ubuntu1                                        amd64        abstraction for power management - shared library
ii  libupstart1:amd64                                     1.12.1-0ubuntu4.2                                      amd64        Upstart Client Library
ii  liburi-perl                                           1.60-1                                                 all          module to manipulate and access URI strings
ii  liburl-dispatcher1:amd64                              0.1+14.04.20140403-0ubuntu1                            amd64        library for sending requests to the url dispatcher
ii  libusageenvironment1                                  2014.01.13-1                                           amd64        multimedia RTSP streaming library (UsageEnvironment classes)
ii  libusb-0.1-4:amd64                                    2:0.1.12-23.3ubuntu1                                   amd64        userspace USB programming library
ii  libusb-1.0-0:amd64                                    2:1.0.17-1ubuntu2                                      amd64        userspace USB programming library
ii  libusbmuxd2                                           1.0.8-2ubuntu1                                         amd64        USB multiplexor daemon for iPhone and iPod Touch devices - library
ii  libustr-1.0-1:amd64                                   1.0.4-3ubuntu2                                         amd64        Micro string library: shared library
ii  libutempter0                                          1.1.5-4build1                                          amd64        A privileged helper for utmp/wtmp updates (runtime)
ii  libuuid-perl                                          0.05-1                                                 amd64        Perl extension for using UUID interfaces as defined in e2fsprogs
ii  libuuid1:amd64                                        2.20.1-5.1ubuntu20.7                                   amd64        Universally Unique ID library
ii  libv4l-0:amd64                                        1.0.1-1                                                amd64        Collection of video4linux support libraries
ii  libv4lconvert0:amd64                                  1.0.1-1                                                amd64        Video4linux frame format conversion library
ii  libva-x11-1:amd64                                     1.5.0-1~xedgers~trusty                                 amd64        Video Acceleration (VA) API for Linux -- X11 runtime
ii  libva1:amd64                                          1.5.0-1~xedgers~trusty                                 amd64        Video Acceleration (VA) API for Linux -- runtime
ii  libvamp-hostsdk3:amd64                                2.5+repack0-2                                          amd64        helper library for Vamp hosts written in C++
ii  libvcdinfo0                                           0.7.24+dfsg-0.1ubuntu2                                 amd64        library to extract information from VideoCD
ii  libvdpau1:amd64                                       1.1-0ubuntu1~xedgers14.04.1                            amd64        Video Decode and Presentation API for Unix (libraries)
ii  libvisio-0.0-0                                        0.0.31-1ubuntu2                                        amd64        library for parsing the visio file structure
ii  libvisual-0.4-0:amd64                                 0.4.0-5                                                amd64        Audio visualization framework
ii  libvisual-0.4-plugins:amd64                           0.4.0.dfsg.1-7build1                                   amd64        Audio visualization framework plugins
ii  libvlc5                                               2.1.6-0ubuntu14.04.1                                   amd64        multimedia player and streamer library
ii  libvlccore7                                           2.1.6-0ubuntu14.04.1                                   amd64        base library for VLC and its modules
ii  libvncserver0:amd64                                   0.9.9+dfsg-1ubuntu1.1                                  amd64        API to write one's own vnc server
ii  libvo-aacenc0:amd64                                   0.1.3-1                                                amd64        VisualOn AAC encoder library
ii  libvo-amrwbenc0:amd64                                 0.1.3-1                                                amd64        VisualOn AMR-WB encoder library
ii  libvorbis0a:amd64                                     1.3.2-1.3ubuntu1                                       amd64        The Vorbis General Audio Compression Codec (Decoder library)
ii  libvorbisenc2:amd64                                   1.3.2-1.3ubuntu1                                       amd64        The Vorbis General Audio Compression Codec (Encoder library)
ii  libvorbisfile3:amd64                                  1.3.2-1.3ubuntu1                                       amd64        The Vorbis General Audio Compression Codec (High Level API)
ii  libvpx1:amd64                                         1.3.0-2                                                amd64        VP8 video codec (shared library)
ii  libvte-2.90-9                                         1:0.34.9-1ubuntu1                                      amd64        Terminal emulator widget for GTK+ 3.0 - runtime files
ii  libvte-2.90-common                                    1:0.34.9-1ubuntu1                                      all          Terminal emulator widget for GTK+ 3.0 - common files
ii  libwacom-common                                       0.8-1                                                  all          Wacom model feature query library (common files)
ii  libwacom2:amd64                                       0.8-1                                                  amd64        Wacom model feature query library
ii  libwavpack1:amd64                                     4.70.0-1                                               amd64        audio codec (lossy and lossless) - library
ii  libwayland-client0:amd64                              1.7.0-0ubuntu1~trusty1                                 amd64        wayland compositor infrastructure - client library
ii  libwayland-cursor0:amd64                              1.7.0-0ubuntu1~trusty1                                 amd64        wayland compositor infrastructure - cursor library
ii  libwayland-dev                                        1.7.0-0ubuntu1~trusty1                                 amd64        wayland compositor infrastructure - development files
ii  libwayland-egl1-mesa:amd64                            11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        implementation of the Wayland EGL platform -- runtime
ii  libwayland-server0:amd64                              1.7.0-0ubuntu1~trusty1                                 amd64        wayland compositor infrastructure - server library
ii  libwbclient0:amd64                                    2:4.1.6+dfsg-1ubuntu2.14.04.9                          amd64        Samba winbind client library
ii  libwebkitgtk-1.0-0:amd64                              2.4.8-1ubuntu1~ubuntu14.04.1                           amd64        Web content engine library for GTK+
ii  libwebkitgtk-1.0-common                               2.4.8-1ubuntu1~ubuntu14.04.1                           all          Web content engine library for GTK+ - data files
ii  libwebkitgtk-3.0-0:amd64                              2.4.8-1ubuntu1~ubuntu14.04.1                           amd64        Web content engine library for GTK+
ii  libwebkitgtk-3.0-common                               2.4.8-1ubuntu1~ubuntu14.04.1                           all          Web content engine library for GTK+ - data files
ii  libwebp5:amd64                                        0.4.0-4                                                amd64        Lossy compression of digital photographic images.
ii  libwebpmux1:amd64                                     0.4.0-4                                                amd64        Lossy compression of digital photographic images.
ii  libwhoopsie-preferences0                              0.12                                                   amd64        Ubuntu error tracker submission settings - shared library
ii  libwhoopsie0                                          0.2.24.6                                               amd64        Ubuntu error tracker submission - shared library
ii  libwildmidi-config                                    0.2.3.4-2.1ubuntu3                                     all          software MIDI player configuration
ii  libwildmidi1:amd64                                    0.2.3.4-2.1ubuntu3                                     amd64        software MIDI player library
ii  libwind0-heimdal:amd64                                1.6~git20131207+dfsg-1ubuntu1.1                        amd64        Heimdal Kerberos - stringprep implementation
ii  libwmf0.2-7:amd64                                     0.2.8.4-10.3ubuntu1.14.04.1                            amd64        Windows metafile conversion library
ii  libwmf0.2-7-gtk                                       0.2.8.4-10.3ubuntu1.14.04.1                            amd64        Windows metafile conversion library
ii  libwnck-3-0:amd64                                     3.4.7-0ubuntu3.1                                       amd64        Window Navigator Construction Kit - runtime files
ii  libwnck-3-common                                      3.4.7-0ubuntu3.1                                       all          Window Navigator Construction Kit - common files
ii  libwnck-common                                        1:2.30.7-0ubuntu4                                      all          Window Navigator Construction Kit - common files
ii  libwnck22                                             1:2.30.7-0ubuntu4                                      amd64        Window Navigator Construction Kit - runtime files
ii  libwpd-0.9-9                                          0.9.9-1                                                amd64        Library for handling WordPerfect documents (shared library)
ii  libwpg-0.2-2                                          0.2.2-1ubuntu1                                         amd64        WordPerfect graphics import/convert library (shared library)
ii  libwps-0.2-2                                          0.2.9-2ubuntu1                                         amd64        Works text file format import filter library (shared library)
ii  libwrap0:amd64                                        7.6.q-25                                               amd64        Wietse Venema's TCP wrappers library
ii  libwxbase2.8-0:amd64                                  2.8.12.1+dfsg-2ubuntu2                                 amd64        wxBase library (runtime) - non-GUI support classes of wxWidgets toolkit
ii  libwxgtk2.8-0:amd64                                   2.8.12.1+dfsg-2ubuntu2                                 amd64        wxWidgets Cross-platform C++ GUI toolkit (GTK+ runtime)
ii  libx11-6:amd64                                        2:1.6.2-1ubuntu2                                       amd64        X11 client-side library
ii  libx11-data                                           2:1.6.2-1ubuntu2                                       all          X11 client-side library
ii  libx11-dev:amd64                                      2:1.6.2-1ubuntu2                                       amd64        X11 client-side library (development headers)
ii  libx11-doc                                            2:1.6.2-1ubuntu2                                       all          X11 client-side library (development documentation)
ii  libx11-xcb-dev:amd64                                  2:1.6.2-1ubuntu2                                       amd64        Xlib/XCB interface library (development headers)
ii  libx11-xcb1:amd64                                     2:1.6.2-1ubuntu2                                       amd64        Xlib/XCB interface library
ii  libx264-142:amd64                                     2:0.142.2389+git956c8d8-2                              amd64        x264 video coding library
ii  libx86-1:amd64                                        1.1+ds1-10                                             amd64        x86 real-mode library
ii  libxapian22                                           1.2.16-2ubuntu1                                        amd64        Search engine library
ii  libxatracker2:amd64                                   11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        X acceleration library -- runtime
ii  libxau-dev:amd64                                      1:1.0.8-1                                              amd64        X11 authorisation library (development headers)
ii  libxau6:amd64                                         1:1.0.8-1                                              amd64        X11 authorisation library
ii  libxaw7:amd64                                         2:1.0.12-1                                             amd64        X11 Athena Widget library
ii  libxcb-composite0:amd64                               1.10-2ubuntu1                                          amd64        X C Binding, composite extension
ii  libxcb-dri2-0:amd64                                   1.10-2ubuntu1                                          amd64        X C Binding, dri2 extension
ii  libxcb-dri2-0-dev:amd64                               1.10-2ubuntu1                                          amd64        X C Binding, dri2 extension, development files
ii  libxcb-dri3-0:amd64                                   1.10-2ubuntu1                                          amd64        X C Binding, dri3 extension
ii  libxcb-dri3-dev:amd64                                 1.10-2ubuntu1                                          amd64        X C Binding, dri3 extension, development files
ii  libxcb-glx0:amd64                                     1.10-2ubuntu1                                          amd64        X C Binding, glx extension
ii  libxcb-glx0-dev:amd64                                 1.10-2ubuntu1                                          amd64        X C Binding, glx extension, development files
ii  libxcb-icccm4:amd64                                   0.4.1-1ubuntu1                                         amd64        utility libraries for X C Binding -- icccm
ii  libxcb-image0:amd64                                   0.3.9-1ubuntu2                                         amd64        utility libraries for X C Binding -- image
ii  libxcb-keysyms1:amd64                                 0.3.9-1ubuntu1                                         amd64        utility libraries for X C Binding -- keysyms
ii  libxcb-present-dev:amd64                              1.10-2ubuntu1                                          amd64        X C Binding, present extension, development files
ii  libxcb-present0:amd64                                 1.10-2ubuntu1                                          amd64        X C Binding, present extension
ii  libxcb-randr0:amd64                                   1.10-2ubuntu1                                          amd64        X C Binding, randr extension
ii  libxcb-randr0-dev:amd64                               1.10-2ubuntu1                                          amd64        X C Binding, randr extension, development files
ii  libxcb-render-util0:amd64                             0.3.8-1.1ubuntu1                                       amd64        utility libraries for X C Binding -- render-util
ii  libxcb-render0:amd64                                  1.10-2ubuntu1                                          amd64        X C Binding, render extension
ii  libxcb-render0-dev:amd64                              1.10-2ubuntu1                                          amd64        X C Binding, render extension, development files
ii  libxcb-shape0:amd64                                   1.10-2ubuntu1                                          amd64        X C Binding, shape extension
ii  libxcb-shape0-dev:amd64                               1.10-2ubuntu1                                          amd64        X C Binding, shape extension, development files
ii  libxcb-shm0:amd64                                     1.10-2ubuntu1                                          amd64        X C Binding, shm extension
ii  libxcb-sync-dev:amd64                                 1.10-2ubuntu1                                          amd64        X C Binding, sync extension, development files
ii  libxcb-sync1:amd64                                    1.10-2ubuntu1                                          amd64        X C Binding, sync extension
ii  libxcb-util0:amd64                                    0.3.8-2ubuntu1                                         amd64        utility libraries for X C Binding -- atom, aux and event
ii  libxcb-xfixes0:amd64                                  1.10-2ubuntu1                                          amd64        X C Binding, xfixes extension
ii  libxcb-xfixes0-dev:amd64                              1.10-2ubuntu1                                          amd64        X C Binding, xfixes extension, development files
ii  libxcb-xkb1:amd64                                     1.10-2ubuntu1                                          amd64        X C Binding, XKEYBOARD extension
ii  libxcb-xv0:amd64                                      1.10-2ubuntu1                                          amd64        X C Binding, xv extension
ii  libxcb1:amd64                                         1.10-2ubuntu1                                          amd64        X C Binding
ii  libxcb1-dev:amd64                                     1.10-2ubuntu1                                          amd64        X C Binding, development files
ii  libxcomposite1:amd64                                  1:0.4.4-1                                              amd64        X11 Composite extension library
ii  libxcursor1:amd64                                     1:1.1.14-1                                             amd64        X cursor management library
ii  libxdamage-dev:amd64                                  1:1.1.4-1ubuntu1                                       amd64        X11 damaged region extension library (development headers)
ii  libxdamage1:amd64                                     1:1.1.4-1ubuntu1                                       amd64        X11 damaged region extension library
ii  libxdmcp-dev:amd64                                    1:1.1.1-1                                              amd64        X11 authorisation library (development headers)
ii  libxdmcp6:amd64                                       1:1.1.1-1                                              amd64        X11 Display Manager Control Protocol library
ii  libxext-dev:amd64                                     2:1.3.2-1ubuntu0.0.14.04.1                             amd64        X11 miscellaneous extensions library (development headers)
ii  libxext6:amd64                                        2:1.3.2-1ubuntu0.0.14.04.1                             amd64        X11 miscellaneous extension library
ii  libxfixes-dev:amd64                                   1:5.0.1-1ubuntu1.1                                     amd64        X11 miscellaneous 'fixes' extension library (development headers)
ii  libxfixes3:amd64                                      1:5.0.1-1ubuntu1.1                                     amd64        X11 miscellaneous 'fixes' extension library
ii  libxfont1:amd64                                       1:1.4.7-1ubuntu0.2                                     amd64        X11 font rasterisation library
ii  libxft2:amd64                                         2.3.1-2                                                amd64        FreeType-based font drawing library for X
ii  libxi6:amd64                                          2:1.7.1.901-1ubuntu1.1                                 amd64        X11 Input extension library
ii  libxinerama1:amd64                                    2:1.1.3-1                                              amd64        X11 Xinerama extension library
ii  libxkbcommon-x11-0:amd64                              0.4.1-0ubuntu1                                         amd64        library to create keymaps with the XKB X11 protocol
ii  libxkbcommon0:amd64                                   0.4.1-0ubuntu1                                         amd64        library interface to the XKB compiler - shared library
ii  libxkbfile1:amd64                                     1:1.0.8-1                                              amd64        X11 keyboard file manipulation library
ii  libxklavier16                                         5.4-0ubuntu1                                           amd64        X Keyboard Extension high-level API
ii  libxml2:amd64                                         2.9.1+dfsg1-3ubuntu4.4                                 amd64        GNOME XML library
ii  libxmu6:amd64                                         2:1.1.1-1                                              amd64        X11 miscellaneous utility library
ii  libxmuu1:amd64                                        2:1.1.1-1                                              amd64        X11 miscellaneous micro-utility library
ii  libxnvctrl0                                           355.06-0ubuntu0~xedgers14.04.1                         amd64        NV-CONTROL X extension (runtime library)
ii  libxp6:amd64                                          1:1.0.2-1ubuntu1                                       amd64        X Printing Extension (Xprint) client library
ii  libxpm4:amd64                                         1:3.5.10-1                                             amd64        X11 pixmap library
ii  libxrandr2:amd64                                      2:1.4.2-1                                              amd64        X11 RandR extension library
ii  libxrender1:amd64                                     1:0.9.8-1build0.14.04.1                                amd64        X Rendering Extension client library
ii  libxres1:amd64                                        2:1.0.7-1                                              amd64        X11 Resource extension library
ii  libxshmfence-dev:amd64                                1.1-2                                                  amd64        X shared memory fences - development files
ii  libxshmfence1:amd64                                   1.1-2                                                  amd64        X shared memory fences - shared library
ii  libxslt1.1:amd64                                      1.1.28-2build1                                         amd64        XSLT 1.0 processing library - runtime library
ii  libxss1:amd64                                         1:1.2.2-1                                              amd64        X11 Screen Saver extension library
ii  libxt6:amd64                                          1:1.1.4-1                                              amd64        X11 toolkit intrinsics library
ii  libxtables10                                          1.4.21-1ubuntu1                                        amd64        netfilter xtables library
ii  libxtst6:amd64                                        2:1.2.2-1                                              amd64        X11 Testing -- Record extension library
ii  libxv1:amd64                                          2:1.0.10-1                                             amd64        X11 Video extension library
ii  libxvidcore4:amd64                                    2:1.3.2-9ubuntu1                                       amd64        Open source MPEG-4 video codec (library)
ii  libxvmc1:amd64                                        2:1.0.8-1ubuntu1                                       amd64        X11 Video extension library
ii  libxxf86dga1:amd64                                    2:1.1.4-1                                              amd64        X11 Direct Graphics Access extension library
ii  libxxf86vm-dev:amd64                                  1:1.1.3-1                                              amd64        X11 XFree86 video mode extension library (development headers)
ii  libxxf86vm1:amd64                                     1:1.1.3-1                                              amd64        X11 XFree86 video mode extension library
ii  libyajl2:amd64                                        2.0.4-4                                                amd64        Yet Another JSON Library
ii  libyaml-0-2:amd64                                     0.1.4-3ubuntu3.1                                       amd64        Fast YAML 1.1 parser and emitter library
ii  libyaml-tiny-perl                                     1.56-1                                                 all          Perl module for reading and writing YAML files
ii  libyelp0                                              3.10.2-0ubuntu1                                        amd64        Library for the GNOME help browser
ii  libzbar0                                              0.10+doc-9build1                                       amd64        bar code scanner and decoder (library)
ii  libzeitgeist-1.0-1                                    0.3.18-1ubuntu2                                        amd64        library to access Zeitgeist - shared library
ii  libzeitgeist-2.0-0:amd64                              0.9.14-0ubuntu4.1                                      amd64        library to access Zeitgeist - shared library
ii  libzephyr4:amd64                                      3.1.2-1                                                amd64        Project Athena's notification service - non-Kerberos libraries
ii  libzvbi-common                                        0.2.35-2                                               all          Vertical Blanking Interval decoder (VBI) - common files
ii  libzvbi0:amd64                                        0.2.35-2                                               amd64        Vertical Blanking Interval decoder (VBI) - runtime files
ii  light-themes                                          14.04+14.04.20140410-0ubuntu1                          all          Light Themes (Ambiance and Radiance)
ii  lightdm                                               1.10.5-0ubuntu1.1                                      amd64        Display Manager
ii  lintian                                               2.5.22ubuntu1                                          all          Debian package checker
ii  linux-firmware                                        1.127.15                                               all          Firmware for Linux kernel drivers
ii  linux-headers-3.13.0-54                               3.13.0-54.91                                           all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-54-generic                       3.13.0-54.91                                           amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-3.13.0-55                               3.13.0-55.94                                           all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-55-generic                       3.13.0-55.94                                           amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-3.13.0-57                               3.13.0-57.95                                           all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-57-generic                       3.13.0-57.95                                           amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-3.13.0-58                               3.13.0-58.97                                           all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-58-generic                       3.13.0-58.97                                           amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-3.13.0-59                               3.13.0-59.98                                           all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-59-generic                       3.13.0-59.98                                           amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-3.13.0-61                               3.13.0-61.100                                          all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-61-generic                       3.13.0-61.100                                          amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-3.13.0-62                               3.13.0-62.102                                          all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-62-generic                       3.13.0-62.102                                          amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-3.13.0-63                               3.13.0-63.103                                          all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-63-generic                       3.13.0-63.103                                          amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-3.13.0-65                               3.13.0-65.106                                          all          Header files related to Linux kernel version 3.13.0
ii  linux-headers-3.13.0-65-generic                       3.13.0-65.106                                          amd64        Linux kernel headers for version 3.13.0 on 64 bit x86 SMP
ii  linux-headers-generic                                 3.13.0.65.71                                           amd64        Generic Linux kernel headers
rc  linux-image-3.13.0-32-generic                         3.13.0-32.57                                           amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
rc  linux-image-3.13.0-53-generic                         3.13.0-53.89                                           amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-54-generic                         3.13.0-54.91                                           amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-55-generic                         3.13.0-55.94                                           amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-57-generic                         3.13.0-57.95                                           amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-58-generic                         3.13.0-58.97                                           amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-59-generic                         3.13.0-59.98                                           amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-61-generic                         3.13.0-61.100                                          amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-62-generic                         3.13.0-62.102                                          amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-63-generic                         3.13.0-63.103                                          amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-65-generic                         3.13.0-65.106                                          amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
rc  linux-image-extra-3.13.0-32-generic                   3.13.0-32.57                                           amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
rc  linux-image-extra-3.13.0-53-generic                   3.13.0-53.89                                           amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-54-generic                   3.13.0-54.91                                           amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-55-generic                   3.13.0-55.94                                           amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-57-generic                   3.13.0-57.95                                           amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-58-generic                   3.13.0-58.97                                           amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-59-generic                   3.13.0-59.98                                           amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-61-generic                   3.13.0-61.100                                          amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-62-generic                   3.13.0-62.102                                          amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-63-generic                   3.13.0-63.103                                          amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-65-generic                   3.13.0-65.106                                          amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-libc-dev:amd64                                  3.13.0-65.106                                          amd64        Linux Kernel Headers for development
ii  linux-signed-generic                                  3.13.0.65.71                                           amd64        Complete Signed Generic Linux kernel and headers
rc  linux-signed-image-3.13.0-53-generic                  3.13.0-53.89                                           amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-54-generic                  3.13.0-54.91                                           amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-55-generic                  3.13.0-55.94                                           amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-57-generic                  3.13.0-57.95                                           amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-58-generic                  3.13.0-58.97                                           amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-59-generic                  3.13.0-59.98                                           amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-61-generic                  3.13.0-61.100                                          amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-62-generic                  3.13.0-62.102                                          amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-63-generic                  3.13.0-63.103                                          amd64        Signed kernel image generic
ii  linux-signed-image-3.13.0-65-generic                  3.13.0-65.106                                          amd64        Signed kernel image generic
ii  linux-signed-image-generic                            3.13.0.65.71                                           amd64        Signed Generic Linux kernel image
ii  linux-sound-base                                      1.0.25+dfsg-0ubuntu4                                   all          base package for ALSA and OSS sound systems
ii  lmodern                                               2.004.4-3                                              all          scalable PostScript and OpenType fonts based on Computer Modern
ii  locales                                               2.13+git20120306-12.1                                  all          common files for locale support
ii  lockfile-progs                                        0.1.17                                                 amd64        Programs for locking and unlocking files and mailboxes
ii  login                                                 1:4.1.5.1-1ubuntu9.1                                   amd64        system login tools
ii  logrotate                                             3.8.7-1ubuntu1                                         amd64        Log rotation utility
ii  lp-solve                                              5.5.0.13-7build1                                       amd64        Solve (mixed integer) linear programming problems
ii  lsb-base                                              4.1+Debian11ubuntu6                                    all          Linux Standard Base 4.1 init script functionality
ii  lsb-release                                           4.1+Debian11ubuntu6                                    all          Linux Standard Base version reporting utility
ii  lshw                                                  02.16-2ubuntu1.3                                       amd64        information about hardware configuration
ii  lsof                                                  4.86+dfsg-1ubuntu2                                     amd64        Utility to list open files
ii  ltrace                                                0.7.3-4ubuntu5.1                                       amd64        Tracks runtime library calls in dynamically linked programs
ii  luatex                                                0.76.0-3ubuntu1                                        amd64        next generation TeX engine
ii  make                                                  3.81-8.2ubuntu3                                        amd64        An utility for Directing compilation.
ii  makedev                                               2.3.1-93ubuntu1                                        all          creates device files in /dev
ii  man-db                                                2.6.7.1-1ubuntu1                                       amd64        on-line manual pager
ii  manpages                                              3.54-1ubuntu1                                          all          Manual pages about using a GNU/Linux system
ii  manpages-dev                                          3.54-1ubuntu1                                          all          Manual pages about using GNU/Linux for development
ii  mawk                                                  1.3.3-17ubuntu2                                        amd64        a pattern scanning and text processing language
ii  mcp-account-manager-uoa                               3.8.6-0ubuntu9.2                                       amd64        GNOME multi-protocol chat and call client (UOA plugin)
ii  media-player-info                                     21-0ubuntu1                                            all          Media player identification files
ii  memtest86+                                            4.20-1.1ubuntu8                                        amd64        thorough real-mode memory tester
ii  mesa-common-dev:amd64                                 11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty amd64        Developer documentation for Mesa
ii  mesa-utils                                            8.1.0-2                                                amd64        Miscellaneous Mesa GL utilities
ii  metacity-common                                       1:2.34.13-0ubuntu4.1                                   all          shared files for the Metacity window manager
ii  mime-support                                          3.54ubuntu1.1                                          all          MIME files 'mime.types' & 'mailcap', and support programs
ii  mlocate                                               0.26-1ubuntu1                                          amd64        quickly find files on the filesystem based on their name
ii  mobile-broadband-provider-info                        20140317-1                                             all          database of mobile broadband service providers
ii  modemmanager                                          1.0.0-2ubuntu1                                         amd64        D-Bus service for managing modems
ii  module-init-tools                                     15-0ubuntu6                                            all          transitional dummy package (module-init-tools to kmod)
ii  most                                                  5.0.0a-2.3                                             amd64        Pager program similar to more and less
ii  mount                                                 2.20.1-5.1ubuntu20.7                                   amd64        Tools for mounting and manipulating filesystems
ii  mountall                                              2.53                                                   amd64        filesystem mounting tool
ii  mousetweaks                                           3.8.0-2                                                amd64        mouse accessibility enhancements for the GNOME desktop
ii  mscompress                                            0.4-3                                                  amd64        Microsoft "compress.exe/expand.exe" compatible (de)compressor
ii  mtools                                                4.0.18-1ubuntu1                                        amd64        Tools for manipulating MSDOS files
ii  mtr-tiny                                              0.85-2                                                 amd64        Full screen ncurses traceroute tool
ii  multiarch-support                                     2.19-0ubuntu6.6                                        amd64        Transitional package to ensure multiarch compatibility
ii  myspell-en-au                                         2.1-5.4                                                all          English_australian dictionary for myspell
ii  myspell-en-gb                                         1:4.2.1-0ubuntu1.1                                     all          English_british dictionary for myspell
ii  myspell-en-za                                         1:4.2.1-0ubuntu1.1                                     all          English_southafrican dictionary for myspell
ii  mythes-en-us                                          1:4.2.1-0ubuntu1.1                                     all          English Thesaurus for LibreOffice
ii  mythes-fr                                             1:4.2.1-0ubuntu1.1                                     all          French Thesaurus for LibreOffice
ii  nano                                                  2.2.6-1ubuntu1                                         amd64        small, friendly text editor inspired by Pico
ii  nautilus                                              1:3.10.1-0ubuntu9.9                                    amd64        file manager and graphical shell for GNOME
ii  nautilus-data                                         1:3.10.1-0ubuntu9.9                                    all          data files for nautilus
ii  nautilus-sendto                                       3.6.1-2ubuntu1                                         amd64        integrates Evolution and Pidgin into the Nautilus file manager
ii  nautilus-sendto-empathy                               3.8.6-0ubuntu9.2                                       amd64        GNOME multi-protocol chat and call client (nautilus-sendto plugin)
ii  nautilus-share                                        0.7.3-1ubuntu5                                         amd64        Nautilus extension to share folder using Samba
ii  ncurses-base                                          5.9+20140118-1ubuntu1                                  all          basic terminal type definitions
ii  ncurses-bin                                           5.9+20140118-1ubuntu1                                  amd64        terminal-related programs and man pages
ii  net-tools                                             1.60-25ubuntu2.1                                       amd64        The NET-3 networking toolkit
ii  netbase                                               5.2                                                    all          Basic TCP/IP networking system
ii  netcat-openbsd                                        1.105-7ubuntu1                                         amd64        TCP/IP swiss army knife
ii  netpbm                                                2:10.0-15ubuntu2                                       amd64        Graphics conversion tools between image formats
ii  network-manager                                       0.9.8.8-0ubuntu7.1                                     amd64        network management framework (daemon and userspace tools)
ii  network-manager-gnome                                 0.9.8.8-0ubuntu4.3                                     amd64        network management framework (GNOME frontend)
ii  network-manager-pptp                                  0.9.8.2-1ubuntu2                                       amd64        network management framework (PPTP plugin core)
ii  network-manager-pptp-gnome                            0.9.8.2-1ubuntu2                                       amd64        network management framework (PPTP plugin GNOME GUI)
ii  notify-osd                                            0.9.35+14.04.20140213-0ubuntu1                         amd64        daemon that displays passive pop-up notifications
ii  notify-osd-icons                                      0.8+14.04.20131204-0ubuntu1                            all          Notify-OSD icons
ii  ntfs-3g                                               1:2013.1.13AR.1-2ubuntu2                               amd64        read/write NTFS driver for FUSE
ii  ntpdate                                               1:4.2.6.p5+dfsg-3ubuntu2.14.04.3                       amd64        client for setting system time from NTP servers
ii  nux-tools                                             4.0.6+14.04.20141107-0ubuntu1                          amd64        Visual rendering toolkit for real-time applications - tools
ii  nvidia-352                                            352.30-0ubuntu0~xedgers14.04.1                         amd64        NVIDIA binary driver - version 352.30
ii  nvidia-opencl-icd-352                                 352.30-0ubuntu0~xedgers14.04.1                         amd64        NVIDIA OpenCL ICD
ii  nvidia-prime                                          0.6.2                                                  amd64        Tools to enable NVIDIA's Prime
ii  nvidia-settings                                       355.06-0ubuntu0~xedgers14.04.1                         amd64        Tool for configuring the NVIDIA graphics driver
ii  obex-data-server                                      0.4.6-0ubuntu2                                         amd64        D-Bus service for OBEX client and server side functionality
ii  obexd-client                                          0.46-1ubuntu7                                          amd64        D-Bus OBEX client
ii  ocl-icd-libopencl1:amd64                              2.1.3-4                                                amd64        Generic OpenCL ICD Loader
ii  onboard                                               1.0.1-0ubuntu1                                         amd64        Simple On-screen Keyboard
ii  onboard-data                                          1.0.1-0ubuntu1                                         all          Language model files for the word suggestion feature of Onboard
ii  oneconf                                               0.3.7.14.04.1                                          all          synchronize your configuration data over the network
ii  oneconf-common                                        0.3.7.14.04.1                                          all          synchronize your configuration data over the network
ii  openoffice.org-hyphenation                            0.7.1                                                  all          Hyphenation patterns for OpenOffice.org
ii  openprinting-ppds                                     20140410-0ubuntu1                                      all          OpenPrinting printer support - PostScript PPD files
ii  openssh-client                                        1:6.6p1-2ubuntu2.3                                     amd64        secure shell (SSH) client, for secure access to remote machines
ii  openssl                                               1.0.1f-1ubuntu2.15                                     amd64        Secure Sockets Layer toolkit - cryptographic utility
ii  os-prober                                             1.63ubuntu1                                            amd64        utility to detect other OSes on a set of drives
ii  overlay-scrollbar                                     0.2.16+r359+14.04.20131129-0ubuntu1                    all          Scrollbar overlay
ii  overlay-scrollbar-gtk2:amd64                          0.2.16+r359+14.04.20131129-0ubuntu1                    amd64        GTK 2 module for overlay scrollbars
ii  overlay-scrollbar-gtk3:amd64                          0.2.16+r359+14.04.20131129-0ubuntu1                    amd64        GTK 3 module for overlay scrollbars
ii  oxideqt-codecs-extra:amd64                            1.9.5-0ubuntu0.14.04.1                                 amd64        Web browser engine library for Qt (codecs)
ii  p11-kit                                               0.20.2-2ubuntu2                                        amd64        p11-glue utilities
ii  p11-kit-modules:amd64                                 0.20.2-2ubuntu2                                        amd64        p11-glue proxy and trust modules
ii  parted                                                2.3-19ubuntu1.14.04.1                                  amd64        disk partition manipulator
ii  passwd                                                1:4.1.5.1-1ubuntu9.1                                   amd64        change and administer password and group data
ii  patch                                                 2.7.1-4ubuntu2.3                                       amd64        Apply a diff file to an original
ii  patchutils                                            0.3.2-3                                                amd64        Utilities to work with patches
ii  pciutils                                              1:3.2.1-1ubuntu5                                       amd64        Linux PCI Utilities
ii  pcmciautils                                           018-8                                                  amd64        PCMCIA utilities for Linux 2.6
ii  perl                                                  5.18.2-2ubuntu1                                        amd64        Larry Wall's Practical Extraction and Report Language
ii  perl-base                                             5.18.2-2ubuntu1                                        amd64        minimal Perl system
ii  perl-modules                                          5.18.2-2ubuntu1                                        all          Core Perl modules
ii  pgf                                                   2.10-1                                                 all          TeX Portable Graphic Format
ii  phonon-backend-null:amd64                             4:4.7.80-0ubuntu1~ubuntu14.04                          amd64        multimedia framework from KDE - null back-end (no real back-end)
ii  pkg-config                                            0.26-1ubuntu4                                          amd64        manage compile and link flags for libraries
ii  plainbox-provider-checkbox                            0.4-1                                                  amd64        CheckBox provider for PlainBox
ii  plainbox-provider-resource-generic                    0.3-1                                                  amd64        CheckBox generic resource jobs provider
ii  plainbox-secure-policy                                0.5.3-2                                                all          policykit policy required to use plainbox (secure version)
ii  plymouth                                              0.8.8-0ubuntu17.1                                      amd64        graphical boot animation and logger - main package
ii  plymouth-label                                        0.8.8-0ubuntu17.1                                      amd64        graphical boot animation and logger - label control
ii  plymouth-theme-ubuntu-logo                            0.8.8-0ubuntu17.1                                      amd64        graphical boot animation and logger - ubuntu-logo theme
ii  plymouth-theme-ubuntu-text                            0.8.8-0ubuntu17.1                                      amd64        graphical boot animation and logger - ubuntu-logo theme
ii  pm-utils                                              1.4.1-13ubuntu0.1                                      all          utilities and scripts for power management
ii  policykit-1                                           0.105-4ubuntu2.14.04.1                                 amd64        framework for managing administrative policies and privileges
ii  policykit-1-gnome                                     0.105-1ubuntu4                                         amd64        GNOME authentication agent for PolicyKit-1
ii  policykit-desktop-privileges                          0.17                                                   all          run common desktop actions without password
ii  poppler-data                                          0.4.6-4                                                all          encoding data for the poppler PDF rendering library
ii  poppler-utils                                         0.24.5-2ubuntu4.2                                      amd64        PDF utilities (based on Poppler)
ii  popularity-contest                                    1.57ubuntu1                                            all          Vote for your favourite packages automatically
ii  powermgmt-base                                        1.31build1                                             amd64        Common utils and configs for power management
ii  ppp                                                   2.4.5-5.1ubuntu2.2                                     amd64        Point-to-Point Protocol (PPP) - daemon
ii  pppconfig                                             2.3.19ubuntu1                                          all          A text menu based utility for configuring ppp
ii  pppoeconf                                             1.20ubuntu1                                            all          configures PPPoE/ADSL connections
ii  pptp-linux                                            1.7.2-7                                                amd64        Point-to-Point Tunneling Protocol (PPTP) Client
rc  preview-latex-style                                   11.87-1ubuntu2                                         all          extraction of elements from LaTeX documents as graphics
ii  printer-driver-c2esp                                  27~rc1-1                                               amd64        printer driver for Kodak ESP AiO color inkjet Series
ii  printer-driver-foo2zjs                                20140209dfsg0-1ubuntu1                                 amd64        printer driver for ZjStream-based printers
ii  printer-driver-foo2zjs-common                         20140209dfsg0-1ubuntu1                                 all          printer driver for ZjStream-based printers - common files
ii  printer-driver-gutenprint                             5.2.10~pre2-0ubuntu2                                   amd64        printer drivers for CUPS
ii  printer-driver-hpcups                                 3.14.3-0ubuntu3.4                                      amd64        HP Linux Printing and Imaging - CUPS Raster driver (hpcups)
ii  printer-driver-min12xxw                               0.0.9-8ubuntu1                                         amd64        printer driver for KonicaMinolta PagePro 1[234]xxW
ii  printer-driver-pnm2ppa                                1.13+nondbs-0ubuntu4                                   amd64        printer driver for HP-GDI printers
ii  printer-driver-postscript-hp                          3.14.3-0ubuntu3.4                                      all          HP Printers PostScript Descriptions
ii  printer-driver-ptouch                                 1.3-8                                                  amd64        printer driver Brother P-touch label printers
ii  printer-driver-pxljr                                  1.4+repack0-3                                          amd64        printer driver for HP Color LaserJet 35xx/36xx
ii  printer-driver-sag-gdi                                0.1-3                                                  all          printer driver for Ricoh Aficio SP 1000s/SP 1100s
ii  printer-driver-splix                                  2.0.0+svn315-2fakesync1                                amd64        Driver for Samsung and Xerox SPL2 and SPLc laser printers
ii  procps                                                1:3.3.9-1ubuntu2.2                                     amd64        /proc file system utilities
ii  prosper                                               1.00.4+cvs.2007.05.01-4                                all          LaTeX class for writing transparencies
ii  ps2eps                                                1.68-1build1                                           amd64        convert PostScript to EPS (Encapsulated PostScript) files
ii  psmisc                                                22.20-1ubuntu2                                         amd64        utilities that use the proc file system
ii  psutils                                               1.17.dfsg-1                                            amd64        PostScript document handling utilities
ii  pulseaudio                                            1:4.0-0ubuntu11.1                                      amd64        PulseAudio sound server
ii  pulseaudio-module-bluetooth                           1:4.0-0ubuntu11.1                                      amd64        Bluetooth module for PulseAudio sound server
ii  pulseaudio-module-x11                                 1:4.0-0ubuntu11.1                                      amd64        X11 module for PulseAudio sound server
ii  pulseaudio-utils                                      1:4.0-0ubuntu11.1                                      amd64        Command line tools for the PulseAudio sound server
ii  python                                                2.7.5-5ubuntu3                                         amd64        interactive high-level object-oriented language (default version)
ii  python-apt                                            0.9.3.5ubuntu1                                         amd64        Python interface to libapt-pkg
ii  python-apt-common                                     0.9.3.5ubuntu1                                         all          Python interface to libapt-pkg (locales)
ii  python-aptdaemon                                      1.1.1-1ubuntu5.2                                       all          Python 2 module for the server and client of aptdaemon
ii  python-aptdaemon.gtk3widgets                          1.1.1-1ubuntu5.2                                       all          Python 2 GTK+ 3 widgets to run an aptdaemon client
ii  python-cairo                                          1.8.8-1ubuntu5                                         amd64        Python bindings for the Cairo vector graphics library
ii  python-chardet                                        2.0.1-2build2                                          all          universal character encoding detector
ii  python-commandnotfound                                0.3ubuntu12                                            all          Python 2 bindings for command-not-found.
ii  python-crypto                                         2.6.1-4build1                                          amd64        cryptographic algorithms and protocols for Python
ii  python-cups                                           1.9.66-0ubuntu2                                        amd64        Python bindings for CUPS
ii  python-cupshelpers                                    1.4.3+20140219-0ubuntu2.6                              all          Python modules for printer configuration with CUPS
ii  python-dbus                                           1.2.0-2build2                                          amd64        simple interprocess messaging system (Python interface)
ii  python-dbus-dev                                       1.2.0-2build2                                          all          main loop integration development files for python-dbus
ii  python-debian                                         0.1.21+nmu2ubuntu2                                     all          Python modules to work with Debian-related data formats
ii  python-debtagshw                                      1.12ubuntu2                                            all          Match debtags hardware:: tags against the actual hardware
ii  python-defer                                          1.0.6-2build1                                          all          Small framework for asynchronous programming (Python 2)
ii  python-dirspec                                        13.10-0ubuntu2                                         all          Python User Folders Specification Library
ii  python-gconf                                          2.28.1+dfsg-1ubuntu2                                   amd64        Python bindings for the GConf configuration database system
ii  python-gdbm                                           2.7.5-1ubuntu1                                         amd64        GNU dbm database support for Python
ii  python-gi                                             3.12.0-1ubuntu1                                        amd64        Python 2.x bindings for gobject-introspection libraries
ii  python-gi-cairo                                       3.12.0-1ubuntu1                                        amd64        Python Cairo bindings for the GObject library
ii  python-gnomekeyring                                   2.32.0+dfsg-3                                          amd64        Python bindings for the GNOME keyring library
ii  python-gobject                                        3.12.0-1ubuntu1                                        all          Python 2.x bindings for GObject - transitional package
ii  python-gobject-2                                      2.28.6-12build1                                        amd64        deprecated static Python bindings for the GObject library
ii  python-gtk2                                           2.24.0-3ubuntu3                                        amd64        Python bindings for the GTK+ widget set
ii  python-httplib2                                       0.8-2build1                                            all          comprehensive HTTP client library written for Python
ii  python-ibus                                           1.5.5-1ubuntu3                                         all          Intelligent Input Bus - Python support
ii  python-imaging                                        2.3.0-1ubuntu3                                         all          Python Imaging Library compatibility layer
ii  python-ldb                                            1:1.1.16-1                                             amd64        Python bindings for LDB
ii  python-libxml2                                        2.9.1+dfsg1-3ubuntu4.4                                 amd64        Python bindings for the GNOME XML library
ii  python-lockfile                                       1:0.8-2ubuntu2                                         all          file locking library for Python
ii  python-lxml                                           3.3.3-1ubuntu0.1                                       amd64        pythonic binding for the libxml2 and libxslt libraries
ii  python-minimal                                        2.7.5-5ubuntu3                                         amd64        minimal subset of the Python language (default version)
ii  python-notify                                         0.1.1-3ubuntu2                                         amd64        Python bindings for libnotify
ii  python-ntdb                                           1.0-2ubuntu1                                           amd64        Python bindings for NTDB
ii  python-oauthlib                                       0.6.1-1                                                all          generic, spec-compliant implementation of OAuth for Python
ii  python-oneconf                                        0.3.7.14.04.1                                          all          synchronize your configuration data over the network (Python 2)
ii  python-openssl                                        0.13-2ubuntu6                                          amd64        Python 2 wrapper around the OpenSSL library
ii  python-pam                                            0.4.2-13.1ubuntu3                                      amd64        Python interface to the PAM library
ii  python-pexpect                                        3.1-1ubuntu0.1                                         all          Python module for automating interactive applications
ii  python-pil                                            2.3.0-1ubuntu3                                         amd64        Python Imaging Library (Pillow fork)
ii  python-pil.imagetk                                    2.3.0-1ubuntu3                                         amd64        Python Imaging Library - ImageTk Module (Pillow fork)
ii  python-piston-mini-client                             0.7.5-0ubuntu2                                         all          library for writing clients for Django's Piston REST APIs
ii  python-pkg-resources                                  3.3-1ubuntu2                                           all          Package Discovery and Resource Access using pkg_resources
ii  python-pycurl                                         7.19.3-0ubuntu3                                        amd64        Python bindings to libcurl
ii  python-qt4                                            4.10.4+dfsg-1ubuntu1                                   amd64        Python bindings for Qt4
ii  python-qt4-dbus                                       4.10.4+dfsg-1ubuntu1                                   amd64        D-Bus Support for PyQt4
ii  python-renderpm                                       3.0-1build1                                            amd64        python low level render interface
ii  python-reportlab                                      3.0-1build1                                            all          ReportLab library to create PDF documents using Python
ii  python-reportlab-accel                                3.0-1build1                                            amd64        C coded extension accelerator for the ReportLab Toolkit
ii  python-requests                                       2.2.1-1ubuntu0.3                                       all          elegant and simple HTTP library for Python, built for human beings
ii  python-samba                                          2:4.1.6+dfsg-1ubuntu2.14.04.9                          amd64        Python bindings for Samba
ii  python-serial                                         2.6-1build1                                            all          pyserial - module encapsulating access for the serial port
ii  python-sip                                            4.15.5-1build1                                         amd64        Python/C++ bindings generator runtime library
ii  python-six                                            1.5.2-1ubuntu1                                         all          Python 2 and 3 compatibility library (Python 2 interface)
ii  python-smbc                                           1.0.14.1-0ubuntu2                                      amd64        Python bindings for Samba clients (libsmbclient)
ii  python-talloc                                         2.1.0-1                                                amd64        hierarchical pool based memory allocator - Python bindings
ii  python-tdb                                            1.2.12-1                                               amd64        Python bindings for TDB
ii  python-tk                                             2.7.5-1ubuntu1                                         amd64        Tkinter - Writing Tk applications with Python
ii  python-twisted-bin                                    13.2.0-1ubuntu1                                        amd64        Event-based framework for internet applications
ii  python-twisted-core                                   13.2.0-1ubuntu1                                        all          Event-based framework for internet applications
ii  python-twisted-web                                    13.2.0-1ubuntu1                                        all          HTTP protocol implementation together with clients and servers
ii  python-ubuntu-sso-client                              13.10-0ubuntu6                                         all          Ubuntu Single Sign-On client - Python library
ii  python-urllib3                                        1.7.1-1ubuntu3                                         all          HTTP library with thread-safe connection pooling for Python
ii  python-xapian                                         1.2.16-2ubuntu1                                        amd64        Xapian search engine interface for Python
ii  python-xdg                                            0.25-4                                                 all          Python 2 library to access freedesktop.org standards
ii  python-zeitgeist                                      0.9.14-0ubuntu4.1                                      all          event logging framework - Python bindings
ii  python-zope.interface                                 4.0.5-1ubuntu4                                         amd64        Interfaces for Python
ii  python2.7                                             2.7.6-8ubuntu0.2                                       amd64        Interactive high-level object-oriented language (version 2.7)
ii  python2.7-minimal                                     2.7.6-8ubuntu0.2                                       amd64        Minimal subset of the Python language (version 2.7)
ii  python3                                               3.4.0-0ubuntu2                                         amd64        interactive high-level object-oriented language (default python3 version)
ii  python3-apport                                        2.14.1-0ubuntu3.15                                     all          Python 3 library for Apport crash report handling
ii  python3-apt                                           0.9.3.5ubuntu1                                         amd64        Python 3 interface to libapt-pkg
ii  python3-aptdaemon                                     1.1.1-1ubuntu5.2                                       all          Python 3 module for the server and client of aptdaemon
ii  python3-aptdaemon.gtk3widgets                         1.1.1-1ubuntu5.2                                       all          Python 3 GTK+ 3 widgets to run an aptdaemon client
ii  python3-aptdaemon.pkcompat                            1.1.1-1ubuntu5.2                                       all          PackageKit compatibilty for AptDaemon
ii  python3-brlapi                                        5.0-2ubuntu2                                           amd64        Braille display access via BRLTTY - Python3 bindings
ii  python3-cairo                                         1.10.0+dfsg-3ubuntu2                                   amd64        Python 3 bindings for the Cairo vector graphics library
ii  python3-chardet                                       2.2.1-2~ubuntu1                                        all          universal character encoding detector for Python3
ii  python3-checkbox-ng                                   0.3-2                                                  all          PlainBox based test runner (Python 3 library)
ii  python3-checkbox-support                              0.2-1                                                  all          collection of Python modules used by PlainBox providers
ii  python3-commandnotfound                               0.3ubuntu12                                            all          Python 3 bindings for command-not-found.
ii  python3-crypto                                        2.6.1-4build1                                          amd64        cryptographic algorithms and protocols for Python 3
ii  python3-dbus                                          1.2.0-2build2                                          amd64        simple interprocess messaging system (Python 3 interface)
ii  python3-debian                                        0.1.21+nmu2ubuntu2                                     all          Python 3 modules to work with Debian-related data formats
ii  python3-defer                                         1.0.6-2build1                                          all          Small framework for asynchronous programming (Python 3)
ii  python3-distupgrade                                   1:0.220.8                                              all          manage release upgrades
ii  python3-feedparser                                    5.1.3-2                                                all          Universal Feed Parser for Python 3
ii  python3-gdbm:amd64                                    3.4.3-1~14.04.2                                        amd64        GNU dbm database support for Python 3.x
ii  python3-gi                                            3.12.0-1ubuntu1                                        amd64        Python 3 bindings for gobject-introspection libraries
ii  python3-gi-cairo                                      3.12.0-1ubuntu1                                        amd64        Python 3 Cairo bindings for the GObject library
ii  python3-httplib2                                      0.8-2build1                                            all          comprehensive HTTP client library written for Python3
ii  python3-louis                                         2.5.3-2ubuntu1                                         all          Python bindings for liblouis
ii  python3-lxml                                          3.3.3-1ubuntu0.1                                       amd64        pythonic binding for the libxml2 and libxslt libraries
ii  python3-mako                                          0.9.1-1                                                all          fast and lightweight templating for the Python 3 platform
ii  python3-markupsafe                                    0.18-1build2                                           amd64        HTML/XHTML/XML string library for Python 3
ii  python3-minimal                                       3.4.0-0ubuntu2                                         amd64        minimal subset of the Python language (default python3 version)
ii  python3-oauthlib                                      0.6.1-1                                                all          generic, spec-compliant implementation of OAuth for Python3
ii  python3-oneconf                                       0.3.7.14.04.1                                          all          synchronize your configuration data over the network (Python 3)
ii  python3-piston-mini-client                            0.7.5-0ubuntu2                                         all          library for writing clients for Django's Piston REST APIs
ii  python3-pkg-resources                                 3.3-1ubuntu2                                           all          Package Discovery and Resource Access using pkg_resources
ii  python3-plainbox                                      0.5.3-2                                                all          toolkit for software and hardware testing (python3 module)
ii  python3-problem-report                                2.14.1-0ubuntu3.15                                     all          Python 3 library to handle problem reports
ii  python3-pyatspi                                       2.10.0+dfsg-1                                          all          Assistive Technology Service Provider Interface - Python3 bindings
ii  python3-pycurl                                        7.19.3-0ubuntu3                                        amd64        Python 3 bindings to libcurl
ii  python3-pyparsing                                     2.0.1+dfsg1-1build1                                    all          Python parsing module, Python3 package
ii  python3-requests                                      2.2.1-1ubuntu0.3                                       all          elegant and simple HTTP library for Python3, built for human beings
ii  python3-six                                           1.5.2-1ubuntu1                                         all          Python 2 and 3 compatibility library (Python 3 interface)
ii  python3-software-properties                           0.92.37.5                                              all          manage the repositories that you install software from
ii  python3-speechd                                       0.8-5ubuntu1                                           all          Python interface to Speech Dispatcher
ii  python3-uno                                           1:4.2.8-0ubuntu2                                       amd64        Python-UNO bridge
ii  python3-update-manager                                1:0.196.14                                             all          python 3.x module for update-manager
ii  python3-urllib3                                       1.7.1-1ubuntu3                                         all          HTTP library with thread-safe connection pooling for Python3
ii  python3-xdg                                           0.25-4                                                 all          Python 3 library to access freedesktop.org standards
ii  python3-xkit                                          0.5.0ubuntu2                                           all          library for the manipulation of xorg.conf files (Python 3)
ii  python3.4                                             3.4.3-1ubuntu1~14.04.1                                 amd64        Interactive high-level object-oriented language (version 3.4)
ii  python3.4-minimal                                     3.4.3-1ubuntu1~14.04.1                                 amd64        Minimal subset of the Python language (version 3.4)
ii  qdbus                                                 4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 D-Bus tool
ii  qmlscene                                              5.2.1-3ubuntu15.1                                      amd64        Qt 5 QML scene viewer
ii  qpdf                                                  5.1.1-1                                                amd64        tools for and transforming and inspecting PDF files
ii  qt-at-spi:amd64                                       0.3.1-4fakesync1                                       amd64        at-spi accessibility plugin for Qt
ii  qt-sdk                                                2ubuntu3                                               all          Complete Qt Software Development Kit
ii  qt4-designer                                          4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        graphical designer for Qt 4 applications
ii  qt4-dev-tools                                         4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 development tools
ii  qt4-doc                                               4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                all          Qt 4 API documentation
ii  qt4-doc-html                                          4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                all          Qt 4 API documentation (HTML format)
ii  qt4-linguist-tools                                    4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 Linguist tools
ii  qt4-qmake                                             4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                amd64        Qt 4 qmake Makefile generator tool
ii  qt5-default:amd64                                     5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 development defaults package
ii  qt5-qmake:amd64                                       5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 qmake Makefile generator tool
ii  qtbase5-dev:amd64                                     5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 base development files
ii  qtbase5-dev-tools                                     5.2.1+dfsg-1ubuntu14.3                                 amd64        Qt 5 base development programs
ii  qtchooser                                             39-g4717841-3                                          amd64        Wrapper to select between Qt development binary versions
ii  qtcore4-l10n                                          4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1                all          Qt 4 core module translations
ii  qtcreator                                             3.0.1-0ubuntu4                                         amd64        lightweight integrated development environment (IDE) for Qt
ii  qtcreator-doc                                         3.0.1-0ubuntu4                                         all          documentation for Qt Creator IDE
ii  qtcreator-plugin-cmake:amd64                          3.0.1+14.04.20140415-0ubuntu1                          amd64        CMake plugin for Qt Creator IDE
ii  qtcreator-plugin-qnx:amd64                            3.0.1+14.04.20140410.1-0ubuntu1                        amd64        QNX plugin for Qt Creator IDE
ii  qtcreator-plugin-remotelinux:amd64                    3.0.1+14.04.20140410.1-0ubuntu1                        amd64        Remotelinux plugin for Qt Creator IDE
ii  qtcreator-plugin-valgrind:amd64                       3.0.1+14.04.20140410.1-0ubuntu1                        amd64        Valgrind plugin for Qt Creator IDE
ii  qtdeclarative5-accounts-plugin                        0.4+14.04.20140317-0ubuntu1                            amd64        Expose the Online Accounts API to QML applications
ii  qtdeclarative5-controls-plugin:amd64                  5.2.1-2                                                amd64        Qt 5 Quick Controls module plugin
ii  qtdeclarative5-dev                                    5.2.1-3ubuntu15.1                                      amd64        Qt 5 declarative development files
ii  qtdeclarative5-dialogs-plugin:amd64                   5.2.1-3ubuntu15.1                                      amd64        Qt 5 Dialogs QML plugin
ii  qtdeclarative5-localstorage-plugin:amd64              5.2.1-3ubuntu15.1                                      amd64        Qt 5 localstorage QML plugin
ii  qtdeclarative5-privatewidgets-plugin:amd64            5.2.1-3ubuntu15.1                                      amd64        Qt 5 Private Widgets QML plugin
ii  qtdeclarative5-qtfeedback-plugin:amd64                5.0~git20130529-0ubuntu3                               amd64        Qt Feedback module - QML plugin
ii  qtdeclarative5-qtquick2-plugin:amd64                  5.2.1-3ubuntu15.1                                      amd64        Qt 5 Qt Quick 2 QML plugin
ii  qtdeclarative5-quicklayouts-plugin:amd64              5.2.1-2                                                amd64        Qt 5 Quick Layouts module plugin
ii  qtdeclarative5-ubuntu-ui-extras-browser-plugin:amd64  0.23+14.04.20140428-0ubuntu1                           amd64        Ubuntu web browser QML plugin
ii  qtdeclarative5-ubuntu-ui-extras-browser-plugin-assets 0.23+14.04.20140428-0ubuntu1                           all          Ubuntu web browser QML plugin assets
ii  qtdeclarative5-ubuntu-ui-toolkit-plugin:amd64         0.1.46+14.04.20140408.1-0ubuntu1                       amd64        Qt Components for Ubuntu - QML plugin
ii  qtdeclarative5-unity-action-plugin:amd64              1.1.0+14.04.20140304-0ubuntu1                          amd64        Unity Action QML Components
ii  qtdeclarative5-window-plugin:amd64                    5.2.1-3ubuntu15.1                                      amd64        Qt 5 window QML plugin
ii  rarian-compat                                         0.8.1-5ubuntu1                                         amd64        Documentation meta-data library (compatibility tools)
ii  readline-common                                       6.3-4ubuntu2                                           all          GNU readline and history libraries, common files
ii  remmina                                               1.0.0-4ubuntu3                                         amd64        remote desktop client for GNOME desktop environment
ii  remmina-common                                        1.0.0-4ubuntu3                                         all          common files for remmina remote desktop client
ii  remmina-plugin-rdp                                    1.0.0-4ubuntu3                                         amd64        RDP plugin for remmina remote desktop client
ii  remmina-plugin-vnc                                    1.0.0-4ubuntu3                                         amd64        VNC plugin for remmina remote desktop client
ii  resolvconf                                            1.69ubuntu1.1                                          all          name server information handler
ii  rfkill                                                0.5-1ubuntu1                                           amd64        tool for enabling and disabling wireless devices
ii  rhythmbox                                             3.0.2-0ubuntu2                                         amd64        music player and organizer for GNOME
ii  rhythmbox-data                                        3.0.2-0ubuntu2                                         all          data files for rhythmbox
ii  rhythmbox-mozilla                                     3.0.2-0ubuntu2                                         amd64        Rhythmbox Mozilla plugin
ii  rhythmbox-plugin-cdrecorder                           3.0.2-0ubuntu2                                         amd64        burning plugin for rhythmbox music player
ii  rhythmbox-plugin-magnatune                            3.0.2-0ubuntu2                                         amd64        Magnatune plugin for rhythmbox music player
ii  rhythmbox-plugin-zeitgeist                            3.0.2-0ubuntu2                                         all          zeitgeist plugin for rhythmbox music player
ii  rhythmbox-plugins                                     3.0.2-0ubuntu2                                         amd64        plugins for rhythmbox music player
ii  rsync                                                 3.1.0-2ubuntu0.1                                       amd64        fast, versatile, remote (and local) file-copying tool
ii  rsyslog                                               7.4.4-1ubuntu2.6                                       amd64        reliable system and kernel logging daemon
ii  rtkit                                                 0.10-3                                                 amd64        Realtime Policy and Watchdog Daemon
ii  ruby                                                  1:1.9.3.4                                              all          Interpreter of object-oriented scripting language Ruby (default version)
ii  ruby1.9.1                                             1.9.3.484-2ubuntu1.2                                   amd64        Interpreter of object-oriented scripting language Ruby
ii  samba-common                                          2:4.1.6+dfsg-1ubuntu2.14.04.9                          all          common files used by both the Samba server and client
ii  samba-common-bin                                      2:4.1.6+dfsg-1ubuntu2.14.04.9                          amd64        Samba common files used by both the server and the client
ii  samba-libs:amd64                                      2:4.1.6+dfsg-1ubuntu2.14.04.9                          amd64        Samba core libraries
ii  sane-utils                                            1.0.23-3ubuntu3.1                                      amd64        API library for scanners -- utilities
ii  sbsigntool                                            0.6-0ubuntu7                                           amd64        utility for signing and verifying files for UEFI Secure Boot
ii  screen-resolution-extra                               0.17.1                                                 all          Extension for the GNOME screen resolution applet
ii  seahorse                                              3.10.2-0ubuntu1                                        amd64        GNOME front end for GnuPG
ii  secureboot-db                                         1.1                                                    amd64        Secure Boot updates for DB and DBX
ii  sed                                                   4.2.2-4ubuntu1                                         amd64        The GNU sed stream editor
ii  sensible-utils                                        0.0.9                                                  all          Utilities for sensible alternative selection
ii  session-migration                                     0.2.1                                                  amd64        Tool to migrate in user session settings
ii  sessioninstaller                                      0.20+bzr141-0ubuntu4                                   all          APT based installer using PackageKit's session DBus API
ii  sgml-base                                             1.26+nmu4ubuntu1                                       all          SGML infrastructure and SGML catalog file support
ii  sgml-data                                             2.0.9-1                                                all          common SGML and XML data
ii  shared-mime-info                                      1.2-0ubuntu3                                           amd64        FreeDesktop.org shared MIME database and spec
ii  shim                                                  0.8-0ubuntu2                                           amd64        boot loader to chain-load signed boot loaders under Secure Boot
ii  shim-signed                                           1.9+0.8-0ubuntu2                                       amd64        Secure Boot chain-loading bootloader (Microsoft-signed binary)
ii  shotwell                                              0.18.0-0ubuntu4.3                                      amd64        digital photo organizer
ii  shotwell-common                                       0.18.0-0ubuntu4.3                                      all          digital photo organizer - common files
ii  signon-keyring-extension                              0.6+14.04.20140307-0ubuntu1                            amd64        GNOME keyring extension for signond
ii  signon-plugin-oauth2                                  0.19+14.04.20140305-0ubuntu2                           amd64        Single Signon oauth2 plugin
ii  signon-plugin-password                                8.56+14.04.20140307-0ubuntu2                           amd64        Plain Password plugin for Single Sign On
ii  signon-ui                                             0.16+14.04.20140304.is.0.15+14.04.20140313-0ubuntu1    amd64        Single Sign-on UI
ii  signond                                               8.56+14.04.20140307-0ubuntu2                           amd64        Single Sign On framework
ii  simple-scan                                           3.12.1-0ubuntu1                                        amd64        Simple Scanning Utility
ii  smbclient                                             2:4.1.6+dfsg-1ubuntu2.14.04.9                          amd64        command-line SMB/CIFS clients for Unix
ii  sni-qt:amd64                                          0.2.6-0ubuntu1                                         amd64        indicator support for Qt
ii  software-center                                       13.10-0ubuntu4.1                                       all          Utility for browsing, installing, and removing software
ii  software-center-aptdaemon-plugins                     0.1.6build1                                            all          The aptdaemon plugins for software-center
ii  software-properties-common                            0.92.37.5                                              all          manage the repositories that you install software from (common)
ii  software-properties-gtk                               0.92.37.5                                              all          manage the repositories that you install software from (gtk)
ii  sound-theme-freedesktop                               0.8-1                                                  all          freedesktop.org sound theme
ii  speech-dispatcher                                     0.8-5ubuntu1                                           amd64        Common interface to speech synthesizers
ii  speech-dispatcher-audio-plugins:amd64                 0.8-5ubuntu1                                           amd64        Speech Dispatcher: Audio output plugins
ii  speedcrunch                                           0.10.1-4                                               amd64        High precision calculator
ii  sphinx-voxforge-hmm-en                                0.1.1~daily20130301-0ubuntu1                           all          English sphinx acoustic model built from Voxforge audio corpus
ii  sphinx-voxforge-lm-en                                 0.1.1~daily20130301-0ubuntu1                           all          English sphinx language model built from Voxforge audio corpus
ii  ssh-askpass-gnome                                     1:6.6p1-2ubuntu2.3                                     amd64        interactive X program to prompt users for a passphrase for ssh-add
ii  ssl-cert                                              1.0.33                                                 all          simple debconf wrapper for OpenSSL
ii  strace                                                4.8-1ubuntu5                                           amd64        A system call tracer
ii  subversion                                            1.8.8-1ubuntu3.2                                       amd64        Advanced version control system
ii  sudo                                                  1.8.9p5-1ubuntu1.2                                     amd64        Provide limited super user privileges to specific users
ii  synaptic                                              0.81.1ubuntu1                                          amd64        Graphical package manager
ii  syslinux                                              3:4.05+dfsg-6+deb8u1                                   amd64        collection of boot loaders
ii  syslinux-common                                       3:4.05+dfsg-6+deb8u1                                   all          collection of boot loaders (common files)
ii  syslinux-legacy                                       2:3.63+dfsg-2ubuntu5                                   amd64        Bootloader for Linux/i386 using MS-DOS floppies
ii  system-config-printer-common                          1.4.3+20140219-0ubuntu2.6                              all          Printer configuration GUI
ii  system-config-printer-gnome                           1.4.3+20140219-0ubuntu2.6                              all          Printer configuration GUI
ii  system-config-printer-udev                            1.4.3+20140219-0ubuntu2.6                              amd64        Printer auto-configuration facility based on udev
ii  systemd-services                                      204-5ubuntu20.15                                       amd64        systemd runtime services
ii  systemd-shim                                          6-2bzr1                                                amd64        shim for systemd
ii  sysv-rc                                               2.88dsf-41ubuntu6.2                                    all          System-V-like runlevel change mechanism
ii  sysvinit-utils                                        2.88dsf-41ubuntu6.2                                    amd64        System-V-like utilities
ii  t1utils                                               1.37-2ubuntu1.1                                        amd64        Collection of simple Type 1 font manipulation programs
ii  tar                                                   1.27.1-1                                               amd64        GNU version of the tar archiving utility
ii  tcl                                                   8.6.0+6ubuntu3                                         amd64        Tool Command Language (default version) - shell
ii  tcl8.6                                                8.6.1-4ubuntu1                                         amd64        Tcl (the Tool Command Language) v8.6 - shell
ii  tcpd                                                  7.6.q-25                                               amd64        Wietse Venema's TCP wrapper utilities
ii  tcpdump                                               4.5.1-2ubuntu1.2                                       amd64        command-line network traffic analyzer
ii  telepathy-gabble                                      0.18.3-0ubuntu0.1                                      amd64        Jabber/XMPP connection manager
ii  telepathy-haze                                        0.8.0-1                                                amd64        Telepathy connection manager that uses libpurple
ii  telepathy-idle                                        0.2.0-1                                                amd64        IRC connection manager for Telepathy
ii  telepathy-indicator                                   0.3.1+14.04.20140411-0ubuntu1                          amd64        Desktop service to integrate Telepathy with the messaging menu.
ii  telepathy-logger                                      0.8.0-3                                                amd64        Telepathy logger service - Daemon
ii  telepathy-mission-control-5                           1:5.16.1-1ubuntu3                                      amd64        management daemon for Telepathy real-time communication framework
ii  telepathy-salut                                       0.8.1-1ubuntu3                                         amd64        Link-local XMPP connection manager for the Telepathy framework
ii  telnet                                                0.17-36build2                                          amd64        The telnet client
ii  tex-common                                            4.04                                                   all          common infrastructure for building and installing TeX
ii  tex-gyre                                              2.004.2-4                                              all          scalable PostScript and OpenType fonts based on URW Fonts
ii  texlive                                               2013.20140215-1                                        all          TeX Live: A decent selection of the TeX Live packages
ii  texlive-base                                          2013.20140215-1                                        all          TeX Live: Essential programs and files
ii  texlive-binaries                                      2013.20130729.30972-2build3                            amd64        Binaries for TeX Live
ii  texlive-extra-utils                                   2013.20140215-2                                        all          TeX Live: TeX auxiliary programs
ii  texlive-font-utils                                    2013.20140215-2                                        all          TeX Live: Graphics and font utilities
ii  texlive-fonts-recommended                             2013.20140215-1                                        all          TeX Live: Recommended fonts
ii  texlive-fonts-recommended-doc                         2013.20140215-1                                        all          TeX Live: Documentation files for texlive-fonts-recommended
ii  texlive-generic-recommended                           2013.20140215-1                                        all          TeX Live: Generic recommended packages
rc  texlive-lang-english                                  2013.20140215-1                                        all          TeX Live: US and UK English
ii  texlive-lang-french                                   2013.20140215-1                                        all          TeX Live: French
ii  texlive-latex-base                                    2013.20140215-1                                        all          TeX Live: LaTeX fundamental packages
ii  texlive-latex-base-doc                                2013.20140215-1                                        all          TeX Live: Documentation files for texlive-latex-base
rc  texlive-latex-extra                                   2013.20140215-2                                        all          TeX Live: LaTeX additional packages
rc  texlive-latex-extra-doc                               2013.20140215-2                                        all          TeX Live: Documentation files for texlive-latex-extra
ii  texlive-latex-recommended                             2013.20140215-1                                        all          TeX Live: LaTeX recommended packages
ii  texlive-latex-recommended-doc                         2013.20140215-1                                        all          TeX Live: Documentation files for texlive-latex-recommended
ii  texlive-luatex                                        2013.20140215-1                                        all          TeX Live: LuaTeX packages
rc  texlive-pictures                                      2013.20140215-1                                        all          TeX Live: Graphics, pictures, diagrams
rc  texlive-pictures-doc                                  2013.20140215-1                                        all          TeX Live: Documentation files for texlive-pictures
ii  texlive-pstricks                                      2013.20140215-2                                        all          TeX Live: PSTricks
ii  texlive-pstricks-doc                                  2013.20140215-2                                        all          TeX Live: Documentation files for texlive-pstricks
rc  texmaker                                              4.1-1                                                  amd64        cross-platform LaTeX editor
ii  thunderbird                                           1:38.3.0+build1-0ubuntu0.14.04.1                       amd64        Email, RSS and newsgroup client with integrated spam filter
ii  thunderbird-gnome-support                             1:38.3.0+build1-0ubuntu0.14.04.1                       amd64        Email, RSS and newsgroup client - GNOME support
ii  thunderbird-locale-en                                 1:38.3.0+build1-0ubuntu0.14.04.1                       amd64        English language pack for Thunderbird
ii  thunderbird-locale-en-us                              1:38.3.0+build1-0ubuntu0.14.04.1                       all          Transitional English language pack for Thunderbird
ii  thunderbird-locale-fr                                 1:38.3.0+build1-0ubuntu0.14.04.1                       amd64        French language pack for Thunderbird
ii  time                                                  1.7-24                                                 amd64        GNU time program for measuring CPU resource usage
ii  tipa                                                  2:1.3-19                                               all          system for processing phonetic symbols in LaTeX
ii  tk                                                    8.6.0+6ubuntu3                                         amd64        Toolkit for Tcl and X11 (default version) - windowing shell
ii  tk8.6                                                 8.6.1-3ubuntu2                                         amd64        Tk toolkit for Tcl and X11 v8.6 - windowing shell
ii  toshset                                               1.76-4                                                 amd64        Access much of the Toshiba laptop hardware interface
ii  totem                                                 3.10.1-1ubuntu4                                        amd64        Simple media player for the GNOME desktop based on GStreamer
ii  totem-common                                          3.10.1-1ubuntu4                                        all          Data files for the Totem media player
ii  totem-mozilla                                         3.10.1-1ubuntu4                                        amd64        Totem Mozilla plugin
ii  totem-plugins                                         3.10.1-1ubuntu4                                        amd64        Plugins for the Totem media player
ii  transmission-common                                   2.82-1.1ubuntu3.1                                      all          lightweight BitTorrent client (common files)
ii  transmission-gtk                                      2.82-1.1ubuntu3.1                                      amd64        lightweight BitTorrent client (GTK+ interface)
ii  tree                                                  1.6.0-1                                                amd64        displays directory tree, in color
ii  tsconf                                                1.0-12                                                 all          touch screen library common files
ii  ttf-indic-fonts-core                                  1:0.5.14ubuntu1                                        all          Core collection of free fonts for languages of India
ii  ttf-punjabi-fonts                                     1:0.5.14ubuntu1                                        all          Free TrueType fonts for the Punjabi language
ii  ttf-ubuntu-font-family                                0.80-0ubuntu6                                          all          Ubuntu Font Family, sans-serif typeface hinted for clarity
ii  tzdata                                                2015f-0ubuntu0.14.04                                   all          time zone and daylight-saving time data
ii  ubuntu-artwork                                        1:14.04+14.04.20140410-0ubuntu1                        all          Ubuntu themes and artwork
ii  ubuntu-desktop                                        1.325                                                  amd64        The Ubuntu desktop system
ii  ubuntu-docs                                           14.04.5                                                all          Ubuntu Desktop Guide
ii  ubuntu-drivers-common                                 1:0.2.91.11                                            amd64        Detect and install additional Ubuntu driver packages
ii  ubuntu-extras-keyring                                 2010.09.27                                             all          GnuPG keys of the Ubuntu extras archive
ii  ubuntu-keyring                                        2012.05.19                                             all          GnuPG keys of the Ubuntu archive
ii  ubuntu-mono                                           14.04+14.04.20140410-0ubuntu1                          all          Ubuntu Mono Icon theme
ii  ubuntu-release-upgrader-core                          1:0.220.8                                              all          manage release upgrades
ii  ubuntu-release-upgrader-gtk                           1:0.220.8                                              all          manage release upgrades
ii  ubuntu-restricted-addons                              20                                                     amd64        Commonly used restricted packages for Ubuntu
ii  ubuntu-session                                        3.9.90-0ubuntu12.1                                     all          Ubuntu session
ii  ubuntu-settings                                       14.04.5                                                all          default settings for the Ubuntu desktop
ii  ubuntu-sounds                                         0.13                                                   all          Ubuntu's GNOME audio theme
ii  ubuntu-sso-client                                     13.10-0ubuntu6                                         all          Ubuntu Single Sign-On client
ii  ubuntu-sso-client-qt                                  13.10-0ubuntu6                                         all          Ubuntu Single Sign-On client - Qt frontend
ii  ubuntu-standard                                       1.325                                                  amd64        The Ubuntu standard system
ii  ubuntu-system-service                                 0.2.5build1                                            all          Dbus service to set various system-wide configurations
ii  ubuntu-ui-toolkit-theme                               0.1.46+14.04.20140408.1-0ubuntu1                       amd64        Qt Components for Ubuntu - Ubuntu Theme
ii  ubuntu-wallpapers                                     14.04.0.1-0ubuntu1                                     all          Ubuntu Wallpapers
ii  ubuntu-wallpapers-trusty                              14.04.0.1-0ubuntu1                                     all          Ubuntu 14.04 Wallpapers
ii  ubuntuone-client-data                                 13.05-0ubuntu1                                         all          Data files for Ubuntu One
ii  ucf                                                   3.0027+nmu1                                            all          Update Configuration File(s): preserve user changes to config files
ii  udev                                                  204-5ubuntu20.15                                       amd64        /dev/ and hotplug management daemon
ii  udisks2                                               2.1.3-1ubuntu0.1                                       amd64        D-BUS service to access and manipulate storage devices
ii  ufw                                                   0.34~rc-0ubuntu2                                       all          program for managing a Netfilter firewall
ii  unattended-upgrades                                   0.82.1ubuntu2.3                                        all          automatic installation of security upgrades
ii  unity                                                 7.2.5+14.04.20150603-0ubuntu1                          amd64        Interface designed for efficiency of space and interaction.
ii  unity-asset-pool                                      0.8.24daily13.06.10-0ubuntu1                           all          Unity Assets Pool
ii  unity-control-center                                  14.04.3+14.04.20140922-0ubuntu1.1                      amd64        utilities to configure the GNOME desktop
ii  unity-control-center-signon                           0.1.7~+14.04.20140211.2-0ubuntu4                       amd64        Unity Control Center extension for single signon
ii  unity-greeter                                         14.04.11-0ubuntu1                                      amd64        Unity Greeter
ii  unity-gtk-module-common                               0.0.0+14.04.20141212-0ubuntu1                          all          Common files for GtkMenuShell D-Bus exporter
ii  unity-gtk2-module:amd64                               0.0.0+14.04.20141212-0ubuntu1                          amd64        GtkMenuShell D-Bus exporter
ii  unity-gtk3-module:amd64                               0.0.0+14.04.20141212-0ubuntu1                          amd64        GtkMenuShell D-Bus exporter
ii  unity-lens-applications                               7.1.0+13.10.20131011-0ubuntu2                          amd64        Application lens for unity
ii  unity-lens-files                                      7.1.0+13.10.20130920-0ubuntu1                          amd64        File lens for unity
ii  unity-lens-friends                                    0.1.3+14.04.20140317-0ubuntu1                          amd64        Friends scope for unity
ii  unity-lens-music                                      6.9.0+13.10.20131011-0ubuntu1                          amd64        Music lens for unity
ii  unity-lens-video                                      0.3.15+13.10.20130920-0ubuntu1                         amd64        Unity Video lens
ii  unity-scope-audacious                                 0.1+13.10.20130927.1-0ubuntu1                          all          Audacious scope for Unity
ii  unity-scope-calculator                                0.1+14.04.20140328-0ubuntu1                            all          Calculator scope for Unity
ii  unity-scope-chromiumbookmarks                         0.1+13.10.20130723-0ubuntu1                            all          Chromium bookmarks scope for Unity
ii  unity-scope-clementine                                0.1+13.10.20130723-0ubuntu1                            all          Clementine scope for Unity
ii  unity-scope-colourlovers                              0.1+13.10.20130723-0ubuntu1                            all          COLOURlovers scope for Unity
ii  unity-scope-devhelp                                   0.1+14.04.20140328-0ubuntu1                            all          devhelp scope for Unity
ii  unity-scope-firefoxbookmarks                          0.1+13.10.20130809.1-0ubuntu1                          all          Firefox bookmarks scope for Unity
ii  unity-scope-gmusicbrowser                             0.1+13.10.20130723-0ubuntu1                            all          gmusicbrowser scope for Unity
ii  unity-scope-gourmet                                   0.1+13.10.20130723-0ubuntu1                            all          Gourmet Recipe Manager scope for Unity
ii  unity-scope-guayadeque                                0.1+13.10.20130927.1-0ubuntu1                          all          Guayadeque scope for Unity
ii  unity-scope-home                                      6.8.2+14.04.20131029.1-0ubuntu1                        amd64        Home scope that aggregates results from multiple scopes
ii  unity-scope-manpages                                  3.0+14.04.20140324-0ubuntu1                            all          Manual pages scope for Unity
ii  unity-scope-musique                                   0.1+13.10.20130723-0ubuntu1                            all          Musique scope for Unity
ii  unity-scope-openclipart                               0.1+13.10.20130723-0ubuntu1                            all          OpenClipArt scope for Unity
ii  unity-scope-texdoc                                    0.1+14.04.20140328-0ubuntu1                            all          Texdoc scope for Unity
ii  unity-scope-tomboy                                    0.1+13.10.20130723-0ubuntu1                            all          Tomboy scope for Unity
ii  unity-scope-virtualbox                                0.1+13.10.20130723-0ubuntu1                            all          VirtualBox scope for Unity
ii  unity-scope-yelp                                      0.1+13.10.20130723-0ubuntu1                            all          Help scope for Unity
ii  unity-scope-zotero                                    0.1+13.10.20130723-0ubuntu1                            all          Zotero scope for Unity
ii  unity-scopes-master-default                           6.8.2+14.04.20131029.1-0ubuntu1                        all          Home scope that aggregates results from multiple scopes
ii  unity-scopes-runner                                   7.1.4+14.04.20140210-0ubuntu1                          all          desktop runner for misceallenous scopes
ii  unity-services                                        7.2.5+14.04.20150603-0ubuntu1                          amd64        Services for the Unity interface
ii  unity-settings-daemon                                 14.04.0+14.04.20150825-0ubuntu2                        amd64        daemon handling the Unity session settings
ii  unity-voice-service:amd64                             0.1+14.04.20140304-0ubuntu1                            amd64        Voice recognition service for unity
rc  unity-webapps-common                                  2.4.17+14.04.20140416-0ubuntu1                         all          Unity WebApp integration scripts
ii  unity-webapps-qml                                     0.1+14.04.20140408-0ubuntu1                            amd64        Unity Webapps QML component
ii  unity-webapps-service                                 2.5.0~+14.04.20140409-0ubuntu1                         amd64        Service for Web Apps integration with the Unity desktop
ii  uno-libs3                                             4.2.8-0ubuntu2                                         amd64        LibreOffice UNO runtime environment -- public shared libraries
ii  unzip                                                 6.0-9ubuntu1.3                                         amd64        De-archiver for .zip files
ii  update-inetd                                          4.43                                                   all          inetd configuration file updater
ii  update-manager                                        1:0.196.14                                             all          GNOME application that manages apt updates
ii  update-manager-core                                   1:0.196.14                                             all          manage release upgrades
ii  update-notifier                                       0.154.1ubuntu1                                         amd64        Daemon which notifies about package updates
ii  update-notifier-common                                0.154.1ubuntu1                                         all          Files shared between update-notifier and other packages
ii  upower                                                0.9.23-2ubuntu1                                        amd64        abstraction for power management
ii  upstart                                               1.12.1-0ubuntu4.2                                      amd64        event-based init daemon
ii  ure                                                   4.2.8-0ubuntu2                                         amd64        LibreOffice UNO runtime environment
ii  ureadahead                                            0.100.0-16                                             amd64        Read required files in advance
ii  usb-creator-common                                    0.2.56.3ubuntu0.1                                      amd64        create a startup disk using a CD or disc image (common files)
ii  usb-creator-gtk                                       0.2.56.3ubuntu0.1                                      amd64        create a startup disk using a CD or disc image (for GNOME)
ii  usb-modeswitch                                        2.1.1+repack0-1ubuntu1                                 amd64        mode switching tool for controlling "flip flop" USB devices
ii  usb-modeswitch-data                                   20140327-1                                             all          mode switching data for usb-modeswitch
ii  usbmuxd                                               1.0.8-2ubuntu1                                         amd64        USB multiplexor daemon for iPhone and iPod Touch devices
ii  usbutils                                              1:007-2ubuntu1                                         amd64        Linux USB utilities
ii  util-linux                                            2.20.1-5.1ubuntu20.7                                   amd64        Miscellaneous system utilities
ii  uuid-runtime                                          2.20.1-5.1ubuntu20.7                                   amd64        runtime components for the Universally Unique ID library
ii  va-driver-all:amd64                                   1.5.0-1~xedgers~trusty                                 amd64        Video Acceleration (VA) API -- driver metapackage
ii  vbetool                                               1.1-3                                                  amd64        run real-mode video BIOS code to alter hardware state
ii  vdpau-va-driver:amd64                                 0.7.3-2ubuntu1.2                                       amd64        VDPAU-based backend for VA API
[u][b]ii  vim                                                   2:7.4.052-1ubuntu3                                     amd64        Vi IMproved - enhanced vi editor
rc  vim-addon-manager                                     0.5.3                                                  all          manager of addons for the Vim editor
ii  vim-common                                            2:7.4.052-1ubuntu3                                     amd64        Vi IMproved - Common files
rc  vim-latexsuite                                        20130116.788-1                                         all          view, edit and compile LaTeX documents from within Vim
ii  vim-runtime                                           2:7.4.052-1ubuntu3                                     all          Vi IMproved - Runtime files
rc  vim-tiny                                              2:7.4.052-1ubuntu3                                     amd64        Vi IMproved - enhanced vi editor - compact version[/b][/u]
ii  vino                                                  3.8.1-0ubuntu1                                         amd64        VNC server for GNOME
ii  vlc                                                   2.1.6-0ubuntu14.04.1                                   amd64        multimedia player and streamer
ii  vlc-data                                              2.1.6-0ubuntu14.04.1                                   all          Common data for VLC
ii  vlc-nox                                               2.1.6-0ubuntu14.04.1                                   amd64        multimedia player and streamer (without X support)
ii  vlc-plugin-notify                                     2.1.6-0ubuntu14.04.1                                   amd64        LibNotify plugin for VLC
ii  vlc-plugin-pulse                                      2.1.6-0ubuntu14.04.1                                   amd64        PulseAudio plugin for VLC
ii  wamerican                                             7.1-1                                                  all          American English dictionary words for /usr/share/dict
ii  wbritish                                              7.1-1                                                  all          British English dictionary words for /usr/share/dict
ii  webaccounts-extension-common                          0.5-0ubuntu2.14.04.1                                   amd64        Ubuntu Online Accounts browser extension - common files
ii  webapp-container                                      0.23+14.04.20140428-0ubuntu1                           amd64        Ubuntu web applications container
ii  webbrowser-app                                        0.23+14.04.20140428-0ubuntu1                           amd64        Ubuntu web browser
ii  wfrench                                               1.2.3-10                                               all          French dictionary words for /usr/share/dict
ii  wget                                                  1.15-1ubuntu1.14.04.1                                  amd64        retrieves files from the web
ii  whiptail                                              0.52.15-2ubuntu5                                       amd64        Displays user-friendly dialog boxes from shell scripts
ii  whoopsie                                              0.2.24.6                                               amd64        Ubuntu error tracker submission
ii  whoopsie-preferences                                  0.12                                                   amd64        System preferences for error reporting
ii  wireless-regdb                                        2013.02.13-1ubuntu1                                    all          wireless regulatory database
ii  wireless-tools                                        30~pre9-8ubuntu1                                       amd64        Tools for manipulating Linux Wireless Extensions
ii  wodim                                                 9:1.1.11-2ubuntu3                                      amd64        command line CD/DVD writing tool
ii  wpasupplicant                                         2.1-0ubuntu1.3                                         amd64        client support for WPA and WPA2 (IEEE 802.11i)
ii  x11-apps                                              7.7+2                                                  amd64        X applications
ii  x11-common                                            1:7.7+1ubuntu8.1                                       all          X Window System (X.Org) infrastructure
ii  x11-session-utils                                     7.7+1                                                  amd64        X session utilities
ii  x11-utils                                             7.7+1                                                  amd64        X11 utilities
ii  x11-xfs-utils                                         7.7+1                                                  amd64        X font server utilities
ii  x11-xkb-utils                                         7.7+1                                                  amd64        X11 XKB utilities
ii  x11-xserver-utils                                     7.7+2ubuntu1                                           amd64        X server utilities
ii  x11proto-core-dev                                     7.0.26-1~ubuntu2                                       all          X11 core wire protocol and auxiliary headers
ii  x11proto-damage-dev                                   1:1.2.1-2                                              all          X11 Damage extension wire protocol
ii  x11proto-dri2-dev                                     2.8-2                                                  all          X11 DRI2 extension wire protocol
ii  x11proto-fixes-dev                                    1:5.0-2ubuntu2                                         all          X11 Fixes extension wire protocol
ii  x11proto-gl-dev                                       1.4.17-1                                               all          X11 OpenGL extension wire protocol
ii  x11proto-input-dev                                    2.3-1                                                  all          X11 Input extension wire protocol
ii  x11proto-kb-dev                                       1.0.6-2                                                all          X11 XKB extension wire protocol
ii  x11proto-xext-dev                                     7.3.0-1                                                all          X11 various extension wire protocol
ii  x11proto-xf86vidmode-dev                              2.3.1-2                                                all          X11 Video Mode extension wire protocol
ii  xauth                                                 1:1.0.7-1ubuntu1                                       amd64        X authentication utility
ii  xbitmaps                                              1.1.1-2                                                all          Base X bitmaps
ii  xcursor-themes                                        1.0.3-1                                                all          Base X cursor themes
ii  xdg-user-dirs                                         0.15-1ubuntu3                                          amd64        tool to manage well known user directories
ii  xdg-user-dirs-gtk                                     0.10-1ubuntu1                                          amd64        tool to manage well known user directories (Gtk extension)
ii  xdg-utils                                             1.1.0~rc1-2ubuntu7.1                                   all          desktop integration utilities from freedesktop.org
ii  xdiagnose                                             3.6.3build2                                            all          X.org diagnosis tool
ii  xfonts-base                                           1:1.0.3                                                all          standard fonts for X
ii  xfonts-encodings                                      1:1.0.4-1ubuntu1                                       all          Encodings for X.Org fonts
ii  xfonts-mathml                                         6ubuntu1                                               all          Type1 Symbol font for MathML
ii  xfonts-scalable                                       1:1.0.3-1                                              all          scalable fonts for X
ii  xfonts-utils                                          1:7.7+1                                                amd64        X Window System font utility programs
ii  xinit                                                 1.3.2-1                                                amd64        X server initialisation tool
ii  xinput                                                1.6.1-1                                                amd64        Runtime configuration and test of XInput devices
ii  xkb-data                                              2.10.1-1ubuntu1                                        all          X Keyboard Extension (XKB) configuration data
ii  xml-core                                              0.13+nmu2                                              all          XML infrastructure and XML catalog file support
ii  xorg                                                  1:7.7+1ubuntu8.1                                       amd64        X.Org X Window System
ii  xorg-docs-core                                        1:1.7-1                                                all          Core documentation for the X.org X Window System
ii  xorg-sgml-doctools                                    1:1.11-1                                               all          Common tools for building X.Org SGML documentation
ii  xserver-common                                        2:1.15.1-0ubuntu2.7                                    all          common files used by various X servers
ii  xserver-xorg                                          1:7.7+1ubuntu8.1                                       amd64        X.Org X server
ii  xserver-xorg-core                                     2:1.15.1-0ubuntu2.7                                    amd64        Xorg X server - core server
ii  xserver-xorg-input-all                                1:7.7+1ubuntu8.1                                       amd64        X.Org X server -- input driver metapackage
ii  xserver-xorg-input-evdev                              1:2.8.2-1ubuntu2                                       amd64        X.Org X server -- evdev input driver
ii  xserver-xorg-input-mouse                              1:1.9.0-1build1                                        amd64        X.Org X server -- mouse input driver
ii  xserver-xorg-input-synaptics                          1.7.4-0ubuntu1                                         amd64        Synaptics TouchPad driver for X.Org server
ii  xserver-xorg-input-vmmouse                            1:13.0.0-1build1                                       amd64        X.Org X server -- VMMouse input driver to use with VMWare
ii  xserver-xorg-input-wacom                              1:0.23.0-0ubuntu2                                      amd64        X.Org X server -- Wacom input driver
ii  xserver-xorg-video-all                                1:7.7+1ubuntu8.1                                       amd64        X.Org X server -- output driver metapackage
ii  xserver-xorg-video-ati                                1:7.4.99+git20140806.fbf575cb-0ubuntu0sarvatt~trusty   amd64        X.Org X server -- AMD/ATI display driver wrapper
ii  xserver-xorg-video-cirrus                             1:1.5.2-1build1                                        amd64        X.Org X server -- Cirrus display driver
ii  xserver-xorg-video-fbdev                              1:0.4.4-1build1                                        amd64        X.Org X server -- fbdev display driver
ii  xserver-xorg-video-glamoregl                          0.6.0+git20140801.347ef4f0-0ubuntu0sarvatt~trusty      amd64        X.Org X server -- graphics acceleration module based on OpenGL
ii  xserver-xorg-video-intel                              2:2.99.917+git20151015.6861391f-0ubuntu0sarvatt~trusty amd64        X.Org X server -- Intel i8xx, i9xx display driver
ii  xserver-xorg-video-mach64                             6.9.4-1build1                                          amd64        X.Org X server -- ATI Mach64 display driver
ii  xserver-xorg-video-mga                                1:1.6.3-1build1                                        amd64        X.Org X server -- MGA display driver
ii  xserver-xorg-video-modesetting                        0.8.1-1build1                                          amd64        X.Org X server -- Generic modesetting driver
ii  xserver-xorg-video-neomagic                           1:1.2.8+git20140806.74a9a343-0ubuntu0sarvatt~trusty    amd64        X.Org X server -- Neomagic display driver
ii  xserver-xorg-video-nouveau                            1:1.0.11+git20141030.3fb97d78-0ubuntu0sarvatt~trusty2  amd64        X.Org X server -- Nouveau display driver
ii  xserver-xorg-video-openchrome                         1:0.3.3-1build1                                        amd64        X.Org X server -- VIA display driver
ii  xserver-xorg-video-qxl                                0.1.1-0ubuntu3                                         amd64        X.Org X server -- QXL display driver
ii  xserver-xorg-video-r128                               6.9.2-1build1                                          amd64        X.Org X server -- ATI r128 display driver
ii  xserver-xorg-video-radeon                             1:7.4.99+git20140806.fbf575cb-0ubuntu0sarvatt~trusty   amd64        X.Org X server -- AMD/ATI Radeon display driver
ii  xserver-xorg-video-s3                                 1:0.6.5-0ubuntu4                                       amd64        X.Org X server -- legacy S3 display driver
ii  xserver-xorg-video-savage                             1:2.3.7-2ubuntu2                                       amd64        X.Org X server -- Savage display driver
ii  xserver-xorg-video-siliconmotion                      1:1.7.7-2build1                                        amd64        X.Org X server -- SiliconMotion display driver
ii  xserver-xorg-video-sis                                1:0.10.7-0ubuntu6                                      amd64        X.Org X server -- SiS display driver
ii  xserver-xorg-video-sisusb                             1:0.9.6+git20140806.293d0902-0ubuntu0sarvatt~trusty    amd64        X.Org X server -- SiS USB display driver
ii  xserver-xorg-video-tdfx                               1:1.4.5-1build1                                        amd64        X.Org X server -- tdfx display driver
ii  xserver-xorg-video-trident                            1:1.3.6+git20140806.562c38ca-0ubuntu0sarvatt~trusty    amd64        X.Org X server -- Trident display driver
ii  xserver-xorg-video-vesa                               1:2.3.3-1build1                                        amd64        X.Org X server -- VESA display driver
ii  xserver-xorg-video-vmware                             1:13.0.2+git20140804.0a596fd0-0ubuntu0sarvatt~trusty   amd64        X.Org X server -- VMware display driver
ii  xterm                                                 297-1ubuntu1                                           amd64        X terminal emulator
ii  xtrans-dev                                            1.3.5-1~ubuntu14.04.1                                  all          X transport library (development files)
ii  xul-ext-ubufox                                        3.2-0ubuntu0.14.04.1                                   all          Ubuntu modifications for Firefox
ii  xul-ext-unity                                         3.0.0+14.04.20140416-0ubuntu1.14.04.1                  all          Firefox extension: Unity Integration
ii  xul-ext-webaccounts                                   0.5-0ubuntu2.14.04.1                                   amd64        Ubuntu Online Accounts extension for firefox
ii  xul-ext-websites-integration                          2.3.6+13.10.20130920.1-0ubuntu1.2                      all          Firefox extension: Website Integration
ii  xz-utils                                              5.1.1alpha+20120614-2ubuntu2                           amd64        XZ-format compression utilities
ii  yelp                                                  3.10.2-0ubuntu1                                        amd64        Help browser for GNOME
ii  yelp-xsl                                              3.10.1-1                                               all          XSL stylesheets for the yelp help browser
ii  zeitgeist                                             0.9.14-0ubuntu4.1                                      all          event logging framework
ii  zeitgeist-core                                        0.9.14-0ubuntu4.1                                      amd64        event logging framework - engine
ii  zeitgeist-datahub                                     0.9.14-0ubuntu4.1                                      amd64        event logging framework - passive logging daemon
ii  zenity                                                3.8.0-1ubuntu1                                         amd64        Display graphical dialog boxes from shell scripts
ii  zenity-common                                         3.8.0-1ubuntu1                                         all          Display graphical dialog boxes from shell scripts (common files)
ii  zip                                                   3.0-8                                                  amd64        Archiver for .zip files
ii  zlib1g:amd64                                          1:1.2.8.dfsg-1ubuntu1                                  amd64        compression library - runtime

Dernière modification par niemand (Le 17/10/2015, à 23:37)

Hors ligne

#16 Le 17/10/2015, à 23:35

niemand

Re : Chargement .vimrc manuel

Postmortem, je ne connais rien sur les liens et comment ils fonctionnent.
Je en sait pas la différence entre un lien symbolique et un lien physique, je verrai cela ensuite...

PS: La France à pris une taule comme jamais aujourd'hui mad

Dernière modification par niemand (Le 17/10/2015, à 23:36)

Hors ligne

#17 Le 17/10/2015, à 23:35

Postmortem

Re : Chargement .vimrc manuel

Ce genre de pavé, c'est bien de le mettre entre les balises [code]

Dernière modification par Postmortem (Le 17/10/2015, à 23:41)


Mot' a dit : « Un Hellfest sans Slayer, c'est comme une galette-saucisse sans saucisse ! »

Hors ligne

#18 Le 17/10/2015, à 23:38

niemand

Re : Chargement .vimrc manuel

C'est fait Postmortem, correction poste 15 avec les balises codes.
Effectivement la lisibilité est meilleur !!!

Dernière modification par niemand (Le 17/10/2015, à 23:39)

Hors ligne

#19 Le 18/10/2015, à 00:02

Postmortem

Re : Chargement .vimrc manuel

Un fichier, sur une partition de type UNIX, est identifié par un numéro d'inode. Ce numéro est unique sur la partition. Tu peux voir ce numéro en mettant l'option "-i" à ls.
Le nom de fichier, toto.txt par exemple, c'est un lien physique.
Chaque fichier à donc au moins un lien physique.
Si tu fais la commande suivante :

ln toto tata

Tu demandes au système de faire pointer tata vers la même inode que toto. Si tu fais "ls -li" sur toto et tata, tu verras qu'ils ont la même inode.
Si tu supprimes toto, le fichier existe toujours car il a encore un lien physique : tata.


Un lien symbolique, on peut rapprocher ça d'un raccourci sous windows.

ln -s toto tata

Ça créé un "fichier" tata, qui pointe sur toto, un "raccourci" vers toto.
Si tu fais "ls -li" sur toto et tata, tu verras que toto et tata n'ont pas la même inode, ce sont bien 2 fichiers différents.

Et ouai putain, on a pris une sacré branlée, ça pique !!!
Mais les volleyeurs remontent le niveau français !


Mot' a dit : « Un Hellfest sans Slayer, c'est comme une galette-saucisse sans saucisse ! »

Hors ligne

#20 Le 18/10/2015, à 00:32

Rufus T. Firefly

Re : Chargement .vimrc manuel

niemand a écrit :

C'est fait Postmortem, correction poste 15 avec les balises codes.
Effectivement la lisibilité est meilleur !!!

En plus tu peux filtrer la sortie de dpkg. Par exemple :

dpkg -l | grep vim

A la place de "vim" tu peux aussi mettre une expression rationnelle (c'est très utilisé en programmation)
Comme ça ton pavé se réduit comme peau de chagrin et tu n'es pas obligé de mettre ça dans un fichier... Ni nous copier des dizaines de lignes inutiles... Et c'est encore plus lisible !  wink

Dernière modification par Rufus T. Firefly (Le 18/10/2015, à 00:35)


La provocation est une façon de remettre la réalité sur ses pieds. (Bertolt Brecht)
Il n'y a pas de route royale pour la science et ceux-là seulement ont chance d'arriver à ses sommets lumineux qui ne craignent pas de se fatiguer à gravir ses sentiers escarpés. (Karl Marx)
Il est devenu plus facile de penser la fin du monde que la fin du capitalisme

Hors ligne

#21 Le 18/10/2015, à 01:08

niemand

Re : Chargement .vimrc manuel

J'ai faits les opérations ci dessous dans le répertoire ~:

touch toto.txt; ln toto.txt tata;
vim toto.txt 

( j'ai écrit ceci ), je constate que dans tata j'ai bien la même chose qui est écrit ( j'ai écrit ceci ) donc jusque la tout va bien.

ls -i toto.txt tata

puis,

1057870 tata  1057870 toto.txt

Jusque la tout va bien également,

rm toto.txt
ls -i tata
1057870 tata

Jusque la toujours bien

Ensuite j'ai écrit, plus précisément réécrit sur tata ( je réécrit ceci)

ls -i tata
1057887 tata

Et la c'est le drame, je constate que le lien physique de tata a changé 1057870 -> 1057887 comment c'est possible s'il s'agit d'un lien physique ?
C'est cette chose la qui ne me va pas.

Dernière modification par niemand (Le 18/10/2015, à 01:25)

Hors ligne

#22 Le 18/10/2015, à 01:22

niemand

Re : Chargement .vimrc manuel

Rufus T.firefly merci pour la nouvelle commande et le nouveau lien wink

Je remet le résultat de la commande en mode class cool

ii  vim                                                   2:7.4.052-1ubuntu3                                     amd64        Vi IMproved - enhanced vi editor
rc  vim-addon-manager                                     0.5.3                                                  all          manager of addons for the Vim editor
ii  vim-common                                            2:7.4.052-1ubuntu3                                     amd64        Vi IMproved - Common files
rc  vim-latexsuite                                        20130116.788-1                                         all          view, edit and compile LaTeX documents from within Vim
ii  vim-runtime                                           2:7.4.052-1ubuntu3                                     all          Vi IMproved - Runtime files
rc  vim-tiny                                              2:7.4.052-1ubuntu3                                     amd64        Vi IMproved - enhanced vi editor - compact version

Je laisse le poste 15 comme cela car celui ci à le message ci dessous qui n’apparaît pas avec la nouvelle commande nouvellement filtrés,

Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ Nom                                                   Version 

Dernière modification par niemand (Le 18/10/2015, à 01:25)

Hors ligne

#23 Le 18/10/2015, à 04:10

Rufus T. Firefly

Re : Chargement .vimrc manuel

Encore une remarque. Pourquoi vim ? Autant utiliser l'éditeur GNU écrit par Stallman en personne : emacs !

Dernière modification par Rufus T. Firefly (Le 18/10/2015, à 04:19)


La provocation est une façon de remettre la réalité sur ses pieds. (Bertolt Brecht)
Il n'y a pas de route royale pour la science et ceux-là seulement ont chance d'arriver à ses sommets lumineux qui ne craignent pas de se fatiguer à gravir ses sentiers escarpés. (Karl Marx)
Il est devenu plus facile de penser la fin du monde que la fin du capitalisme

Hors ligne

#24 Le 18/10/2015, à 06:13

pingouinux

Re : Chargement .vimrc manuel

Bonjour,

niemand #21 a écrit :

Et la c'est le drame, je constate que le lien physique de tata a changé 1057870 -> 1057887 comment c'est possible s'il s'agit d'un lien physique ?

Le numéro d'inode ne devrait pas changer dans ce cas (sauf si tu a détruit tata avant de réécrire dedans).

$ echo "dans toto" >toto
$ ln toto tata
$ ls -i
1046530 tata  1046530 toto

$ rm toto
$ cat tata
dans toto

$ echo "dans tata" >tata
$ cat tata
dans tata

$ ls -i
1046530 tata

Hors ligne

#25 Le 18/10/2015, à 22:10

niemand

Re : Chargement .vimrc manuel

pingouinux voici les opérations que j'ai fait dans l'ordre,

 touche toto.txt; ln toto.txt tata
ls -i toto.txt tata
1058331 tata  1058331 toto.txt
vim toto.txt 

  ( edit : ceci est un test )

rm toto.txt
ls -i tata
1058331 tata
vim tata 

( edit : ceci est le test réécrit )

ls -i tata
1058278 tata

Si ce sont des liens en durs normalement il ne devraient pas changer ?
Le numéro d'inode change.
Je précise qu' à aucun moment je n'ai détruit tata.

Rufus T.fiirefly ,
Je n'ai pas une grande expérience dans l’informatique et donc je me dit que quelque chose qui est la depuis assez longtemps et qui n'a toujours pas disparue est non seulement très puissant pour parer à des situations divers et variés, mais surtout ne doit quasiment pu avoir de bug.

Disons que c'est le choix raisonné de la non connaissance ce qui ne veut pas dire que c'est le meilleur.

De plus je me suis assez documenté sur vim et je n'ai pas envie de refaire ce travail sur emacs.

Dernière modification par niemand (Le 18/10/2015, à 22:13)

Hors ligne