Friday, 3 May 2013

dconf for a Hardware/software snapshot...

here is a good tool to check your config...


chad@ubuntu:~$ dconf -h
usage: dconf [-q] [-v] [-c config] [-o output]
Create a system's hardware and software configuration snapshot

Dconf options:
  -c, --config=file    specify alternative configfile
  -o, --output=file    write output to given file
  -q, --quiet          minimal output
  -v, --verbose        increase verbosity
  -vv, -vvv            increase verbosity more

example:


== APM =========================================================================
--[ File: /etc/apm/event.d/20hdparm ]--(0755, root, root, 2265)-----------------
#!/bin/sh

# Copyright (c) 2000-2002 Massachusetts Institute of Technology
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.

set -e

# The APMD_DRIVES setting specifies the drives to be changed.  Set
# this to an empty string to disable any changes.
#APMD_DRIVES=

# The spindown timeout is set to the value of APMD_SPINDOWN when the
# computer is running on battery power.  When the computer is on AC
# power, the spindown timeout is disabled.  The number specified here
# is encoded in a complicated way.  See the man page for hdparm(8) for
# details.  For small timeouts, numbers between 1 and 240 specify
# multiples of 5 seconds.  So the default value of 18 means 18*5=90
# seconds, or 1.5 minutes.
APMD_SPINDOWN=18

HDPARM=/sbin/hdparm
[ -x "${HDPARM}" ] || exit 0

[ -n "${APMD_DRIVES}" ] || exit 0

for DRIVE in $APMD_DRIVES; do
  [ -b "${DRIVE}" ] || exit 0
done

[ "${APMD_SPINDOWN}" -gt 0 ] || exit 0

power_conserve ()
{
    # Set IDE hard disk spindown time to a short time.
    for DRIVE in $APMD_DRIVES; do
      "${HDPARM}" -q -S "${APMD_SPINDOWN}" "${DRIVE}" || true
    done
}

power_performance ()
{
    # Disable IDE hard disk spindown.
    for DRIVE in $APMD_DRIVES; do
      "${HDPARM}" -q -S 0 "${DRIVE}" || true
    done
}

choose_power ()
{
    if on_ac_power > /dev/null
    then
power_performance
    else
power_conserve
    fi
}

if [ "${1}" = "start" ]; then
    choose_power
elif [ "${1}" = "resume" ] && [ "${2}" != "standby" ]; then
    choose_power
elif [ "${1},${2}" = "change,power" ]; then
    choose_power
elif [ "${1}" = "stop" ]; then
    power_performance
fi

exit 0

--[ File: /etc/apm/event.d/anacron ]--(0755, root, root, 725)-------------------
#! /bin/sh

# This script makes anacron jobs start to run when the machine is
# plugged into AC power, or woken up.  For a laptop, these are the
# closest parallels to turning on a desktop.

# The /etc/init.d/anacron script now normally tries to avoid running
# anacron unless on AC power, so as to avoid running down the battery.
# (Things like the slocate updatedb cause a lot of IO.)  Rather than
# trying to second-guess which events reflect having or not having
# power, we just try to run anacron every time and let it abort if
# there's no AC.  You'll see a message on the cron syslog facility
# (typically /var/log/cron) if it does run.

case "$1,$2" in
change,power|resume,*)
    start -q anacron || :
    ;;
esac

--[ File: /etc/apm/resume.d/20alsa ]--(0755, root, root, 216)-------------------
#!/bin/sh
#
# apmd proxy script for ALSA

[ -x /sbin/alsactl ] || exit 0

case "$1,$2" in
suspend,*) /sbin/alsactl store && /sbin/alsa suspend ;;
resume,suspend) /sbin/alsa resume && /sbin/alsactl restore ;;
esac


== APT =========================================================================
--[ File: /etc/apt/sources.list ]--(0644, root, root, 3507)---------------------
#

# deb cdrom:[Kubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120423)]/ dists/precise/main/binary-i386/
# deb cdrom:[Kubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120423)]/ dists/precise/restricted/binary-i386/
# deb cdrom:[Kubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120423)]/ precise main restricted

# deb cdrom:[Kubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120423)]/ dists/precise/main/binary-i386/
# deb cdrom:[Kubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120423)]/ dists/precise/restricted/binary-i386/
# deb cdrom:[Kubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120423)]/ precise main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://ca.archive.ubuntu.com/ubuntu/ precise main restricted
deb-src http://ca.archive.ubuntu.com/ubuntu/ precise main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://ca.archive.ubuntu.com/ubuntu/ precise-updates main restricted
deb-src http://ca.archive.ubuntu.com/ubuntu/ precise-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://ca.archive.ubuntu.com/ubuntu/ precise universe
deb-src http://ca.archive.ubuntu.com/ubuntu/ precise universe
deb http://ca.archive.ubuntu.com/ubuntu/ precise-updates universe
deb-src http://ca.archive.ubuntu.com/ubuntu/ precise-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://ca.archive.ubuntu.com/ubuntu/ precise multiverse
deb-src http://ca.archive.ubuntu.com/ubuntu/ precise multiverse
deb http://ca.archive.ubuntu.com/ubuntu/ precise-updates multiverse
deb-src http://ca.archive.ubuntu.com/ubuntu/ precise-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.

deb http://security.ubuntu.com/ubuntu precise-security main restricted
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
deb http://security.ubuntu.com/ubuntu precise-security universe
deb-src http://security.ubuntu.com/ubuntu precise-security universe
deb http://security.ubuntu.com/ubuntu precise-security multiverse
deb-src http://security.ubuntu.com/ubuntu precise-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu precise partner
# deb-src http://archive.canonical.com/ubuntu precise partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu precise main
deb-src http://extras.ubuntu.com/ubuntu precise main

== BOOT ========================================================================
--[ File: /etc/modules ]--(0644, root, root, 207)-------------------------------
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.

loop
lp
rtc

== CRON ========================================================================
--[ Cmd: /usr/bin/crontab -l ]--(2755, root, crontab, 35896)--------------------
no crontab for chad

--[ File: /etc/crontab ]--(0644, root, root, 722)-------------------------------
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user command
17 * * * * root    cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

== DCONF =======================================================================
--[ File: /etc/dconf.conf ]--(0644, root, root, 5851)---------------------------
### Changes to this file may get lost when upgrading dconf
### Customizations should go into /etc/dconf-custom.conf

### Please send improvements or fixes to: Dag Wieers <dag@wieers.com>
### Initial debian version: Leo Eraly <leo@kangaroot.net>
### Main configuration
[main]
logdir = /var/log/dconf
include = /etc/dconf-custom.conf

### System information
[apm]
files = /etc/apm/event.d/*
/etc/apm/resume.d/*
/etc/apm/suspemd.d/*

[boot]
files =
/etc/grub.conf
/etc/inittab
/etc/lilo.conf
/etc/modules
/proc/cmdline

[dhcp]
files =
/etc/dhclient.conf
/etc/dhclient-script
/etc/dhcpd.conf
/etc/pump.conf
/etc/default/dhcp

[filesystems]
cmds =
fdisk -l 2>/dev/null
sfdisk -l
df -h
mount
files =
/etc/exports
/etc/raidtab
/etc/fstab
/proc/filesystems
/proc/mounts

[firewall]
cmds =
ebtables -L
ipchains -L -xnv
iptables-save
iptables -L -t filter -xnv | sed -e 's| [0-9]\+ packets, [0-9]\+ bytes||'
iptables -L -t mangle -xnv | sed -e 's| [0-9]\+ packets, [0-9]\+ bytes||'
iptables -L -t nat -xnv | sed -e 's| [0-9]\+ packets, [0-9]\+ bytes||'
files =
/etc/init.d/iptables
/etc/default/iptables
/proc/net/ip_conntrack
/proc/sys/net/ipv4/ip_*

[ipsec]
cmds =
ipsec auto --status

files =
/etc/ipsec.conf
/etc/ipsec.d/*
/proc/net/ipsec_version

[ipvs]
cmds = ipvsadm -L
files =
/etc/sysconfig/ipvsadm
/etc/ipvsadm.rules

[kernel]
cmds =
ipcs -l
sysctl -e -p
dmesg
files = /etc/sysctl.conf

[network]
cmds =
ip addr
ip route
### Too much noise
# netstat -lnpt | grep -v ":60.. " | perl -p -e "s|^(\w+)(\s+\S+){2}|\$1  |; s|(\d+\|PID)/||;"
# netstat -lnpu | grep -v "/local " | perl -p -e "s|^(\w+)(\s+\S+){2}|\$1  |; s|(\d+\|PID)/||;"
route -n
files =
/etc/host.conf
/etc/hosts
/etc/nsswitch.conf
/etc/resolv.conf
/etc/network/interfaces
/etc/network/if-down.d/*
/etc/network/if-post-down.d/*
/etc/network/if-pre-up.d/*
/etc/network/if-up.d/
/etc/network/ip-down.d/*
/etc/network/ip-up.d/*
/etc/network/options
/proc/net/dev
#maybe another location for unix sockets?
/proc/net/unix

[packages]
cmds =
dpkg -l
dpkg --get-selections                                                                  

[printer]
files =
/etc/cups/cupsd.conf
/etc/cups/printers.conf
/etc/cups/client.conf
/etc/lpd.conf
/etc/printcap

[root user]
files =
/root/.Xresources
/root/.bash_logout
/root/.bash_profile
/root/.bashrc
/root/.cshrc
/root/.tcshrc

[security]
files =
/etc/group
/etc/gshadow
/etc/hosts.allow
/etc/hosts.deny
/etc/passwd
/etc/shadow
/etc/sudoers

[services]
dirs = /etc/security
files =
/etc/inetd.conf
[shell]
files =
/etc/bashrc
/etc/bash.bashrc
/etc/bash_completion
/etc/profile

[system]
cmds = uname -a
files = /etc/debian_version

### Hardware info
[hardware]
cmds =
dmidecode
lspci -v
lsusb -vv
# for i in /dev/hd[a-z] /dev/sd[a-z]; do smartctl -a $i; done
files =
/etc/modprobe.conf
/etc/modules.conf
/proc/cpuinfo
/proc/devices
/proc/dma
/proc/driver/nvram
/proc/ide/drivers
/proc/ide/ide?/hd?/{cache,capacity,media,model,settings}
/proc/ide/piix
/proc/ide/via
/proc/iomem
/proc/mdstat
/proc/misc
/proc/modules
/proc/mtrr
/proc/ppc64/lparcfg
/proc/ppc64/rtas/poweron
/proc/ppc64/rtas/sensors
/proc/scsi
/proc/scsi/IBMchanger
/proc/scsi/IBMtape
/proc/swaps
/proc/tty/drivers

dirs = /etc/modutils

[amavisd-new]
files =
/etc/amavis/amavisd.conf

[apache]
files =
/etc/apache/httpd.conf
/etc/apache/conf.d/*

[bind]
files =
/etc/bind/named.conf
/etc/bind/rndc.key

[clamav]
files =
/etc/clamav/clamd.conf
/etc/clamav/clamav.conf
/etc/clamav/freshclam.conf

[cron]
files = /etc/crontab
cmds = crontab -l
# ls -l /etc/cron.*/

dirs = /etc/cron.daily
/etc/cron.weekly
/etc/cron.hourly
/etc/cron.d

[dconf]
files =
/etc/dconf.conf
/etc/dconf-custom.conf

[mysql]
files = /etc/mysql/my.cnf
/etc/mysql/debian.cnf

[nagios]
files =
/etc/nagios/*.cfg

[nfs]
cmds =
exportfs
showmount -d
showmount -e
files =
/etc/exports

[nscd]
files = /etc/nscd.conf

[ntp]
files =
/etc/ntp.conf
/etc/ntp/keys
/etc/ntp/ntpservers
/etc/ntp/step-tickers
/etc/sysconfig/ntpd

[openldap]
files =
# this ldap.conf is used for nss
/etc/ldap.conf
# this is the openldap client conf
/etc/ldap/ldap.conf
/etc/ldap.secrets
/etc/ldap/slapd.conf
#maybe the schema?

[openssh]
files =
/etc/ssh/shosts.equiv
/etc/ssh/ssh_config
/etc/ssh/sshd_config
/root/.ssh/authorized_keys2
/root/.ssh/sshd_config
/root/.ssh/sshd_config

[php]
files =
/etc/php4/apache/php.ini


[postfix]
files =
/etc/postfix/access
/etc/postfix/aliases
/etc/postfix/canonical
/etc/postfix/main.cf
/etc/postfix/master.cf
/etc/postfix/pcre_table
/etc/postfix/regexp_table
/etc/postfix/relocated
/etc/postfix/transport
/etc/postfix/virtual

[proftpd]
files =
/etc/ftpusers
/etc/proftpd.conf
/var/ftp/welcome.msg

[qmail]
cmds = /var/qmail/bin/qmail-showctl
dirs =
/var/qmail/alias/
/var/qmail/popboxes/
/var/qmail/users/
/var/qmail/control

[rsync]
files = /etc/rsyncd.conf

[samba]
files =
/etc/samba/smb.conf
/etc/samba/smbusers
/etc/samba/lmhosts
/etc/samba/smb.conf
/etc/samba/smbpasswd
/etc/samba/smbusers

[sendmail]
files =
/etc/aliases
/etc/mail/access
/etc/mail/domaintable
/etc/mail/local-host-names
/etc/mail/mailertable
/etc/mail/sendmail.mc
/etc/mail/submit.mc
/etc/mail/trusted-users
/etc/mail/virtusertable

[smbldap]
files =
/etc/smbldap-tools/smbldap.conf
/etc/smbldap-tools/smbldap_bind.conf

[snort]
files =
/etc/snort/*.config
/etc/sysconfig/snort

[spamassassin]
files =
/etc/spamassassin/*.cf
/etc/default/spamassassin

[squid]
files =
/etc/squid/mime.conf
/etc/squid/msntauth.conf
/etc/squid/squid.conf

[syslog]
files =
/etc/syslog.conf

[webalizer]
files = /etc/webalizer.conf

[apt]
files = /etc/apt/sources.list
dirs = /etc/apt/apt.conf.d

### Add your own customizations to /etc/dconf-custom.conf

--[ File: /etc/dconf-custom.conf ]--(0644, root, root, 302)---------------------
### Customized configuration
###
### Please send general improvements to this file to:
### Dag Wieers <dag@wieers.com>

[main]
cron = weekly
#mailto = root@localhost
#smtp-server = localhost

[custom]
files =
/etc/rc.d/rc.custom
/etc/profile.d/custom.sh
        /etc/sysconfig/network/if-*.d/custom

== FILESYSTEMS =================================================================
--[ Cmd: /sbin/fdisk -l 2>/dev/null ]--(0755, root, root, 99448)----------------

--[ Cmd: /sbin/sfdisk -l ]--(0755, root, root, 61816)---------------------------

--[ Cmd: /bin/df -h ]--(0755, root, root, 84856)--------------------------------
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda6       112G  9.2G   97G   9% /
udev            7.9G   12K  7.9G   1% /dev
tmpfs           3.2G 1012K  3.2G   1% /run
none            5.0M     0  5.0M   0% /run/lock
none            7.9G   92K  7.9G   1% /run/shm
/dev/sda1        94M  120K   94M   1% /boot/efi
/dev/sda2       114G  3.9G  110G   4% /media/Data A

--[ Cmd: /bin/mount  ]--(4755, root, root, 94792)-------------------------------
/dev/sda6 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
/dev/sda1 on /boot/efi type vfat (rw)
/dev/sda2 on /media/Data A type fuseblk (rw,nosuid,nodev,allow_other,default_permissions,blksize=4096)

--[ File: /etc/fstab ]--(0644, root, root, 779)---------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda6 during installation
UUID=6ca41df3-22ad-459f-9231-48372a0dc8fa /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
UUID=6128-BD32  /boot/efi       vfat    defaults        0       1
# swap was on /dev/sda3 during installation
UUID=c6d44e92-ad89-4936-be67-23877cf2d2d9 none            swap    sw              0       0

== FIREWALL ====================================================================
--[ Cmd: /sbin/iptables-save  ]--(0755, root, root, 87592)----------------------

--[ Cmd: /sbin/iptables -L -t filter -xnv | sed -e 's| [0-9]\+ packets, [0-9]\+ bytes||' ]--(0755, root, root, 87592)--
iptables v1.4.12: can't initialize iptables table `filter': Permission denied (you must be root)
Perhaps iptables or your kernel needs to be upgraded.

--[ Cmd: /sbin/iptables -L -t mangle -xnv | sed -e 's| [0-9]\+ packets, [0-9]\+ bytes||' ]--(0755, root, root, 87592)--
iptables v1.4.12: can't initialize iptables table `mangle': Permission denied (you must be root)
Perhaps iptables or your kernel needs to be upgraded.

--[ Cmd: /sbin/iptables -L -t nat -xnv | sed -e 's| [0-9]\+ packets, [0-9]\+ bytes||' ]--(0755, root, root, 87592)--
iptables v1.4.12: can't initialize iptables table `nat': Permission denied (you must be root)
Perhaps iptables or your kernel needs to be upgraded.

== HARDWARE ====================================================================
--[ Cmd: /usr/sbin/dmidecode  ]--(0755, root, root, 71856)----------------------
/dev/mem: Permission denied
# dmidecode 2.11

--[ Cmd: /usr/bin/lspci -v ]--(0755, root, root, 69568)-------------------------
00:00.0 Host bridge: Intel Corporation Sandy Bridge DMI2 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

00:01.0 PCI bridge: Intel Corporation Sandy Bridge IIO PCI Express Root Port 1a (rev 07) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:02.0 PCI bridge: Intel Corporation Sandy Bridge IIO PCI Express Root Port 2a (rev 07) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:03.0 PCI bridge: Intel Corporation Sandy Bridge IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
I/O behind bridge: 0000e000-0000efff
Memory behind bridge: fa000000-fb0fffff
Prefetchable memory behind bridge: 00000000c0000000-00000000d1ffffff
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:03.2 PCI bridge: Intel Corporation Sandy Bridge IIO PCI Express Root Port 3c (rev 07) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:05.0 System peripheral: Intel Corporation Sandy Bridge Address Map, VTd_Misc, System Management (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

00:05.2 System peripheral: Intel Corporation Sandy Bridge Control Status and Global Errors (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

00:05.4 PIC: Intel Corporation Sandy Bridge I/O APIC (rev 07) (prog-if 20 [IO(X)-APIC])
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: bus master, fast devsel, latency 0
Memory at fb72a000 (32-bit, non-prefetchable) [size=4K]
Capabilities: <access denied>

00:11.0 PCI bridge: Intel Corporation Patsburg PCI Express Virtual Root Port (rev 06) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:16.0 Communication controller: Intel Corporation X79 series chipset HECI Controller #2 (rev 05)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: bus master, fast devsel, latency 0, IRQ 93
Memory at fb729000 (64-bit, non-prefetchable) [size=16]
Capabilities: <access denied>
Kernel driver in use: mei
Kernel modules: mei

00:19.0 Ethernet controller: Intel Corporation 82579V Gigabit Network Connection (rev 06)
Subsystem: ASUSTeK Computer Inc. P8P67 Deluxe Motherboard
Flags: bus master, fast devsel, latency 0, IRQ 91
Memory at fb700000 (32-bit, non-prefetchable) [size=128K]
Memory at fb728000 (32-bit, non-prefetchable) [size=4K]
I/O ports at f040 [disabled] [size=32]
Capabilities: <access denied>
Kernel driver in use: e1000e
Kernel modules: e1000e

00:1a.0 USB controller: Intel Corporation X79 series chipset USB2 Enhanced Host Controller #2 (rev 06) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: bus master, medium devsel, latency 0, IRQ 23
Memory at fb727000 (32-bit, non-prefetchable) [size=1K]
Capabilities: <access denied>
Kernel driver in use: ehci_hcd

00:1b.0 Audio device: Intel Corporation X79 series chipset High Definition Audio Controller (rev 06)
Subsystem: ASUSTeK Computer Inc. Device 84d8
Flags: bus master, fast devsel, latency 0, IRQ 94
Memory at fb720000 (64-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: snd_hda_intel
Kernel modules: snd-hda-intel

00:1c.0 PCI bridge: Intel Corporation X79 series chipset PCI Express Root Port 1 (rev b6) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
Memory behind bridge: fb600000-fb6fffff
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:1c.1 PCI bridge: Intel Corporation X79 series chipset PCI Express Root Port 2 (rev b6) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=07, subordinate=07, sec-latency=0
Memory behind bridge: fb500000-fb5fffff
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:1c.2 PCI bridge: Intel Corporation X79 series chipset PCI Express Root Port 3 (rev b6) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=08, subordinate=08, sec-latency=0
Memory behind bridge: fb400000-fb4fffff
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:1c.3 PCI bridge: Intel Corporation X79 series chipset PCI Express Root Port 4 (rev b6) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=09, subordinate=09, sec-latency=0
Memory behind bridge: fb300000-fb3fffff
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:1c.4 PCI bridge: Intel Corporation X79 series chipset PCI Express Root Port 5 (rev b6) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=0a, subordinate=0a, sec-latency=0
I/O behind bridge: 0000d000-0000dfff
Memory behind bridge: fb200000-fb2fffff
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:1c.5 PCI bridge: Intel Corporation X79 series chipset PCI Express Root Port 6 (rev b6) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=0b, subordinate=0b, sec-latency=0
I/O behind bridge: 0000c000-0000cfff
Prefetchable memory behind bridge: 00000000d2100000-00000000d21fffff
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:1c.7 PCI bridge: Intel Corporation X79 series chipset PCI Express Root Port 8 (rev b6) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=0c, subordinate=0c, sec-latency=0
I/O behind bridge: 0000b000-0000bfff
Memory behind bridge: fb100000-fb1fffff
Capabilities: <access denied>
Kernel driver in use: pcieport
Kernel modules: shpchp

00:1d.0 USB controller: Intel Corporation X79 series chipset USB2 Enhanced Host Controller #1 (rev 06) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: bus master, medium devsel, latency 0, IRQ 23
Memory at fb726000 (32-bit, non-prefetchable) [size=1K]
Capabilities: <access denied>
Kernel driver in use: ehci_hcd

00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a6) (prog-if 01 [Subtractive decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=0d, subordinate=0d, sec-latency=32
Capabilities: <access denied>

00:1f.0 ISA bridge: Intel Corporation X79 series chipset LPC Controller (rev 06)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: bus master, medium devsel, latency 0
Capabilities: <access denied>
Kernel modules: iTCO_wdt

00:1f.2 SATA controller: Intel Corporation X79 series chipset 6-Port SATA AHCI Controller (rev 06) (prog-if 01 [AHCI 1.0])
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 64
I/O ports at f090 [size=8]
I/O ports at f080 [size=4]
I/O ports at f070 [size=8]
I/O ports at f060 [size=4]
I/O ports at f020 [size=32]
Memory at fb725000 (32-bit, non-prefetchable) [size=2K]
Capabilities: <access denied>
Kernel driver in use: ahci

00:1f.3 SMBus: Intel Corporation X79 series chipset SMBus Host Controller (rev 06)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: medium devsel, IRQ 15
Memory at fb724000 (64-bit, non-prefetchable) [disabled] [size=256]
I/O ports at f000 [size=32]
Kernel modules: i2c-i801

02:00.0 VGA compatible controller: NVIDIA Corporation Device 0f00 (rev a1) (prog-if 00 [VGA controller])
Subsystem: Giga-byte Technology Device 3544
Flags: bus master, fast devsel, latency 0, IRQ 11
Memory at fa000000 (32-bit, non-prefetchable) [size=16M]
Memory at c0000000 (64-bit, prefetchable) [size=256M]
Memory at d0000000 (64-bit, prefetchable) [size=32M]
I/O ports at e000 [size=128]
Expansion ROM at fb000000 [disabled] [size=512K]
Capabilities: <access denied>
Kernel modules: nouveau, nvidiafb

02:00.1 Audio device: NVIDIA Corporation GF108 High Definition Audio Controller (rev a1)
Subsystem: Giga-byte Technology Device 3544
Flags: bus master, fast devsel, latency 0, IRQ 44
Memory at fb080000 (32-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: snd_hda_intel
Kernel modules: snd-hda-intel

06:00.0 USB controller: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller (prog-if 30 [XHCI])
Subsystem: ASUSTeK Computer Inc. Device 8488
Flags: bus master, fast devsel, latency 0, IRQ 16
Memory at fb600000 (64-bit, non-prefetchable) [size=32K]
Capabilities: <access denied>
Kernel driver in use: xhci_hcd

07:00.0 USB controller: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller (prog-if 30 [XHCI])
Subsystem: ASUSTeK Computer Inc. Device 8488
Flags: bus master, fast devsel, latency 0, IRQ 17
Memory at fb500000 (64-bit, non-prefetchable) [size=32K]
Capabilities: <access denied>
Kernel driver in use: xhci_hcd

08:00.0 USB controller: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller (prog-if 30 [XHCI])
Subsystem: ASUSTeK Computer Inc. Device 8488
Flags: bus master, fast devsel, latency 0, IRQ 18
Memory at fb400000 (64-bit, non-prefetchable) [size=32K]
Capabilities: <access denied>
Kernel driver in use: xhci_hcd

09:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
Subsystem: AzureWave AW-NB037H 802.11bgn Wireless Half-size Mini PCIe Card [AR9002WB-1NGCD]
Flags: bus master, fast devsel, latency 0, IRQ 19
Memory at fb300000 (64-bit, non-prefetchable) [size=64K]
Capabilities: <access denied>
Kernel driver in use: ath9k
Kernel modules: ath9k

0a:00.0 SATA controller: ASMedia Technology Inc. ASM1062 Serial ATA Controller (rev 01) (prog-if 01 [AHCI 1.0])
Subsystem: ASUSTeK Computer Inc. Device 84b7
Flags: bus master, fast devsel, latency 0, IRQ 65
I/O ports at d050 [size=8]
I/O ports at d040 [size=4]
I/O ports at d030 [size=8]
I/O ports at d020 [size=4]
I/O ports at d000 [size=32]
Memory at fb200000 (32-bit, non-prefetchable) [size=512]
Capabilities: <access denied>
Kernel driver in use: ahci

0b:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 06)
Subsystem: ASUSTeK Computer Inc. P8P67 and other motherboards
Flags: bus master, fast devsel, latency 0, IRQ 92
I/O ports at c000 [size=256]
Memory at d2104000 (64-bit, prefetchable) [size=4K]
Memory at d2100000 (64-bit, prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: r8169
Kernel modules: r8169

0c:00.0 SATA controller: Marvell Technology Group Ltd. 88SE9128 PCIe SATA 6 Gb/s RAID controller with HyperDuo (rev 11) (prog-if 01 [AHCI 1.0])
Subsystem: ASUSTeK Computer Inc. P8P67 Deluxe Motherboard
Flags: bus master, fast devsel, latency 0, IRQ 66
I/O ports at b040 [size=8]
I/O ports at b030 [size=4]
I/O ports at b020 [size=8]
I/O ports at b010 [size=4]
I/O ports at b000 [size=16]
Memory at fb110000 (32-bit, non-prefetchable) [size=2K]
Expansion ROM at fb100000 [disabled] [size=64K]
Capabilities: <access denied>
Kernel driver in use: ahci

ff:08.0 System peripheral: Intel Corporation Sandy Bridge QPI Link 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:08.3 System peripheral: Intel Corporation Sandy Bridge QPI Link Reut 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:08.4 System peripheral: Intel Corporation Sandy Bridge QPI Link Reut 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:09.0 System peripheral: Intel Corporation Sandy Bridge QPI Link 1 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:09.3 System peripheral: Intel Corporation Sandy Bridge QPI Link Reut 1 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:09.4 System peripheral: Intel Corporation Sandy Bridge QPI Link Reut 1 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:0a.0 System peripheral: Intel Corporation Sandy Bridge Power Control Unit 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0a.1 System peripheral: Intel Corporation Sandy Bridge Power Control Unit 1 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0a.2 System peripheral: Intel Corporation Sandy Bridge Power Control Unit 2 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0a.3 System peripheral: Intel Corporation Sandy Bridge Power Control Unit 3 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0b.0 System peripheral: Intel Corporation Sandy Bridge Interrupt Control Registers (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0b.3 System peripheral: Intel Corporation Sandy Bridge Semaphore and Scratchpad Configuration Registers (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0c.0 System peripheral: Intel Corporation Sandy Bridge Unicast Register 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0c.1 System peripheral: Intel Corporation Sandy Bridge Unicast Register 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0c.6 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller System Address Decoder 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0c.7 System peripheral: Intel Corporation Sandy Bridge System Address Decoder (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0d.0 System peripheral: Intel Corporation Sandy Bridge Unicast Register 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0d.1 System peripheral: Intel Corporation Sandy Bridge Unicast Register 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0d.6 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller System Address Decoder 1 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0e.0 System peripheral: Intel Corporation Sandy Bridge Processor Home Agent (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0e.1 Performance counters: Intel Corporation Sandy Bridge Processor Home Agent Performance Monitoring (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:0f.0 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Registers (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>
Kernel modules: sb_edac

ff:0f.1 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller RAS Registers (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:0f.2 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Target Address Decoder 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:0f.3 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Target Address Decoder 1 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:0f.4 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Target Address Decoder 2 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:0f.5 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Target Address Decoder 3 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:0f.6 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Target Address Decoder 4 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:10.0 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:10.1 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:10.2 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller ERROR Registers 0 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:10.3 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller ERROR Registers 1 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:10.4 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Channel 0-3 Thermal Control 2 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:10.5 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:10.6 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller ERROR Registers 2 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:10.7 System peripheral: Intel Corporation Sandy Bridge Integrated Memory Controller ERROR Registers 3 (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel
Capabilities: <access denied>

ff:11.0 System peripheral: Intel Corporation Sandy Bridge DDRIO (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:13.0 System peripheral: Intel Corporation Sandy Bridge R2PCIe (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:13.1 Performance counters: Intel Corporation Sandy Bridge Ring to PCI Express Performance Monitor (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:13.4 Performance counters: Intel Corporation Sandy Bridge QuickPath Interconnect Agent Ring Registers (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:13.5 Performance counters: Intel Corporation Sandy Bridge Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel

ff:13.6 System peripheral: Intel Corporation Sandy Bridge Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07)
Subsystem: ASUSTeK Computer Inc. Device 84ef
Flags: fast devsel


--[ Cmd: /usr/bin/lsusb -vv ]--(0755, root, root, 104976)-----------------------
Couldn't open device, some information will be missing
Couldn't open device, some information will be missing
Couldn't open device, some information will be missing

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            3.02
  iManufacturer           3
  iProduct                2
  iSerial                 1
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            3.02
  iManufacturer           3
  iProduct                2
  iSerial                 1
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            3.02
  iManufacturer           3
  iProduct                2
  iSerial                 1
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
   Couldn't open device, some information will be missing
Couldn't open device, some information will be missing
Couldn't open device, some information will be missing
   bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         3
  bMaxPacketSize0         9
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0003 3.0 root hub
  bcdDevice            3.02
  iManufacturer           3
  iProduct                2
  iSerial                 1
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           31
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12
        bMaxBurst               0

Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            3.02
  iManufacturer           3
  iProduct                2
  iSerial                 1
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         3
  bMaxPacketSize0         9
  idVendor Couldn't open device, some information will be missing
Couldn't open device, some information will be missing
          0x1d6b Linux Foundation
  idProduct          0x0003 3.0 root hub
  bcdDevice            3.02
  iManufacturer           3
  iProduct                2
  iSerial                 1
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           31
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12
        bMaxBurst               0

Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            3.02
  iManufacturer           3
  iProduct                2
  iSerial                 1
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 008 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         3
  bMaxPacketSize0         9
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0003 3.0 root hub
  bcdDevice            3.02
  iManufacturer           3
  iProduct                2
  iSerial                 1
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           31
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                Couldn't open device, some information will be missing
Couldn't open device, some information will be missing
Couldn't open device, some information will be missing
 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12
        bMaxBurst               0

Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x8087 Intel Corp.
  idProduct          0x0024 Integrated Rate Matching Hub
  bcdDevice            0.00
  iManufacturer           0
  iProduct                0
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0001  1x 1 bytes
        bInterval              12

Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x8087 Intel Corp.
  idProduct          0x0024 Integrated Rate Matching Hub
  bcdDevice            0.00
  iManufacturer           0
  iProduct                0
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval              12

Bus 003 Device 002: ID 2109:3431
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x2109
  idProduct          0x3431
  bcdDevice           92.88
  iManufacturer           0
  iProduct                1
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    Couldn't open device, some information will be missing
wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0001  1x 1 bytes
        bInterval              12

Bus 004 Device 002: ID 2109:0810
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         3
  bMaxPacketSize0         9
  idVendor           0x2109
  idProduct          0x0810
  bcdDevice           93.88
  iManufacturer           1
  iProduct                2
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           31
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xc0
      Self Powered
    MaxPower                2mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes           19
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Feedback
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval              16
        bMaxBurst               0

Bus 005 Device 002: ID 03f0:0317 Hewlett-Packard LaserJet 1200
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0         8
  idVendor           0x03f0 Hewlett-Packard
  idProduct          0x0317 LaserJet 1200
  bcdDevice            1.00
  iManufacturer           1 HewLett Packard
  iProduct                2 HP LaserJet 1200
  iSerial                 3 00CNCB912348
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           78
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xc0
      Self Powered
    MaxPower                2mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           3
      bInterfaceClass         7 Printer
      bInterfaceSubClass      1 Printer
      bInterfaceProtocol      3 IEEE 1284.4 compatible bidirectional
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint DCouldn't open device, some information will be missing
escriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval             255
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       1
      bNumEndpoints           2
      bInterfaceClass         7 Printer
      bInterfaceSubClass      1 Printer
      bInterfaceProtocol      2 Bidirectional
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       2
      bNumEndpoints           1
      bInterfaceClass         7 Printer
      bInterfaceSubClass      1 Printer
      bInterfaceProtocol      1 Unidirectional
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
Device Status:     0x0001
  Self Powered

Bus 007 Device 002: ID 046d:c326 Logitech, Inc.
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0         8
  idVendor           0x046d Logitech, Inc.
  idProduct          0xc326
  bcdDevice           79.00
  iManufacturer           1
  iProduct                2
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           59
    bNumInterfaces          2
    bConfigurationValue     1
    iConfiguration          4
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower               98mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      1 Keyboard
      iInterface              0
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      65
         RepCouldn't open device, some information will be missing
Couldn't open device, some information will be missing
ort Descriptors:
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      0 No Subclass
      bInterfaceProtocol      0 None
      iInterface              0
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      86
         Report Descriptors:
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0003  1x 3 bytes
        bInterval              10

Bus 001 Device 003: ID 045e:0039 Microsoft Corp. IntelliMouse Optical
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0         8
  idVendor           0x045e Microsoft Corp.
  idProduct          0x0039 IntelliMouse Optical
  bcdDevice            3.00
  iManufacturer           1
  iProduct                3
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           34
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      2 Mouse
      iInterface              0
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      72
         Report Descriptors:
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              10

Bus 002 Device 003: ID 0cf3:3005 Atheros Communications, Inc. AR3011 Bluetooth
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass          224 Wireless
  bDeviceSubClass         1 Radio Frequency
  bDeviceProtocol         1 Bluetooth
  bMaxPacketSize0        64
  idVendor           0x0cf3 Atheros Communications, Inc.
  idProduct          0x3005 AR3011 Bluetooth
  bcdDevice            0.01
  iManufacturer           0
  iProduct                0
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength          177
    bNumInterfaces          2
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           3
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0010  1x 16 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0000  1x 0 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0000  1x 0 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       1
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0009  1x 9 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0009  1x 9 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       2
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0011  1x 17 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0011  1x 17 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       3
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0019  1x 25 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0019  1x 25 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       4
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0021  1x 33 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0021  1x 33 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       5
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0031  1x 49 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0031  1x 49 bytes
        bInterval               1

== KERNEL ======================================================================
--[ Cmd: /usr/bin/ipcs -l ]--(0755, root, root, 22696)--------------------------

------ Shared Memory Limits --------
max number of segments = 4096
max seg size (kbytes) = 32768
max total shared memory (kbytes) = 8388608
min seg size (bytes) = 1

------ Semaphore Limits --------
max number of arrays = 128
max semaphores per array = 250
max semaphores system wide = 32000
max ops per semop call = 32
semaphore max value = 32767

------ Messages Limits --------
max queues system wide = 31950
max size of message (bytes) = 8192
default max size of queue (bytes) = 16384


--[ Cmd: /sbin/sysctl -e -p ]--(0755, root, root, 14656)------------------------

--[ Cmd: /bin/dmesg  ]--(0755, root, root, 22848)-------------------------------
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-23-generic (buildd@crested) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu4) ) #36-Ubuntu SMP Tue Apr 10 20:39:51 UTC 2012 (Ubuntu 3.2.0-23.36-generic 3.2.14)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-23-generic root=UUID=6ca41df3-22ad-459f-9231-48372a0dc8fa ro recovery nomodeset
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000bc8eb000 (usable)
[    0.000000]  BIOS-e820: 00000000bc8eb000 - 00000000bcd3c000 (reserved)
[    0.000000]  BIOS-e820: 00000000bcd3c000 - 00000000bcd4c000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bcd4c000 - 00000000bd14a000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bd14a000 - 00000000bd668000 (reserved)
[    0.000000]  BIOS-e820: 00000000bd668000 - 00000000bd669000 (usable)
[    0.000000]  BIOS-e820: 00000000bd669000 - 00000000bd86c000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bd86c000 - 00000000bdc8c000 (usable)
[    0.000000]  BIOS-e820: 00000000bdc8c000 - 00000000bdff4000 (reserved)
[    0.000000]  BIOS-e820: 00000000bdff4000 - 00000000be000000 (usable)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[    0.000000]  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000440000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] EFI v2.31 by American Megatrends
[    0.000000]  ACPI=0xbcd43000  ACPI 2.0=0xbcd43000  SMBIOS=0xf04c0  MPS=0xfd4f0
[    0.000000] Kernel-defined memdesc doesn't match the one from EFI!
[    0.000000] EFI: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000008000) (0MB)
[    0.000000] EFI: mem01: type=7, attr=0xf, range=[0x0000000000008000-0x000000000005f000) (0MB)
[    0.000000] EFI: mem02: type=4, attr=0xf, range=[0x000000000005f000-0x0000000000060000) (0MB)
[    0.000000] EFI: mem03: type=3, attr=0xf, range=[0x0000000000060000-0x00000000000a0000) (0MB)
[    0.000000] EFI: mem04: type=2, attr=0xf, range=[0x0000000000100000-0x00000000005b9000) (4MB)
[    0.000000] EFI: mem05: type=7, attr=0xf, range=[0x00000000005b9000-0x0000000001000000) (10MB)
[    0.000000] EFI: mem06: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001100000) (1MB)
[    0.000000] EFI: mem07: type=7, attr=0xf, range=[0x0000000001100000-0x00000000356e2000) (837MB)
[    0.000000] EFI: mem08: type=2, attr=0xf, range=[0x00000000356e2000-0x00000000356e4000) (0MB)
[    0.000000] EFI: mem09: type=7, attr=0xf, range=[0x00000000356e4000-0x00000000356e6000) (0MB)
[    0.000000] EFI: mem10: type=2, attr=0xf, range=[0x00000000356e6000-0x0000000036b6b000) (20MB)
[    0.000000] EFI: mem11: type=7, attr=0xf, range=[0x0000000036b6b000-0x000000007f018000) (1156MB)
[    0.000000] EFI: mem12: type=2, attr=0xf, range=[0x000000007f018000-0x00000000ab49c000) (708MB)
[    0.000000] EFI: mem13: type=7, attr=0xf, range=[0x00000000ab49c000-0x00000000ab4a2000) (0MB)
[    0.000000] EFI: mem14: type=1, attr=0xf, range=[0x00000000ab4a2000-0x00000000ab4c0000) (0MB)
[    0.000000] EFI: mem15: type=7, attr=0xf, range=[0x00000000ab4c0000-0x00000000b0ec2000) (90MB)
[    0.000000] EFI: mem16: type=4, attr=0xf, range=[0x00000000b0ec2000-0x00000000b0f71000) (0MB)
[    0.000000] EFI: mem17: type=7, attr=0xf, range=[0x00000000b0f71000-0x00000000b0f8e000) (0MB)
[    0.000000] EFI: mem18: type=4, attr=0xf, range=[0x00000000b0f8e000-0x00000000b1019000) (0MB)
[    0.000000] EFI: mem19: type=7, attr=0xf, range=[0x00000000b1019000-0x00000000b101e000) (0MB)
[    0.000000] EFI: mem20: type=4, attr=0xf, range=[0x00000000b101e000-0x00000000bbd35000) (173MB)
[    0.000000] EFI: mem21: type=7, attr=0xf, range=[0x00000000bbd35000-0x00000000bc282000) (5MB)
[    0.000000] EFI: mem22: type=2, attr=0xf, range=[0x00000000bc282000-0x00000000bc286000) (0MB)
[    0.000000] EFI: mem23: type=3, attr=0xf, range=[0x00000000bc286000-0x00000000bc8eb000) (6MB)
[    0.000000] EFI: mem24: type=0, attr=0xf, range=[0x00000000bc8eb000-0x00000000bc9c8000) (0MB)
[    0.000000] EFI: mem25: type=0, attr=0xf, range=[0x00000000bc9c8000-0x00000000bcd3c000) (3MB)
[    0.000000] EFI: mem26: type=9, attr=0xf, range=[0x00000000bcd3c000-0x00000000bcd43000) (0MB)
[    0.000000] EFI: mem27: type=9, attr=0xf, range=[0x00000000bcd43000-0x00000000bcd4c000) (0MB)
[    0.000000] EFI: mem28: type=10, attr=0xf, range=[0x00000000bcd4c000-0x00000000bd01b000) (2MB)
[    0.000000] EFI: mem29: type=10, attr=0xf, range=[0x00000000bd01b000-0x00000000bd14a000) (1MB)
[    0.000000] EFI: mem30: type=6, attr=0x800000000000000f, range=[0x00000000bd14a000-0x00000000bd5a5000) (4MB)
[    0.000000] EFI: mem31: type=6, attr=0x800000000000000f, range=[0x00000000bd5a5000-0x00000000bd5bd000) (0MB)
[    0.000000] EFI: mem32: type=6, attr=0x800000000000000f, range=[0x00000000bd5bd000-0x00000000bd5bf000) (0MB)
[    0.000000] EFI: mem33: type=6, attr=0x800000000000000f, range=[0x00000000bd5bf000-0x00000000bd615000) (0MB)
[    0.000000] EFI: mem34: type=5, attr=0x800000000000000f, range=[0x00000000bd615000-0x00000000bd625000) (0MB)
[    0.000000] EFI: mem35: type=5, attr=0x800000000000000f, range=[0x00000000bd625000-0x00000000bd668000) (0MB)
[    0.000000] EFI: mem36: type=4, attr=0xf, range=[0x00000000bd668000-0x00000000bd669000) (0MB)
[    0.000000] EFI: mem37: type=10, attr=0xf, range=[0x00000000bd669000-0x00000000bd86c000) (2MB)
[    0.000000] EFI: mem38: type=4, attr=0xf, range=[0x00000000bd86c000-0x00000000bd9bc000) (1MB)
[    0.000000] EFI: mem39: type=3, attr=0xf, range=[0x00000000bd9bc000-0x00000000bdc5c000) (2MB)
[    0.000000] EFI: mem40: type=4, attr=0xf, range=[0x00000000bdc5c000-0x00000000bdc6c000) (0MB)
[    0.000000] EFI: mem41: type=3, attr=0xf, range=[0x00000000bdc6c000-0x00000000bdc7e000) (0MB)
[    0.000000] EFI: mem42: type=4, attr=0xf, range=[0x00000000bdc7e000-0x00000000bdc8c000) (0MB)
[    0.000000] EFI: mem43: type=6, attr=0x800000000000000f, range=[0x00000000bdc8c000-0x00000000bdff4000) (3MB)
[    0.000000] EFI: mem44: type=4, attr=0xf, range=[0x00000000bdff4000-0x00000000be000000) (0MB)
[    0.000000] EFI: mem45: type=7, attr=0xf, range=[0x0000000100000000-0x0000000440000000) (13312MB)
[    0.000000] EFI: mem46: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
[    0.000000] EFI: mem47: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] EFI: mem48: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: System manufacturer System Product Name/P9X79 DELUXE, BIOS 2104 08/03/2012
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x440000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask 3FFC00000000 write-back
[    0.000000]   1 base 000400000000 mask 3FFFC0000000 write-back
[    0.000000]   2 base 0000BF000000 mask 3FFFFF000000 uncachable
[    0.000000]   3 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] original variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 16GB, type WB
[    0.000000] reg 1, base: 16GB, range: 1GB, type WB
[    0.000000] reg 2, base: 3056MB, range: 16MB, type UC
[    0.000000] reg 3, base: 3GB, range: 1GB, type UC
[    0.000000] total RAM covered: 16368M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K chunk_size: 32M num_reg: 6   lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2GB, range: 1GB, type WB
[    0.000000] reg 2, base: 3056MB, range: 16MB, type UC
[    0.000000] reg 3, base: 4GB, range: 4GB, type WB
[    0.000000] reg 4, base: 8GB, range: 8GB, type WB
[    0.000000] reg 5, base: 16GB, range: 1GB, type WB
[    0.000000] e820 update range: 00000000bf000000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xbe000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000fd940] fd940
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000be000000
[    0.000000]  0000000000 - 0080000000 page 1G
[    0.000000]  0080000000 - 00be000000 page 2M
[    0.000000] kernel direct mapping tables up to be000000 @ 1fffe000-20000000
[    0.000000] init_memory_mapping: 0000000100000000-0000000440000000
[    0.000000]  0100000000 - 0440000000 page 1G
[    0.000000] kernel direct mapping tables up to 440000000 @ bc285000-bc286000
[    0.000000] RAMDISK: 356e6000 - 36b6b000
[    0.000000] ACPI: RSDP 00000000bcd43000 00024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 00000000bcd43070 0005C (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 00000000bcd4b0a0 0010C (v05 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI Warning: FADT (revision 5) is longer than ACPI 2.0 version, truncating length 268 to 244 (20110623/tbfadt-288)
[    0.000000] ACPI: DSDT 00000000bcd43168 07F32 (v02 ALASKA    A M I 00000010 INTL 20051117)
[    0.000000] ACPI: FACS 00000000bd141080 00040
[    0.000000] ACPI: APIC 00000000bcd4b1b0 000C8 (v03 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 00000000bcd4b278 00044 (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 00000000bcd4b2c0 001D6 (v01 AMICPU     PROC 00000001 MSFT 03000001)
[    0.000000] ACPI: MCFG 00000000bcd4b498 0003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 00000000bcd4b4d8 00038 (v01 ALASKA    A M I 01072009 AMI. 00000005)
[    0.000000] ACPI: BGRT 00000000bcd4b568 00038 (v00 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000440000000
[    0.000000] Initmem setup node 0 0000000000000000-0000000440000000
[    0.000000]   NODE_DATA [000000043fffb000 - 000000043fffffff]
[    0.000000]  [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042f600000-ffff88043f5fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00440000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[6] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x000000a0
[    0.000000]     0: 0x00000100 -> 0x000bc8eb
[    0.000000]     0: 0x000bd668 -> 0x000bd669
[    0.000000]     0: 0x000bd86c -> 0x000bdc8c
[    0.000000]     0: 0x000bdff4 -> 0x000be000
[    0.000000]     0: 0x00100000 -> 0x00440000
[    0.000000] On node 0 totalpages: 4181160
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 8 pages reserved
[    0.000000]   DMA zone: 3912 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 752984 pages, LIFO batch:31
[    0.000000]   Normal zone: 53248 pages used for memmap
[    0.000000]   Normal zone: 3354624 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 64
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000bc8eb000 - 00000000bcd3c000
[    0.000000] PM: Registered nosave memory: 00000000bcd3c000 - 00000000bcd4c000
[    0.000000] PM: Registered nosave memory: 00000000bcd4c000 - 00000000bd14a000
[    0.000000] PM: Registered nosave memory: 00000000bd14a000 - 00000000bd668000
[    0.000000] PM: Registered nosave memory: 00000000bd669000 - 00000000bd86c000
[    0.000000] PM: Registered nosave memory: 00000000bdc8c000 - 00000000bdff4000
[    0.000000] PM: Registered nosave memory: 00000000be000000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000ff000000
[    0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at be000000 (gap: be000000:22000000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88043fc00000 s83072 r8192 d23424 u262144
[    0.000000] pcpu-alloc: s83072 r8192 d23424 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 4111520
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-23-generic root=UUID=6ca41df3-22ad-459f-9231-48372a0dc8fa ro recovery nomodeset
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 16169364k/17825792k available (6566k kernel code, 1101152k absent, 555276k reserved, 6637k data, 920k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:16640 nr_irqs:1152 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 134217728 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.004000] Detected 3601.814 MHz processor.
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 7203.62 BogoMIPS (lpj=14407256)
[    0.000007] pid_max: default: 32768 minimum: 301
[    0.053576] Security Framework initialized
[    0.053586] AppArmor: AppArmor initialized
[    0.053588] Yama: becoming mindful.
[    0.054526] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.056971] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.057966] Mount-cache hash table entries: 256
[    0.058046] Initializing cgroup subsys cpuacct
[    0.058051] Initializing cgroup subsys memory
[    0.058056] Initializing cgroup subsys devices
[    0.058059] Initializing cgroup subsys freezer
[    0.058061] Initializing cgroup subsys blkio
[    0.058065] Initializing cgroup subsys perf_event
[    0.058085] CPU: Physical Processor ID: 0
[    0.058086] CPU: Processor Core ID: 0
[    0.058091] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.058091] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.058096] mce: CPU supports 16 MCE banks
[    0.058114] CPU0: Thermal monitoring enabled (TM1)
[    0.058127] using mwait in idle threads.
[    0.059844] ACPI: Core revision 20110623
[    0.260134] ftrace: allocating 27049 entries in 107 pages
[    0.267092] x2apic not enabled, IRQ remapping init failed
[    0.267562] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.307204] CPU0: Intel(R) Core(TM) i7-3820 CPU @ 3.60GHz stepping 07
[    0.413022] Performance Events: PEBS fmt1+, SandyBridge events, Intel PMU driver.
[    0.413028] ... version:                3
[    0.413029] ... bit width:              48
[    0.413031] ... generic registers:      4
[    0.413032] ... value mask:             0000ffffffffffff
[    0.413034] ... max period:             000000007fffffff
[    0.413035] ... fixed-purpose events:   3
[    0.413037] ... event mask:             000000070000000f
[    0.413155] NMI watchdog enabled, takes one hw-pmu counter.
[    0.413205] Booting Node   0, Processors  #1
[    0.413207] smpboot cpu 1: start_ip = 99000
[    0.521007] TSC synchronization [CPU#0 -> CPU#1]:
[    0.521012] Measured 26705540403276 cycles TSC warp between CPUs, turning off TSC clock.
[    0.008000] Marking TSC unstable due to check_tsc_sync_source failed
[    0.208031] NMI watchdog enabled, takes one hw-pmu counter.
[    0.208096]  #2
[    0.208097] smpboot cpu 2: start_ip = 99000
[    0.296138] NMI watchdog enabled, takes one hw-pmu counter.
[    0.296203]  #3
[    0.296204] smpboot cpu 3: start_ip = 99000
[    0.384144] NMI watchdog enabled, takes one hw-pmu counter.
[    0.384207]  #4
[    0.384208] smpboot cpu 4: start_ip = 99000
[    0.472124] NMI watchdog enabled, takes one hw-pmu counter.
[    0.472198]  #5
[    0.472199] smpboot cpu 5: start_ip = 99000
[    0.560132] NMI watchdog enabled, takes one hw-pmu counter.
[    0.560197]  #6
[    0.560198] smpboot cpu 6: start_ip = 99000
[    0.648129] NMI watchdog enabled, takes one hw-pmu counter.
[    0.648194]  #7 Ok.
[    0.648195] smpboot cpu 7: start_ip = 99000
[    0.736127] NMI watchdog enabled, takes one hw-pmu counter.
[    0.736155] Brought up 8 CPUs
[    0.736157] Total of 8 processors activated (57630.16 BogoMIPS).
[    0.744046] devtmpfs: initialized
[    0.744766] EVM: security.selinux
[    0.744768] EVM: security.SMACK64
[    0.744769] EVM: security.capability
[    0.744782] PM: Registering ACPI NVS region at bcd4c000 (4186112 bytes)
[    0.744782] PM: Registering ACPI NVS region at bd669000 (2109440 bytes)
[    0.744782] print_constraints: dummy:
[    0.744782] RTC time: 23:13:46, date: 03/09/13
[    0.744782] NET: Registered protocol family 16
[    0.745276] Trying to unpack rootfs image as initramfs...
[    0.744782] ACPI: bus type pci registered
[    0.744782] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.744782] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.774753] PCI: Using configuration type 1 for base access
[    0.775383] bio: create slab <bio-0> at 0
[    0.775383] ACPI: Added _OSI(Module Device)
[    0.775383] ACPI: Added _OSI(Processor Device)
[    0.775383] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.775383] ACPI: Added _OSI(Processor Aggregator Device)
[    0.776125] ACPI: EC: Look up EC in DSDT
[    0.776698] ACPI: Executed 1 blocks of module-level executable AML code
[    0.778127] ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110623/psargs-359)
[    0.778132] ACPI Exception: AE_NOT_FOUND, Could not execute arguments for [RAMW] (Region) (20110623/nsinit-349)
[    0.778299] ACPI: SSDT 00000000bd140818 0079C (v01    AMI      IST 00000001 MSFT 03000001)
[    0.778525] ACPI: Dynamic OEM Table Load:
[    0.778528] ACPI: SSDT           (null) 0079C (v01    AMI      IST 00000001 MSFT 03000001)
[    0.778558] ACPI: SSDT 00000000bd13fc18 00294 (v01    AMI      CST 00000001 MSFT 03000001)
[    0.778729] ACPI: Dynamic OEM Table Load:
[    0.778732] ACPI: SSDT           (null) 00294 (v01    AMI      CST 00000001 MSFT 03000001)
[    0.779182] ACPI: Interpreter enabled
[    0.779185] ACPI: (supports S0 S3 S4 S5)
[    0.779196] ACPI: Using IOAPIC for interrupt routing
[    0.782058] ACPI: EC: GPE = 0x1e, I/O: command/status = 0x66, data = 0x62
[    0.782146] ACPI: No dock devices found.
[    0.782148] HEST: Table not found.
[    0.782151] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.782286] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.782414] pci_root PNP0A08:00: host bridge window [io  0x0000-0x03af]
[    0.782417] pci_root PNP0A08:00: host bridge window [io  0x03e0-0x0cf7]
[    0.782419] pci_root PNP0A08:00: host bridge window [io  0x03b0-0x03df]
[    0.782421] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.782424] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.782426] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
[    0.782429] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfbffffff]
[    0.782442] pci 0000:00:00.0: [8086:3c00] type 0 class 0x000600
[    0.782489] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    0.782492] pci 0000:00:00.0: PME# disabled
[    0.782512] pci 0000:00:01.0: [8086:3c02] type 1 class 0x000604
[    0.782566] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.782569] pci 0000:00:01.0: PME# disabled
[    0.782594] pci 0000:00:02.0: [8086:3c04] type 1 class 0x000604
[    0.782648] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.782651] pci 0000:00:02.0: PME# disabled
[    0.782675] pci 0000:00:03.0: [8086:3c08] type 1 class 0x000604
[    0.782729] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.782732] pci 0000:00:03.0: PME# disabled
[    0.782753] pci 0000:00:03.2: [8086:3c0a] type 1 class 0x000604
[    0.782808] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    0.782810] pci 0000:00:03.2: PME# disabled
[    0.782832] pci 0000:00:05.0: [8086:3c28] type 0 class 0x000880
[    0.782895] pci 0000:00:05.2: [8086:3c2a] type 0 class 0x000880
[    0.782957] pci 0000:00:05.4: [8086:3c2c] type 0 class 0x000800
[    0.782967] pci 0000:00:05.4: reg 10: [mem 0xfb72a000-0xfb72afff]
[    0.783032] pci 0000:00:11.0: [8086:1d3e] type 1 class 0x000604
[    0.783111] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    0.783114] pci 0000:00:11.0: PME# disabled
[    0.783141] pci 0000:00:16.0: [8086:1d3a] type 0 class 0x000780
[    0.783161] pci 0000:00:16.0: reg 10: [mem 0xfb729000-0xfb72900f 64bit]
[    0.783228] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.783231] pci 0000:00:16.0: PME# disabled
[    0.783255] pci 0000:00:19.0: [8086:1503] type 0 class 0x000200
[    0.783270] pci 0000:00:19.0: reg 10: [mem 0xfb700000-0xfb71ffff]
[    0.783277] pci 0000:00:19.0: reg 14: [mem 0xfb728000-0xfb728fff]
[    0.783284] pci 0000:00:19.0: reg 18: [io  0xf040-0xf05f]
[    0.783338] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.783341] pci 0000:00:19.0: PME# disabled
[    0.783360] pci 0000:00:1a.0: [8086:1d2d] type 0 class 0x000c03
[    0.783378] pci 0000:00:1a.0: reg 10: [mem 0xfb727000-0xfb7273ff]
[    0.783458] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.783462] pci 0000:00:1a.0: PME# disabled
[    0.783481] pci 0000:00:1b.0: [8086:1d20] type 0 class 0x000403
[    0.783493] pci 0000:00:1b.0: reg 10: [mem 0xfb720000-0xfb723fff 64bit]
[    0.783552] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.783554] pci 0000:00:1b.0: PME# disabled
[    0.783571] pci 0000:00:1c.0: [8086:1d10] type 1 class 0x000604
[    0.783641] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.783644] pci 0000:00:1c.0: PME# disabled
[    0.783664] pci 0000:00:1c.1: [8086:1d12] type 1 class 0x000604
[    0.783733] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.783736] pci 0000:00:1c.1: PME# disabled
[    0.783755] pci 0000:00:1c.2: [8086:1d14] type 1 class 0x000604
[    0.783826] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.783829] pci 0000:00:1c.2: PME# disabled
[    0.783849] pci 0000:00:1c.3: [8086:1d16] type 1 class 0x000604
[    0.783919] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.783922] pci 0000:00:1c.3: PME# disabled
[    0.783941] pci 0000:00:1c.4: [8086:1d18] type 1 class 0x000604
[    0.784011] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.784014] pci 0000:00:1c.4: PME# disabled
[    0.784033] pci 0000:00:1c.5: [8086:1d1a] type 1 class 0x000604
[    0.784111] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.784114] pci 0000:00:1c.5: PME# disabled
[    0.784135] pci 0000:00:1c.7: [8086:1d1e] type 1 class 0x000604
[    0.784206] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    0.784209] pci 0000:00:1c.7: PME# disabled
[    0.784232] pci 0000:00:1d.0: [8086:1d26] type 0 class 0x000c03
[    0.784250] pci 0000:00:1d.0: reg 10: [mem 0xfb726000-0xfb7263ff]
[    0.784330] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.784333] pci 0000:00:1d.0: PME# disabled
[    0.784348] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[    0.784402] pci 0000:00:1f.0: [8086:1d41] type 0 class 0x000601
[    0.784512] pci 0000:00:1f.2: [8086:1d02] type 0 class 0x000106
[    0.784527] pci 0000:00:1f.2: reg 10: [io  0xf090-0xf097]
[    0.784534] pci 0000:00:1f.2: reg 14: [io  0xf080-0xf083]
[    0.784540] pci 0000:00:1f.2: reg 18: [io  0xf070-0xf077]
[    0.784546] pci 0000:00:1f.2: reg 1c: [io  0xf060-0xf063]
[    0.784553] pci 0000:00:1f.2: reg 20: [io  0xf020-0xf03f]
[    0.784559] pci 0000:00:1f.2: reg 24: [mem 0xfb725000-0xfb7257ff]
[    0.784597] pci 0000:00:1f.2: PME# supported from D3hot
[    0.784599] pci 0000:00:1f.2: PME# disabled
[    0.784613] pci 0000:00:1f.3: [8086:1d22] type 0 class 0x000c05
[    0.784625] pci 0000:00:1f.3: reg 10: [mem 0xfb724000-0xfb7240ff 64bit]
[    0.784643] pci 0000:00:1f.3: reg 20: [io  0xf000-0xf01f]
[    0.784697] pci 0000:00:01.0: PCI bridge to [bus 04-04]
[    0.784736] pci 0000:00:02.0: PCI bridge to [bus 01-01]
[    0.784782] pci 0000:02:00.0: [10de:0f00] type 0 class 0x000300
[    0.784789] pci 0000:02:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
[    0.784796] pci 0000:02:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.784804] pci 0000:02:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.784809] pci 0000:02:00.0: reg 24: [io  0xe000-0xe07f]
[    0.784814] pci 0000:02:00.0: reg 30: [mem 0xfb000000-0xfb07ffff pref]
[    0.784854] pci 0000:02:00.1: [10de:0bea] type 0 class 0x000403
[    0.784860] pci 0000:02:00.1: reg 10: [mem 0xfb080000-0xfb083fff]
[    0.792061] pci 0000:00:03.0: PCI bridge to [bus 02-02]
[    0.792064] pci 0000:00:03.0:   bridge window [io  0xe000-0xefff]
[    0.792067] pci 0000:00:03.0:   bridge window [mem 0xfa000000-0xfb0fffff]
[    0.792071] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.792104] pci 0000:00:03.2: PCI bridge to [bus 03-03]
[    0.792154] pci 0000:00:11.0: PCI bridge to [bus 05-05]
[    0.792227] pci 0000:06:00.0: [1b21:1042] type 0 class 0x000c03
[    0.792254] pci 0000:06:00.0: reg 10: [mem 0xfb600000-0xfb607fff 64bit]
[    0.792393] pci 0000:06:00.0: PME# supported from D3hot D3cold
[    0.792398] pci 0000:06:00.0: PME# disabled
[    0.800063] pci 0000:00:1c.0: PCI bridge to [bus 06-06]
[    0.800069] pci 0000:00:1c.0:   bridge window [mem 0xfb600000-0xfb6fffff]
[    0.800137] pci 0000:07:00.0: [1b21:1042] type 0 class 0x000c03
[    0.800165] pci 0000:07:00.0: reg 10: [mem 0xfb500000-0xfb507fff 64bit]
[    0.800304] pci 0000:07:00.0: PME# supported from D3hot D3cold
[    0.800309] pci 0000:07:00.0: PME# disabled
[    0.808064] pci 0000:00:1c.1: PCI bridge to [bus 07-07]
[    0.808070] pci 0000:00:1c.1:   bridge window [mem 0xfb500000-0xfb5fffff]
[    0.808140] pci 0000:08:00.0: [1b21:1042] type 0 class 0x000c03
[    0.808167] pci 0000:08:00.0: reg 10: [mem 0xfb400000-0xfb407fff 64bit]
[    0.808307] pci 0000:08:00.0: PME# supported from D3hot D3cold
[    0.808312] pci 0000:08:00.0: PME# disabled
[    0.816066] pci 0000:00:1c.2: PCI bridge to [bus 08-08]
[    0.816072] pci 0000:00:1c.2:   bridge window [mem 0xfb400000-0xfb4fffff]
[    0.816136] pci 0000:09:00.0: [168c:002b] type 0 class 0x000280
[    0.816161] pci 0000:09:00.0: reg 10: [mem 0xfb300000-0xfb30ffff 64bit]
[    0.816283] pci 0000:09:00.0: supports D1
[    0.816284] pci 0000:09:00.0: PME# supported from D0 D1 D3hot D3cold
[    0.816288] pci 0000:09:00.0: PME# disabled
[    0.824065] pci 0000:00:1c.3: PCI bridge to [bus 09-09]
[    0.824071] pci 0000:00:1c.3:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.824136] pci 0000:0a:00.0: [1b21:0612] type 0 class 0x000106
[    0.824153] pci 0000:0a:00.0: reg 10: [io  0xd050-0xd057]
[    0.824166] pci 0000:0a:00.0: reg 14: [io  0xd040-0xd043]
[    0.824178] pci 0000:0a:00.0: reg 18: [io  0xd030-0xd037]
[    0.824191] pci 0000:0a:00.0: reg 1c: [io  0xd020-0xd023]
[    0.824203] pci 0000:0a:00.0: reg 20: [io  0xd000-0xd01f]
[    0.824215] pci 0000:0a:00.0: reg 24: [mem 0xfb200000-0xfb2001ff]
[    0.832065] pci 0000:00:1c.4: PCI bridge to [bus 0a-0a]
[    0.832069] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
[    0.832072] pci 0000:00:1c.4:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.832136] pci 0000:0b:00.0: [10ec:8168] type 0 class 0x000200
[    0.832155] pci 0000:0b:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.832188] pci 0000:0b:00.0: reg 18: [mem 0xd2104000-0xd2104fff 64bit pref]
[    0.832208] pci 0000:0b:00.0: reg 20: [mem 0xd2100000-0xd2103fff 64bit pref]
[    0.832295] pci 0000:0b:00.0: supports D1 D2
[    0.832296] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.832301] pci 0000:0b:00.0: PME# disabled
[    0.840067] pci 0000:00:1c.5: PCI bridge to [bus 0b-0b]
[    0.840071] pci 0000:00:1c.5:   bridge window [io  0xc000-0xcfff]
[    0.840078] pci 0000:00:1c.5:   bridge window [mem 0xd2100000-0xd21fffff 64bit pref]
[    0.840135] pci 0000:0c:00.0: [1b4b:9130] type 0 class 0x000106
[    0.840151] pci 0000:0c:00.0: reg 10: [io  0xb040-0xb047]
[    0.840163] pci 0000:0c:00.0: reg 14: [io  0xb030-0xb033]
[    0.840174] pci 0000:0c:00.0: reg 18: [io  0xb020-0xb027]
[    0.840185] pci 0000:0c:00.0: reg 1c: [io  0xb010-0xb013]
[    0.840197] pci 0000:0c:00.0: reg 20: [io  0xb000-0xb00f]
[    0.840208] pci 0000:0c:00.0: reg 24: [mem 0xfb110000-0xfb1107ff]
[    0.840220] pci 0000:0c:00.0: reg 30: [mem 0xfb100000-0xfb10ffff pref]
[    0.840274] pci 0000:0c:00.0: PME# supported from D3hot
[    0.840278] pci 0000:0c:00.0: PME# disabled
[    0.848065] pci 0000:00:1c.7: PCI bridge to [bus 0c-0c]
[    0.848069] pci 0000:00:1c.7:   bridge window [io  0xb000-0xbfff]
[    0.848072] pci 0000:00:1c.7:   bridge window [mem 0xfb100000-0xfb1fffff]
[    0.848128] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d] (subtractive decode)
[    0.848137] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af] (subtractive decode)
[    0.848139] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7] (subtractive decode)
[    0.848140] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df] (subtractive decode)
[    0.848143] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.848144] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.848146] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.848147] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfbffffff] (subtractive decode)
[    0.848198] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.848297] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE1._PRT]
[    0.848315] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT]
[    0.848331] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT]
[    0.848345] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE9._PRT]
[    0.848363] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
[    0.848381] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
[    0.848395] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2._PRT]
[    0.848410] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
[    0.848424] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
[    0.848438] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX5._PRT]
[    0.848454] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX7._PRT]
[    0.848524]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.848648]  pci0000:00: ACPI _OSC control (0x10) granted
[    0.852845] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus ff])
[    0.852883] pci 0000:ff:08.0: [8086:3c80] type 0 class 0x000880
[    0.852913] pci 0000:ff:08.3: [8086:3c83] type 0 class 0x000880
[    0.852948] pci 0000:ff:08.4: [8086:3c84] type 0 class 0x000880
[    0.852990] pci 0000:ff:09.0: [8086:3c90] type 0 class 0x000880
[    0.853018] pci 0000:ff:09.3: [8086:3c93] type 0 class 0x000880
[    0.853052] pci 0000:ff:09.4: [8086:3c94] type 0 class 0x000880
[    0.853094] pci 0000:ff:0a.0: [8086:3cc0] type 0 class 0x000880
[    0.853114] pci 0000:ff:0a.1: [8086:3cc1] type 0 class 0x000880
[    0.853134] pci 0000:ff:0a.2: [8086:3cc2] type 0 class 0x000880
[    0.853154] pci 0000:ff:0a.3: [8086:3cd0] type 0 class 0x000880
[    0.853175] pci 0000:ff:0b.0: [8086:3ce0] type 0 class 0x000880
[    0.853193] pci 0000:ff:0b.3: [8086:3ce3] type 0 class 0x000880
[    0.853211] pci 0000:ff:0c.0: [8086:3ce8] type 0 class 0x000880
[    0.853229] pci 0000:ff:0c.1: [8086:3ce8] type 0 class 0x000880
[    0.853249] pci 0000:ff:0c.6: [8086:3cf4] type 0 class 0x000880
[    0.853267] pci 0000:ff:0c.7: [8086:3cf6] type 0 class 0x000880
[    0.853284] pci 0000:ff:0d.0: [8086:3ce8] type 0 class 0x000880
[    0.853302] pci 0000:ff:0d.1: [8086:3ce8] type 0 class 0x000880
[    0.853321] pci 0000:ff:0d.6: [8086:3cf5] type 0 class 0x000880
[    0.853340] pci 0000:ff:0e.0: [8086:3ca0] type 0 class 0x000880
[    0.853360] pci 0000:ff:0e.1: [8086:3c46] type 0 class 0x001101
[    0.853384] pci 0000:ff:0f.0: [8086:3ca8] type 0 class 0x000880
[    0.853416] pci 0000:ff:0f.1: [8086:3c71] type 0 class 0x000880
[    0.853445] pci 0000:ff:0f.2: [8086:3caa] type 0 class 0x000880
[    0.853475] pci 0000:ff:0f.3: [8086:3cab] type 0 class 0x000880
[    0.853505] pci 0000:ff:0f.4: [8086:3cac] type 0 class 0x000880
[    0.853536] pci 0000:ff:0f.5: [8086:3cad] type 0 class 0x000880
[    0.853564] pci 0000:ff:0f.6: [8086:3cae] type 0 class 0x000880
[    0.853589] pci 0000:ff:10.0: [8086:3cb0] type 0 class 0x000880
[    0.853620] pci 0000:ff:10.1: [8086:3cb1] type 0 class 0x000880
[    0.853651] pci 0000:ff:10.2: [8086:3cb2] type 0 class 0x000880
[    0.853681] pci 0000:ff:10.3: [8086:3cb3] type 0 class 0x000880
[    0.853711] pci 0000:ff:10.4: [8086:3cb4] type 0 class 0x000880
[    0.853741] pci 0000:ff:10.5: [8086:3cb5] type 0 class 0x000880
[    0.853771] pci 0000:ff:10.6: [8086:3cb6] type 0 class 0x000880
[    0.853801] pci 0000:ff:10.7: [8086:3cb7] type 0 class 0x000880
[    0.853830] pci 0000:ff:11.0: [8086:3cb8] type 0 class 0x000880
[    0.853856] pci 0000:ff:13.0: [8086:3ce4] type 0 class 0x000880
[    0.853875] pci 0000:ff:13.1: [8086:3c43] type 0 class 0x001101
[    0.853894] pci 0000:ff:13.4: [8086:3ce6] type 0 class 0x001101
[    0.853912] pci 0000:ff:13.5: [8086:3c44] type 0 class 0x001101
[    0.853930] pci 0000:ff:13.6: [8086:3c45] type 0 class 0x000880
[    0.853954]  pci0000:ff: Requesting ACPI _OSC control (0x1d)
[    0.853957]  pci0000:ff: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.853959] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.854470] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.854498] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.854524] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 11 12 14 *15)
[    0.854549] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    0.854577] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.854603] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.854629] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.854655] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.854714] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.854714] vgaarb: loaded
[    0.854714] vgaarb: bridge control possible 0000:02:00.0
[    0.854714] i2c-core: driver [aat2870] using legacy suspend method
[    0.854714] i2c-core: driver [aat2870] using legacy resume method
[    0.854714] SCSI subsystem initialized
[    0.854734] libata version 3.00 loaded.
[    0.854734] usbcore: registered new interface driver usbfs
[    0.854734] usbcore: registered new interface driver hub
[    0.854734] usbcore: registered new device driver usb
[    0.854734] PCI: Using ACPI for IRQ routing
[    0.860418] PCI: pci_cache_line_size set to 64 bytes
[    0.860555] reserve RAM buffer: 00000000bc8eb000 - 00000000bfffffff
[    0.860557] reserve RAM buffer: 00000000bd669000 - 00000000bfffffff
[    0.860559] reserve RAM buffer: 00000000bdc8c000 - 00000000bfffffff
[    0.860560] reserve RAM buffer: 00000000be000000 - 00000000bfffffff
[    0.860618] NetLabel: Initializing
[    0.860620] NetLabel:  domain hash size = 128
[    0.860622] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.860630] NetLabel:  unlabeled traffic allowed by default
[    0.860641] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.860641] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.862095] Switching to clocksource hpet
[    0.863654] AppArmor: AppArmor Filesystem Enabled
[    0.863669] pnp: PnP ACPI init
[    0.863678] ACPI: bus type pnp registered
[    0.863773] pnp 00:00: [bus 00-fe]
[    0.863774] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.863776] pnp 00:00: [io  0x0000-0x03af window]
[    0.863777] pnp 00:00: [io  0x03e0-0x0cf7 window]
[    0.863778] pnp 00:00: [io  0x03b0-0x03df window]
[    0.863779] pnp 00:00: [io  0x0d00-0xffff window]
[    0.863780] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.863781] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    0.863783] pnp 00:00: [mem 0xc0000000-0xfbffffff window]
[    0.863784] pnp 00:00: [mem 0x00000000 window]
[    0.863826] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.863833] pnp 00:01: [mem 0xfc000000-0xfcffffff]
[    0.863834] pnp 00:01: [mem 0xfd000000-0xfdffffff]
[    0.863835] pnp 00:01: [mem 0xfe000000-0xfeafffff]
[    0.863836] pnp 00:01: [mem 0xfbfff000-0xfbffffff]
[    0.863837] pnp 00:01: [mem 0xfeb00000-0xfebfffff]
[    0.863838] pnp 00:01: [mem 0xfed00400-0xfed3ffff]
[    0.863839] pnp 00:01: [mem 0xfed45000-0xfedfffff]
[    0.863882] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved
[    0.863885] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved
[    0.863887] system 00:01: [mem 0xfe000000-0xfeafffff] has been reserved
[    0.863889] system 00:01: [mem 0xfbfff000-0xfbffffff] has been reserved
[    0.863893] system 00:01: [mem 0xfeb00000-0xfebfffff] has been reserved
[    0.863895] system 00:01: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    0.863898] system 00:01: [mem 0xfed45000-0xfedfffff] has been reserved
[    0.863900] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.863943] pnp 00:02: [io  0x0000-0xffffffffffffffff disabled]
[    0.863944] pnp 00:02: [io  0x0000-0xffffffffffffffff disabled]
[    0.863946] pnp 00:02: [io  0x0290-0x029f]
[    0.863947] pnp 00:02: [io  0x0000-0xffffffffffffffff disabled]
[    0.863980] system 00:02: [io  0x0290-0x029f] has been reserved
[    0.863983] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.863990] pnp 00:03: [dma 4]
[    0.863991] pnp 00:03: [io  0x0000-0x000f]
[    0.863992] pnp 00:03: [io  0x0081-0x0083]
[    0.863993] pnp 00:03: [io  0x0087]
[    0.863994] pnp 00:03: [io  0x0089-0x008b]
[    0.863995] pnp 00:03: [io  0x008f]
[    0.863996] pnp 00:03: [io  0x00c0-0x00df]
[    0.864020] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.864026] pnp 00:04: [io  0x0070-0x0071]
[    0.864033] pnp 00:04: [irq 8]
[    0.864045] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.864049] pnp 00:05: [io  0x0061]
[    0.864060] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.864074] pnp 00:06: [io  0x0010-0x001f]
[    0.864075] pnp 00:06: [io  0x0022-0x003f]
[    0.864076] pnp 00:06: [io  0x0044-0x005f]
[    0.864077] pnp 00:06: [io  0x0063]
[    0.864078] pnp 00:06: [io  0x0065]
[    0.864078] pnp 00:06: [io  0x0067-0x006f]
[    0.864079] pnp 00:06: [io  0x0072-0x007f]
[    0.864080] pnp 00:06: [io  0x0080]
[    0.864081] pnp 00:06: [io  0x0084-0x0086]
[    0.864083] pnp 00:06: [io  0x0088]
[    0.864084] pnp 00:06: [io  0x008c-0x008e]
[    0.864085] pnp 00:06: [io  0x0090-0x009f]
[    0.864086] pnp 00:06: [io  0x00a2-0x00bf]
[    0.864087] pnp 00:06: [io  0x00e0-0x00ef]
[    0.864088] pnp 00:06: [io  0x04d0-0x04d1]
[    0.864124] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.864127] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.864132] pnp 00:07: [io  0x00f0-0x00ff]
[    0.864136] pnp 00:07: [irq 13]
[    0.864147] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.864241] pnp 00:08: [io  0x0400-0x0453]
[    0.864242] pnp 00:08: [io  0x0458-0x047f]
[    0.864243] pnp 00:08: [io  0x1180-0x119f]
[    0.864244] pnp 00:08: [io  0x0500-0x057f]
[    0.864245] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
[    0.864246] pnp 00:08: [mem 0xfec00000-0xfecfffff]
[    0.864247] pnp 00:08: [mem 0xfed08000-0xfed08fff]
[    0.864248] pnp 00:08: [mem 0xff000000-0xffffffff]
[    0.864282] system 00:08: [io  0x0400-0x0453] has been reserved
[    0.864285] system 00:08: [io  0x0458-0x047f] has been reserved
[    0.864287] system 00:08: [io  0x1180-0x119f] has been reserved
[    0.864289] system 00:08: [io  0x0500-0x057f] has been reserved
[    0.864292] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.864294] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.864296] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    0.864299] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    0.864301] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.864321] pnp 00:09: [io  0x0454-0x0457]
[    0.864352] system 00:09: [io  0x0454-0x0457] has been reserved
[    0.864355] system 00:09: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.864419] pnp 00:0a: [mem 0xfed00000-0xfed003ff]
[    0.864440] pnp 00:0a: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.864458] pnp 00:0b: [bus ff]
[    0.864480] pnp 00:0b: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.864554] pnp: PnP ACPI: found 12 devices
[    0.864556] ACPI: ACPI bus type pnp unregistered
[    0.870420] PCI: max bus depth: 1 pci_try_num: 2
[    0.870497] pci 0000:00:01.0: PCI bridge to [bus 04-04]
[    0.870506] pci 0000:00:02.0: PCI bridge to [bus 01-01]
[    0.870515] pci 0000:00:03.0: PCI bridge to [bus 02-02]
[    0.870517] pci 0000:00:03.0:   bridge window [io  0xe000-0xefff]
[    0.870522] pci 0000:00:03.0:   bridge window [mem 0xfa000000-0xfb0fffff]
[    0.870525] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.870531] pci 0000:00:03.2: PCI bridge to [bus 03-03]
[    0.870539] pci 0000:00:11.0: PCI bridge to [bus 05-05]
[    0.870550] pci 0000:00:1c.0: PCI bridge to [bus 06-06]
[    0.870555] pci 0000:00:1c.0:   bridge window [mem 0xfb600000-0xfb6fffff]
[    0.870563] pci 0000:00:1c.1: PCI bridge to [bus 07-07]
[    0.870567] pci 0000:00:1c.1:   bridge window [mem 0xfb500000-0xfb5fffff]
[    0.870575] pci 0000:00:1c.2: PCI bridge to [bus 08-08]
[    0.870580] pci 0000:00:1c.2:   bridge window [mem 0xfb400000-0xfb4fffff]
[    0.870587] pci 0000:00:1c.3: PCI bridge to [bus 09-09]
[    0.870592] pci 0000:00:1c.3:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.870599] pci 0000:00:1c.4: PCI bridge to [bus 0a-0a]
[    0.870602] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
[    0.870607] pci 0000:00:1c.4:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.870615] pci 0000:00:1c.5: PCI bridge to [bus 0b-0b]
[    0.870617] pci 0000:00:1c.5:   bridge window [io  0xc000-0xcfff]
[    0.870624] pci 0000:00:1c.5:   bridge window [mem 0xd2100000-0xd21fffff 64bit pref]
[    0.870630] pci 0000:00:1c.7: PCI bridge to [bus 0c-0c]
[    0.870633] pci 0000:00:1c.7:   bridge window [io  0xb000-0xbfff]
[    0.870638] pci 0000:00:1c.7:   bridge window [mem 0xfb100000-0xfb1fffff]
[    0.870645] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d]
[    0.870666] pci 0000:00:01.0: PCI INT A -> GSI 27 (level, low) -> IRQ 27
[    0.870670] pci 0000:00:01.0: setting latency timer to 64
[    0.870678] pci 0000:00:02.0: PCI INT A -> GSI 33 (level, low) -> IRQ 33
[    0.870681] pci 0000:00:02.0: setting latency timer to 64
[    0.870688] pci 0000:00:03.0: PCI INT A -> GSI 41 (level, low) -> IRQ 41
[    0.870691] pci 0000:00:03.0: setting latency timer to 64
[    0.870695] pci 0000:00:03.2: PCI INT A -> GSI 41 (level, low) -> IRQ 41
[    0.870699] pci 0000:00:03.2: setting latency timer to 64
[    0.870705] pci 0000:00:11.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.870709] pci 0000:00:11.0: setting latency timer to 64
[    0.870716] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.870720] pci 0000:00:1c.0: setting latency timer to 64
[    0.870724] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    0.870728] pci 0000:00:1c.1: setting latency timer to 64
[    0.870736] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.870740] pci 0000:00:1c.2: setting latency timer to 64
[    0.870746] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.870750] pci 0000:00:1c.3: setting latency timer to 64
[    0.870755] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.870759] pci 0000:00:1c.4: setting latency timer to 64
[    0.870763] pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    0.870767] pci 0000:00:1c.5: setting latency timer to 64
[    0.870772] pci 0000:00:1c.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.870776] pci 0000:00:1c.7: setting latency timer to 64
[    0.870780] pci 0000:00:1e.0: setting latency timer to 64
[    0.870783] pci_bus 0000:00: resource 4 [io  0x0000-0x03af]
[    0.870785] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
[    0.870786] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
[    0.870787] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff]
[    0.870788] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
[    0.870789] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
[    0.870791] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfbffffff]
[    0.870792] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.870793] pci_bus 0000:02: resource 1 [mem 0xfa000000-0xfb0fffff]
[    0.870795] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.870796] pci_bus 0000:06: resource 1 [mem 0xfb600000-0xfb6fffff]
[    0.870798] pci_bus 0000:07: resource 1 [mem 0xfb500000-0xfb5fffff]
[    0.870799] pci_bus 0000:08: resource 1 [mem 0xfb400000-0xfb4fffff]
[    0.870800] pci_bus 0000:09: resource 1 [mem 0xfb300000-0xfb3fffff]
[    0.870802] pci_bus 0000:0a: resource 0 [io  0xd000-0xdfff]
[    0.870803] pci_bus 0000:0a: resource 1 [mem 0xfb200000-0xfb2fffff]
[    0.870804] pci_bus 0000:0b: resource 0 [io  0xc000-0xcfff]
[    0.870806] pci_bus 0000:0b: resource 2 [mem 0xd2100000-0xd21fffff 64bit pref]
[    0.870807] pci_bus 0000:0c: resource 0 [io  0xb000-0xbfff]
[    0.870808] pci_bus 0000:0c: resource 1 [mem 0xfb100000-0xfb1fffff]
[    0.870810] pci_bus 0000:0d: resource 4 [io  0x0000-0x03af]
[    0.870811] pci_bus 0000:0d: resource 5 [io  0x03e0-0x0cf7]
[    0.870812] pci_bus 0000:0d: resource 6 [io  0x03b0-0x03df]
[    0.870813] pci_bus 0000:0d: resource 7 [io  0x0d00-0xffff]
[    0.870815] pci_bus 0000:0d: resource 8 [mem 0x000a0000-0x000bffff]
[    0.870816] pci_bus 0000:0d: resource 9 [mem 0x000c0000-0x000dffff]
[    0.870817] pci_bus 0000:0d: resource 10 [mem 0xc0000000-0xfbffffff]
[    0.870837] NET: Registered protocol family 2
[    0.871094] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.871822] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.872867] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.872995] TCP: Hash tables configured (established 524288 bind 65536)
[    0.872997] TCP reno registered
[    0.873015] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.873066] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.873148] NET: Registered protocol family 1
[    0.873184] pci 0000:00:1a.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.892022] pci 0000:00:1a.0: PCI INT A disabled
[    0.892042] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.912022] pci 0000:00:1d.0: PCI INT A disabled
[    0.912042] pci 0000:02:00.0: Boot video device
[    0.912057] pci 0000:06:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.912098] pci 0000:06:00.0: PCI INT A disabled
[    0.912107] pci 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.912143] pci 0000:07:00.0: PCI INT A disabled
[    0.912152] pci 0000:08:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.912188] pci 0000:08:00.0: PCI INT A disabled
[    0.912236] PCI: CLS 64 bytes, default 64
[    0.912238] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.912240] Placing 64MB software IO TLB between ffff8800acec2000 - ffff8800b0ec2000
[    0.912243] software IO TLB at phys 0xacec2000 - 0xb0ec2000
[    0.912679] audit: initializing netlink socket (disabled)
[    0.912687] type=2000 audit(1362870825.908:1): initialized
[    0.945391] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.982581] VFS: Disk quotas dquot_6.5.2
[    0.982615] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.982894] fuse init (API version 7.17)
[    0.982944] msgmni has been set to 31950
[    0.983162] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.983181] io scheduler noop registered
[    0.983183] io scheduler deadline registered
[    0.983199] io scheduler cfq registered (default)
[    0.983746] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.983759] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.983810] efifb: probing for efifb
[    0.984279] efifb: framebuffer at 0xd1000000, mapped to 0xffffc90023700000, using 3072k, total 3072k
[    0.984282] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.984284] efifb: scrolling: redraw
[    0.984286] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.986735] Console: switching to colour frame buffer device 128x48
[    0.989178] fb0: EFI VGA frame buffer device
[    0.989202] intel_idle: MWAIT substates: 0x21120
[    0.989203] intel_idle: v0.4 model 0x2D
[    0.989204] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.989269] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.989312] ACPI: Power Button [PWRB]
[    0.989353] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.989390] ACPI: Power Button [PWRF]
[    0.993201] ERST: Table is not found!
[    0.993221] GHES: HEST is not enabled!
[    0.993286] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.015706] Freeing initrd memory: 21012k freed
[    1.176279] Linux agpgart interface v0.103
[    1.177126] brd: module loaded
[    1.177541] loop: module loaded
[    1.177637] ahci 0000:00:1f.2: version 3.0
[    1.177652] ahci 0000:00:1f.2: PCI INT B -> GSI 20 (level, low) -> IRQ 20
[    1.177728] ahci 0000:00:1f.2: irq 64 for MSI/MSI-X
[    1.192034] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x28 impl SATA mode
[    1.192088] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[    1.192129] ahci 0000:00:1f.2: setting latency timer to 64
[    1.200303] scsi0 : ahci
[    1.200364] scsi1 : ahci
[    1.200417] scsi2 : ahci
[    1.200469] scsi3 : ahci
[    1.200521] scsi4 : ahci
[    1.200572] scsi5 : ahci
[    1.200654] ata1: DUMMY
[    1.200667] ata2: DUMMY
[    1.201612] ata3: DUMMY
[    1.202535] ata4: SATA max UDMA/133 abar m2048@0xfb725000 port 0xfb725280 irq 64
[    1.203477] ata5: DUMMY
[    1.204411] ata6: SATA max UDMA/133 abar m2048@0xfb725000 port 0xfb725380 irq 64
[    1.205380] ahci 0000:0a:00.0: enabling device (0000 -> 0003)
[    1.206340] ahci 0000:0a:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.207335] ahci 0000:0a:00.0: irq 65 for MSI/MSI-X
[    1.207360] ahci: SSS flag set, parallel bus scan disabled
[    1.208357] ahci 0000:0a:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    1.209331] ahci 0000:0a:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
[    1.210314] ahci 0000:0a:00.0: setting latency timer to 64
[    1.210477] scsi6 : ahci
[    1.211489] scsi7 : ahci
[    1.212464] ata7: SATA max UDMA/133 abar m512@0xfb200000 port 0xfb200100 irq 65
[    1.213434] ata8: SATA max UDMA/133 abar m512@0xfb200000 port 0xfb200180 irq 65
[    1.214402] ahci 0000:0c:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.215419] ahci 0000:0c:00.0: irq 66 for MSI/MSI-X
[    1.228097] ahci 0000:0c:00.0: AHCI 0001.0200 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    1.229092] ahci 0000:0c:00.0: flags: 64bit ncq pio
[    1.230077] ahci 0000:0c:00.0: setting latency timer to 64
[    1.230599] scsi8 : ahci
[    1.231608] scsi9 : ahci
[    1.232599] scsi10 : ahci
[    1.233570] scsi11 : ahci
[    1.234513] scsi12 : ahci
[    1.235435] scsi13 : ahci
[    1.236349] scsi14 : ahci
[    1.237247] scsi15 : ahci
[    1.238108] ata9: SATA max UDMA/133 abar m2048@0xfb110000 port 0xfb110100 irq 66
[    1.238973] ata10: SATA max UDMA/133 abar m2048@0xfb110000 port 0xfb110180 irq 66
[    1.239832] ata11: SATA max UDMA/133 abar m2048@0xfb110000 port 0xfb110200 irq 66
[    1.240674] ata12: SATA max UDMA/133 abar m2048@0xfb110000 port 0xfb110280 irq 66
[    1.241484] ata13: SATA max UDMA/133 abar m2048@0xfb110000 port 0xfb110300 irq 66
[    1.242269] ata14: SATA max UDMA/133 abar m2048@0xfb110000 port 0xfb110380 irq 66
[    1.243047] ata15: SATA max UDMA/133 abar m2048@0xfb110000 port 0xfb110400 irq 66
[    1.243819] ata16: SATA max UDMA/133 abar m2048@0xfb110000 port 0xfb110480 irq 66
[    1.244845] Fixed MDIO Bus: probed
[    1.245590] tun: Universal TUN/TAP device driver, 1.6
[    1.246336] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.247127] PPP generic driver version 2.4.2
[    1.247946] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.248733] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    1.249519] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    1.249521] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    1.250309] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.251087] ehci_hcd 0000:00:1a.0: debug port 2
[    1.255716] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    1.255726] ehci_hcd 0000:00:1a.0: irq 23, io mem 0xfb727000
[    1.272019] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.272899] hub 1-0:1.0: USB hub found
[    1.273694] hub 1-0:1.0: 2 ports detected
[    1.274543] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    1.275384] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.275386] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    1.276257] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.277134] ehci_hcd 0000:00:1d.0: debug port 2
[    1.281840] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    1.281843] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xfb726000
[    1.296020] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.296916] hub 2-0:1.0: USB hub found
[    1.297713] hub 2-0:1.0: 2 ports detected
[    1.298545] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.299352] uhci_hcd: USB Universal Host Controller Interface driver
[    1.300170] xhci_hcd 0000:06:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.300976] xhci_hcd 0000:06:00.0: setting latency timer to 64
[    1.300979] xhci_hcd 0000:06:00.0: xHCI Host Controller
[    1.301778] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 3
[    1.363756] xhci_hcd 0000:06:00.0: irq 16, io mem 0xfb600000
[    1.364592] xhci_hcd 0000:06:00.0: irq 67 for MSI/MSI-X
[    1.364595] xhci_hcd 0000:06:00.0: irq 68 for MSI/MSI-X
[    1.364598] xhci_hcd 0000:06:00.0: irq 69 for MSI/MSI-X
[    1.364601] xhci_hcd 0000:06:00.0: irq 70 for MSI/MSI-X
[    1.364603] xhci_hcd 0000:06:00.0: irq 71 for MSI/MSI-X
[    1.364606] xhci_hcd 0000:06:00.0: irq 72 for MSI/MSI-X
[    1.364608] xhci_hcd 0000:06:00.0: irq 73 for MSI/MSI-X
[    1.364611] xhci_hcd 0000:06:00.0: irq 74 for MSI/MSI-X
[    1.364737] xHCI xhci_add_endpoint called for root hub
[    1.364739] xHCI xhci_check_bandwidth called for root hub
[    1.364752] hub 3-0:1.0: USB hub found
[    1.365543] hub 3-0:1.0: 2 ports detected
[    1.366350] xhci_hcd 0000:06:00.0: xHCI Host Controller
[    1.367141] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 4
[    1.367969] xHCI xhci_add_endpoint called for root hub
[    1.367970] xHCI xhci_check_bandwidth called for root hub
[    1.367982] hub 4-0:1.0: USB hub found
[    1.368756] hub 4-0:1.0: 2 ports detected
[    1.416049] xhci_hcd 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.416869] xhci_hcd 0000:07:00.0: setting latency timer to 64
[    1.416872] xhci_hcd 0000:07:00.0: xHCI Host Controller
[    1.417709] xhci_hcd 0000:07:00.0: new USB bus registered, assigned bus number 5
[    1.479760] xhci_hcd 0000:07:00.0: irq 17, io mem 0xfb500000
[    1.480663] xhci_hcd 0000:07:00.0: irq 75 for MSI/MSI-X
[    1.480666] xhci_hcd 0000:07:00.0: irq 76 for MSI/MSI-X
[    1.480669] xhci_hcd 0000:07:00.0: irq 77 for MSI/MSI-X
[    1.480672] xhci_hcd 0000:07:00.0: irq 78 for MSI/MSI-X
[    1.480674] xhci_hcd 0000:07:00.0: irq 79 for MSI/MSI-X
[    1.480677] xhci_hcd 0000:07:00.0: irq 80 for MSI/MSI-X
[    1.480679] xhci_hcd 0000:07:00.0: irq 81 for MSI/MSI-X
[    1.480682] xhci_hcd 0000:07:00.0: irq 82 for MSI/MSI-X
[    1.480814] xHCI xhci_add_endpoint called for root hub
[    1.480815] xHCI xhci_check_bandwidth called for root hub
[    1.480829] hub 5-0:1.0: USB hub found
[    1.481680] hub 5-0:1.0: 2 ports detected
[    1.482574] xhci_hcd 0000:07:00.0: xHCI Host Controller
[    1.483451] xhci_hcd 0000:07:00.0: new USB bus registered, assigned bus number 6
[    1.484363] xHCI xhci_add_endpoint called for root hub
[    1.484365] xHCI xhci_check_bandwidth called for root hub
[    1.484378] hub 6-0:1.0: USB hub found
[    1.485238] hub 6-0:1.0: 2 ports detected
[    1.516037] xhci_hcd 0000:08:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.516963] xhci_hcd 0000:08:00.0: setting latency timer to 64
[    1.516966] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    1.517897] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 7
[    1.524098] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.526469] ata6.00: ATA-8: ST3500320AS, SD15, max UDMA/133
[    1.527405] ata6.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    1.530068] ata6.00: configured for UDMA/133
[    1.532086] ata7: SATA link down (SStatus 0 SControl 300)
[    1.564050] ata9: SATA link down (SStatus 0 SControl 300)
[    1.572082] ata12: SATA link down (SStatus 0 SControl 300)
[    1.573085] ata14: SATA link down (SStatus 0 SControl 300)
[    1.574080] ata15: SATA link down (SStatus 0 SControl 300)
[    1.575017] ata11: SATA link down (SStatus 0 SControl 300)
[    1.575949] ata16: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.576887] ata13: SATA link down (SStatus 0 SControl 300)
[    1.577797] ata16.00: ATAPI: MARVELL VIRTUALL, 1.09, max UDMA/66
[    1.578736] ata10: SATA link down (SStatus 0 SControl 300)
[    1.579746] ata16.00: configured for UDMA/66
[    1.580052] xhci_hcd 0000:08:00.0: irq 18, io mem 0xfb400000
[    1.580113] xhci_hcd 0000:08:00.0: irq 83 for MSI/MSI-X
[    1.580115] xhci_hcd 0000:08:00.0: irq 84 for MSI/MSI-X
[    1.580118] xhci_hcd 0000:08:00.0: irq 85 for MSI/MSI-X
[    1.580120] xhci_hcd 0000:08:00.0: irq 86 for MSI/MSI-X
[    1.580122] xhci_hcd 0000:08:00.0: irq 87 for MSI/MSI-X
[    1.580125] xhci_hcd 0000:08:00.0: irq 88 for MSI/MSI-X
[    1.580127] xhci_hcd 0000:08:00.0: irq 89 for MSI/MSI-X
[    1.580130] xhci_hcd 0000:08:00.0: irq 90 for MSI/MSI-X
[    1.580261] xHCI xhci_add_endpoint called for root hub
[    1.580262] xHCI xhci_check_bandwidth called for root hub
[    1.580276] hub 7-0:1.0: USB hub found
[    1.580281] hub 7-0:1.0: 2 ports detected
[    1.580325] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    1.580347] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 8
[    1.580403] xHCI xhci_add_endpoint called for root hub
[    1.580404] xHCI xhci_check_bandwidth called for root hub
[    1.580417] hub 8-0:1.0: USB hub found
[    1.580423] hub 8-0:1.0: 2 ports detected
[    1.588030] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    1.620086] usbcore: registered new interface driver libusual
[    1.621007] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.624344] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.625254] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.626220] mousedev: PS/2 mouse device common for all mice
[    1.627199] rtc_cmos 00:04: RTC can wake from S4
[    1.628177] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    1.629105] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.630060] device-mapper: uevent: version 1.0.3
[    1.631011] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    1.632070] cpuidle: using governor ladder
[    1.633193] cpuidle: using governor menu
[    1.634105] EFI Variables Facility v0.08 2004-May-17
[    1.637216] TCP cubic registered
[    1.638186] NET: Registered protocol family 10
[    1.639323] NET: Registered protocol family 17
[    1.640233] Registering the dns_resolver key type
[    1.641222] PM: Hibernation image not present or could not be loaded.
[    1.641229] registered taskstats version 1
[    1.666313]   Magic number: 5:266:251
[    1.667328] rtc_cmos 00:04: setting system clock to 2013-03-09 23:13:47 UTC (1362870827)
[    1.669111] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.670040] EDD information not available.
[    1.720752] hub 1-1:1.0: USB hub found
[    1.721854] hub 1-1:1.0: 6 ports detected
[    1.804064] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.807725] ata4.00: ATAPI: HL-DT-ST DVDRAM GH20NS10, EL00, max UDMA/100
[    1.811926] ata4.00: configured for UDMA/100
[    1.832072] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    1.922022] scsi 3:0:0:0: CD-ROM            HL-DT-ST DVDRAM GH20NS10  EL00 PQ: 0 ANSI: 5
[    1.964750] hub 2-1:1.0: USB hub found
[    1.965855] hub 2-1:1.0: 8 ports detected
[    2.032516] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.033483] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.034586] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    2.034689] sr 3:0:0:0: Attached scsi generic sg0 type 5
[    2.035969] scsi 5:0:0:0: Direct-Access     ATA      ST3500320AS      SD15 PQ: 0 ANSI: 5
[    2.037181] sd 5:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    2.037214] sd 5:0:0:0: Attached scsi generic sg1 type 0
[    2.039429] sd 5:0:0:0: [sda] Write Protect is off
[    2.040442] sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.040539] sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.099685]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    2.101484] sd 5:0:0:0: [sda] Attached SCSI disk
[    2.136049] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    2.158187] hub 3-1:1.0: USB hub found
[    2.159449] hub 3-1:1.0: 4 ports detected
[    2.356066] ata8: SATA link down (SStatus 0 SControl 300)
[    2.357478] scsi 15:0:0:0: Processor         Marvell  91xx Config      1.01 PQ: 0 ANSI: 5
[    2.358663] scsi 15:0:0:0: Attached scsi generic sg2 type 3
[    2.360769] Freeing unused kernel memory: 920k freed
[    2.361887] Write protecting the kernel read-only data: 12288k
[    2.365977] Freeing unused kernel memory: 1608k freed
[    2.369248] Freeing unused kernel memory: 1196k freed
[    2.383173] udevd[147]: starting version 175
[    2.395548] wmi: Mapper loaded
[    2.402426] e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
[    2.403477] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
[    2.404598] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.404601] [drm] Initialized drm 1.1.0 20060810
[    2.404653] e1000e 0000:00:19.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.404664] e1000e 0000:00:19.0: setting latency timer to 64
[    2.404761] e1000e 0000:00:19.0: irq 91 for MSI/MSI-X
[    2.407705] r8169 0000:0b:00.0: enabling device (0000 -> 0003)
[    2.408798] r8169 0000:0b:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    2.409926] r8169 0000:0b:00.0: setting latency timer to 64
[    2.410006] r8169 0000:0b:00.0: irq 92 for MSI/MSI-X
[    2.410337] r8169 0000:0b:00.0: eth0: RTL8168evl/8111evl at 0xffffc900100c6000, 50:46:5d:6f:cf:22, XID 0c900800 IRQ 92
[    2.411443] r8169 0000:0b:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    2.711292] e1000e 0000:00:19.0: eth1: (PCI Express:2.5GT/s:Width x1) 50:46:5d:6f:d1:70
[    2.712440] e1000e 0000:00:19.0: eth1: Intel(R) PRO/1000 Network Connection
[    2.713592] e1000e 0000:00:19.0: eth1: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF
[    2.909103] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[    2.992245] hub 4-1:1.0: USB hub found
[    2.996428] hub 4-1:1.0: 4 ports detected
[    3.188059] usb 5-1: new full-speed USB device number 2 using xhci_hcd
[    3.209845] usb 5-1: ep 0x82 - rounding interval to 1024 microframes, ep desc says 2040 microframes
[    3.376049] usb 7-2: new low-speed USB device number 2 using xhci_hcd
[    3.405203] usb 7-2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    3.406358] usb 7-2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
[    3.415413] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1c.2/0000:08:00.0/usb7/7-2/7-2:1.0/input/input2
[    3.416841] generic-usb 0003:046D:C326.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:08:00.0-2/input0
[    3.425313] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1c.2/0000:08:00.0/usb7/7-2/7-2:1.1/input/input3
[    3.426916] generic-usb 0003:046D:C326.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:08:00.0-2/input1
[    3.429424] usbcore: registered new interface driver usbhid
[    3.430690] usbhid: USB HID core driver
[    3.480232] usb 1-1.6: new low-speed USB device number 3 using ehci_hcd
[    3.579805] input: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input4
[    3.582546] generic-usb 0003:045E:0039.0003: input,hidraw2: USB HID v1.10 Mouse [Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)] on usb-0000:00:1a.0-1.6/input0
[    3.656229] usb 2-1.5: new full-speed USB device number 3 using ehci_hcd
[    4.352483] EXT4-fs (sda6): INFO: recovery required on readonly filesystem
[    4.352517] EXT4-fs (sda6): write access will be enabled during recovery
[    4.903623] EXT4-fs (sda6): recovery complete
[    4.906259] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    5.784752] xhci_hcd 0000:06:00.0: WARN Event TRB for slot 1 ep 0 with no TDs queued?
[    6.678108] udevd[437]: starting version 175
[    8.063598] asus_wmi: ASUS WMI generic driver loaded
[    8.091932] mei: module is from the staging directory, the quality is unknown, you have been warned.
[    8.094912] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    8.096298] mei 0000:00:16.0: setting latency timer to 64
[    8.096344] mei 0000:00:16.0: irq 93 for MSI/MSI-X
[    8.107970] asus_wmi: Initialization: 0x0
[    8.108048] asus_wmi: BIOS WMI version: 0.9
[    8.109437] asus_wmi: SFUN value: 0x0
[    8.110916] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input5
[    8.133543] EDAC MC: Ver: 2.1.0
[    8.388094] EDAC sbridge: Seeking for: dev 0e.0 PCI ID 8086:3ca0
[    8.389509] EDAC sbridge: Seeking for: dev 0e.0 PCI ID 8086:3ca0
[    8.390874] EDAC sbridge: Seeking for: dev 0f.0 PCI ID 8086:3ca8
[    8.392260] EDAC sbridge: Seeking for: dev 0f.0 PCI ID 8086:3ca8
[    8.393592] EDAC sbridge: Seeking for: dev 0f.1 PCI ID 8086:3c71
[    8.394908] EDAC sbridge: Seeking for: dev 0f.1 PCI ID 8086:3c71
[    8.396238] EDAC sbridge: Seeking for: dev 0f.2 PCI ID 8086:3caa
[    8.397517] EDAC sbridge: Seeking for: dev 0f.2 PCI ID 8086:3caa
[    8.398771] EDAC sbridge: Seeking for: dev 0f.3 PCI ID 8086:3cab
[    8.400031] EDAC sbridge: Seeking for: dev 0f.3 PCI ID 8086:3cab
[    8.401249] EDAC sbridge: Seeking for: dev 0f.4 PCI ID 8086:3cac
[    8.402430] EDAC sbridge: Seeking for: dev 0f.4 PCI ID 8086:3cac
[    8.403578] EDAC sbridge: Seeking for: dev 0f.5 PCI ID 8086:3cad
[    8.404742] EDAC sbridge: Seeking for: dev 0f.5 PCI ID 8086:3cad
[    8.405862] EDAC sbridge: Seeking for: dev 11.0 PCI ID 8086:3cb8
[    8.406986] EDAC sbridge: Seeking for: dev 11.0 PCI ID 8086:3cb8
[    8.408077] EDAC sbridge: Seeking for: dev 0c.6 PCI ID 8086:3cf4
[    8.409161] EDAC sbridge: Seeking for: dev 0c.6 PCI ID 8086:3cf4
[    8.410219] EDAC sbridge: Seeking for: dev 0c.7 PCI ID 8086:3cf6
[    8.411252] EDAC sbridge: Seeking for: dev 0c.7 PCI ID 8086:3cf6
[    8.412275] EDAC sbridge: Seeking for: dev 0d.6 PCI ID 8086:3cf5
[    8.413259] EDAC sbridge: Seeking for: dev 0d.6 PCI ID 8086:3cf5
[    8.414241] EDAC sbridge: ECC is disabled. Aborting
[    8.415188] EDAC sbridge: Couldn't find mci handler
[    8.415191] Bluetooth: Core ver 2.16
[    8.415202] NET: Registered protocol family 31
[    8.415203] Bluetooth: HCI device and connection manager initialized
[    8.415204] Bluetooth: HCI socket layer initialized
[    8.415205] Bluetooth: L2CAP socket layer initialized
[    8.415207] Bluetooth: SCO socket layer initialized
[    8.437701] Bluetooth: Generic Bluetooth USB driver ver 0.6
[    8.438587] usbcore: registered new interface driver btusb
[    8.558296] cfg80211: Calling CRDA to update world regulatory domain
[    8.700556] ath9k 0000:09:00.0: enabling device (0000 -> 0002)
[    8.701279] ath9k 0000:09:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    8.701970] ath9k 0000:09:00.0: setting latency timer to 64
[    8.750786] ath: EEPROM regdomain: 0x60
[    8.750787] ath: EEPROM indicates we should expect a direct regpair map
[    8.750788] ath: Country alpha2 being used: 00
[    8.750789] ath: Regpair used: 0x60
[    8.750791] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.750793] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750794] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.750795] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750796] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.750798] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750799] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.750800] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750801] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.750803] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750804] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.750805] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750806] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.750808] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750809] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.750810] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750811] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.750813] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750814] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.750815] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750816] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.750818] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750819] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[    8.750820] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750821] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[    8.750823] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.750824] cfg80211: Updating information on frequency 2484 MHz for a 20 MHz width channel with regulatory rule:
[    8.750825] cfg80211: 2474000 KHz - 2494000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.752345] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[    8.871677] ADDRCONF(NETDEV_UP): eth0: link is not ready
[    8.871681] ADDRCONF(NETDEV_UP): eth1: link is not ready
[    8.882280] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[    8.882558] Registered led device: ath9k-phy0
[    8.882562] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90012920000, irq=19
[    8.937093] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[    8.937096] cfg80211: World regulatory domain updated:
[    8.937097] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    8.937099] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.937100] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.937101] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.937102] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.937104] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    9.063771] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[    9.063783] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    9.063825] snd_hda_intel 0000:00:1b.0: irq 94 for MSI/MSI-X
[    9.063847] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[    9.190406] hda_codec: ALC898: BIOS auto-probing.
[    9.198321] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[    9.198431] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[    9.198555] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    9.198681] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    9.198804] input: HDA Intel PCH Line-Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    9.198929] input: HDA Intel PCH Line-Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    9.199053] input: HDA Intel PCH Line-Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    9.199180] input: HDA Intel PCH Line-Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[    9.199670] snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
[    9.199681] snd_hda_intel 0000:02:00.1: PCI INT B -> GSI 44 (level, low) -> IRQ 44
[    9.199683] hda_intel: Disabling MSI
[    9.199734] snd_hda_intel 0000:02:00.1: setting latency timer to 64
[    9.210649] usblp0: USB Bidirectional printer dev 2 if 0 alt 1 proto 2 vid 0x03F0 pid 0x0317
[    9.210661] usbcore: registered new interface driver usblp
[   10.024064] HDMI status: Codec=0 Pin=5 Presence_Detect=0 ELD_Valid=0
[   10.048062] HDMI status: Codec=1 Pin=5 Presence_Detect=0 ELD_Valid=0
[   10.072050] HDMI status: Codec=2 Pin=5 Presence_Detect=0 ELD_Valid=0
[   10.096050] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
[   10.096095] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/0000:02:00.1/sound/card1/input14
[   10.096203] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/0000:02:00.1/sound/card1/input15
[   10.096304] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/0000:02:00.1/sound/card1/input16
[   10.096433] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:02:00.1/sound/card1/input17
[   11.776700] xhci_hcd 0000:06:00.0: WARN Event TRB for slot 1 ep 0 with no TDs queued?
[   17.680555] lp: driver loaded but no devices found
[   18.333158] Adding 16724988k swap on /dev/sda3.  Priority:-1 extents:1 across:16724988k
[   19.033707] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro
[   19.430674] init: failsafe main process (1534) killed by TERM signal
[   19.772689] xhci_hcd 0000:06:00.0: WARN Event TRB for slot 1 ep 0 with no TDs queued?
[   20.338504] ppdev: user-space parallel port driver
[   20.532750] type=1400 audit(1362870846.362:2): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1604 comm="apparmor_parser"
[   20.534889] type=1400 audit(1362870846.362:3): apparmor="STATUS" operation="profile_load" name="/usr/sbin/mysqld-akonadi" pid=1602 comm="apparmor_parser"
[   20.535019] type=1400 audit(1362870846.362:4): apparmor="STATUS" operation="profile_load" name="/usr/sbin/mysqld-akonadi///usr/sbin/mysqld" pid=1602 comm="apparmor_parser"
[   20.591137] Bluetooth: RFCOMM TTY layer initialized
[   20.591140] Bluetooth: RFCOMM socket layer initialized
[   20.591141] Bluetooth: RFCOMM ver 1.11
[   20.654815] type=1400 audit(1362870846.482:5): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=1600 comm="apparmor_parser"
[   20.655032] type=1400 audit(1362870846.482:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1600 comm="apparmor_parser"
[   20.655155] type=1400 audit(1362870846.482:7): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=1600 comm="apparmor_parser"
[   20.697312] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   20.697314] Bluetooth: BNEP filters: protocol multicast
[   20.752772] type=1400 audit(1362870846.582:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1601 comm="apparmor_parser"
[   20.752799] type=1400 audit(1362870846.582:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/cups/backend/cups-pdf" pid=1626 comm="apparmor_parser"
[   20.753024] type=1400 audit(1362870846.582:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1601 comm="apparmor_parser"
[   20.753061] type=1400 audit(1362870846.582:11): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cupsd" pid=1626 comm="apparmor_parser"
[   21.636150] e1000e 0000:00:19.0: irq 91 for MSI/MSI-X
[   21.692075] e1000e 0000:00:19.0: irq 91 for MSI/MSI-X
[   21.692840] ADDRCONF(NETDEV_UP): eth1: link is not ready
[   21.693086] ADDRCONF(NETDEV_UP): eth1: link is not ready
[   21.734247] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   21.737226] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   21.981542] init: alsa-restore main process (1682) terminated with status 99
[   22.073027] r8169 0000:0b:00.0: eth0: link down
[   22.073769] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   22.074006] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   24.701067] usblp0: removed
[   24.701088] usb 5-1: ep 0x82 - rounding interval to 1024 microframes, ep desc says 2040 microframes
[   24.705024] usb 5-1: ep 0x82 - rounding interval to 1024 microframes, ep desc says 2040 microframes
[   24.708449] usblp0: USB Bidirectional printer dev 2 if 0 alt 1 proto 2 vid 0x03F0 pid 0x0317
[   25.069724] e1000e: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[   25.070429] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   26.768580] xhci_hcd 0000:06:00.0: WARN Event TRB for slot 1 ep 0 with no TDs queued?
[   35.224012] eth1: no IPv6 routers present
[   37.772708] xhci_hcd 0000:06:00.0: WARN Event TRB for slot 1 ep 0 with no TDs queued?
[  616.849891] udevd[22997]: starting version 175
[  636.522042] init: cron main process (1706) killed by TERM signal
[ 1070.371956] type=1400 audit(1362871896.198:12): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/tcpdump" pid=17721 comm="apparmor_parser"
[ 1070.392923] type=1400 audit(1362871896.222:13): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/mysqld-akonadi" pid=17719 comm="apparmor_parser"
[ 1070.393046] type=1400 audit(1362871896.222:14): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/mysqld-akonadi///usr/sbin/mysqld" pid=17719 comm="apparmor_parser"
[ 1070.444511] type=1400 audit(1362871896.274:15): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=17717 comm="apparmor_parser"
[ 1070.444560] type=1400 audit(1362871896.274:16): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=17717 comm="apparmor_parser"
[ 1070.444595] type=1400 audit(1362871896.274:17): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=17717 comm="apparmor_parser"
[ 1070.576557] type=1400 audit(1362871896.406:18): apparmor="STATUS" operation="profile_replace" name="/usr/lib/cups/backend/cups-pdf" pid=17718 comm="apparmor_parser"
[ 1070.576685] type=1400 audit(1362871896.406:19): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cupsd" pid=17718 comm="apparmor_parser"
[ 1070.756444] type=1400 audit(1362871896.586:20): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/tcpdump" pid=17762 comm="apparmor_parser"
[ 1070.773170] type=1400 audit(1362871896.602:21): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/mysqld-akonadi" pid=17760 comm="apparmor_parser"
[ 1098.401041] audit_printk_skb: 18 callbacks suppressed
[ 1098.401043] type=1400 audit(1362871924.230:28): apparmor="STATUS" operation="profile_replace" name="/usr/lib/cups/backend/cups-pdf" pid=18366 comm="apparmor_parser"
[ 1098.401173] type=1400 audit(1362871924.230:29): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cupsd" pid=18366 comm="apparmor_parser"
[ 1098.453759] type=1400 audit(1362871924.282:30): apparmor="STATUS" operation="profile_replace" name="/usr/lib/cups/backend/cups-pdf" pid=18413 comm="apparmor_parser"
[ 1098.454535] type=1400 audit(1362871924.282:31): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cupsd" pid=18413 comm="apparmor_parser"
[ 1124.339841] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[ 1124.340425] SGI XFS Quota Management subsystem
[ 1124.344238] JFS: nTxBlock = 8192, nTxLock = 65536
[ 1124.393253] NTFS driver 2.1.30 [Flags: R/O MODULE].
[ 1124.439385] QNX4 filesystem 0.2.3 registered.
[ 1124.465883] Btrfs loaded
[ 1127.861551] type=1400 audit(1362871953.690:32): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=28262 comm="apparmor_parser"
[ 1127.861603] type=1400 audit(1362871953.690:33): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=28262 comm="apparmor_parser"
[ 1127.861638] type=1400 audit(1362871953.690:34): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=28262 comm="apparmor_parser"
[13008.365091] ip_tables: (C) 2000-2006 Netfilter Core Team
[13008.393581] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[13010.776680] xhci_hcd 0000:06:00.0: WARN Event TRB for slot 1 ep 0 with no TDs queued?
[13033.848637] xhci_hcd 0000:06:00.0: WARN Event TRB for slot 1 ep 0 with no TDs queued?
[13387.776693] xhci_hcd 0000:06:00.0: WARN Event TRB for slot 1 ep 0 with no TDs queued?

--[ File: /etc/sysctl.conf ]--(0644, root, root, 2083)--------------------------
#
# /etc/sysctl.conf - Configuration file for setting system variables
# See /etc/sysctl.d/ for additional system variables
# See sysctl.conf (5) for information.
#

#kernel.domainname = example.com

# Uncomment the following to stop low-level messages on console
#kernel.printk = 3 4 1 3

##############################################################3
# Functions previously found in netbase
#

# Uncomment the next two lines to enable Spoof protection (reverse-path filter)
# Turn on Source Address Verification in all interfaces to
# prevent some spoofing attacks
#net.ipv4.conf.default.rp_filter=1
#net.ipv4.conf.all.rp_filter=1

# Uncomment the next line to enable TCP/IP SYN cookies
# See http://lwn.net/Articles/277146/
# Note: This may impact IPv6 TCP sessions too
#net.ipv4.tcp_syncookies=1

# Uncomment the next line to enable packet forwarding for IPv4
#net.ipv4.ip_forward=1

# Uncomment the next line to enable packet forwarding for IPv6
#  Enabling this option disables Stateless Address Autoconfiguration
#  based on Router Advertisements for this host
#net.ipv6.conf.all.forwarding=1


###################################################################
# Additional settings - these settings can improve the network
# security of the host and prevent against some network attacks
# including spoofing attacks and man in the middle attacks through
# redirection. Some network environments, however, require that these
# settings are disabled so review and enable them as needed.
#
# Do not accept ICMP redirects (prevent MITM attacks)
#net.ipv4.conf.all.accept_redirects = 0
#net.ipv6.conf.all.accept_redirects = 0
# _or_
# Accept ICMP redirects only for gateways listed in our default
# gateway list (enabled by default)
# net.ipv4.conf.all.secure_redirects = 1
#
# Do not send ICMP redirects (we are not a router)
#net.ipv4.conf.all.send_redirects = 0
#
# Do not accept IP source route packets (we are not a router)
#net.ipv4.conf.all.accept_source_route = 0
#net.ipv6.conf.all.accept_source_route = 0
#
# Log Martian Packets
#net.ipv4.conf.all.log_martians = 1
#

== MYSQL =======================================================================
--[ File: /etc/mysql/my.cnf ]--(0644, root, root, 3505)-------------------------
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

# This will be passed to all mysql clients
# It has been reported that passwords should be enclosed with ticks/quotes
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock

# Here is entries for some specific programs
# The following values assume you have at least 32M ram

# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[mysqld_safe]
socket = /var/run/mysqld/mysqld.sock
nice = 0

[mysqld]
#
# * Basic Settings
#
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 127.0.0.1
#
# * Fine Tuning
#
key_buffer = 16M
max_allowed_packet = 16M
thread_stack = 192K
thread_cache_size       = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover         = BACKUP
#max_connections        = 100
#table_cache            = 64
#thread_concurrency     = 10
#
# * Query Cache Configuration
#
query_cache_limit = 1M
query_cache_size        = 16M
#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.
# As of 5.1 you can enable the log at runtime!
#general_log_file        = /var/log/mysql/mysql.log
#general_log             = 1
#
# Error log - should be very few entries.
#
log_error = /var/log/mysql/error.log
#
# Here you can see queries with especially long duration
#log_slow_queries = /var/log/mysql/mysql-slow.log
#long_query_time = 2
#log-queries-not-using-indexes
#
# The following can be used as easy to replay backup logs or for replication.
# note: if you are setting up a replication slave, see README.Debian about
#       other settings you may need to change.
#server-id = 1
#log_bin = /var/log/mysql/mysql-bin.log
expire_logs_days = 10
max_binlog_size         = 100M
#binlog_do_db = include_database_name
#binlog_ignore_db = include_database_name
#
# * InnoDB
#
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
# Read the manual for more InnoDB related options. There are many!
#
# * Security Features
#
# Read the manual, too, if you want chroot!
# chroot = /var/lib/mysql/
#
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
#
# ssl-ca=/etc/mysql/cacert.pem
# ssl-cert=/etc/mysql/server-cert.pem
# ssl-key=/etc/mysql/server-key.pem



[mysqldump]
quick
quote-names
max_allowed_packet = 16M

[mysql]
#no-auto-rehash # faster start of mysql but no tab completition

[isamchk]
key_buffer = 16M

#
# * IMPORTANT: Additional settings that can override those from this file!
#   The files must end with '.cnf', otherwise they'll be ignored.
#
!includedir /etc/mysql/conf.d/

== NETWORK =====================================================================
--[ Cmd: /sbin/ip addr ]--(0755, root, root, 249264)----------------------------
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
    link/ether 50:46:5d:6f:cf:22 brd ff:ff:ff:ff:ff:ff
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 50:46:5d:6f:d1:70 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.104/24 brd 192.168.1.255 scope global eth1
    inet6 fe80::5246:5dff:fe6f:d170/64 scope link
       valid_lft forever preferred_lft forever
4: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN qlen 1000
    link/ether dc:85:de:24:b1:ad brd ff:ff:ff:ff:ff:ff

--[ Cmd: /sbin/ip route ]--(0755, root, root, 249264)---------------------------
default via 192.168.1.4 dev eth1  proto static
169.254.0.0/16 dev eth1  scope link  metric 1000
192.168.1.0/24 dev eth1  proto kernel  scope link  src 192.168.1.104  metric 1

--[ Cmd: /sbin/route -n ]--(0755, root, root, 57984)----------------------------
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.4     0.0.0.0         UG    0      0        0 eth1
169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 eth1
192.168.1.0     0.0.0.0         255.255.255.0   U     1      0        0 eth1

--[ File: /etc/host.conf ]--(0644, root, root, 92)------------------------------
# The "order" line is only used by old versions of the C library.
order hosts,bind
multi on

--[ File: /etc/hosts ]--(0644, root, root, 221)---------------------------------
127.0.0.1 localhost
127.0.1.1 ubuntu

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

--[ File: /etc/nsswitch.conf ]--(0644, root, root, 513)-------------------------
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd:         compat
group:          compat
shadow:         compat

hosts:          files mdns4_minimal [NOTFOUND=return] dns mdns4
networks:       files

protocols:      db files
services:       db files
ethers:         db files
rpc:            db files

netgroup:       nis

--[ File: /etc/resolv.conf ]--(0644, root, root, 172)---------------------------
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.0.1

--[ File: /etc/network/interfaces ]--(0644, root, root, 284)--------------------
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth1
#NetworkManager#iface eth1 inet dhcp

--[ File: /etc/network/if-down.d/avahi-autoipd ]--(0755, root, root, 985)-------
#!/bin/sh

set -e

# Description:      Remove routes to allow communication between machines which
#                   only have an IPv4LL address assigned and those which only
#                   have a routable address assigned. These were added by
#                   /etc/network/if-up.d/avahi-autoipd.
#
#                   See http://developer.apple.com/qa/qa2004/qa1357.html for
#                   more information.


[ "$IFACE" != "lo" ] || exit 0
case "$ADDRFAM" in
  inet|NetworkManager) ;;
  *) exit 0
esac
case "$METHOD" in
static|dhcp|NetworkManager) ;;
*) exit 0
esac

if [ -x /bin/ip ]; then
# route already present?
ip route show | grep -q '^169.254.0.0/16[[:space:]]' && exit 0

/bin/ip route del 169.254.0.0/16 dev $IFACE metric 1000 scope link || true
elif [ -x /sbin/route ]; then
# route already present?
/sbin/route -n | grep -q "^169.254.0.0[[:space:]]" && exit 0

/sbin/route del -net 169.254.0.0 netmask 255.255.0.0 dev $IFACE metric 1000 || true
fi


--[ File: /etc/network/if-down.d/wpasupplicant ]--(0755, root, root, 4696)------
#!/bin/sh

#####################################################################
## Purpose
# This file is executed by ifupdown in pre-up, post-up, pre-down and
# post-down phases of network interface configuration. It allows
# ifup(8), and ifdown(8) to manage wpa_supplicant(8) and wpa_cli(8)
# processes running in daemon mode.
#
# /etc/wpa_supplicant/functions.sh is sourced by this file.
#
# This file is provided by the wpasupplicant package.

#####################################################################
# Copyright (C) 2006 - 2009 Debian/Ubuntu wpasupplicant Maintainers
# <pkg-wpa-devel@lists.alioth.debian.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# On Debian GNU/Linux systems, the text of the GPL license,
# version 2, can be found in /usr/share/common-licenses/GPL-2.

if [ -n "$IF_WPA_MAINT_DEBUG" ]; then
set -x
fi

# quit if we're called for the loopback
if [ "$IFACE" = lo ]; then
exit 0
fi

# allow wpa_supplicant interface to be specified via wpa-iface
# useful for starting wpa_supplicant on one interface of a bridge
if [ -n "$IF_WPA_IFACE" ]; then
WPA_IFACE="$IF_WPA_IFACE"
else
WPA_IFACE="$IFACE"
fi

# source functions
if [ -f /etc/wpa_supplicant/functions.sh ]; then
. /etc/wpa_supplicant/functions.sh
else
exit 0
fi

# quit if executables are not installed
if [ ! -x "$WPA_SUP_BIN" ] || [ ! -x "$WPA_CLI_BIN" ]; then
exit 0
fi

do_start () {
if test_wpa_cli; then
# if wpa_action is active for this IFACE, do nothing
ifupdown_locked && exit 0

# if the administrator is calling ifup, say something useful
if [ "$PHASE" = "pre-up" ]; then
wpa_msg stderr "wpa_action is managing ifup/ifdown state of $WPA_IFACE"
wpa_msg stderr "execute \`ifdown --force $WPA_IFACE' to stop wpa_action"
fi
exit 1
elif ! set | grep -q "^IF_WPA"; then
# no wpa- option defined for IFACE, do nothing
exit 0
fi

# ensure stale ifupdown_lock marker is purged
ifupdown_unlock

# preliminary sanity checks for roaming daemon
if [ -n "$IF_WPA_ROAM" ]; then
if [ "$METHOD" != "manual" ]; then
wpa_msg stderr "wpa-roam can only be used with the \"manual\" inet METHOD"
exit 1
fi
if [ -n "$IF_WPA_MAPPING_SCRIPT" ]; then
if ! type "$IF_WPA_MAPPING_SCRIPT" >/dev/null; then
wpa_msg stderr "wpa-mapping-script \"$IF_WPA_MAPPING_SCRIPT\" is not valid"
exit 1
fi
fi
if [ -n "$IF_WPA_MAPPING_SCRIPT_PRIORITY" ] && [ -z "$IF_WPA_MAPPING_SCRIPT" ]; then
wpa_msg stderr "\"wpa-mapping-script-priority 1\" is invalid without a wpa-mapping-script"
exit 1
fi
IF_WPA_CONF="$IF_WPA_ROAM"
WPA_ACTION_SCRIPT="/sbin/wpa_action"
fi

# master function; determines if ifupdown.sh should do something or not
if [ -n "$IF_WPA_CONF" ] && [ "$IF_WPA_CONF" != "managed" ]; then
if [ ! -s "$IF_WPA_CONF" ]; then
wpa_msg stderr "cannot read contents of $IF_WPA_CONF"
exit 1
fi
WPA_SUP_CONF_CTRL_DIR=$(sed -n -e 's/[[:space:]]*#.*//g' -e 's/[[:space:]]\+.*$//g' \
-e 's/^ctrl_interface=\(DIR=\)\?\(.*\)/\2/p' "$IF_WPA_CONF")
if [ -n "$WPA_SUP_CONF_CTRL_DIR" ]; then
WPA_CTRL_DIR="$WPA_SUP_CONF_CTRL_DIR"
WPA_SUP_CONF="-c $IF_WPA_CONF"
else
# specify the default ctrl_interface since none was defined in
# the given IF_WPA_CONF
WPA_SUP_CONF="-c $IF_WPA_CONF -C $WPA_CTRL_DIR"
fi
else
# specify the default ctrl_interface
WPA_SUP_CONF="-C $WPA_CTRL_DIR"
fi
}

do_stop () {
if test_wpa_cli; then
# if wpa_action is active for this IFACE and calling ifdown,
# do nothing
ifupdown_locked && exit 0
elif test_wpa_supplicant; then
# wpa_supplicant process exists for this IFACE, but wpa_cli
# process does not. Allow stop mode to kill this process.
:
else
exit 0
fi
}

case "$MODE" in
start)
do_start
case "$PHASE" in
pre-up)
kill_wpa_supplicant
init_wpa_supplicant || exit 1
conf_wpa_supplicant || { kill_wpa_supplicant; exit 1; }
;;
post-up)
init_wpa_cli || { kill_wpa_supplicant; exit 1; }
;;
esac
;;

stop)
do_stop
case "$PHASE" in
pre-down)
kill_wpa_cli
;;
post-down)
kill_wpa_supplicant
;;
*)
wpa_msg stderr "unknown phase: \"$PHASE\""
exit 1
;;
esac
;;

*)
wpa_msg stderr "unknown mode: \"$MODE\""
exit 1
;;
esac

exit 0

--[ File: /etc/network/if-down.d/resolvconf ]--(0755, root, root, 409)----------
#!/bin/sh
#
# ifdown hook script for resolvconf
#
# This file is part of the resolvconf package.
#

[ -x /sbin/resolvconf ] || exit 0

case "$ADDRFAM" in
  inet|inet6) :      ;;
  *)          exit 0 ;;
esac

case "$METHOD" in
  dhcp)
# Delete record left behind by TERMinated udhcpc
# This works around bug #605215
/sbin/resolvconf -d "${IFACE}.udhcpc"
;;
esac

/sbin/resolvconf -d "${IFACE}.${ADDRFAM}"


--[ File: /etc/network/if-down.d/upstart ]--(0755, root, root, 133)-------------
#!/bin/sh

set -e

initctl emit -n net-device-down \
"IFACE=$IFACE" \
"LOGICAL=$LOGICAL" \
"ADDRFAM=$ADDRFAM" \
"METHOD=$METHOD"

--[ File: /etc/network/if-post-down.d/wpasupplicant ]--(0755, root, root, 4696)--
#!/bin/sh

#####################################################################
## Purpose
# This file is executed by ifupdown in pre-up, post-up, pre-down and
# post-down phases of network interface configuration. It allows
# ifup(8), and ifdown(8) to manage wpa_supplicant(8) and wpa_cli(8)
# processes running in daemon mode.
#
# /etc/wpa_supplicant/functions.sh is sourced by this file.
#
# This file is provided by the wpasupplicant package.

#####################################################################
# Copyright (C) 2006 - 2009 Debian/Ubuntu wpasupplicant Maintainers
# <pkg-wpa-devel@lists.alioth.debian.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# On Debian GNU/Linux systems, the text of the GPL license,
# version 2, can be found in /usr/share/common-licenses/GPL-2.

if [ -n "$IF_WPA_MAINT_DEBUG" ]; then
set -x
fi

# quit if we're called for the loopback
if [ "$IFACE" = lo ]; then
exit 0
fi

# allow wpa_supplicant interface to be specified via wpa-iface
# useful for starting wpa_supplicant on one interface of a bridge
if [ -n "$IF_WPA_IFACE" ]; then
WPA_IFACE="$IF_WPA_IFACE"
else
WPA_IFACE="$IFACE"
fi

# source functions
if [ -f /etc/wpa_supplicant/functions.sh ]; then
. /etc/wpa_supplicant/functions.sh
else
exit 0
fi

# quit if executables are not installed
if [ ! -x "$WPA_SUP_BIN" ] || [ ! -x "$WPA_CLI_BIN" ]; then
exit 0
fi

do_start () {
if test_wpa_cli; then
# if wpa_action is active for this IFACE, do nothing
ifupdown_locked && exit 0

# if the administrator is calling ifup, say something useful
if [ "$PHASE" = "pre-up" ]; then
wpa_msg stderr "wpa_action is managing ifup/ifdown state of $WPA_IFACE"
wpa_msg stderr "execute \`ifdown --force $WPA_IFACE' to stop wpa_action"
fi
exit 1
elif ! set | grep -q "^IF_WPA"; then
# no wpa- option defined for IFACE, do nothing
exit 0
fi

# ensure stale ifupdown_lock marker is purged
ifupdown_unlock

# preliminary sanity checks for roaming daemon
if [ -n "$IF_WPA_ROAM" ]; then
if [ "$METHOD" != "manual" ]; then
wpa_msg stderr "wpa-roam can only be used with the \"manual\" inet METHOD"
exit 1
fi
if [ -n "$IF_WPA_MAPPING_SCRIPT" ]; then
if ! type "$IF_WPA_MAPPING_SCRIPT" >/dev/null; then
wpa_msg stderr "wpa-mapping-script \"$IF_WPA_MAPPING_SCRIPT\" is not valid"
exit 1
fi
fi
if [ -n "$IF_WPA_MAPPING_SCRIPT_PRIORITY" ] && [ -z "$IF_WPA_MAPPING_SCRIPT" ]; then
wpa_msg stderr "\"wpa-mapping-script-priority 1\" is invalid without a wpa-mapping-script"
exit 1
fi
IF_WPA_CONF="$IF_WPA_ROAM"
WPA_ACTION_SCRIPT="/sbin/wpa_action"
fi

# master function; determines if ifupdown.sh should do something or not
if [ -n "$IF_WPA_CONF" ] && [ "$IF_WPA_CONF" != "managed" ]; then
if [ ! -s "$IF_WPA_CONF" ]; then
wpa_msg stderr "cannot read contents of $IF_WPA_CONF"
exit 1
fi
WPA_SUP_CONF_CTRL_DIR=$(sed -n -e 's/[[:space:]]*#.*//g' -e 's/[[:space:]]\+.*$//g' \
-e 's/^ctrl_interface=\(DIR=\)\?\(.*\)/\2/p' "$IF_WPA_CONF")
if [ -n "$WPA_SUP_CONF_CTRL_DIR" ]; then
WPA_CTRL_DIR="$WPA_SUP_CONF_CTRL_DIR"
WPA_SUP_CONF="-c $IF_WPA_CONF"
else
# specify the default ctrl_interface since none was defined in
# the given IF_WPA_CONF
WPA_SUP_CONF="-c $IF_WPA_CONF -C $WPA_CTRL_DIR"
fi
else
# specify the default ctrl_interface
WPA_SUP_CONF="-C $WPA_CTRL_DIR"
fi
}

do_stop () {
if test_wpa_cli; then
# if wpa_action is active for this IFACE and calling ifdown,
# do nothing
ifupdown_locked && exit 0
elif test_wpa_supplicant; then
# wpa_supplicant process exists for this IFACE, but wpa_cli
# process does not. Allow stop mode to kill this process.
:
else
exit 0
fi
}

case "$MODE" in
start)
do_start
case "$PHASE" in
pre-up)
kill_wpa_supplicant
init_wpa_supplicant || exit 1
conf_wpa_supplicant || { kill_wpa_supplicant; exit 1; }
;;
post-up)
init_wpa_cli || { kill_wpa_supplicant; exit 1; }
;;
esac
;;

stop)
do_stop
case "$PHASE" in
pre-down)
kill_wpa_cli
;;
post-down)
kill_wpa_supplicant
;;
*)
wpa_msg stderr "unknown phase: \"$PHASE\""
exit 1
;;
esac
;;

*)
wpa_msg stderr "unknown mode: \"$MODE\""
exit 1
;;
esac

exit 0

--[ File: /etc/network/if-post-down.d/wireless-tools ]--(0755, root, root, 1070)--
#!/bin/sh

IWCONFIG=/sbin/iwconfig

if [ ! -x $IWCONFIG ]; then
exit 0
fi

apply_settings()
{
if [ -n "$IF_WIRELESS_MODE" ]; then
$IWCONFIG "$IFACE" mode auto
fi

if [ -n "$IF_WIRELESS_AP" ]; then
$IWCONFIG "$IFACE" ap off
fi

if [ -n "$IF_WIRELESS_RATE" ]; then
$IWCONFIG "$IFACE" rate auto
fi

if [ -n "$IF_WIRELESS_RTS" ]; then
$IWCONFIG "$IFACE" rts auto
fi

if [ -n "$IF_WIRELESS_FRAG" ]; then
$IWCONFIG "$IFACE" frag auto
fi

if [ -n "$IF_WIRELESS_POWER" ]; then
$IWCONFIG "$IFACE" power off
fi

if [ -n "$IF_WIRELESS_TXPOWER" ]; then
$IWCONFIG "$IFACE" txpower auto
fi

if [ -n "$IF_WIRELESS_ENC" ]; then
$IWCONFIG "$IFACE" enc off
fi

if [ -n "$IF_WIRELESS_KEY" ]; then
$IWCONFIG "$IFACE" key off
fi

if [ -n "$IF_WIRELESS_DEFAULTKEY" ]; then
$IWCONFIG "$IFACE" key off
fi

if [ -n "$IF_WIRELESS_NWID" ]; then
$IWCONFIG "$IFACE" nwid off
fi

if [ -n "$IF_WIRELESS_ESSID" ]; then
$IWCONFIG "$IFACE" essid any
fi

if [ -n "$IF_WIRELESS_COMMIT" ]; then
$IWCONFIG "$IFACE" commit
fi
}

apply_settings 2>/dev/null

--[ File: /etc/network/if-post-down.d/avahi-daemon ]--(0755, root, root, 431)---
#!/bin/sh

# Don't run the avahi-daemon unicast local check while bringing up
# the loopback device; it's not necessary until we bring up a real network
# device
[ "$IFACE" != "lo" ] || exit 0

# If we have an unicast .local domain, we immediately disable avahi to avoid
# conflicts with the multicast IP4LL .local domain
if [ -x /usr/lib/avahi/avahi-daemon-check-dns.sh ] ; then
  exec /usr/lib/avahi/avahi-daemon-check-dns.sh
fi

--[ File: /etc/network/if-pre-up.d/wpasupplicant ]--(0755, root, root, 4696)----
#!/bin/sh

#####################################################################
## Purpose
# This file is executed by ifupdown in pre-up, post-up, pre-down and
# post-down phases of network interface configuration. It allows
# ifup(8), and ifdown(8) to manage wpa_supplicant(8) and wpa_cli(8)
# processes running in daemon mode.
#
# /etc/wpa_supplicant/functions.sh is sourced by this file.
#
# This file is provided by the wpasupplicant package.

#####################################################################
# Copyright (C) 2006 - 2009 Debian/Ubuntu wpasupplicant Maintainers
# <pkg-wpa-devel@lists.alioth.debian.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# On Debian GNU/Linux systems, the text of the GPL license,
# version 2, can be found in /usr/share/common-licenses/GPL-2.

if [ -n "$IF_WPA_MAINT_DEBUG" ]; then
set -x
fi

# quit if we're called for the loopback
if [ "$IFACE" = lo ]; then
exit 0
fi

# allow wpa_supplicant interface to be specified via wpa-iface
# useful for starting wpa_supplicant on one interface of a bridge
if [ -n "$IF_WPA_IFACE" ]; then
WPA_IFACE="$IF_WPA_IFACE"
else
WPA_IFACE="$IFACE"
fi

# source functions
if [ -f /etc/wpa_supplicant/functions.sh ]; then
. /etc/wpa_supplicant/functions.sh
else
exit 0
fi

# quit if executables are not installed
if [ ! -x "$WPA_SUP_BIN" ] || [ ! -x "$WPA_CLI_BIN" ]; then
exit 0
fi

do_start () {
if test_wpa_cli; then
# if wpa_action is active for this IFACE, do nothing
ifupdown_locked && exit 0

# if the administrator is calling ifup, say something useful
if [ "$PHASE" = "pre-up" ]; then
wpa_msg stderr "wpa_action is managing ifup/ifdown state of $WPA_IFACE"
wpa_msg stderr "execute \`ifdown --force $WPA_IFACE' to stop wpa_action"
fi
exit 1
elif ! set | grep -q "^IF_WPA"; then
# no wpa- option defined for IFACE, do nothing
exit 0
fi

# ensure stale ifupdown_lock marker is purged
ifupdown_unlock

# preliminary sanity checks for roaming daemon
if [ -n "$IF_WPA_ROAM" ]; then
if [ "$METHOD" != "manual" ]; then
wpa_msg stderr "wpa-roam can only be used with the \"manual\" inet METHOD"
exit 1
fi
if [ -n "$IF_WPA_MAPPING_SCRIPT" ]; then
if ! type "$IF_WPA_MAPPING_SCRIPT" >/dev/null; then
wpa_msg stderr "wpa-mapping-script \"$IF_WPA_MAPPING_SCRIPT\" is not valid"
exit 1
fi
fi
if [ -n "$IF_WPA_MAPPING_SCRIPT_PRIORITY" ] && [ -z "$IF_WPA_MAPPING_SCRIPT" ]; then
wpa_msg stderr "\"wpa-mapping-script-priority 1\" is invalid without a wpa-mapping-script"
exit 1
fi
IF_WPA_CONF="$IF_WPA_ROAM"
WPA_ACTION_SCRIPT="/sbin/wpa_action"
fi

# master function; determines if ifupdown.sh should do something or not
if [ -n "$IF_WPA_CONF" ] && [ "$IF_WPA_CONF" != "managed" ]; then
if [ ! -s "$IF_WPA_CONF" ]; then
wpa_msg stderr "cannot read contents of $IF_WPA_CONF"
exit 1
fi
WPA_SUP_CONF_CTRL_DIR=$(sed -n -e 's/[[:space:]]*#.*//g' -e 's/[[:space:]]\+.*$//g' \
-e 's/^ctrl_interface=\(DIR=\)\?\(.*\)/\2/p' "$IF_WPA_CONF")
if [ -n "$WPA_SUP_CONF_CTRL_DIR" ]; then
WPA_CTRL_DIR="$WPA_SUP_CONF_CTRL_DIR"
WPA_SUP_CONF="-c $IF_WPA_CONF"
else
# specify the default ctrl_interface since none was defined in
# the given IF_WPA_CONF
WPA_SUP_CONF="-c $IF_WPA_CONF -C $WPA_CTRL_DIR"
fi
else
# specify the default ctrl_interface
WPA_SUP_CONF="-C $WPA_CTRL_DIR"
fi
}

do_stop () {
if test_wpa_cli; then
# if wpa_action is active for this IFACE and calling ifdown,
# do nothing
ifupdown_locked && exit 0
elif test_wpa_supplicant; then
# wpa_supplicant process exists for this IFACE, but wpa_cli
# process does not. Allow stop mode to kill this process.
:
else
exit 0
fi
}

case "$MODE" in
start)
do_start
case "$PHASE" in
pre-up)
kill_wpa_supplicant
init_wpa_supplicant || exit 1
conf_wpa_supplicant || { kill_wpa_supplicant; exit 1; }
;;
post-up)
init_wpa_cli || { kill_wpa_supplicant; exit 1; }
;;
esac
;;

stop)
do_stop
case "$PHASE" in
pre-down)
kill_wpa_cli
;;
post-down)
kill_wpa_supplicant
;;
*)
wpa_msg stderr "unknown phase: \"$PHASE\""
exit 1
;;
esac
;;

*)
wpa_msg stderr "unknown mode: \"$MODE\""
exit 1
;;
esac

exit 0

--[ File: /etc/network/if-pre-up.d/wireless-tools ]--(0755, root, root, 3839)---
#!/bin/sh

IWCONFIG=/sbin/iwconfig

if [ ! -x $IWCONFIG ]; then
  exit 0
fi

# The wireless driver madness:
#
# - Some drivers want everything to be configured before bringing the interface up
# - Some drivers want everything to be configured after bringing the interface up
# - Some drivers want some parameters before, other parameters after bringing the interface up
#
# So, we try to set every parameter when the interface is still down,
# and remember which ones failed to be configured properly.
# If some failed, we bring the interface up, and try the failed ones again.

apply_settings()
{
if [ -n "$IF_WIRELESS_SENS" ]; then
$IWCONFIG "$IFACE" sens $IF_WIRELESS_SENS && IF_WIRELESS_SENS= || FAIL=true
fi

if [ -n "$IF_WIRELESS_MODE" ]; then
$IWCONFIG "$IFACE" mode $IF_WIRELESS_MODE && IF_WIRELESS_MODE= || FAIL=true
fi

if [ -n "$IF_WIRELESS_AP" ]; then
$IWCONFIG "$IFACE" ap $IF_WIRELESS_AP && IF_WIRELESS_AP= || FAIL=true
fi

if [ -n "$IF_WIRELESS_RATE" ]; then
$IWCONFIG "$IFACE" rate $IF_WIRELESS_RATE && IF_WIRELESS_RATE= || FAIL=true
fi

if [ -n "$IF_WIRELESS_RTS" ]; then
$IWCONFIG "$IFACE" rts $IF_WIRELESS_RTS && IF_WIRELESS_RTS= || FAIL=true
fi

if [ -n "$IF_WIRELESS_FRAG" ]; then
$IWCONFIG "$IFACE" frag $IF_WIRELESS_FRAG && IF_WIRELESS_FRAG= || FAIL=true
fi

if [ -n "$IF_WIRELESS_POWER" ]; then
$IWCONFIG "$IFACE" power $IF_WIRELESS_POWER && IF_WIRELESS_POWER= || FAIL=true
fi

if [ -n "$IF_WIRELESS_POWERPERIOD" ]; then
$IWCONFIG "$IFACE" power period $IF_WIRELESS_POWERPERIOD && IF_WIRELESS_POWERPERIOD= || FAIL=true
fi

if [ -n "$IF_WIRELESS_POWERTIMEOUT" ]; then
$IWCONFIG "$IFACE" power timeout $IF_WIRELESS_POWERTIMEOUT && IF_WIRELESS_POWERTIMEOUT= || FAIL=true
fi

if [ -n "$IF_WIRELESS_TXPOWER" ]; then
$IWCONFIG "$IFACE" txpower $IF_WIRELESS_TXPOWER && IF_WIRELESS_TXPOWER= || FAIL=true
fi

if [ -n "$IF_WIRELESS_RETRY" ]; then
$IWCONFIG "$IFACE" retry $IF_WIRELESS_RETRY && IF_WIRELESS_RETRY= || FAIL=true
fi

if [ -n "$IF_WIRELESS_ENC" ]; then
eval $IWCONFIG "$IFACE" enc $IF_WIRELESS_ENC && IF_WIRELESS_ENC= || FAIL=true
fi

if [ -n "$IF_WIRELESS_KEY" ]; then
eval $IWCONFIG "$IFACE" key $IF_WIRELESS_KEY && IF_WIRELESS_KEY= || FAIL=true
fi

if [ -n "$IF_WIRELESS_KEY1" ]; then
$IWCONFIG "$IFACE" key [1] "$IF_WIRELESS_KEY1" && IF_WIRELESS_KEY1= || FAIL=true
fi

if [ -n "$IF_WIRELESS_KEY2" ]; then
$IWCONFIG "$IFACE" key [2] "$IF_WIRELESS_KEY2" && IF_WIRELESS_KEY2= || FAIL=true
fi

if [ -n "$IF_WIRELESS_KEY3" ]; then
$IWCONFIG "$IFACE" key [3] "$IF_WIRELESS_KEY3" && IF_WIRELESS_KEY3= || FAIL=true
fi

if [ -n "$IF_WIRELESS_KEY4" ]; then
$IWCONFIG "$IFACE" key [4] "$IF_WIRELESS_KEY4" && IF_WIRELESS_KEY4= || FAIL=true
fi

if [ -n "$IF_WIRELESS_DEFAULTKEY" ]; then
$IWCONFIG "$IFACE" key ["$IF_WIRELESS_DEFAULTKEY"] && IF_WIRELESS_DEFAULTKEY= || FAIL=true
fi

if [ -n "$IF_WIRELESS_KEYMODE" ]; then
$IWCONFIG "$IFACE" key "$IF_WIRELESS_KEYMODE" && IF_WIRELESS_KEYMODE= || FAIL=true
fi

if [ -n "$IF_WIRELESS_FREQ" ]; then
$IWCONFIG "$IFACE" freq $IF_WIRELESS_FREQ && IF_WIRELESS_FREQ= || FAIL=true
fi

if [ -n "$IF_WIRELESS_CHANNEL" ]; then
$IWCONFIG "$IFACE" channel $IF_WIRELESS_CHANNEL && IF_WIRELESS_CHANNEL= || FAIL=true
fi

if [ -n "$IF_WIRELESS_NICK" ]; then
$IWCONFIG "$IFACE" nick "$IF_WIRELESS_NICK" && IF_WIRELESS_NICK= || FAIL=true
fi

if [ -n "$IF_WIRELESS_NWID" ]; then
$IWCONFIG "$IFACE" nwid "$IF_WIRELESS_NWID" && IF_WIRELESS_NWID= || FAIL=true
fi

if [ -n "$IF_WIRELESS_ESSID" ]; then
$IWCONFIG "$IFACE" essid "$IF_WIRELESS_ESSID" && IF_WIRELESS_ESSID= || FAIL=true
fi

if [ -n "$IF_WIRELESS_COMMIT" ]; then
$IWCONFIG "$IFACE" commit && IF_WIRELESS_COMMIT= || FAIL=true
fi
}

FAIL=
apply_settings 2>/dev/null

if [ -n "$FAIL" ]; then
FAIL=
ifconfig "$IFACE" up
apply_settings
fi

== OPENLDAP ====================================================================
--[ File: /etc/ldap/ldap.conf ]--(0644, root, root, 332)------------------------
#
# LDAP Defaults
#

# See ldap.conf(5) for details
# This file should be world readable but not world writable.

#BASE dc=example,dc=com
#URI ldap://ldap.example.com ldap://ldap-master.example.com:666

#SIZELIMIT 12
#TIMELIMIT 15
#DEREF never

# TLS certificates (needed for GnuTLS)
TLS_CACERT /etc/ssl/certs/ca-certificates.crt


== OPENSSH =====================================================================
--[ File: /etc/ssh/ssh_config ]--(0644, root, root, 1669)-----------------------

# This is the ssh client system-wide configuration file.  See
# ssh_config(5) for more information.  This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.

# Configuration data is parsed as follows:
#  1. command line options
#  2. user-specific file
#  3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.

# Site-wide defaults for some commonly used options.  For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.

Host *
#   ForwardAgent no
#   ForwardX11 no
#   ForwardX11Trusted yes
#   RhostsRSAAuthentication no
#   RSAAuthentication yes
#   PasswordAuthentication yes
#   HostbasedAuthentication no
#   GSSAPIAuthentication no
#   GSSAPIDelegateCredentials no
#   GSSAPIKeyExchange no
#   GSSAPITrustDNS no
#   BatchMode no
#   CheckHostIP yes
#   AddressFamily any
#   ConnectTimeout 0
#   StrictHostKeyChecking ask
#   IdentityFile ~/.ssh/identity
#   IdentityFile ~/.ssh/id_rsa
#   IdentityFile ~/.ssh/id_dsa
#   Port 22
#   Protocol 2,1
#   Cipher 3des
#   Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
#   MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
#   EscapeChar ~
#   Tunnel no
#   TunnelDevice any:any
#   PermitLocalCommand no
#   VisualHostKey no
#   ProxyCommand ssh -q -W %h:%p gateway.example.com
    SendEnv LANG LC_*
    HashKnownHosts yes
    GSSAPIAuthentication yes
    GSSAPIDelegateCredentials no

== PACKAGES ====================================================================
--[ Cmd: /usr/bin/dpkg -l ]--(0755, root, root, 253424)-------------------------
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                                 Version                                 Description
+++-====================================-=======================================-==========================================================================
ii  accountsservice                      0.6.15-2ubuntu9.4                       query and manipulate user account information
ii  acl                                  2.2.51-5ubuntu1                         Access control list utilities
ii  acpi-support                         0.140.1                                 scripts for handling many ACPI events
ii  acpid                                1:2.0.10-1ubuntu3                       Advanced Configuration and Power Interface event daemon
ii  adduser                              3.113ubuntu2                            add and remove users and groups
ii  akonadi-backend-mysql                1.7.2-0ubuntu1                          MySQL storage backend for Akonadi
ii  akonadi-server                       1.7.2-0ubuntu1                          Akonadi PIM storage service
ii  akregator                            4:4.8.5-0ubuntu0.1                      RSS/Atom feed aggregator
ii  alsa-base                            1.0.25+dfsg-0ubuntu1.1                  ALSA driver configuration files
ii  alsa-utils                           1.0.25-1ubuntu5                         Utilities for configuring and using ALSA
ii  amarok                               2:2.5.0-0ubuntu6                        easy to use media player based on the KDE Platform
ii  amarok-common                        2:2.5.0-0ubuntu6                        architecture independent files for Amarok
ii  amarok-help-en                       2:2.5.0-0ubuntu6                        English (en) handbook for Amarok
ii  amarok-utils                         2:2.5.0-0ubuntu6                        utilities for Amarok media player
ii  anacron                              2.3-14ubuntu1                           cron-like program that doesn't go by time
ii  app-install-data                     0.12.04.4                               Ubuntu applications (data files)
ii  app-install-data-partner             12.12.04.1                              Application Installer (data files for partner applications/repositories)
ii  apparmor                             2.7.102-0ubuntu3.7                      User-space parser utility for AppArmor
ii  appmenu-gtk                          0.3.92-0ubuntu1.1                       Export GTK menus over DBus
ii  appmenu-gtk3                         0.3.92-0ubuntu1.1                       Export GTK menus over DBus
ii  appmenu-qt                           0.2.6-0ubuntu1                          appmenu support for Qt
ii  apport                               2.0.1-0ubuntu17.1                       automatically generate crash reports for debugging
ii  apport-kde                           2.0.1-0ubuntu17.1                       KDE frontend for the apport crash report system
ii  apport-symptoms                      0.16.1                                  symptom scripts for apport
ii  apt                                  0.8.16~exp12ubuntu10.7                  commandline package manager
ii  apt-transport-https                  0.8.16~exp12ubuntu10.7                  https download transport for APT
ii  apt-utils                            0.8.16~exp12ubuntu10.7                  package managment related utility programs
ii  apt-xapian-index                     0.44ubuntu5                             maintenance and search tools for a Xapian index of Debian packages
ii  aptdaemon                            0.43+bzr805-0ubuntu8                    transaction based package management service
ii  aptitude                             0.6.6-1ubuntu1.1                        terminal-based package manager (terminal interface only)
ii  apturl-common                        0.5.1ubuntu3                            install packages using the apt protocol - common data
ii  apturl-kde                           0.5.1ubuntu3                            install packages using the apt protocol - KDE frontend
ii  ark                                  4:4.8.5-0ubuntu0.1                      archive utility
ii  aspell                               0.60.7~20110707-1                       GNU Aspell spell-checker
ii  aspell-en                            6.0-0-6ubuntu2                          English dictionary for GNU Aspell
ii  at                                   3.1.13-1ubuntu1                         Delayed job execution and batch processing
ii  avahi-autoipd                        0.6.30-5ubuntu2                         Avahi IPv4LL network address configuration daemon
ii  avahi-daemon                         0.6.30-5ubuntu2                         Avahi mDNS/DNS-SD daemon
ii  avahi-utils                          0.6.30-5ubuntu2                         Avahi browsing, publishing and discovery utilities
ii  base-files                           6.5ubuntu6.5                            Debian base system miscellaneous files
ii  base-passwd                          3.5.24                                  Debian base system master password and group files
ii  bash                                 4.2-2ubuntu2                            GNU Bourne Again SHell
ii  bash-completion                      1:1.3-1ubuntu8                          programmable completion for the bash shell
ii  bc                                   1.06.95-2                               The GNU bc arbitrary precision calculator language
ii  bind9-host                           1:9.8.1.dfsg.P1-4ubuntu0.5              Version of 'host' bundled with BIND 9.X
ii  binutils                             2.22-6ubuntu1                           GNU assembler, linker and binary utilities
ii  bluedevil                            1.2.2-0ubuntu1                          KDE Bluetooth stack
ii  bluez                                4.98-2ubuntu7                           Bluetooth tools and daemons
ii  bluez-alsa                           4.98-2ubuntu7                           Bluetooth ALSA support
ii  bluez-cups                           4.98-2ubuntu7                           Bluetooth printer driver for CUPS
ii  brltty                               4.3-1ubuntu5                            Access software for a blind person using a braille display
ii  bsdmainutils                         8.2.3ubuntu1                            collection of more utilities from FreeBSD
ii  bsdutils                             1:2.20.1-1ubuntu3                       Basic utilities from 4.4BSD-Lite
ii  busybox-initramfs                    1:1.18.5-1ubuntu4.1                     Standalone shell setup for initramfs
ii  busybox-static                       1:1.18.5-1ubuntu4.1                     Standalone rescue shell with tons of builtin utilities
ii  bzip2                                1.0.6-1                                 high-quality block-sorting file compressor - utilities
ii  ca-certificates                      20111211                                Common CA certificates
ii  cdparanoia                           3.10.2+debian-10ubuntu1                 audio extraction tool for sampling CDs
ii  cdrdao                               1:1.2.3-0.1ubuntu3                      records CDs in Disk-At-Once (DAO) mode
ii  cmap-adobe-japan1                    0+20090930-2                            CMaps for Adobe-Japan1
ii  colord                               0.1.16-2ubuntu0.1                       system service to manage device colour profiles -- system daemon
ii  command-not-found                    0.2.46ubuntu6                           Suggest installation of packages in interactive bash sessions
ii  command-not-found-data               0.2.46ubuntu6                           Set of data files for command-not-found.
ii  console-setup                        1.70ubuntu5                             console font and keymap setup program
ii  consolekit                           0.4.5-2                                 framework for defining and tracking users, sessions and seats
ii  coreutils                            8.13-3ubuntu3.2                         GNU core utilities
ii  cpio                                 2.11-7ubuntu3                           GNU cpio -- a program to manage archives of files
ii  cpp                                  4:4.6.3-1ubuntu5                        GNU C preprocessor (cpp)
ii  cpp-4.6                              4.6.3-1ubuntu5                          GNU C preprocessor
ii  crda                                 1.1.2-1ubuntu1                          wireless Central Regulatory Domain Agent
ii  cron                                 3.0pl1-120ubuntu4                       process scheduling daemon
ii  cryptsetup                           2:1.4.1-2ubuntu4                        disk encryption support - startup scripts
ii  cryptsetup-bin                       2:1.4.1-2ubuntu4                        disk encryption support - command line tools
ii  cups                                 1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - server
ii  cups-bsd                             1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - BSD commands
ii  cups-client                          1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - client programs (SysV)
ii  cups-common                          1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - common files
ii  cups-filters                         1.0.18-0ubuntu0.1                       OpenPrinting CUPS Filters
ii  cups-ppdc                            1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - PPD manipulation utilities
ii  dash                                 0.5.7-2ubuntu2                          POSIX-compliant shell
ii  dbus                                 1.4.18-1ubuntu1.3                       simple interprocess messaging system (daemon and utilities)
ii  dbus-x11                             1.4.18-1ubuntu1.3                       simple interprocess messaging system (X11 deps)
ii  dc                                   1.06.95-2                               The GNU dc arbitrary precision reverse-polish calculator
ii  dconf                                0.5.1-2                                 collect system information
ii  dconf-gsettings-backend              0.12.0-0ubuntu1.1                       simple configuration storage system - GSettings back-end
ii  dconf-service                        0.12.0-0ubuntu1.1                       simple configuration storage system - D-Bus service
ii  debconf                              1.5.42ubuntu1                           Debian configuration management system
ii  debconf-i18n                         1.5.42ubuntu1                           full internationalization support for debconf
ii  debianutils                          4.2.1ubuntu2                            Miscellaneous utilities specific to Debian
ii  dictionaries-common                  1.12.1ubuntu2                           Common utilities for spelling dictionary tools
ii  diffutils                            1:3.2-1ubuntu1                          File comparison utilities
ii  dmidecode                            2.11-4                                  SMBIOS/DMI table decoder
ii  dmsetup                              2:1.02.48-4ubuntu7.1                    The Linux Kernel Device Mapper userspace library
ii  dnsmasq-base                         2.59-4                                  Small caching DNS proxy and DHCP/TFTP server
ii  dnsutils                             1:9.8.1.dfsg.P1-4ubuntu0.5              Clients provided with BIND
ii  docbook-xml                          4.5-7ubuntu1                            standard XML documentation system for software and systems
ii  docbook-xsl                          1.76.1+dfsg-1ubuntu1                    stylesheets for processing DocBook XML to various output formats
ii  dolphin                              4:4.8.5-0ubuntu0.1                      file manager
ii  dosfstools                           3.0.12-1ubuntu1                         utilities for making and checking MS-DOS FAT filesystems
ii  dpkg                                 1.16.1.2ubuntu7.1                       Debian package management system
ii  dragonplayer                         4:4.8.5-0ubuntu1                        simple video player
ii  dvd+rw-tools                         7.1-10                                  DVD+-RW/R tools
ii  e2fslibs                             1.42-1ubuntu2                           ext2/ext3/ext4 file system libraries
ii  e2fsprogs                            1.42-1ubuntu2                           ext2/ext3/ext4 file system utilities
ii  ed                                   1.5-3                                   classic UNIX line editor
ii  efibootmgr                           0.5.4-2ubuntu1                          Interact with the EFI Boot Manager
ii  eject                                2.1.5+deb1+cvs20081104-9                ejects CDs and operates CD-Changers under Linux
ii  enchant                              1.6.0-7                                 Wrapper for various spell checker engines (binary programs)
ii  file                                 5.09-2                                  Determines file type using "magic" numbers
ii  findutils                            4.4.2-4ubuntu1                          utilities for finding files--find, xargs
ii  firefox                              19.0.2+build1-0ubuntu0.12.04.1          Safe and easy web browser from Mozilla
ii  firefox-globalmenu                   19.0.2+build1-0ubuntu0.12.04.1          Unity appmenu integration for Firefox
ii  flashplugin-installer                11.2.202.273ubuntu0.12.04.1             Adobe Flash Player plugin installer
ii  fontconfig                           2.8.0-3ubuntu9.1                        generic font configuration library - support binaries
ii  fontconfig-config                    2.8.0-3ubuntu9.1                        generic font configuration library - configuration
ii  fonts-kacst                          2.01+mry-3                              KACST free TrueType Arabic fonts
ii  fonts-kacst-one                      5.0+svn11846-2                          TrueType font designed for Arabic language
ii  fonts-khmeros-core                   5.0-5ubuntu1                            KhmerOS Unicode fonts for the Khmer language of Cambodia
ii  fonts-lao                            0.0.20060226-8                          TrueType font for Lao language
ii  fonts-liberation                     1.07.0-2ubuntu0.1                       Fonts with the same metrics as Times, Arial and Courier
ii  fonts-nanum                          3.010-2                                 Nanum Korean fonts
ii  fonts-opensymbol                     2:102.2+LibO3.5.7-0ubuntu4              OpenSymbol TrueType font
ii  fonts-takao-pgothic                  003.02.01-5ubuntu1                      Japanese TrueType font set, Takao P Gothic Fonts
ii  fonts-thai-tlwg                      1:0.4.17-1ubuntu1                       Thai fonts maintained by TLWG (meta package)
ii  fonts-tlwg-garuda                    1:0.4.17-1ubuntu1                       Thai Garuda font
ii  fonts-tlwg-kinnari                   1:0.4.17-1ubuntu1                       Thai Kinnari font
ii  fonts-tlwg-loma                      1:0.4.17-1ubuntu1                       Thai Loma font
ii  fonts-tlwg-mono                      1:0.4.17-1ubuntu1                       Thai TlwgMono font
ii  fonts-tlwg-norasi                    1:0.4.17-1ubuntu1                       Thai Norasi font
ii  fonts-tlwg-purisa                    1:0.4.17-1ubuntu1                       Thai Purisa font
ii  fonts-tlwg-sawasdee                  1:0.4.17-1ubuntu1                       Thai Sawasdee font
ii  fonts-tlwg-typewriter                1:0.4.17-1ubuntu1                       Thai TlwgTypewriter font
ii  fonts-tlwg-typist                    1:0.4.17-1ubuntu1                       Thai TlwgTypist font
ii  fonts-tlwg-typo                      1:0.4.17-1ubuntu1                       Thai TlwgTypo font
ii  fonts-tlwg-umpush                    1:0.4.17-1ubuntu1                       Thai Umpush font
ii  fonts-tlwg-waree                     1:0.4.17-1ubuntu1                       Thai Waree font
ii  foomatic-db-compressed-ppds          20120322-0ubuntu1                       OpenPrinting printer support - Compressed PPDs derived from the database
ii  foomatic-db-engine                   4.0.8-2ubuntu1                          OpenPrinting printer support - programs
ii  foomatic-filters                     4.0.16-0ubuntu0.2                       OpenPrinting printer support - filters
ii  freespacenotifier                    4:4.8.5-0ubuntu0.3                      free space notification module for KDE
ii  friendly-recovery                    0.2.25                                  Make recovery more user-friendly
ii  ftp                                  0.17-25                                 classical file transfer client
ii  fuse                                 2.8.6-2ubuntu2                          Filesystem in Userspace
ii  gcc-4.6-base                         4.6.3-1ubuntu5                          GCC, the GNU Compiler Collection (base package)
ii  gdb                                  7.4-2012.04-0ubuntu2.1                  The GNU Debugger
ii  genisoimage                          9:1.1.11-2ubuntu2                       Creates ISO-9660 CD-ROM filesystem images
ii  geoip-database                       20111220-1                              IP lookup command line tools that use the GeoIP library (country database)
ii  gettext-base                         0.18.1.1-5ubuntu3                       GNU Internationalization utilities for the base system
ii  ghostscript                          9.05~dfsg-0ubuntu4.2                    interpreter for the PostScript language and for PDF
ii  ghostscript-cups                     9.05~dfsg-0ubuntu4.2                    interpreter for the PostScript language and for PDF - CUPS filters
ii  ghostscript-x                        9.05~dfsg-0ubuntu4.2                    interpreter for the PostScript language and for PDF - X11 support
ii  gir1.2-glib-2.0                      1.32.0-1                                Introspection data for GLib, GObject, Gio and GModule
ii  glib-networking                      2.32.1-1ubuntu2                         network-related giomodules for GLib
ii  glib-networking-common               2.32.1-1ubuntu2                         network-related giomodules for GLib - data files
ii  glib-networking-services             2.32.1-1ubuntu2                         network-related giomodules for GLib - D-Bus services
ii  gnupg                                1.4.11-3ubuntu2.2                       GNU privacy guard - a free PGP replacement
ii  gnupg-agent                          2.0.17-2ubuntu2.12.04.2                 GNU privacy guard - password agent
ii  gnupg2                               2.0.17-2ubuntu2.12.04.2                 GNU privacy guard - a free PGP replacement (new v2.x)
ii  gpgsm                                2.0.17-2ubuntu2.12.04.2                 GNU privacy guard - S/MIME version
ii  gpgv                                 1.4.11-3ubuntu2.2                       GNU privacy guard - signature verification tool
ii  gpsd                                 3.4-2                                   Global Positioning System - daemon
ii  grep                                 2.10-1                                  GNU grep, egrep and fgrep
ii  groff-base                           1.21-7                                  GNU troff text-formatting system (base system components)
ii  growisofs                            7.1-10                                  DVD+-RW/R recorder
ii  grub-common                          1.99-21ubuntu3.9                        GRand Unified Bootloader (common files)
ii  grub-efi                             1.99-21ubuntu3.9                        GRand Unified Bootloader, version 2 (dummy package)
ii  grub-efi-amd64                       1.99-21ubuntu3.9                        GRand Unified Bootloader, version 2 (EFI-AMD64 version)
ii  grub-efi-amd64-bin                   1.99-21ubuntu3.9                        GRand Unified Bootloader, version 2 (EFI-AMD64 binaries)
ii  grub2-common                         1.99-21ubuntu3.9                        GRand Unified Bootloader (common files for version 2)
ii  gs-cjk-resource                      1.20100103-3                            Resource files for gs-cjk, ghostscript CJK-TrueType extension
ii  gsettings-desktop-schemas            3.4.1-0ubuntu1                          GSettings deskop-wide schemas
ii  gsfonts                              1:8.11+urwcyr1.0.7~pre44-4.2ubuntu1     Fonts for the Ghostscript interpreter(s)
ii  gstreamer0.10-alsa                   0.10.36-1ubuntu0.1                      GStreamer plugin for ALSA
ii  gstreamer0.10-fluendo-mp3            0.10.15.debian-1ubuntu1                 Fluendo mp3 decoder GStreamer plugin
ii  gstreamer0.10-plugins-base           0.10.36-1ubuntu0.1                      GStreamer plugins from the "base" set
ii  gstreamer0.10-plugins-good           0.10.31-1ubuntu1.1                      GStreamer plugins from the "good" set
ii  gstreamer0.10-plugins-ugly           0.10.18.3-1ubuntu1                      GStreamer plugins from the "ugly" set
ii  gstreamer0.10-pulseaudio             0.10.31-1ubuntu1.1                      GStreamer plugin for PulseAudio
ii  gstreamer0.10-qapt                   1.3.1-0ubuntu2                          GStreamer plugin to install codecs using QApt
ii  gstreamer0.10-x                      0.10.36-1ubuntu0.1                      GStreamer plugins for X11 and Pango
ii  gtk2-engines-oxygen                  1.2.2-0ubuntu1.1                        Oxygen widget theme for GTK+-based applications
ii  gtk3-engines-oxygen                  1.0.2-0ubuntu2                          Oxygen widget theme for GTK3-based applications
ii  gwenview                             4:4.8.5-0ubuntu0.1                      image viewer
ii  gzip                                 1.4-1ubuntu2                            GNU compression utilities
ii  hdparm                               9.37-0ubuntu3.1                         tune hard disk parameters for high performance
ii  hicolor-icon-theme                   0.12-1ubuntu2                           default fallback theme for FreeDesktop.org icon themes
ii  hostname                             3.06ubuntu1                             utility to set/show the host name or domain name
ii  hplip                                3.12.2-1ubuntu3.1                       HP Linux Printing and Imaging System (HPLIP)
ii  hplip-data                           3.12.2-1ubuntu3.1                       HP Linux Printing and Imaging - data files
ii  hunspell-en-ca                       1:3.3.0-2ubuntu3                        English_canadian dictionary for hunspell
ii  hunspell-en-us                       20070829-4ubuntu3                       English_american dictionary for hunspell
ii  hyphen-en-us                         2.8.3-1                                 US English hyphenation patterns for LibreOffice/OpenOffice.org
ii  ibus-qt4                             1.3.1-2ubuntu2                          qt-immodule for ibus (QT4)
ii  icoutils                             0.29.1-2                                Create and extract MS Windows icons and cursors
ii  ifupdown                             0.7~beta2ubuntu8                        high level tools to configure network interfaces
ii  im-switch                            1.20ubuntu5.2                           Input method switch framework
ii  info                                 4.13a.dfsg.1-8ubuntu2                   Standalone GNU Info documentation browser
ii  initramfs-tools                      0.99ubuntu13.1                          tools for generating an initramfs
ii  initramfs-tools-bin                  0.99ubuntu13.1                          binaries used by initramfs-tools
ii  initscripts                          2.88dsf-13.10ubuntu11.1                 scripts for initializing and shutting down the system
ii  inputattach                          1:1.4.2-1                               utility to connect serial-attached peripherals to the input subsystem
ii  insserv                              1.14.0-2.1ubuntu2                       Tool to organize boot sequence using LSB init.d script dependencies
ii  install-info                         4.13a.dfsg.1-8ubuntu2                   Manage installed documentation in info format
ii  installation-report                  2.46ubuntu1                             system installation report
ii  iproute                              20111117-1ubuntu2                       networking and traffic control tools
ii  iptables                             1.4.12-1ubuntu4                         administration tools for packet filtering and NAT
ii  iputils-arping                       3:20101006-1ubuntu1                     Tool to send ICMP echo requests to an ARP address
ii  iputils-ping                         3:20101006-1ubuntu1                     Tools to test the reachability of network hosts
ii  iputils-tracepath                    3:20101006-1ubuntu1                     Tools to trace the network path to a remote host
ii  irqbalance                           0.56-1ubuntu4                           Daemon to balance interrupts for SMP systems
ii  isc-dhcp-client                      4.1.ESV-R4-0ubuntu5.6                   ISC DHCP client
ii  isc-dhcp-common                      4.1.ESV-R4-0ubuntu5.6                   common files used by all the isc-dhcp* packages
ii  iso-codes                            3.31-1                                  ISO language, territory, currency, script codes and their translations
ii  jockey-common                        0.9.7-0ubuntu7.7                        user interface and desktop integration for driver management
ii  jockey-kde                           0.9.7-0ubuntu7.7                        KDE user interface and desktop integration for driver management
ii  k3b                                  2.0.2-3ubuntu4                          Sophisticated CD/DVD burning application
ii  k3b-data                             2.0.2-3ubuntu4                          Sophisticated CD/DVD burning application - data files
ii  kaccessible                          4:4.8.2-0ubuntu2                        accessibility services for Qt applications
ii  kaddressbook                         4:4.8.5-0ubuntu0.1                      address book and contact data manager
ii  kamera                               4:4.8.5-0ubuntu0.1                      digital camera support for KDE applications
ii  kate                                 4:4.8.5-0ubuntu0.1                      K Advanced Text Editor
ii  kate-data                            4:4.8.5-0ubuntu0.1                      shared data files for kate
ii  katepart                             4:4.8.5-0ubuntu0.1                      kate KPart
ii  kbd                                  1.15.2-3ubuntu4                         Linux console font and keytable utilities
ii  kcalc                                4:4.8.3-0ubuntu0.1                      simple and scientific calculator
ii  kde-baseapps-bin                     4:4.8.5-0ubuntu0.1                      core binaries for the KDE base applications
ii  kde-baseapps-data                    4:4.8.5-0ubuntu0.1                      shared data files for the KDE base applications
ii  kde-config-gtk                       2:0.5.3-1ubuntu3                        Configuration module for GTK+ appearance in KDE
ii  kde-config-touchpad                  0.8.1-1ubuntu1.1                        touchpad configuration tool (synaptiks)
ii  kde-l10n-engb                        4:4.8.5-0ubuntu0.1                      British English (engb) localization for KDE
ii  kde-runtime                          4:4.8.5-0ubuntu0.1                      runtime components from the official KDE release
ii  kde-runtime-data                     4:4.8.5-0ubuntu0.1                      shared data files for the KDE base runtime module
ii  kde-style-oxygen                     4:4.8.5-0ubuntu0.3                      Oxygen widget style
ii  kde-wallpapers-default               4:4.8.3-0ubuntu0.1                      default wallpaper for the Plasma workspace
ii  kde-window-manager                   4:4.8.5-0ubuntu0.3                      K window manager (KWin)
ii  kde-window-manager-common            4:4.8.5-0ubuntu0.3                      K window manager (KWin) Common Files
ii  kde-workspace                        4:4.8.5-0ubuntu0.3                      KDE Plasma Workspace components
ii  kde-workspace-bin                    4:4.8.5-0ubuntu0.3                      core binaries for the KDE Plasma Workspace
ii  kde-workspace-data                   4:4.8.5-0ubuntu0.3                      shared data files for the KDE Plasma Workspace
ii  kde-workspace-kgreet-plugins         4:4.8.5-0ubuntu0.3                      KDE greet libraries for authentication
ii  kde-zeroconf                         4:4.8.5-0ubuntu0.2                      zeroconf plugins and kio slaves for KDE
ii  kdegames-card-data                   4:4.8.5-0ubuntu0.1                      card decks for KDE games
ii  kdegraphics-strigi-analyzer          4:4.8.3-0ubuntu0.1                      graphics file format plugins for Strigi Desktop Search
ii  kdelibs-bin                          4:4.8.5-0ubuntu0.1                      core executables for KDE Applications
ii  kdelibs5-data                        4:4.8.5-0ubuntu0.1                      core shared data for all KDE Applications
ii  kdelibs5-plugins                     4:4.8.5-0ubuntu0.1                      core plugins for KDE Applications
ii  kdemultimedia-kio-plugins            4:4.8.5-0ubuntu1                        transparent audio CD access for applications using the KDE Platform
ii  kdenetwork-filesharing               4:4.8.5-0ubuntu0.2                      network filesharing configuration module
ii  kdepasswd                            4:4.8.5-0ubuntu0.1                      graphical password changing utility
ii  kdepim-kresources                    4:4.8.5-0ubuntu0.1                      KDE PIM resource plugins
ii  kdepim-runtime                       4:4.8.5-0ubuntu0.1                      Runtime components for akonadi-kde
ii  kdepim-strigi-plugins                4:4.8.5-0ubuntu0.1                      PIM file format plugins for Strigi Desktop Search
ii  kdepimlibs-kio-plugins               4:4.8.5-0ubuntu0.1                      kio slaves used by KDE PIM applications
ii  kdesudo                              3.4.2.4-1ubuntu1                        sudo frontend for KDE
ii  kdm                                  4:4.8.5-0ubuntu0.3                      KDE Display Manager for X11
ii  kdoctools                            4:4.8.5-0ubuntu0.1                      various tools for accessing application documentation
ii  keepassx                             0.4.3-1ubuntu2                          Cross Platform Password Manager
ii  kerneloops-daemon                    0.12+git20090217-1ubuntu19              kernel oops tracker
ii  keyboard-configuration               1.70ubuntu5                             system-wide keyboard preferences
ii  khelpcenter4                         4:4.8.5-0ubuntu0.1                      help center
ii  kinfocenter                          4:4.8.5-0ubuntu0.3                      system information viewer
ii  klibc-utils                          1.5.25-1ubuntu2                         small utilities built with klibc for early boot
ii  klipper                              4:4.8.5-0ubuntu0.3                      clipboard manager
ii  kmag                                 4:4.8.2-0ubuntu2                        screen magnifier tool
ii  kmail                                4:4.8.5-0ubuntu0.1                      full featured graphical email client
ii  kmenuedit                            4:4.8.5-0ubuntu0.3                      XDG menu editor
ii  kmix                                 4:4.8.5-0ubuntu1                        volume control and mixer
ii  kmousetool                           4:4.8.2-0ubuntu2                        mouse manipulation tool for the disabled
ii  knotes                               4:4.8.5-0ubuntu0.1                      sticky notes application
ii  konsole                              4:4.8.5-0ubuntu0.1                      X terminal emulator
ii  kontact                              4:4.8.5-0ubuntu0.1                      integrated application for personal information management
ii  kopete                               4:4.8.5-0ubuntu0.2                      instant messaging and chat application
ii  kopete-message-indicator             0.2.1-0ubuntu2                          Kopete plugin for Message Indicator
ii  korganizer                           4:4.8.5-0ubuntu0.1                      calendar and personal organizer
ii  kpat                                 4:4.8.5-0ubuntu0.1                      solitaire card games
ii  kppp                                 4:4.8.5-0ubuntu0.2                      modem dialer for KDE
ii  krb5-locales                         1.10+dfsg~beta1-2ubuntu0.3              Internationalization support for MIT Kerberos
ii  ksnapshot                            4:4.8.2-0ubuntu1                        screen capture tool
ii  ksysguard                            4:4.8.5-0ubuntu0.3                      process monitor and system statistics
ii  ksysguardd                           4:4.8.5-0ubuntu0.3                      System Guard Daemon
ii  ksystemlog                           4:4.8.5-0ubuntu0.1                      system log viewer
ii  ktorrent                             4.1.3-1ubuntu1                          BitTorrent client based on the KDE platform
ii  ktorrent-data                        4.1.3-1ubuntu1                          KTorrent data and other architecture independent files
ii  kubuntu-debug-installer              11.10ubuntu1                            Debug package installer for Kubuntu
ii  kubuntu-default-settings             1:12.04ubuntu4                          Default settings and artwork for the Kubuntu desktop
ii  kubuntu-desktop                      1.254                                   Kubuntu Plasma Desktop/Netbook system
ii  kubuntu-docs                         12.04.0ubuntu1.1                        kubuntu system documentation
ii  kubuntu-firefox-installer            12.04ubuntu1                            Mozilla Firefox installer for Kubuntu
ii  kubuntu-netbook-default-settings     11.10ubuntu3                            Default settings and artwork for Kubuntu Netbooks
ii  kubuntu-notification-helper          11.10ubuntu1                            Kubuntu system notification helper
ii  kubuntu-web-shortcuts                11.10ubuntu2                            web shortcuts for Kubuntu, Ubuntu, Launchpad
ii  kvkbd                                1:0.6-3                                 Virtual keyboard for KDE
ii  kwalletmanager                       4:4.8.4-0ubuntu0.1                      secure password wallet manager
ii  language-pack-en                     1:12.04+20130128                        translation updates for language English
ii  language-pack-en-base                1:12.04+20130128                        translations for language English
ii  language-pack-kde-en                 1:12.04+20130128                        KDE translation updates for language English
ii  language-pack-kde-en-base            1:12.04+20130128                        KDE translations for language English
ii  language-selector-common             0.79.1                                  Language selector for Ubuntu
ii  language-selector-kde                0.79.1                                  Language selector for Kubuntu
ii  laptop-detect                        0.13.7ubuntu2                           attempt to detect a laptop
ii  less                                 444-1ubuntu1                            pager program similar to more
ii  liba52-0.7.4                         0.7.4-16build1                          library for decoding ATSC A/52 streams
ii  libaa1                               1.4p5-39ubuntu1                         ASCII art library
ii  libaccountsservice0                  0.6.15-2ubuntu9.4                       query and manipulate user account information - shared libraries
ii  libacl1                              2.2.51-5ubuntu1                         Access control list shared library
ii  libakonadi-calendar4                 4:4.8.5-0ubuntu0.1                      library providing calendar helpers for Akonadi items
ii  libakonadi-contact4                  4:4.8.5-0ubuntu0.1                      library for using the Akonadi PIM data server
ii  libakonadi-kabc4                     4:4.8.5-0ubuntu0.1                      library for using the Akonadi PIM data server
ii  libakonadi-kcal4                     4:4.8.5-0ubuntu0.1                      library for using the Akonadi PIM data server
ii  libakonadi-kde4                      4:4.8.5-0ubuntu0.1                      library for using the Akonadi PIM data server
ii  libakonadi-kmime4                    4:4.8.5-0ubuntu0.1                      library for using the Akonadi PIM data server
ii  libakonadi-notes4                    4:4.8.5-0ubuntu0.1                      library providing notes helpers for Akonadi items
ii  libakonadiprotocolinternals1         1.7.2-0ubuntu1                          libraries for the Akonadi PIM storage service
ii  libapt-inst1.4                       0.8.16~exp12ubuntu10.7                  deb package format runtime library
ii  libapt-pkg4.12                       0.8.16~exp12ubuntu10.7                  package managment runtime library
ii  libarchive12                         3.0.3-6ubuntu1                          Multi-format archive and compression library (shared library)
ii  libart-2.0-2                         2.3.21-1ubuntu0.1                       Library of functions for 2D graphics - runtime files
ii  libasn1-8-heimdal                    1.6~git20120311.dfsg.1-2                Heimdal Kerberos - ASN.1 library
ii  libasound2                           1.0.25-1ubuntu10.1                      shared library for ALSA applications
ii  libasound2-plugins                   1.0.25-1ubuntu1                         ALSA library additional plugins
ii  libaspell15                          0.60.7~20110707-1                       GNU Aspell spell-checker runtime library
ii  libassuan0                           2.0.2-1ubuntu1                          IPC library for the GnuPG components
ii  libasyncns0                          0.8-4                                   Asynchronous name service query library
ii  libatasmart4                         0.18-3                                  ATA S.M.A.R.T. reading and parsing library
ii  libatk1.0-0                          2.4.0-0ubuntu1                          ATK accessibility toolkit
ii  libatk1.0-data                       2.4.0-0ubuntu1                          Common files for the ATK accessibility toolkit
ii  libattica0.3                         0.3.0-0ubuntu2                          a Qt library that implements the Open Collaboration Services API
ii  libattr1                             1:2.4.46-5ubuntu1                       Extended attribute shared library
ii  libaudio2                            1.9.3-4                                 Network Audio System - shared libraries
ii  libavahi-client3                     0.6.30-5ubuntu2                         Avahi client library
ii  libavahi-common-data                 0.6.30-5ubuntu2                         Avahi common data files
ii  libavahi-common3                     0.6.30-5ubuntu2                         Avahi common library
ii  libavahi-core7                       0.6.30-5ubuntu2                         Avahi's embeddable mDNS/DNS-SD library
ii  libavc1394-0                         0.5.3-1ubuntu2                          control IEEE 1394 audio/video devices
ii  libbind9-80                          1:9.8.1.dfsg.P1-4ubuntu0.5              BIND9 Shared Library used by BIND
ii  libblkid1                            2.20.1-1ubuntu3                         block device id library
ii  libbluedevil1                        1.9.1-0ubuntu1                          A Qt wrapper for bluez
ii  libbluetooth3                        4.98-2ubuntu7                           Library to use the BlueZ Linux Bluetooth stack
ii  libboost-iostreams1.46.1             1.46.1-7ubuntu3                         Boost.Iostreams Library
ii  libboost-program-options1.46.1       1.46.1-7ubuntu3                         program options library for C++
ii  libbrlapi0.5                         4.3-1ubuntu5                            braille display access via BRLTTY - shared library
ii  libbsd0                              0.3.0-2                                 utility functions from BSD systems - shared library
ii  libbz2-1.0                           1.0.6-1                                 high-quality block-sorting file compressor library - runtime
ii  libc-bin                             2.15-0ubuntu10.3                        Embedded GNU C Library: Binaries
ii  libc6                                2.15-0ubuntu10.3                        Embedded GNU C Library: Shared libraries
ii  libcaca0                             0.99.beta17-2.1ubuntu2                  colour ASCII art library
ii  libcairo-gobject2                    1.10.2-6.1ubuntu3                       The Cairo 2D vector graphics library (GObject library)
ii  libcairo2                            1.10.2-6.1ubuntu3                       The Cairo 2D vector graphics library
ii  libcalendarsupport4                  4:4.8.5-0ubuntu0.1                      calendar support library
ii  libcanberra-pulse                    0.28-3ubuntu3                           PulseAudio backend for libcanberra
ii  libcanberra0                         0.28-3ubuntu3                           simple abstract interface for playing event sounds
ii  libcap-ng0                           0.6.6-1ubuntu1                          An alternate POSIX capabilities library
ii  libcap2                              1:2.22-1ubuntu3                         support for getting/setting POSIX.1e capabilities
ii  libcdio13                            0.83-1                                  library to read and control CD-ROM
ii  libcdparanoia0                       3.10.2+debian-10ubuntu1                 audio extraction tool for sampling CDs (library)
ii  libck-connector0                     0.4.5-2                                 ConsoleKit libraries
ii  libclass-accessor-perl               0.34-1                                  Perl module that automatically generates accessors
ii  libclass-isa-perl                    0.36-3                                  report the search path for a class's ISA tree
ii  libcln6                              1.3.2-1.1                               Class Library for Numbers (C++)
ii  libclucene0ldbl                      0.9.21b-2                               library for full-featured text search engine (runtime)
ii  libcmis-0.2-0                        0.1.0-1                                 CMIS protocol client library
ii  libcolord1                           0.1.16-2ubuntu0.1                       system service to manage device colour profiles -- runtime
ii  libcomerr2                           1.42-1ubuntu2                           common error description library
ii  libcroco3                            0.6.5-1                                 Cascading Style Sheet (CSS) parsing and manipulation toolkit
ii  libcrypt-passwdmd5-perl              1.3-10                                  interoperable MD5-based crypt() for perl
ii  libcryptsetup4                       2:1.4.1-2ubuntu4                        disk encryption support - shared library
ii  libcups2                             1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - Core library
ii  libcupscgi1                          1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - CGI library
ii  libcupsdriver1                       1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - Driver library
ii  libcupsfilters1                      1.0.18-0ubuntu0.1                       OpenPrinting CUPS Filters - Shared library
ii  libcupsimage2                        1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - Raster image library
ii  libcupsmime1                         1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - MIME library
ii  libcupsppdc1                         1.5.3-0ubuntu6                          Common UNIX Printing System(tm) - PPD manipulation library
ii  libcurl3-gnutls                      7.22.0-3ubuntu4                         Multi-protocol file transfer library (GnuTLS)
ii  libcwidget3                          0.5.16-3.1ubuntu1                       high-level terminal interface library for C++ (runtime files)
ii  libdaemon0                           0.14-2                                  lightweight C library for daemons - runtime library
ii  libdatrie1                           0.2.5-3                                 Double-array trie library
ii  libdb5.1                             5.1.25-11build1                         Berkeley v5.1 Database Libraries [runtime]
ii  libdbus-1-3                          1.4.18-1ubuntu1.3                       simple interprocess messaging system (library)
ii  libdbus-glib-1-2                     0.98-1ubuntu1.1                         simple interprocess messaging system (GLib-based shared library)
ii  libdbusmenu-glib4                    0.6.2-0ubuntu0.1                        library for passing menus over DBus
ii  libdbusmenu-gtk3-4                   0.6.2-0ubuntu0.1                        library for passing menus over DBus - GTK+ version
ii  libdbusmenu-gtk4                     0.6.2-0ubuntu0.1                        library for passing menus over DBus - GTK+ version
ii  libdbusmenu-qt2                      0.9.2-0ubuntu1                          Qt implementation of the DBusMenu protocol
ii  libdconf0                            0.12.0-0ubuntu1.1                       simple configuration storage system - runtime library
ii  libdebconf-kde0                      0.2-2                                   Debconf KDE GUI library
ii  libdevmapper-event1.02.1             2:1.02.48-4ubuntu7.1                    The Linux Kernel Device Mapper userspace library
ii  libdevmapper1.02.1                   2:1.02.48-4ubuntu7.1                    The Linux Kernel Device Mapper userspace library
ii  libdiscid0                           0.2.2-3                                 Library for creating MusicBrainz DiscIDs
ii  libdjvulibre-text                    3.5.24-9                                Linguistic support files for libdjvulibre
ii  libdjvulibre21                       3.5.24-9                                Runtime support for the DjVu image format
ii  libdlrestrictions1                   0.14.2ubuntu5                           library that implements library compatibility checks for dlopen()
ii  libdmtx0a                            0.7.2-1build2                           Data Matrix barcodes (runtime library)
ii  libdns81                             1:9.8.1.dfsg.P1-4ubuntu0.5              DNS Shared Library used by BIND
ii  libdrm-intel1                        2.4.39-0ubuntu0.1                       Userspace interface to intel-specific kernel DRM services -- runtime
ii  libdrm-nouveau1a                     2.4.39-0ubuntu0.1                       Userspace interface to nouveau-specific kernel DRM services -- runtime
ii  libdrm-radeon1                       2.4.39-0ubuntu0.1                       Userspace interface to radeon-specific kernel DRM services -- runtime
ii  libdrm2                              2.4.39-0ubuntu0.1                       Userspace interface to kernel DRM services -- runtime
ii  libdv4                               1.0.0-3ubuntu1                          software library for DV format digital video (runtime lib)
ii  libdvdnav4                           4.2.0-1                                 DVD navigation library
ii  libdvdread4                          4.2.0-1ubuntu3                          library for reading DVDs
ii  libedit2                             2.11-20080614-3ubuntu2                  BSD editline and history libraries
ii  libelf1                              0.152-1ubuntu3                          library to read and write ELF files
ii  libenchant1c2a                       1.6.0-7                                 Wrapper library for various spell checker engines (runtime libs)
ii  libencode-locale-perl                1.02-2                                  utility to determine the locale encoding
ii  libept1.4.12                         1.0.6~exp1ubuntu1                       High-level library for managing Debian package information
ii  libepub0                             0.2.1-2build1                           library to work with the EPub file format - runtime library
ii  libeventviews4                       4:4.8.5-0ubuntu0.1                      event view library
ii  libexif12                            0.6.20-2ubuntu0.1                       library to parse EXIF files
ii  libexiv2-11                          0.22-2                                  EXIF/IPTC metadata manipulation library
ii  libexpat1                            2.0.1-7.2ubuntu1.1                      XML parsing C library - runtime library
ii  libexttextcat-data                   3.2.0-1ubuntu1                          Language detection library - data files
ii  libexttextcat0                       3.2.0-1ubuntu1                          Language detection library
ii  libffi6                              3.0.11~rc1-5                            Foreign Function Interface library runtime
ii  libfile-basedir-perl                 0.03-1fakesync1                         Perl module to use the freedesktop basedir specification
ii  libfile-copy-recursive-perl          0.38-1                                  Perl extension for recursively copying files and directories
ii  libfile-desktopentry-perl            0.04-3                                  Perl module to handle freedesktop .desktop files
ii  libfile-listing-perl                 6.03-1                                  module to parse directory listings
ii  libfile-mimeinfo-perl                0.15-2                                  Perl module to determine file types
ii  libflac++6                           1.2.1-6                                 Free Lossless Audio Codec - C++ runtime library
ii  libflac8                             1.2.1-6                                 Free Lossless Audio Codec - runtime C library
ii  libfont-afm-perl                     1.20-1                                  Font::AFM - Interface to Adobe Font Metrics files
ii  libfontconfig1                       2.8.0-3ubuntu9.1                        generic font configuration library - runtime
ii  libfontenc1                          1:1.1.0-1                               X11 font encoding library
ii  libfreetype6                         2.4.8-1ubuntu2.1                        FreeType 2 font engine, shared library files
ii  libfribidi0                          0.19.2-1                                Free Implementation of the Unicode BiDi algorithm
ii  libfs6                               2:1.0.3-1                               X11 Font Services library
ii  libfuse2                             2.8.6-2ubuntu2                          Filesystem in Userspace (library)
ii  libgadu3                             1:1.11.1-1                              Gadu-Gadu protocol library - runtime files
ii  libgcc1                              1:4.6.3-1ubuntu5                        GCC support library
ii  libgcrypt11                          1.5.0-3ubuntu0.1                        LGPL Crypto library - runtime library
ii  libgd2-xpm                           2.0.36~rc1~dfsg-6ubuntu2                GD Graphics Library version 2
ii  libgdbm3                             1.8.3-10                                GNU dbm database routines (runtime version)
ii  libgdk-pixbuf2.0-0                   2.26.1-1                                GDK Pixbuf library
ii  libgdk-pixbuf2.0-common              2.26.1-1                                GDK Pixbuf library - data files
ii  libgeoip1                            1.4.8+dfsg-2                            non-DNS IP-to-country resolver library
ii  libgif4                              4.1.6-9ubuntu1                          library for GIF images (library)
ii  libgirepository-1.0-1                1.32.0-1                                Library for handling GObject introspection data (runtime library)
ii  libgl1-mesa-dri                      8.0.4-0ubuntu0.4                        free implementation of the OpenGL API -- DRI modules
ii  libgl1-mesa-glx                      8.0.4-0ubuntu0.4                        free implementation of the OpenGL API -- GLX runtime
ii  libglapi-mesa                        8.0.4-0ubuntu0.4                        free implementation of the GL API -- shared library
ii  libglib2.0-0                         2.32.3-0ubuntu1                         GLib library of C routines
ii  libglu1-mesa                         8.0.4-0ubuntu0.4                        Mesa OpenGL utility library (GLU)
ii  libgmp10                             2:5.0.2+dfsg-2ubuntu1                   Multiprecision arithmetic library
ii  libgnome-keyring-common              3.2.2-2                                 GNOME keyring services library - data files
ii  libgnome-keyring0                    3.2.2-2                                 GNOME keyring services library
ii  libgnutls26                          2.12.14-5ubuntu3.2                      GNU TLS library - runtime library
ii  libgpg-error0                        1.10-2ubuntu1                           library for common error values and messages in GnuPG components
ii  libgpgme++2                          4:4.8.5-0ubuntu0.1                      c++ wrapper library for gpgme
ii  libgpgme11                           1.2.0-1.4ubuntu2                        GPGME - GnuPG Made Easy
ii  libgphoto2-2                         2.4.13-1ubuntu1.2                       gphoto2 digital camera library
ii  libgphoto2-l10n                      2.4.13-1ubuntu1.2                       gphoto2 digital camera library - localized messages
ii  libgphoto2-port0                     2.4.13-1ubuntu1.2                       gphoto2 digital camera port library
ii  libgpm2                              1.20.4-4                                General Purpose Mouse - shared library
ii  libgpod4-nogtk                       0.8.2-4                                 library to read and write songs to an iPod
ii  libgps20                             3.4-2                                   Global Positioning System - library
ii  libgrantlee-core0                    0.2.0-0ubuntu1                          Grantlee templating library for Qt - Core
ii  libgs9                               9.05~dfsg-0ubuntu4.2                    interpreter for the PostScript language and for PDF - Library
ii  libgs9-common                        9.05~dfsg-0ubuntu4.2                    interpreter for the PostScript language and for PDF - common files
ii  libgssapi-krb5-2                     1.10+dfsg~beta1-2ubuntu0.3              MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii  libgssapi3-heimdal                   1.6~git20120311.dfsg.1-2                Heimdal Kerberos - GSSAPI support library
ii  libgstreamer-plugins-base0.10-0      0.10.36-1ubuntu0.1                      GStreamer libraries from the "base" set
ii  libgstreamer0.10-0                   0.10.36-1ubuntu1                        Core GStreamer libraries and elements
ii  libgtk-3-0                           3.4.2-0ubuntu0.5                        GTK+ graphical user interface library
ii  libgtk-3-bin                         3.4.2-0ubuntu0.5                        programs for the GTK+ graphical user interface library
ii  libgtk-3-common                      3.4.2-0ubuntu0.5                        common files for the GTK+ graphical user interface library
ii  libgtk2.0-0                          2.24.10-0ubuntu6                        GTK+ graphical user interface library
ii  libgtk2.0-bin                        2.24.10-0ubuntu6                        programs for the GTK+ graphical user interface library
ii  libgtk2.0-common                     2.24.10-0ubuntu6                        common files for the GTK+ graphical user interface library
ii  libgudev-1.0-0                       1:175-0ubuntu9.2                        GObject-based wrapper library for libudev
ii  libgutenprint2                       5.2.8~pre1-0ubuntu2.1                   runtime for the Gutenprint printer driver library
ii  libhcrypto4-heimdal                  1.6~git20120311.dfsg.1-2                Heimdal Kerberos - crypto library
ii  libheimbase1-heimdal                 1.6~git20120311.dfsg.1-2                Heimdal Kerberos - Base library
ii  libheimntlm0-heimdal                 1.6~git20120311.dfsg.1-2                Heimdal Kerberos - NTLM support library
ii  libhpmud0                            3.12.2-1ubuntu3.1                       HP Multi-Point Transport Driver (hpmud) run-time libraries
ii  libhtml-form-perl                    6.00-1                                  module that represents an HTML form element
ii  libhtml-format-perl                  2.10-1                                  module for transforming HTML into various formats
ii  libhtml-parser-perl                  3.69-1build1                            collection of modules that parse HTML text documents
ii  libhtml-tagset-perl                  3.20-2                                  Data tables pertaining to HTML
ii  libhtml-tree-perl                    4.2-1                                   Perl module to represent and create HTML syntax trees
ii  libhttp-cookies-perl                 6.00-2                                  HTTP cookie jars
ii  libhttp-daemon-perl                  6.00-1                                  simple http server class
ii  libhttp-date-perl                    6.00-1                                  module of date conversion routines
ii  libhttp-message-perl                 6.01-1                                  perl interface to HTTP style messages
ii  libhttp-negotiate-perl               6.00-2                                  implementation of content negotiation
ii  libhunspell-1.3-0                    1.3.2-4                                 spell checker and morphological analyzer (shared library)
ii  libhx509-5-heimdal                   1.6~git20120311.dfsg.1-2                Heimdal Kerberos - X509 support library
ii  libhyphen0                           2.8.3-1                                 ALTLinux hyphenation library - shared library
ii  libibus-qt1                          1.3.1-2ubuntu2                          qt-immodule for ibus (QT4)
ii  libical0                             0.48-1ubuntu3                           iCalendar library implementation in C (runtime)
ii  libice6                              2:1.0.7-2build1                         X11 Inter-Client Exchange library
ii  libicu48                             4.8.1.1-3                               International Components for Unicode
ii  libidn11                             1.23-2                                  GNU Libidn library, implementation of IETF IDN specifications
ii  libiec61883-0                        1.2.0-0.1ubuntu1                        an partial implementation of IEC 61883
ii  libieee1284-3                        0.2.11-10build1                         cross-platform library for parallel port access
ii  libijs-0.35                          0.35-8                                  IJS raster image transport protocol: shared library
ii  libilmbase6                          1.0.1-3build2                           several utility libraries from ILM used by OpenEXR
ii  libimobiledevice2                    1.1.1-4                                 Library for communicating with the iPhone and iPod Touch
ii  libincidenceeditorsng4               4:4.8.5-0ubuntu0.1                      incidenteditor library
ii  libindicate-qt1                      0.2.5.91-1ubuntu3                       Qt bindings for libindicate
ii  libindicate5                         0.6.92-0ubuntu1                         library for raising indicators via DBus
ii  libio-socket-inet6-perl              2.69-2                                  object interface for AF_INET6 domain sockets
ii  libio-socket-ssl-perl                1.53-1                                  Perl module implementing object oriented interface to SSL sockets
ii  libio-string-perl                    1.08-2                                  Emulate IO::File interface for in-core strings
ii  libisc83                             1:9.8.1.dfsg.P1-4ubuntu0.5              ISC Shared Library used by BIND
ii  libisccc80                           1:9.8.1.dfsg.P1-4ubuntu0.5              Command Channel Library used by BIND
ii  libisccfg82                          1:9.8.1.dfsg.P1-4ubuntu0.5              Config File Handling Library used by BIND
ii  libiw30                              30~pre9-5ubuntu2                        Wireless tools - library
ii  libjack-jackd2-0                     1.9.8~dfsg.1-1ubuntu1                   JACK Audio Connection Kit (libraries)
ii  libjasper1                           1.900.1-13                              JasPer JPEG-2000 runtime library
ii  libjbig2dec0                         0.11-1ubuntu1                           JBIG2 decoder library - shared libraries
ii  libjpeg-turbo8                       1.1.90+svn733-0ubuntu4.1                IJG JPEG compliant runtime library.
ii  libjpeg8                             8c-2ubuntu7                             Independent JPEG Group's JPEG runtime library (dependency package)
ii  libjs-jquery                         1.7.1-1ubuntu1                          JavaScript library for dynamic web applications
ii  libjson0                             0.9-1ubuntu1                            JSON manipulation library - shared library
ii  libk3b6                              2.0.2-3ubuntu4                          KDE CD/DVD burning application library - runtime files
ii  libk5crypto3                         1.10+dfsg~beta1-2ubuntu0.3              MIT Kerberos runtime libraries - Crypto Library
ii  libkabc4                             4:4.8.5-0ubuntu0.1                      library for handling address book data
ii  libkactivities-bin                   4:4.8.5-0ubuntu0.1                      executables for the KDE Activities
ii  libkactivities6                      4:4.8.5-0ubuntu0.1                      Activities library
ii  libkalarmcal2                        4:4.8.5-0ubuntu0.1                      library for handling alarm calendar data
ii  libkateinterfaces4                   4:4.8.5-0ubuntu0.1                      kate plugin interface library
ii  libkatepartinterfaces4               4:4.8.5-0ubuntu0.1                      kate part library
ii  libkblog4                            4:4.8.5-0ubuntu0.1                      client-side support library for web application remote blogging APIs
ii  libkcal4                             4:4.8.5-0ubuntu0.1                      library for handling calendar data
ii  libkcalcore4                         4:4.8.5-0ubuntu0.1                      library for handling calendar data
ii  libkcalutils4                        4:4.8.5-0ubuntu0.1                      library with utility functions for the handling of calendar data
ii  libkcddb4                            4:4.8.5-0ubuntu1                        CDDB library for KDE Platform (runtime)
ii  libkcmutils4                         4:4.8.5-0ubuntu0.1                      utility classes for using KCM modules
ii  libkde3support4                      4:4.8.5-0ubuntu0.1                      KDE 3 Support Library for the KDE 4 Platform
ii  libkdeclarative5                     4:4.8.5-0ubuntu0.1                      Declarative library for plasma
ii  libkdecorations4                     4:4.8.5-0ubuntu0.3                      library used by decorations for the KDE window manager
ii  libkdecore5                          4:4.8.5-0ubuntu0.1                      KDE Platform Core Library
ii  libkdegames5a                        4:4.8.5-0ubuntu0.1                      shared library for KDE games
ii  libkdepim4                           4:4.8.5-0ubuntu0.1                      KDE PIM library
ii  libkdepimdbusinterfaces4             4:4.8.5-0ubuntu0.1                      kde pim dbusinterface libary
ii  libkdesu5                            4:4.8.5-0ubuntu0.1                      Console-mode Authentication Library for the KDE Platform
ii  libkdeui5                            4:4.8.5-0ubuntu0.1                      KDE Platform User Interface Library
ii  libkdewebkit5                        4:4.8.5-0ubuntu0.1                      KDE WebKit Library
ii  libkdgantt2                          4:4.8.5-0ubuntu0.1                      kdgantt library
ii  libkdnssd4                           4:4.8.5-0ubuntu0.1                      DNS-SD Protocol Library for the KDE Platform
ii  libkemoticons4                       4:4.8.5-0ubuntu0.1                      utility classes to deal with emoticon themes
ii  libkephal4abi1                       4:4.8.5-0ubuntu0.3                      API for easier handling of multihead systems
ii  libkexiv2-10                         4:4.8.5-0ubuntu0.1                      Qt like interface for the libexiv2 library
ii  libkexiv2-data                       4:4.8.5-0ubuntu0.1                      Qt-like interface for the libexiv2 library -- data files
ii  libkeyutils1                         1.5.2-2                                 Linux Key Management Utilities (library)
ii  libkfile4                            4:4.8.5-0ubuntu0.1                      File Selection Dialog Library for KDE Platform
ii  libkholidays4                        4:4.8.5-0ubuntu0.1                      holidays calculation library
ii  libkhtml5                            4:4.8.5-0ubuntu0.1                      KHTML Web Content Rendering Engine
ii  libkidletime4                        4:4.8.5-0ubuntu0.1                      library to provide information about idle time
ii  libkimap4                            4:4.8.5-0ubuntu0.1                      library for handling IMAP data
ii  libkio5                              4:4.8.5-0ubuntu0.1                      Network-enabled File Management Library for the KDE Platform
ii  libkipi-data                         4:4.8.5-0ubuntu0.1                      data files for kipi libraries
ii  libkipi8                             4:4.8.5-0ubuntu0.1                      library for apps that want to use kipi-plugins (runtime version)
ii  libkjsapi4                           4:4.8.5-0ubuntu0.1                      KJS API Library for the KDE Development Platform
ii  libkjsembed4                         4:4.8.5-0ubuntu0.1                      library for binding JavaScript objects to QObjects
ii  libkldap4                            4:4.8.5-0ubuntu0.1                      library for accessing LDAP
ii  libkleo4                             4:4.8.5-0ubuntu0.1                      certificate based crypto library
ii  libklibc                             1.5.25-1ubuntu2                         minimal libc subset for use with initramfs
ii  libkmanagesieve4                     4:4.8.5-0ubuntu0.1                      manageing mail/news message filtering library
ii  libkmbox4                            4:4.8.5-0ubuntu0.1                      library for handling mbox mailboxes
ii  libkmediaplayer4                     4:4.8.5-0ubuntu0.1                      KMediaPlayer Interface for the KDE Platform
ii  libkmime4                            4:4.8.5-0ubuntu0.1                      library for handling MIME data
ii  libknewstuff2-4                      4:4.8.5-0ubuntu0.1                      "Get Hot New Stuff" v2 Library for the KDE Platform
ii  libknewstuff3-4                      4:4.8.5-0ubuntu0.1                      "Get Hot New Stuff" v3 Library for the KDE Platform
ii  libknotifyconfig4                    4:4.8.5-0ubuntu0.1                      library for configuring KDE Notifications
ii  libkntlm4                            4:4.8.5-0ubuntu0.1                      NTLM Authentication Library for the KDE Platform
ii  libkonq-common                       4:4.8.5-0ubuntu0.1                      core Konqueror library - support files
ii  libkonq5-templates                   4:4.8.5-0ubuntu0.1                      data files for the Konqueror libraries
ii  libkonq5abi1                         4:4.8.5-0ubuntu0.1                      core libraries for Konqueror
ii  libkontactinterface4                 4:4.8.5-0ubuntu0.1                      Kontact interface library
ii  libkopete4                           4:4.8.5-0ubuntu0.2                      main Kopete library
ii  libkparts4                           4:4.8.5-0ubuntu0.1                      Framework for the KDE Platform Graphical Components
ii  libkpgp4                             4:4.8.5-0ubuntu0.1                      gpg based crypto library
ii  libkpimidentities4                   4:4.8.5-0ubuntu0.1                      library for managing user identities
ii  libkpimtextedit4                     4:4.8.5-0ubuntu0.1                      library that provides a textedit with PIM-specific features
ii  libkpimutils4                        4:4.8.5-0ubuntu0.1                      library for dealing with email addresses
ii  libkprintutils4                      4:4.8.5-0ubuntu0.1                      utility classes to deal with printing
ii  libkpty4                             4:4.8.5-0ubuntu0.1                      Pseudo Terminal Library for the KDE Platform
ii  libkrb5-26-heimdal                   1.6~git20120311.dfsg.1-2                Heimdal Kerberos - libraries
ii  libkrb5-3                            1.10+dfsg~beta1-2ubuntu0.3              MIT Kerberos runtime libraries
ii  libkrb5support0                      1.10+dfsg~beta1-2ubuntu0.3              MIT Kerberos runtime libraries - Support library
ii  libkresources4                       4:4.8.5-0ubuntu0.1                      KDE Resource framework library
ii  libkrosscore4                        4:4.8.5-0ubuntu0.1                      Kross Core Library
ii  libksba8                             1.2.0-2                                 X.509 and CMS support library
ii  libkscreensaver5                     4:4.8.5-0ubuntu0.3                      library of the KDE Screensaver system
ii  libksgrd4                            4:4.8.5-0ubuntu0.3                      library for ksysguard
ii  libksieve4                           4:4.8.5-0ubuntu0.1                      mail/news message filtering library
ii  libksieveui4                         4:4.8.5-0ubuntu0.1                      mail/news message ui filtering library
ii  libksignalplotter4                   4:4.8.5-0ubuntu0.3                      KSignalPlotter widget
ii  libktexteditor4                      4:4.8.5-0ubuntu0.1                      KTextEditor interfaces for the KDE Platform
ii  libktnef4                            4:4.8.5-0ubuntu0.1                      library for handling TNEF data
ii  libktorrent-l10n                     1.1.3-1                                 localization files for the KTorrent library
ii  libktorrent3                         1.1.3-1                                 KTorrent library for C++ / Qt 4 / KDE Platform
ii  libkunitconversion4                  4:4.8.5-0ubuntu0.1                      Unit Conversion library for the KDE Platform
ii  libkwineffects1abi3                  4:4.8.5-0ubuntu0.3                      library used by effects for the KDE window manager
ii  libkwinglutils1                      4:4.8.5-0ubuntu0.3                      library used by accellaration for the KDE window manager
ii  libkwinnvidiahack4                   4:4.8.5-0ubuntu0.3                      library used by nvidia cards for the KDE window manager
ii  libkworkspace4abi1                   4:4.8.5-0ubuntu0.3                      library for the kdebase workspace
ii  libkxmlrpcclient4                    4:4.8.5-0ubuntu0.1                      simple XML-RPC client library
ii  liblastfm0                           0.4.0~really0.3.3-0ubuntu1              The Last.fm web services library
ii  liblcms1                             1.19.dfsg-1ubuntu3                      Little CMS color management library
ii  liblcms2-2                           2.2+git20110628-2ubuntu3                Little CMS 2 color management library
ii  libldap-2.4-2                        2.4.28-1.1ubuntu4.2                     OpenLDAP libraries
ii  libllvm3.0                           3.0-4ubuntu1                            Low-Level Virtual Machine (LLVM), runtime library
ii  liblocale-gettext-perl               1.05-7build1                            module using libc functions for internationalization in Perl
ii  liblockfile-bin                      1.09-3                                  support binaries for and cli utilities based on liblockfile
ii  liblockfile1                         1.09-3                                  NFS-safe locking library
ii  libloudmouth1-0                      1.4.3-8                                 Lightweight C Jabber library
ii  libltdl7                             2.4.2-1ubuntu1                          A system independent dlopen wrapper for GNU libtool
ii  liblvm2app2.2                        2.02.66-4ubuntu7.1                      LVM2 application library
ii  liblwp-mediatypes-perl               6.01-1                                  module to guess media type for a file or a URL
ii  liblwp-protocol-https-perl           6.02-1                                  https driver for LWP::UserAgent
ii  liblwres80                           1:9.8.1.dfsg.P1-4ubuntu0.5              Lightweight Resolver Library used by BIND
ii  liblzma5                             5.1.1alpha+20110809-3                   XZ-format compression library
ii  libmad0                              0.15.1b-7ubuntu1                        MPEG audio decoder library
ii  libmagic1                            5.09-2                                  File type determination library using "magic" numbers
ii  libmailcommon4                       4:4.8.5-0ubuntu0.1                      common mail libary
ii  libmailtools-perl                    2.08-1                                  Manipulate email in perl programs
ii  libmailtransport4                    4:4.8.5-0ubuntu0.1                      mail transport service library
ii  libmeanwhile1                        1.0.2-4ubuntu1                          open implementation of the Lotus Sametime Community Client protocol
ii  libmessagecomposer4                  4:4.8.5-0ubuntu0.1                      message composer library
ii  libmessagecore4                      4:4.8.5-0ubuntu0.1                      message core library
ii  libmessagelist4                      4:4.8.5-0ubuntu0.1                      message list library
ii  libmessageviewer4                    4:4.8.5-0ubuntu0.1                      message viewer library
ii  libmhash2                            0.9.9.9-1                               Library for cryptographic hashing and message authentication
ii  libmicroblog4                        4:4.8.5-0ubuntu0.1                      library for using the Microblog Akonadi Resource
ii  libmng1                              1.0.10-3                                Multiple-image Network Graphics library
ii  libmount1                            2.20.1-1ubuntu3                         block device id library
ii  libmp3lame0                          3.99.3+repack1-1                        MP3 encoding library
ii  libmpc2                              0.9-4                                   multiple precision complex floating-point library
ii  libmpcdec6                           2:0.1~r459-1ubuntu1                     MusePack decoder - library
ii  libmpeg2-4                           0.4.1-3                                 MPEG1 and MPEG2 video decoder library
ii  libmpfr4                             3.1.0-3ubuntu2                          multiple precision floating-point computation
ii  libmsn0.3                            4.2.1-0ubuntu1                          high-level C++ library for MSN Messenger [runtime]
ii  libmtdev1                            1.1.0-2ubuntu1                          Multitouch Protocol Translation Library - shared library
ii  libmtp-common                        1.1.3-1ubuntu0.1                        Media Transfer Protocol (MTP) common files
ii  libmtp-runtime                       1.1.3-1ubuntu0.1                        Media Transfer Protocol (MTP) runtime tools
ii  libmtp9                              1.1.3-1ubuntu0.1                        Media Transfer Protocol (MTP) library
ii  libmuonprivate1                      1.3.1-0ubuntu2                          Runtime files for the Muon package management suite
ii  libmusicbrainz3-6                    3.0.2-2.1                               library to access the MusicBrainz.org database
ii  libmygpo-qt1                         1.0.5-0ubuntu1                          mygpo-qt library package
ii  libmysqlclient18                     5.5.29-0ubuntu0.12.04.2                 MySQL database client library
ii  libmythes-1.2-0                      2:1.2.2-1                               simple thesaurus library
ii  libnautilus-extension1a              1:3.4.2-0ubuntu6                        libraries for nautilus components - runtime version
ii  libncurses5                          5.9-4                                   shared libraries for terminal handling
ii  libncursesw5                         5.9-4                                   shared libraries for terminal handling (wide character support)
ii  libneon27-gnutls                     0.29.6-1                                HTTP and WebDAV client library (GnuTLS enabled)
ii  libnepomuk4                          4:4.8.5-0ubuntu0.1                      Nepomuk Meta Data Library
ii  libnepomukdatamanagement4            4:4.8.5-0ubuntu0.1                      Basic Nepomuk data manipulation interface
ii  libnepomukquery4a                    4:4.8.5-0ubuntu0.1                      Nepomuk Query Library for the KDE Platform
ii  libnepomuksync4                      4:4.8.5-0ubuntu0.1                      Nepomuk sync interface for the Backup and Sync service
ii  libnepomukutils4                     4:4.8.5-0ubuntu0.1                      Nepomuk Utility Library
ii  libnet-http-perl                     6.02-1                                  module providing low-level HTTP connection client
ii  libnet-ssleay-perl                   1.42-1build1                            Perl module for Secure Sockets Layer (SSL)
ii  libnetfilter-conntrack3              0.9.1-1ubuntu1                          Netfilter netlink-conntrack library
ii  libnettle4                           2.4-1                                   low level cryptographic library (symmetric and one-way cryptos)
ii  libnewt0.52                          0.52.11-2ubuntu10                       Not Erik's Windowing Toolkit - text mode windowing with slang
ii  libnfnetlink0                        1.0.0-1                                 Netfilter netlink library
ii  libnih-dbus1                         1.0.3-4ubuntu9.1                        NIH D-Bus Bindings Library
ii  libnih1                              1.0.3-4ubuntu9.1                        NIH Utility Library
ii  libnl-3-200                          3.2.3-2ubuntu2                          library for dealing with netlink sockets
ii  libnl-genl-3-200                     3.2.3-2ubuntu2                          library for dealing with netlink sockets - generic netlink
ii  libnl-route-3-200                    3.2.3-2ubuntu2                          library for dealing with netlink sockets - route interface
ii  libnm-glib-vpn1                      0.9.4.0-0ubuntu4.2                      network management framework (GLib VPN shared library)
ii  libnm-glib4                          0.9.4.0-0ubuntu4.2                      network management framework (GLib shared library)
ii  libnm-util2                          0.9.4.0-0ubuntu4.2                      network management framework (shared library)
ii  libnspr4                             4.9.4-0ubuntu0.12.04.1                  NetScape Portable Runtime Library
ii  libnspr4-0d                          4.9.4-0ubuntu0.12.04.1                  NetScape Portable Runtime Library
ii  libnss-mdns                          0.10-3.2                                NSS module for Multicast DNS name resolution
ii  libnss3                              3.14.1-0ckbi1.93ubuntu.0.12.04.1        Network Security Service libraries
ii  libnss3-1d                           3.14.1-0ckbi1.93ubuntu.0.12.04.1        Network Security Service libraries
ii  libntrack-qt4-1                      016-1ubuntu1                            Qt 4 API for ntrack
ii  libntrack0                           016-1ubuntu1                            lightweight connectivity tracking library
ii  libogg0                              1.2.2~dfsg-1ubuntu1                     Ogg bitstream library
ii  liboil0.3                            0.3.17-2ubuntu3                         Library of Optimized Inner Loops
ii  libokularcore1abi1                   4:4.8.5-0ubuntu0.1                      libraries for the Okular document viewer
ii  libopencore-amrnb0                   0.1.2-1                                 Adaptive Multi Rate speech codec - shared library
ii  libopencore-amrwb0                   0.1.2-1                                 Adaptive Multi-Rate - Wideband speech codec - shared library
ii  libopenexr6                          1.6.1-4.1                               runtime files for the OpenEXR image library
ii  libopenobex1                         1.5-2build1                             OBEX protocol library
ii  liborc-0.4-0                         1:0.4.16-1ubuntu2                       Library of Optimized Inner Loops Runtime Compiler
ii  libotr2                              3.2.0-4ubuntu0.1                        Off-the-Record Messaging library
ii  libp11-kit0                          0.12-2ubuntu1                           Library for loading and coordinating access to PKCS#11 modules - runtime
ii  libpam-ck-connector                  0.4.5-2                                 ConsoleKit PAM module
ii  libpam-modules                       1.1.3-7ubuntu2                          Pluggable Authentication Modules for PAM
ii  libpam-modules-bin                   1.1.3-7ubuntu2                          Pluggable Authentication Modules for PAM - helper binaries
ii  libpam-runtime                       1.1.3-7ubuntu2                          Runtime support for the PAM library
ii  libpam0g                             1.1.3-7ubuntu2                          Pluggable Authentication Modules library
ii  libpango1.0-0                        1.30.0-0ubuntu3.1                       Layout and rendering of internationalized text
ii  libpaper-utils                       1.1.24+nmu1build1                       library for handling paper characteristics (utilities)
ii  libpaper1                            1.1.24+nmu1build1                       library for handling paper characteristics
ii  libparse-debianchangelog-perl        1.2.0-1ubuntu1                          parse Debian changelogs and output them in other formats
ii  libparted0debian1                    2.3-8ubuntu5.1                          disk partition manipulator - shared library
ii  libpcap0.8                           1.1.1-10                                system interface for user-level packet capture
ii  libpci3                              1:3.1.8-2ubuntu5                        Linux PCI Utilities (shared library)
ii  libpciaccess0                        0.12.902-1ubuntu0.2                     Generic PCI access library for X
ii  libpcre3                             8.12-4                                  Perl 5 Compatible Regular Expression Library - runtime files
ii  libpcsclite1                         1.7.4-2ubuntu2                          Middleware to access a smart card using PC/SC (library)
ii  libperl5.14                          5.14.2-6ubuntu2.2                       shared Perl library
ii  libphonon4                           4:4.7.0really4.6.0-0ubuntu1             multimedia framework from KDE - core library
ii  libpipeline1                         1.2.1-1                                 pipeline manipulation library
ii  libpixman-1-0                        0.24.4-1                                pixel-manipulation library for X and cairo
ii  libplasma-geolocation-interface4     4:4.8.5-0ubuntu0.3                      library for the Plasma geolocation
ii  libplasma3                           4:4.8.5-0ubuntu0.1                      Plasma Library for the KDE Platform
ii  libplasmaclock4abi3                  4:4.8.5-0ubuntu0.3                      library for Plasma clocks
ii  libplasmagenericshell4               4:4.8.5-0ubuntu0.3                      shared elements for all the plasma shells
ii  libplist1                            1.8-1                                   Library for handling Apple binary and XML property lists
ii  libplymouth2                         0.8.2-2ubuntu31                         graphical boot animation and logger - shared libraries
ii  libpng12-0                           1.2.46-3ubuntu4                         PNG library - runtime
ii  libpolkit-agent-1-0                  0.104-1ubuntu1                          PolicyKit Authentication Agent API
ii  libpolkit-backend-1-0                0.104-1ubuntu1                          PolicyKit backend API
ii  libpolkit-gobject-1-0                0.104-1ubuntu1                          PolicyKit Authorization API
ii  libpolkit-qt-1-1                     0.103.0-1                               PolicyKit-qt-1 library
ii  libpoppler-qt4-3                     0.18.4-1ubuntu3                         PDF rendering library (Qt 4 based shared library)
ii  libpoppler19                         0.18.4-1ubuntu3                         PDF rendering library
ii  libpopt0                             1.16-3ubuntu1                           lib for parsing cmdline parameters
ii  libprison0                           1.0+dfsg-1                              barcode API for Qt
ii  libprocesscore4abi1                  4:4.8.5-0ubuntu0.3                      library for ksysguard based process view
ii  libprocessui4a                       4:4.8.5-0ubuntu0.3                      library for ksysguard process user interface
ii  libproxy1                            0.4.7-0ubuntu4.1                        automatic proxy configuration management library (shared)
ii  libpth20                             2.0.7-16ubuntu3                         The GNU Portable Threads
ii  libpulse-mainloop-glib0              1:1.1-0ubuntu15.2                       PulseAudio client libraries (glib support)
ii  libpulse0                            1:1.1-0ubuntu15.2                       PulseAudio client libraries
ii  libpulsedsp                          1:1.1-0ubuntu15.2                       PulseAudio OSS pre-load library
ii  libpython2.7                         2.7.3-0ubuntu3.1                        Shared Python runtime library (version 2.7)
ii  libqalculate5                        0.9.7-6ubuntu2                          Powerful and easy to use desktop calculator - library
ii  libqapt-runtime                      1.3.1-0ubuntu2                          Runtime components for the QApt library
ii  libqapt1                             1.3.1-0ubuntu2                          QApt library package
ii  libqca2                              2.0.3-2                                 libraries for the Qt Cryptographic Architecture
ii  libqca2-plugin-ossl                  2.0.0~beta3-1                           SSL/TLS support for the Qt Cryptographic Architecture
ii  libqgpgme1                           4:4.8.5-0ubuntu0.1                      library for GpgME++ integration with Qt
ii  libqimageblitz4                      1:0.0.6-4                               QImageBlitz image effects library
ii  libqjson0                            0.7.1-6                                 Qt-based library that maps JSON data to QVariant objects
ii  libqrencode3                         3.1.1-1ubuntu1                          QR Code encoding library
ii  libqt4-dbus                          4:4.8.1-0ubuntu4.4                      Qt 4 D-Bus module
ii  libqt4-declarative                   4:4.8.1-0ubuntu4.4                      Qt 4 Declarative module
ii  libqt4-designer                      4:4.8.1-0ubuntu4.4                      Qt 4 designer module
ii  libqt4-help                          4:4.8.1-0ubuntu4.4                      Qt 4 help module
ii  libqt4-network                       4:4.8.1-0ubuntu4.4                      Qt 4 network module
ii  libqt4-opengl                        4:4.8.1-0ubuntu4.4                      Qt 4 OpenGL module
ii  libqt4-qt3support                    4:4.8.1-0ubuntu4.4                      Qt 3 compatibility library for Qt 4
ii  libqt4-script                        4:4.8.1-0ubuntu4.4                      Qt 4 script module
ii  libqt4-scripttools                   4:4.8.1-0ubuntu4.4                      Qt 4 script tools module
ii  libqt4-sql                           4:4.8.1-0ubuntu4.4                      Qt 4 SQL module
ii  libqt4-sql-mysql                     4:4.8.1-0ubuntu4.4                      Qt 4 MySQL database driver
ii  libqt4-sql-sqlite                    4:4.8.1-0ubuntu4.4                      Qt 4 SQLite 3 database driver
ii  libqt4-svg                           4:4.8.1-0ubuntu4.4                      Qt 4 SVG module
ii  libqt4-test                          4:4.8.1-0ubuntu4.4                      Qt 4 test module
ii  libqt4-xml                           4:4.8.1-0ubuntu4.4                      Qt 4 XML module
ii  libqt4-xmlpatterns                   4:4.8.1-0ubuntu4.4                      Qt 4 XML patterns module
ii  libqtassistantclient4                4.6.3-3ubuntu2                          Qt Assistant client library (runtime)
ii  libqtcore4                           4:4.8.1-0ubuntu4.4                      Qt 4 core module
ii  libqtglib-2.0-0                      0.10.1-2ubuntu4                         C++ bindings library for GLib and GObject with a Qt-style API
ii  libqtgstreamer-0.10-0                0.10.1-2ubuntu4                         C++ bindings library for GStreamer with a Qt-style API
ii  libqtgui4                            4:4.8.1-0ubuntu4.4                      Qt 4 GUI module
ii  libqtscript4-core                    0.2.0-0ubuntu1                          Qt Script bindings for the Qt 4 Core library
ii  libqtscript4-gui                     0.2.0-0ubuntu1                          Qt Script bindings for the Qt 4 Gui library
ii  libqtscript4-network                 0.2.0-0ubuntu1                          Qt Script bindings for the Qt 4 Network library
ii  libqtscript4-sql                     0.2.0-0ubuntu1                          Qt Script bindings for the Qt 4 SQL library
ii  libqtscript4-uitools                 0.2.0-0ubuntu1                          Qt Script bindings for the Qt 4 UiTools library
ii  libqtscript4-xml                     0.2.0-0ubuntu1                          Qt Script bindings for the Qt 4 XML library
ii  libqtwebkit4                         2.2.1-1ubuntu4                          Web content engine library for Qt
ii  libraptor2-0                         2.0.6-1                                 Raptor 2 RDF syntax library
ii  librasqal3                           0.9.28-1                                Rasqal RDF query library
ii  libraw1394-11                        2.0.7-1ubuntu1                          library for direct access to IEEE 1394 bus (aka FireWire)
ii  librdf0                              1.0.14-1                                Redland Resource Description Framework (RDF) library
ii  libreadline6                         6.2-8                                   GNU readline and history libraries, run-time libraries
ii  libreoffice-base-core                1:3.5.7-0ubuntu4                        office productivity suite -- shared library
ii  libreoffice-calc                     1:3.5.7-0ubuntu4                        office productivity suite -- spreadsheet
ii  libreoffice-common                   1:3.5.7-0ubuntu4                        office productivity suite -- arch-independent files
ii  libreoffice-core                     1:3.5.7-0ubuntu4                        office productivity suite -- arch-dependent files
ii  libreoffice-draw                     1:3.5.7-0ubuntu4                        office productivity suite -- drawing
ii  libreoffice-emailmerge               1:3.5.7-0ubuntu4                        office productivity suite -- email mail merge
ii  libreoffice-help-en-gb               1:3.5.7-0ubuntu4                        office productivity suite -- English_british help
ii  libreoffice-help-en-us               1:3.5.7-0ubuntu4                        office productivity suite -- English_american help
ii  libreoffice-impress                  1:3.5.7-0ubuntu4                        office productivity suite -- presentation
ii  libreoffice-kde                      1:3.5.7-0ubuntu4                        office productivity suite -- KDE integration
ii  libreoffice-l10n-en-gb               1:3.5.7-0ubuntu4                        office productivity suite -- English_british language package
ii  libreoffice-l10n-en-za               1:3.5.7-0ubuntu4                        office productivity suite -- English_southafrican language package
ii  libreoffice-math                     1:3.5.7-0ubuntu4                        office productivity suite -- equation editor
ii  libreoffice-style-oxygen             1:3.5.7-0ubuntu4                        office productivity suite -- Oxygen symbol style
ii  libreoffice-writer                   1:3.5.7-0ubuntu4                        office productivity suite -- word processor
ii  libroken18-heimdal                   1.6~git20120311.dfsg.1-2                Heimdal Kerberos - roken support library
ii  librsvg2-2                           2.36.1-0ubuntu1                         SAX-based renderer library for SVG files (runtime)
ii  librtmp0                             2.4~20110711.gitc28f1bab-1              toolkit for RTMP streams (shared library)
ii  libsamplerate0                       0.1.8-4                                 Audio sample rate conversion library
ii  libsane                              1.0.22-7ubuntu1                         API library for scanners
ii  libsane-common                       1.0.22-7ubuntu1                         API library for scanners -- documentation and support files
ii  libsane-hpaio                        3.12.2-1ubuntu3.1                       HP SANE backend for multi-function peripherals
ii  libsasl2-2                           2.1.25.dfsg1-3ubuntu0.1                 Cyrus SASL - authentication abstraction library
ii  libsasl2-modules                     2.1.25.dfsg1-3ubuntu0.1                 Cyrus SASL - pluggable authentication modules
ii  libselinux1                          2.1.0-4.1ubuntu1                        SELinux runtime shared libraries
ii  libsensors4                          1:3.3.1-2ubuntu1                        library to read temperature/voltage/fan sensors
ii  libsgutils2-2                        1.33-1                                  utilities for devices using the SCSI command set (shared libraries)
ii  libshout3                            2.2.2-7ubuntu1                          MP3/Ogg Vorbis broadcast streaming library
ii  libsidplay1                          1.36.59-5                               SID (MOS 6581) emulation library
ii  libsigc++-2.0-0c2a                   2.2.10-0ubuntu2                         type-safe Signal Framework for C++ - runtime
ii  libslang2                            2.2.4-3ubuntu1                          S-Lang programming library - runtime version
ii  libslp1                              1.2.1-7.8ubuntu1                        OpenSLP libraries
ii  libsm6                               2:1.2.0-2build1                         X11 Session Management library
ii  libsmbclient                         2:3.6.3-2ubuntu2.3                      shared library for communication with SMB/CIFS servers
ii  libsndfile1                          1.0.25-4                                Library for reading/writing audio files
ii  libsnmp-base                         5.4.3~dfsg-2.4ubuntu1.1                 SNMP (Simple Network Management Protocol) MIBs and documentation
ii  libsnmp15                            5.4.3~dfsg-2.4ubuntu1.1                 SNMP (Simple Network Management Protocol) library
ii  libsocket6-perl                      0.23-1build2                            Perl extensions for IPv6
ii  libsolid4                            4:4.8.5-0ubuntu0.1                      Solid Library for KDE Platform
ii  libsolidcontrol4abi2                 4:4.8.5-0ubuntu0.3                      library for Solid based network management
ii  libsolidcontrolifaces4abi2           4:4.8.5-0ubuntu0.3                      library for Solid based network interface management
ii  libsoprano4                          2.7.5+dfsg.1-0ubuntu1                   libraries for the Soprano RDF framework
ii  libsoup-gnome2.4-1                   2.38.1-1                                HTTP library implementation in C -- GNOME support library
ii  libsoup2.4-1                         2.38.1-1                                HTTP library implementation in C -- Shared library
ii  libspectre1                          0.2.6-1build1                           Library for rendering PostScript documents
ii  libspeechd2                          0.7.1-6ubuntu3                          Speech Dispatcher: Shared libraries
ii  libspeex1                            1.2~rc1-3ubuntu2                        The Speex codec runtime library
ii  libspeexdsp1                         1.2~rc1-3ubuntu2                        The Speex extended runtime library
ii  libsqlite3-0                         3.7.9-2ubuntu1.1                        SQLite 3 shared library
ii  libss2                               1.42-1ubuntu2                           command-line interface parsing library
ii  libssh-4                             0.5.2-1ubuntu0.12.04.2                  tiny C SSH library
ii  libssl1.0.0                          1.0.1-4ubuntu5.7                        SSL shared libraries
ii  libstartup-notification0             0.12-1ubuntu1                           library for program launch feedback (shared library)
ii  libstdc++6                           4.6.3-1ubuntu5                          GNU Standard C++ Library v3
ii  libstreamanalyzer0                   0.7.7-1.1ubuntu3                        streamanalyzer library for Strigi Desktop Search
ii  libstreams0                          0.7.7-1.1ubuntu3                        streams library for for Strigi Desktop Search
ii  libsub-name-perl                     0.05-1build2                            module for assigning a new name to referenced sub
ii  libswitch-perl                       2.16-2                                  switch statement for Perl
ii  libsyndication4                      4:4.8.5-0ubuntu0.1                      parser library for RSS and Atom feeds
ii  libsysfs2                            2.1.0+repack-1                          interface library to sysfs
ii  libtag-extras1                       1.0.1-3                                 TagLib extras library - support for more file formats
ii  libtag1-vanilla                      1.7-1ubuntu5                            audio meta-data library - vanilla flavour
ii  libtag1c2a                           1.7-1ubuntu5                            audio meta-data library
ii  libtalloc2                           2.0.7-3                                 hierarchical pool based memory allocator
ii  libtaskmanager4abi3                  4:4.8.5-0ubuntu0.3                      library which provides task management facilities
ii  libtasn1-3                           2.10-1ubuntu1.1                         Manage ASN.1 structures (runtime)
ii  libtdb1                              1.2.9-4                                 Trivial Database - shared library
ii  libtemplateparser4                   4:4.8.5-0ubuntu0.1                      template parser library
ii  libtext-charwidth-perl               0.04-7build1                            get display widths of characters on the terminal
ii  libtext-iconv-perl                   1.7-5                                   converts between character sets in Perl
ii  libtext-wrapi18n-perl                0.06-7                                  internationalized substitute of Text::Wrap
ii  libthai-data                         0.1.16-3                                Data files for Thai language support library
ii  libthai0                             0.1.16-3                                Thai language support library
ii  libtheora0                           1.1.1+dfsg.1-3ubuntu2                   The Theora Video Compression Codec
ii  libthreadweaver4                     4:4.8.5-0ubuntu0.1                      ThreadWeaver Library for the KDE Platform
ii  libtiff4                             3.9.5-2ubuntu1.4                        Tag Image File Format (TIFF) library
ii  libtimedate-perl                     1.2000-1                                collection of modules to manipulate date/time information
ii  libtinfo5                            5.9-4                                   shared low-level terminfo library for terminal handling
ii  libtwolame0                          0.3.13-1build1                          MPEG Audio Layer 2 encoding library
ii  libudev0                             175-0ubuntu9.2                          udev library
ii  libupower-glib1                      0.9.15-3git1                            abstraction for power management - shared library
ii  liburi-perl                          1.59-1                                  module to manipulate and access URI strings
ii  libusb-0.1-4                         2:0.1.12-20                             userspace USB programming library
ii  libusb-1.0-0                         2:1.0.9~rc3-2ubuntu1                    userspace USB programming library
ii  libusbmuxd1                          1.0.7-2                                 USB multiplexor daemon for iPhone and iPod Touch devices - library
ii  libutempter0                         1.1.5-4                                 A privileged helper for utmp/wtmp updates (runtime)
ii  libuuid1                             2.20.1-1ubuntu3                         Universally Unique ID library
ii  libv4l-0                             0.8.6-1ubuntu2                          Collection of video4linux support libraries
ii  libv4lconvert0                       0.8.6-1ubuntu2                          Video4linux frame format conversion library
ii  libvirtodbc0                         6.1.4+dfsg1-0ubuntu1                    high-performance database - ODBC libraries
ii  libvisual-0.4-0                      0.4.0-4                                 Audio visualization framework
ii  libvisual-0.4-plugins                0.4.0.dfsg.1-7                          Audio visualization framework plugins
ii  libvorbis0a                          1.3.2-1ubuntu3                          The Vorbis General Audio Compression Codec (Decoder library)
ii  libvorbisenc2                        1.3.2-1ubuntu3                          The Vorbis General Audio Compression Codec (Encoder library)
ii  libvorbisfile3                       1.3.2-1ubuntu3                          The Vorbis General Audio Compression Codec (High Level API)
ii  libwavpack1                          4.60.1-2                                audio codec (lossy and lossless) - library
ii  libwbclient0                         2:3.6.3-2ubuntu2.3                      Samba winbind client library
ii  libweather-ion6                      4:4.8.5-0ubuntu0.3                      library which provides an interface for weather information services
ii  libwind0-heimdal                     1.6~git20120311.dfsg.1-2                Heimdal Kerberos - stringprep implementation
ii  libwpd-0.9-9                         0.9.4-1                                 Library for handling WordPerfect documents (shared library)
ii  libwpg-0.2-2                         0.2.1-1                                 WordPerfect graphics import/convert library (shared library)
ii  libwps-0.2-2                         0.2.4-1                                 Works text file format import filter library (shared library)
ii  libwrap0                             7.6.q-21                                Wietse Venema's TCP wrappers library
ii  libwww-perl                          6.03-1                                  simple and consistent interface to the world-wide web
ii  libwww-robotrules-perl               6.01-1                                  database of robots.txt-derived permissions
ii  libx11-6                             2:1.4.99.1-0ubuntu2                     X11 client-side library
ii  libx11-data                          2:1.4.99.1-0ubuntu2                     X11 client-side library
ii  libx11-xcb1                          2:1.4.99.1-0ubuntu2                     Xlib/XCB interface library
ii  libx264-120                          2:0.120.2151+gita3f4407-2               x264 video coding library
ii  libx86-1                             1.1+ds1-7ubuntu1                        x86 real-mode library
ii  libxapian22                          1.2.8-1                                 Search engine library
ii  libxatracker1                        8.0.4-0ubuntu0.4                        X acceleration library -- runtime
ii  libxau6                              1:1.0.6-4                               X11 authorisation library
ii  libxaw7                              2:1.0.9-3ubuntu1                        X11 Athena Widget library
ii  libxcb-dri2-0                        1.8.1-1ubuntu0.1                        X C Binding, dri2 extension
ii  libxcb-glx0                          1.8.1-1ubuntu0.1                        X C Binding, glx extension
ii  libxcb-render0                       1.8.1-1ubuntu0.1                        X C Binding, render extension
ii  libxcb-shape0                        1.8.1-1ubuntu0.1                        X C Binding, shape extension
ii  libxcb-shm0                          1.8.1-1ubuntu0.1                        X C Binding, shm extension
ii  libxcb-util0                         0.3.8-2                                 utility libraries for X C Binding -- atom, aux and event
ii  libxcb1                              1.8.1-1ubuntu0.1                        X C Binding
ii  libxcomposite1                       1:0.4.3-2build1                         X11 Composite extension library
ii  libxcursor1                          1:1.1.12-1                              X cursor management library
ii  libxdamage1                          1:1.1.3-2build1                         X11 damaged region extension library
ii  libxdmcp6                            1:1.1.0-4                               X11 Display Manager Control Protocol library
ii  libxext6                             2:1.3.0-3build1                         X11 miscellaneous extension library
ii  libxfixes3                           1:5.0-4ubuntu4                          X11 miscellaneous 'fixes' extension library
ii  libxfont1                            1:1.4.4-1                               X11 font rasterisation library
ii  libxft2                              2.2.0-3ubuntu2                          FreeType-based font drawing library for X
ii  libxi6                               2:1.6.0-0ubuntu2                        X11 Input extension library
ii  libxinerama1                         2:1.1.1-3build1                         X11 Xinerama extension library
ii  libxkbfile1                          1:1.0.7-1ubuntu0.1                      X11 keyboard file manipulation library
ii  libxml2                              2.7.8.dfsg-5.1ubuntu4.3                 GNOME XML library
ii  libxml2-utils                        2.7.8.dfsg-5.1ubuntu4.3                 XML utilities
ii  libxmu6                              2:1.1.0-3                               X11 miscellaneous utility library
ii  libxmuu1                             2:1.1.0-3                               X11 miscellaneous micro-utility library
ii  libxp6                               1:1.0.1-2                               X Printing Extension (Xprint) client library
ii  libxpm4                              1:3.5.9-4                               X11 pixmap library
ii  libxrandr2                           2:1.3.2-2                               X11 RandR extension library
ii  libxrender1                          1:0.9.6-2build1                         X Rendering Extension client library
ii  libxslt1.1                           1.1.26-8ubuntu1.2                       XSLT 1.0 processing library - runtime library
ii  libxss1                              1:1.2.1-2                               X11 Screen Saver extension library
ii  libxt6                               1:1.1.1-2build1                         X11 toolkit intrinsics library
ii  libxtst6                             2:1.2.0-4                               X11 Testing -- Record extension library
ii  libxv1                               2:1.0.6-2build1                         X11 Video extension library
ii  libxvmc1                             2:1.0.6-1ubuntu2                        X11 Video extension library
ii  libxxf86dga1                         2:1.1.2-1                               X11 Direct Graphics Access extension library
ii  libxxf86vm1                          1:1.1.1-2build1                         X11 XFree86 video mode extension library
ii  libyajl1                             1.0.12-2                                Yet Another JSON Library
ii  libzip2                              0.10-1ubuntu1                           library for reading, creating, and modifying zip archives (runtime)
ii  linux-firmware                       1.79.1                                  Firmware for Linux kernel drivers
ii  linux-generic                        3.2.0.38.46                             Complete Generic Linux kernel
ii  linux-headers-3.2.0-23               3.2.0-23.36                             Header files related to Linux kernel version 3.2.0
ii  linux-headers-3.2.0-23-generic       3.2.0-23.36                             Linux kernel headers for version 3.2.0 on 64 bit x86 SMP
ii  linux-headers-3.2.0-38               3.2.0-38.61                             Header files related to Linux kernel version 3.2.0
ii  linux-headers-3.2.0-38-generic       3.2.0-38.61                             Linux kernel headers for version 3.2.0 on 64 bit x86 SMP
ii  linux-headers-generic                3.2.0.38.46                             Generic Linux kernel headers
ii  linux-image-3.2.0-23-generic         3.2.0-23.36                             Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-38-generic         3.2.0-38.61                             Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-generic                  3.2.0.38.46                             Generic Linux kernel image
ii  linux-sound-base                     1.0.25+dfsg-0ubuntu1.1                  base package for ALSA and OSS sound systems
ii  locales                              2.13+git20120306-3                      common files for locale support
ii  lockfile-progs                       0.1.16                                  Programs for locking and unlocking files and mailboxes
ii  login                                1:4.1.4.2+svn3283-3ubuntu5.1            system login tools
ii  logrotate                            3.7.8-6ubuntu5                          Log rotation utility
ii  lsb-base                             4.0-0ubuntu20.2                         Linux Standard Base 4.0 init script functionality
ii  lsb-release                          4.0-0ubuntu20.2                         Linux Standard Base version reporting utility
ii  lshw                                 02.15-2                                 information about hardware configuration
ii  lsof                                 4.81.dfsg.1-1build1                     List open files
ii  ltrace                               0.5.3-2.1ubuntu2                        Tracks runtime library calls in dynamically linked programs
ii  makedev                              2.3.1-89ubuntu2                         creates device files in /dev
ii  man-db                               2.6.1-2ubuntu1                          on-line manual pager
ii  manpages                             3.35-0.1ubuntu1                         Manual pages about using a GNU/Linux system
ii  mawk                                 1.3.3-17                                a pattern scanning and text processing language
ii  memtest86+                           4.20-1.1ubuntu1                         thorough real-mode memory tester
ii  mime-support                         3.51-1ubuntu1                           MIME files 'mime.types' & 'mailcap', and support programs
ii  mlocate                              0.23.1-1ubuntu2                         quickly find files on the filesystem based on their name
ii  mobile-broadband-provider-info       20120410-0ubuntu1                       database of mobile broadband service providers
ii  modemmanager                         0.5.2.0-0ubuntu2                        D-Bus service for managing modems
ii  module-init-tools                    3.16-1ubuntu2                           tools for managing Linux kernel modules
ii  mount                                2.20.1-1ubuntu3                         Tools for mounting and manipulating filesystems
ii  mountall                             2.36.4                                  filesystem mounting tool
ii  mscompress                           0.3-3.1                                 Microsoft "compress.exe/expand.exe" compatible (de)compressor
ii  mtools                               4.0.12-1                                Tools for manipulating MSDOS files
ii  mtr-tiny                             0.80-1ubuntu1                           Full screen ncurses traceroute tool
ii  multiarch-support                    2.15-0ubuntu10.3                        Transitional package to ensure multiarch compatibility
ii  muon                                 1.3.1-0ubuntu2                          package manager for KDE
ii  muon-installer                       1.3.1-0ubuntu2                          Utility for browsing, installing, and removing applications
ii  muon-notifier                        1.3.1-0ubuntu2                          update notifier for KDE
ii  muon-updater                         1.3.1-0ubuntu2                          update manager for KDE
ii  myspell-en-au                        2.1-5.3ubuntu1                          English_australian dictionary for myspell
ii  myspell-en-gb                        1:3.3.0-2ubuntu3                        English_british dictionary for myspell
ii  myspell-en-za                        1:3.3.0-2ubuntu3                        English_southafrican dictionary for myspell
ii  mysql-client-core-5.5                5.5.29-0ubuntu0.12.04.2                 MySQL database core client binaries
ii  mysql-common                         5.5.29-0ubuntu0.12.04.2                 MySQL database common files, e.g. /etc/mysql/my.cnf
ii  mysql-server-core-5.5                5.5.29-0ubuntu0.12.04.2                 MySQL database server binaries
ii  mythes-en-au                         2.1-5.3ubuntu1                          Australian English Thesaurus for OpenOffice.org
ii  mythes-en-us                         1:3.3.0-2ubuntu3                        English Thesaurus for LibreOffice/OpenOffice.org
ii  nano                                 2.2.6-1                                 small, friendly text editor inspired by Pico
ii  nautilus-dropbox                     0.7.1-2                                 Dropbox integration for Nautilus
ii  ncurses-base                         5.9-4                                   basic terminal type definitions
ii  ncurses-bin                          5.9-4                                   terminal-related programs and man pages
ii  net-tools                            1.60-24.1ubuntu2                        The NET-3 networking toolkit
ii  netbase                              4.47ubuntu1                             Basic TCP/IP networking system
ii  netcat-openbsd                       1.89-4ubuntu1                           TCP/IP swiss army knife
ii  network-manager                      0.9.4.0-0ubuntu4.2                      network management framework (daemon and userspace tools)
ii  network-manager-pptp                 0.9.4.0-0ubuntu1                        network management framework (PPTP plugin core)
ii  ntfs-3g                              1:2012.1.15AR.1-1ubuntu1.2              read/write NTFS driver for FUSE
ii  ntpdate                              1:4.2.6.p3+dfsg-1ubuntu3.1              client for setting system time from NTP servers
ii  ntrack-module-libnl-0                016-1ubuntu1                            libnl based ntrack module
ii  nvidia-common                        1:0.2.44.2                              Find obsolete NVIDIA drivers
ii  obex-data-server                     0.4.6-0ubuntu1                          D-Bus service for OBEX client and server side functionality
ii  obexd-client                         0.44-0ubuntu1                           D-Bus OBEX client
ii  odbcinst                             2.2.14p2-5ubuntu3                       Helper program for accessing odbc ini files
ii  odbcinst1debian2                     2.2.14p2-5ubuntu3                       Support library for accessing odbc ini files
ii  okular                               4:4.8.5-0ubuntu0.1                      universal document viewer
ii  okular-extra-backends                4:4.8.5-0ubuntu0.1                      additional document format support for Okular
ii  openoffice.org-hyphenation           0.6                                     Hyphenation patterns for OpenOffice.org
ii  openprinting-ppds                    20120322-0ubuntu1                       OpenPrinting printer support - PostScript PPD files
ii  openssh-client                       1:5.9p1-5ubuntu1                        secure shell (SSH) client, for secure access to remote machines
ii  openssl                              1.0.1-4ubuntu5.7                        Secure Socket Layer (SSL) binary and related cryptographic tools
ii  os-prober                            1.51ubuntu3                             utility to detect other OSes on a set of drives
ii  oxygen-cursor-theme                  0.0.2010-05-10-kde4.4.3-1ubuntu1        Oxygen Mouse Cursor Theme
ii  oxygen-icon-theme                    4:4.8.3-0ubuntu0.1                      Oxygen icon theme
ii  parted                               2.3-8ubuntu5.1                          disk partition manipulator
ii  partitionmanager                     1.0.3-0ubuntu4                          A partition management utility
ii  passwd                               1:4.1.4.2+svn3283-3ubuntu5.1            change and administer password and group data
ii  patch                                2.6.1-3                                 Apply a diff file to an original
ii  pciutils                             1:3.1.8-2ubuntu5                        Linux PCI Utilities
ii  pcmciautils                          018-6                                   PCMCIA utilities for Linux 2.6
ii  perl                                 5.14.2-6ubuntu2.2                       Larry Wall's Practical Extraction and Report Language
ii  perl-base                            5.14.2-6ubuntu2.2                       minimal Perl system
ii  perl-modules                         5.14.2-6ubuntu2.2                       Core Perl modules
ii  phonon                               4:4.7.0really4.6.0-0ubuntu1             multimedia framework from KDE - metapackage
ii  phonon-backend-gstreamer             4:4.7.0really4.6.2-0ubuntu0.1           Phonon GStreamer 0.10.x backend
ii  pinentry-qt4                         0.8.1-1ubuntu1                          Qt-4-based PIN or pass-phrase entry dialog for GnuPG
ii  plasma-dataengines-addons            4:4.8.5-0ubuntu0.1                      additional data engines for Plasma
ii  plasma-dataengines-workspace         4:4.8.5-0ubuntu0.3                      KDE Plasma data engines
ii  plasma-desktop                       4:4.8.5-0ubuntu0.3                      KDE Plasma workspace for desktop and laptop computers
ii  plasma-netbook                       4:4.8.5-0ubuntu0.3                      KDE Plasma workspace for netbook computers
ii  plasma-scriptengine-javascript       4:4.8.5-0ubuntu0.1                      JavaScript script engine for Plasma
ii  plasma-scriptengine-python           4:4.8.5-0ubuntu0.3                      Python script engine for Plasma
ii  plasma-widget-facebook               1.0-0ubuntu1                            Plasma Widget for Facebook Updates
ii  plasma-widget-folderview             4:4.8.5-0ubuntu0.1                      plasma widget showing the content of a folder
ii  plasma-widget-kimpanel               4:4.8.5-0ubuntu0.1                      addons for KDE 4 Plasma - universal input method widget
ii  plasma-widget-menubar                0.1.17-0ubuntu1                         A Plasma applet to display application menubars
ii  plasma-widget-message-indicator      0.5.8-1ubuntu1                          Plasma widget to display message indicators
ii  plasma-widget-networkmanagement      0.9.0.1-0ubuntu2                        Network Management widget for KDE Plasma workspaces
ii  plasma-widgets-addons                4:4.8.5-0ubuntu0.1                      additional widgets for Plasma
ii  plasma-widgets-workspace             4:4.8.5-0ubuntu0.3                      plasma widgets and containments for the KDE Plasma Workspace
ii  plymouth                             0.8.2-2ubuntu31                         graphical boot animation and logger - main package
ii  plymouth-label                       0.8.2-2ubuntu31                         graphical boot animation and logger - label control
ii  plymouth-theme-kubuntu-logo          1:12.04ubuntu4                          graphical boot animation and logger - kubuntu-logo theme
ii  plymouth-theme-kubuntu-text          0.8.2-2ubuntu31                         graphical boot animation and logger - kubuntu-text theme
ii  plymouth-theme-ubuntu-text           0.8.2-2ubuntu31                         graphical boot animation and logger - ubuntu-logo theme
ii  pm-utils                             1.4.1-9                                 utilities and scripts for power management
ii  policykit-1                          0.104-1ubuntu1                          framework for managing administrative policies and privileges
ii  policykit-desktop-privileges         0.10                                    run common desktop actions without password
ii  polkit-kde-1                         0.99.0-3ubuntu5                         KDE dialogs for PolicyKit
ii  poppler-data                         0.4.5-2                                 Encoding data for the poppler PDF rendering library
ii  poppler-utils                        0.18.4-1ubuntu3                         PDF utilities (based on Poppler)
ii  popularity-contest                   1.53ubuntu1                             Vote for your favourite packages automatically
ii  powermgmt-base                       1.31                                    Common utils and configs for power management
ii  ppp                                  2.4.5-5ubuntu1                          Point-to-Point Protocol (PPP) - daemon
ii  pppconfig                            2.3.18+nmu3ubuntu1                      A text menu based utility for configuring ppp
ii  pppoeconf                            1.20ubuntu1                             configures PPPoE/ADSL connections
ii  pptp-linux                           1.7.2-6                                 Point-to-Point Tunneling Protocol (PPTP) Client
ii  printer-applet                       4:4.8.2-0ubuntu2                        manages your printing jobs
ii  printer-driver-c2esp                 23-1                                    printer driver for Kodak ESP AiO color inkjet Series
ii  printer-driver-foo2zjs               20111202dfsg0-1ubuntu1                  printer driver for ZjStream-based printers
ii  printer-driver-gutenprint            5.2.8~pre1-0ubuntu2.1                   printer drivers for CUPS
ii  printer-driver-hpcups                3.12.2-1ubuntu3.1                       HP Linux Printing and Imaging - CUPS Raster driver (hpcups)
ii  printer-driver-hpijs                 3.12.2-1ubuntu3.1                       HP Linux Printing and Imaging - gs IJS driver (hpijs)
ii  printer-driver-min12xxw              0.0.9-6ubuntu1                          printer driver for KonicaMinolta PagePro 1[234]xxW
ii  printer-driver-pnm2ppa               1.13+nondbs-0ubuntu1                    printer driver for HP-GDI printers
ii  printer-driver-postscript-hp         3.12.2-1ubuntu3.1                       HP Printers PostScript Descriptions
ii  printer-driver-ptouch                1.3-3ubuntu0.1                          printer driver Brother P-touch label printers
ii  printer-driver-pxljr                 1.3+repack0-2                           printer driver for HP Color LaserJet 35xx/36xx
ii  printer-driver-sag-gdi               0.1-3                                   printer driver for Ricoh Aficio SP 1000s/SP 1100s
ii  printer-driver-splix                 2.0.0+svn300-1.1ubuntu2                 Driver for Samsung and Xerox SPL2 and SPLc laser printers
ii  procps                               1:3.2.8-11ubuntu6                       /proc file system utilities
ii  psmisc                               22.15-2ubuntu1.1                        utilities that use the proc file system
ii  pulseaudio                           1:1.1-0ubuntu15.2                       PulseAudio sound server
ii  pulseaudio-module-bluetooth          1:1.1-0ubuntu15.2                       Bluetooth module for PulseAudio sound server
ii  pulseaudio-module-x11                1:1.1-0ubuntu15.2                       X11 module for PulseAudio sound server
ii  pulseaudio-utils                     1:1.1-0ubuntu15.2                       Command line tools for the PulseAudio sound server
ii  python                               2.7.3-0ubuntu2                          interactive high-level object-oriented language (default version)
ii  python-apport                        2.0.1-0ubuntu17.1                       apport crash report handling library
ii  python-apt                           0.8.3ubuntu7                            Python interface to libapt-pkg
ii  python-apt-common                    0.8.3ubuntu7                            Python interface to libapt-pkg (locales)
ii  python-aptdaemon                     0.43+bzr805-0ubuntu8                    Python module for the server and client of aptdaemon
ii  python-cairo                         1.8.8-1ubuntu3                          Python bindings for the Cairo vector graphics library
ii  python-chardet                       2.0.1-2build1                           universal character encoding detector
ii  python-crypto                        2.4.1-1ubuntu0.1                        cryptographic algorithms and protocols for Python
ii  python-cups                          1.9.61-0ubuntu2                         Python bindings for CUPS
ii  python-cupshelpers                   1.3.8+20120201-0ubuntu8.1               Python modules for printer configuration with CUPS
ii  python-dbus                          1.0.0-1ubuntu1                          simple interprocess messaging system (Python interface)
ii  python-dbus-dev                      1.0.0-1ubuntu1                          main loop integration development files for python-dbus
ii  python-debian                        0.1.21ubuntu1                           Python modules to work with Debian-related data formats
ii  python-defer                         1.0.2+bzr481-1                          Small framework for asynchronous programming
ii  python-gdbm                          2.7.3-1ubuntu1                          GNU dbm database support for Python
ii  python-gi                            3.2.2-1~precise                         Python 2.x bindings for gobject-introspection libraries
ii  python-gnupginterface                0.3.2-9.1ubuntu3                        Python interface to GnuPG (GPG)
ii  python-gobject                       3.2.2-1~precise                         Python 2.x bindings for GObject - transitional package
ii  python-gobject-2                     2.28.6-10ubuntu1                        deprecated static Python bindings for the GObject library
ii  python-gpgme                         0.2-1                                   python wrapper for the GPGME library
ii  python-gtk2                          2.24.0-3                                Python bindings for the GTK+ widget set
ii  python-httplib2                      0.7.2-1ubuntu2                          comprehensive HTTP client library written for Python
ii  python-imaging                       1.1.7-4                                 Python Imaging Library
ii  python-kde4                          4:4.8.3-0ubuntu0.1                      Python bindings for the KDE Development Platform
ii  python-keyring                       0.9.2-0ubuntu0.12.04.2                  store and access your passwords safely
ii  python-launchpadlib                  1.9.12-1                                Launchpad web services client library
ii  python-lazr.restfulclient            0.12.0-1ubuntu1                         client for lazr.restful-based web services
ii  python-lazr.uri                      1.0.3-1                                 library for parsing, manipulating, and generating URIs
ii  python-minimal                       2.7.3-0ubuntu2                          minimal subset of the Python language (default version)
ii  python-oauth                         1.0.1-3build1                           Python library implementing of the OAuth protocol
ii  python-pexpect                       2.3-1ubuntu2                            Python module for automating interactive applications
ii  python-pkg-resources                 0.6.24-1ubuntu1                         Package Discovery and Resource Access using pkg_resources
ii  python-problem-report                2.0.1-0ubuntu17.1                       Python library to handle problem reports
ii  python-pycurl                        7.19.0-4ubuntu3                         Python bindings to libcurl
ii  python-pyudev                        0.13-1                                  Python bindings for libudev
ii  python-qt4                           4.9.1-2ubuntu1                          Python bindings for Qt4
ii  python-qt4-dbus                      4.9.1-2ubuntu1                          DBus Support for PyQt4
ii  python-renderpm                      2.5-1.1build1                           python low level render interface
ii  python-reportlab                     2.5-1.1build1                           ReportLab library to create PDF documents using Python
ii  python-reportlab-accel               2.5-1.1build1                           C coded extension accelerator for the ReportLab Toolkit
ii  python-simplejson                    2.3.2-1                                 simple, fast, extensible JSON encoder/decoder for Python
ii  python-sip                           4.13.2-1                                Python/C++ bindings generator runtime library
ii  python-smbc                          1.0.13-0ubuntu1                         Python bindings for Samba clients (libsmbclient)
ii  python-software-properties           0.82.7.3                                manage the repositories that you install software from
ii  python-uno                           1:3.5.7-0ubuntu4                        Python-UNO bridge
ii  python-wadllib                       1.3.0-2                                 Python library for navigating WADL files
ii  python-xapian                        1.2.8-1                                 Xapian search engine interface for Python
ii  python-xdg                           0.19-3ubuntu2                           Python library to access freedesktop.org standards
ii  python-xkit                          0.4.2.3build1                           library for the manipulation of the xorg.conf
ii  python-zope.interface                3.6.1-1ubuntu3                          Interfaces for Python
ii  python2.7                            2.7.3-0ubuntu3.1                        Interactive high-level object-oriented language (version 2.7)
ii  python2.7-minimal                    2.7.3-0ubuntu3.1                        Minimal subset of the Python language (version 2.7)
ii  qapt-batch                           1.3.1-0ubuntu2                          Batch package manager for KDE
ii  qapt-deb-installer                   1.3.1-0ubuntu2                          tool for installing deb files
ii  qdbus                                4:4.8.1-0ubuntu4.4                      Qt 4 D-Bus tool
ii  quassel                              0.8.0-0ubuntu1                          KDE/Qt-based IRC client
ii  quassel-data                         0.8.0-0ubuntu1                          distributed, KDE/Qt-based IRC client - data files
ii  radeontool                           1.6.2-1.1                               utility to control ATI Radeon backlight functions on laptops
ii  readline-common                      6.2-8                                   GNU readline and history libraries, common files
ii  rekonq                               0.9.1-0ubuntu2                          KDE web browser based on Webkit
ii  resolvconf                           1.63ubuntu16                            name server information handler
ii  rfkill                               0.4-1ubuntu2                            tool for enabling and disabling wireless devices
ii  rsync                                3.0.9-1ubuntu1                          fast, versatile, remote (and local) file-copying tool
ii  rsyslog                              5.8.6-1ubuntu8                          reliable system and kernel logging daemon
ii  rtkit                                0.10-2                                  Realtime Policy and Watchdog Daemon
ii  samba-common                         2:3.6.3-2ubuntu2.3                      common files used by both the Samba server and client
ii  samba-common-bin                     2:3.6.3-2ubuntu2.3                      common files used by both the Samba server and client
ii  sane-utils                           1.0.22-7ubuntu1                         API library for scanners -- utilities
ii  sed                                  4.2.1-9                                 The GNU sed stream editor
ii  sensible-utils                       0.0.6ubuntu2                            Utilities for sensible alternative selection
ii  sgml-base                            1.26+nmu1ubuntu1                        SGML infrastructure and SGML catalog file support
ii  sgml-data                            2.0.6                                   common SGML and XML data
ii  shared-desktop-ontologies            0.8.1-1                                 shared ontologies for semantic searching
ii  shared-mime-info                     1.0-0ubuntu4.1                          FreeDesktop.org shared MIME database and spec
ii  smbclient                            2:3.6.3-2ubuntu2.3                      command-line SMB/CIFS clients for Unix
ii  software-properties-kde              0.82.7.3                                manage the repositories that you install software from (kde)
ii  soprano-daemon                       2.7.5+dfsg.1-0ubuntu1                   daemon for the Soprano RDF framework
ii  sound-theme-freedesktop              0.7.pristine-2                          freedesktop.org sound theme
ii  ssl-cert                             1.0.28ubuntu0.1                         simple debconf wrapper for OpenSSL
ii  strace                               4.5.20-2.3ubuntu1                       A system call tracer
ii  sudo                                 1.8.3p1-1ubuntu3.4                      Provide limited super user privileges to specific users
ii  syslinux                             2:4.05+dfsg-2                           collection of boot loaders
ii  syslinux-common                      2:4.05+dfsg-2                           collection of boot loaders (common files)
ii  syslinux-legacy                      2:3.63+dfsg-2ubuntu5                    Bootloader for Linux/i386 using MS-DOS floppies
ii  system-config-printer-common         1.3.8+20120201-0ubuntu8.1               Printer configuration GUI
ii  system-config-printer-kde            4:4.8.5-0ubuntu0.1                      printer configuration utility
ii  system-config-printer-udev           1.3.8+20120201-0ubuntu8.1               Printer auto-configuration facility based on udev
ii  systemsettings                       4:4.8.5-0ubuntu0.3                      System Settings
ii  sysv-rc                              2.88dsf-13.10ubuntu11.1                 System-V-like runlevel change mechanism
ii  sysvinit-utils                       2.88dsf-13.10ubuntu11.1                 System-V-like utilities
ii  tar                                  1.26-4ubuntu1                           GNU version of the tar archiving utility
ii  tasks-icons                          4:4.8.5-0ubuntu0.1                      icon files for the taks management
ii  tasksel                              2.88ubuntu9                             Tool for selecting tasks for installation on Debian systems
ii  tasksel-data                         2.88ubuntu9                             Official tasks used for installation of Debian systems
ii  tcpd                                 7.6.q-21                                Wietse Venema's TCP wrapper utilities
ii  tcpdump                              4.2.1-1ubuntu2                          command-line network traffic analyzer
ii  telnet                               0.17-36build1                           The telnet client
ii  time                                 1.7-23.1                                The GNU time program for measuring cpu resource usage
ii  toshset                              1.76-2                                  Access much of the Toshiba laptop hardware interface
ii  ttf-dejavu-core                      2.33-2ubuntu1                           Vera font family derivate with additional characters
ii  ttf-freefont                         20100919-1                              Freefont Serif, Sans and Mono Truetype fonts
ii  ttf-indic-fonts-core                 1:0.5.11ubuntu1                         Core collection of free fonts for languages of India
ii  ttf-punjabi-fonts                    1:0.5.11ubuntu1                         Free TrueType fonts for the Punjabi language
ii  ttf-ubuntu-font-family               0.80-0ubuntu2                           Ubuntu Font Family, sans-serif typeface hinted for clarity
ii  ttf-wqy-microhei                     0.2.0-beta-1ubuntu1                     A droid derived Sans-Seri style CJK font
ii  tzdata                               2012e-0ubuntu0.12.04.1                  time zone and daylight-saving time data
ii  ubuntu-extras-keyring                2010.09.27                              GnuPG keys of the Ubuntu extras archive
ii  ubuntu-keyring                       2011.11.21.1                            GnuPG keys of the Ubuntu archive
ii  ubuntu-minimal                       1.267.1                                 Minimal core of Ubuntu
ii  ubuntu-standard                      1.267.1                                 The Ubuntu standard system
ii  ucf                                  3.0025+nmu2ubuntu1                      Update Configuration File: preserve user changes to config files.
ii  udev                                 175-0ubuntu9.2                          rule-based device node and kernel event manager
ii  udisks                               1.0.4-5ubuntu2.1                        storage media interface
ii  ufw                                  0.31.1-1                                program for managing a Netfilter firewall
ii  unattended-upgrades                  0.76ubuntu1                             automatic installation of security upgrades
ii  uno-libs3                            3.5.7-0ubuntu4                          LibreOffice UNO runtime environment -- public shared libraries
ii  unzip                                6.0-4ubuntu1                            De-archiver for .zip files
ii  update-inetd                         4.41                                    inetd configuration file updater
ii  update-manager-core                  1:0.156.14.11                           manage release upgrades
ii  update-manager-kde                   1:0.156.14.11                           Support modules for Muon Notifier and Apper
ii  update-notifier-common               0.119ubuntu8.6                          Files shared between update-notifier and other packages
ii  upower                               0.9.15-3git1                            abstraction for power management
ii  upstart                              1.5-0ubuntu7.2                          event-based init daemon
ii  ure                                  3.5.7-0ubuntu4                          LibreOffice UNO runtime environment
ii  ureadahead                           0.100.0-12                              Read required files in advance
ii  usb-creator-common                   0.2.38                                  create a startup disk using a CD or disc image (common files)
ii  usb-creator-kde                      0.2.38                                  create a startup disk using a CD or disc image (for KDE)
ii  usb-modeswitch                       1.2.3+repack0-1ubuntu2                  mode switching tool for controlling "flip flop" USB devices
ii  usb-modeswitch-data                  20120120-0ubuntu1                       mode switching data for usb-modeswitch
ii  usbmuxd                              1.0.7-2                                 USB multiplexor daemon for iPhone and iPod Touch devices
ii  usbutils                             1:005-1                                 Linux USB utilities
ii  userconfig                           0.9.0-0ubuntu10                         user and group setup tool for KDE
ii  util-linux                           2.20.1-1ubuntu3                         Miscellaneous system utilities
ii  uuid-runtime                         2.20.1-1ubuntu3                         runtime components for the Universally Unique ID library
ii  vbetool                              1.1-2ubuntu1                            run real-mode video BIOS code to alter hardware state
ii  vim-common                           2:7.3.429-2ubuntu2.1                    Vi IMproved - Common files
ii  vim-tiny                             2:7.3.429-2ubuntu2.1                    Vi IMproved - enhanced vi editor - compact version
ii  virtuoso-minimal                     6.1.4+dfsg1-0ubuntu1                    high-performance database - core dependency package
ii  virtuoso-opensource-6.1-bin          6.1.4+dfsg1-0ubuntu1                    high-performance database - binaries
ii  virtuoso-opensource-6.1-common       6.1.4+dfsg1-0ubuntu1                    high-performance database - common files
ii  wamerican                            7.1-1                                   American English dictionary words for /usr/share/dict
ii  wbritish                             7.1-1                                   British English dictionary words for /usr/share/dict
ii  wget                                 1.13.4-2ubuntu1                         retrieves files from the web
ii  whiptail                             0.52.11-2ubuntu10                       Displays user-friendly dialog boxes from shell scripts
ii  wireless-regdb                       2011.04.28-1ubuntu3                     wireless regulatory database
ii  wireless-tools                       30~pre9-5ubuntu2                        Tools for manipulating Linux Wireless Extensions
ii  wodim                                9:1.1.11-2ubuntu2                       command line CD/DVD writing tool
ii  wpasupplicant                        0.7.3-6ubuntu2.1                        client support for WPA and WPA2 (IEEE 802.11i)
ii  x11-apps                             7.6+5ubuntu1                            X applications
ii  x11-common                           1:7.6+12ubuntu2                         X Window System (X.Org) infrastructure
ii  x11-session-utils                    7.6+2                                   X session utilities
ii  x11-utils                            7.6+4ubuntu0.1                          X11 utilities
ii  x11-xfs-utils                        7.6+1                                   X font server utilities
ii  x11-xkb-utils                        7.6+4                                   X11 XKB utilities
ii  x11-xserver-utils                    7.6+3                                   X server utilities
ii  xauth                                1:1.0.6-1                               X authentication utility
ii  xbitmaps                             1.1.1-1                                 Base X bitmaps
ii  xcursor-themes                       1.0.3-1                                 Base X cursor themes
ii  xdg-user-dirs                        0.14-0ubuntu2                           tool to manage well known user directories
ii  xdg-utils                            1.1.0~rc1-2ubuntu6                      desktop integration utilities from freedesktop.org
ii  xfonts-base                          1:1.0.3                                 standard fonts for X
ii  xfonts-encodings                     1:1.0.4-1ubuntu1                        Encodings for X.Org fonts
ii  xfonts-mathml                        4ubuntu1                                Type1 Symbol font for MathML
ii  xfonts-scalable                      1:1.0.3-1                               scalable fonts for X
ii  xfonts-utils                         1:7.6+1                                 X Window System font utility programs
ii  xinit                                1.3.1-1                                 X server initialisation tool
ii  xinput                               1.5.99.1-0ubuntu2                       Runtime configuration and test of XInput devices
ii  xkb-data                             2.5-1ubuntu1.3                          X Keyboard Extension (XKB) configuration data
ii  xml-core                             0.13                                    XML infrastructure and XML catalog file support
ii  xorg                                 1:7.6+12ubuntu2                         X.Org X Window System
ii  xorg-docs-core                       1:1.6-1ubuntu2                          Core documentation for the X.org X Window System
ii  xserver-common                       2:1.11.4-0ubuntu10.12                   common files used by various X servers
ii  xserver-xorg                         1:7.6+12ubuntu2                         X.Org X server
ii  xserver-xorg-core                    2:1.11.4-0ubuntu10.12                   Xorg X server - core server
ii  xserver-xorg-input-all               1:7.6+12ubuntu2                         X.Org X server -- input driver metapackage
ii  xserver-xorg-input-evdev             1:2.7.0-0ubuntu1.2                      X.Org X server -- evdev input driver
ii  xserver-xorg-input-mouse             1:1.7.1-1build3                         X.Org X server -- mouse input driver
ii  xserver-xorg-input-synaptics         1.6.2-1ubuntu1~precise2                 Synaptics TouchPad driver for X.Org server
ii  xserver-xorg-input-vmmouse           1:12.9.0-0ubuntu0.1                     X.Org X server -- VMMouse input driver to use with VMWare
ii  xserver-xorg-input-wacom             1:0.14.0-0ubuntu2.1                     X.Org X server -- Wacom input driver
ii  xserver-xorg-video-all               1:7.6+12ubuntu2                         X.Org X server -- output driver metapackage
ii  xserver-xorg-video-ati               1:6.14.99~git20111219.aacbd629-0ubuntu2 X.Org X server -- AMD/ATI display driver wrapper
ii  xserver-xorg-video-cirrus            1:1.3.2-4build1                         X.Org X server -- Cirrus display driver
ii  xserver-xorg-video-fbdev             1:0.4.2-4ubuntu2                        X.Org X server -- fbdev display driver
ii  xserver-xorg-video-intel             2:2.17.0-1ubuntu4.3                     X.Org X server -- Intel i8xx, i9xx display driver
ii  xserver-xorg-video-mach64            6.9.0-1build2                           X.Org X server -- ATI Mach64 display driver
ii  xserver-xorg-video-mga               1:1.4.13.dfsg-4build2                   X.Org X server -- MGA display driver
ii  xserver-xorg-video-neomagic          1:1.2.5-2build2                         X.Org X server -- Neomagic display driver
ii  xserver-xorg-video-nouveau           1:0.0.16+git20111201+b5534a1-1build3    X.Org X server -- Nouveau display driver
ii  xserver-xorg-video-openchrome        1:0.2.904+svn1050-1                     X.Org X server -- VIA display driver
ii  xserver-xorg-video-qxl               0.0.16-2ubuntu0.1                       X.Org X server -- QXL display driver
ii  xserver-xorg-video-r128              6.8.1-5build2                           X.Org X server -- ATI r128 display driver
ii  xserver-xorg-video-radeon            1:6.14.99~git20111219.aacbd629-0ubuntu2 X.Org X server -- AMD/ATI Radeon display driver
ii  xserver-xorg-video-s3                1:0.6.3-4build2                         X.Org X server -- legacy S3 display driver
ii  xserver-xorg-video-savage            1:2.3.3-1ubuntu1                        X.Org X server -- Savage display driver
ii  xserver-xorg-video-siliconmotion     1:1.7.5-1build2                         X.Org X server -- SiliconMotion display driver
ii  xserver-xorg-video-sis               1:0.10.3-3build2                        X.Org X server -- SiS display driver
ii  xserver-xorg-video-sisusb            1:0.9.4-2build2                         X.Org X server -- SiS USB display driver
ii  xserver-xorg-video-tdfx              1:1.4.3-4build2                         X.Org X server -- tdfx display driver
ii  xserver-xorg-video-trident           1:1.3.4-2build2                         X.Org X server -- Trident display driver
ii  xserver-xorg-video-vesa              1:2.3.0-7build2                         X.Org X server -- VESA display driver
ii  xserver-xorg-video-vmware            1:12.0.1-1ubuntu1.1                     X.Org X server -- VMware display driver
ii  xsettings-kde                        0.12.3-0ubuntu2.1                       XSettings daemon for KDE
ii  xul-ext-ubufox                       2.6-0ubuntu0.12.04.1                    Ubuntu-specific configuration defaults and apt support for Firefox
ii  xz-lzma                              5.1.1alpha+20110809-3                   XZ-format compression utilities - compatibility commands
ii  xz-utils                             5.1.1alpha+20110809-3                   XZ-format compression utilities
ii  zip                                  3.0-4                                   Archiver for .zip files
ii  zlib1g                               1:1.2.3.4.dfsg-3ubuntu4                 compression library - runtime

--[ Cmd: /usr/bin/dpkg --get-selections ]--(0755, root, root, 253424)-----------
accountsservice install
acl install
acpi-support install
acpid install
adduser install
akonadi-backend-mysql install
akonadi-server install
akregator install
alsa-base install
alsa-utils install
amarok install
amarok-common install
amarok-help-en install
amarok-utils install
anacron install
app-install-data install
app-install-data-partner install
apparmor install
appmenu-gtk install
appmenu-gtk3 install
appmenu-qt install
apport install
apport-kde install
apport-symptoms install
apt install
apt-transport-https install
apt-utils install
apt-xapian-index install
aptdaemon install
aptitude install
apturl-common install
apturl-kde install
ark install
aspell install
aspell-en install
at install
avahi-autoipd install
avahi-daemon install
avahi-utils install
base-files install
base-passwd install
bash install
bash-completion install
bc install
bind9-host install
binutils install
bluedevil install
bluez install
bluez-alsa install
bluez-cups install
brltty install
bsdmainutils install
bsdutils install
busybox-initramfs install
busybox-static install
bzip2 install
ca-certificates install
cdparanoia install
cdrdao install
cmap-adobe-japan1 install
colord install
command-not-found install
command-not-found-data install
console-setup install
consolekit install
coreutils install
cpio install
cpp install
cpp-4.6 install
crda install
cron install
cryptsetup install
cryptsetup-bin install
cups install
cups-bsd install
cups-client install
cups-common install
cups-filters install
cups-ppdc install
dash install
dbus install
dbus-x11 install
dc install
dconf install
dconf-gsettings-backend install
dconf-service install
debconf install
debconf-i18n install
debianutils install
dictionaries-common install
diffutils install
dmidecode install
dmsetup install
dnsmasq-base install
dnsutils install
docbook-xml install
docbook-xsl install
dolphin install
dosfstools install
dpkg install
dragonplayer install
dvd+rw-tools install
e2fslibs install
e2fsprogs install
ed install
efibootmgr install
eject install
enchant install
file install
findutils install
firefox install
firefox-globalmenu install
flashplugin-installer install
fontconfig install
fontconfig-config install
fonts-kacst install
fonts-kacst-one install
fonts-khmeros-core install
fonts-lao install
fonts-liberation install
fonts-nanum install
fonts-opensymbol install
fonts-takao-pgothic install
fonts-thai-tlwg install
fonts-tlwg-garuda install
fonts-tlwg-kinnari install
fonts-tlwg-loma install
fonts-tlwg-mono install
fonts-tlwg-norasi install
fonts-tlwg-purisa install
fonts-tlwg-sawasdee install
fonts-tlwg-typewriter install
fonts-tlwg-typist install
fonts-tlwg-typo install
fonts-tlwg-umpush install
fonts-tlwg-waree install
foomatic-db-compressed-ppds install
foomatic-db-engine install
foomatic-filters install
freespacenotifier install
friendly-recovery install
ftp install
fuse install
gcc-4.6-base install
gdb install
genisoimage install
geoip-database install
gettext-base install
ghostscript install
ghostscript-cups install
ghostscript-x install
gir1.2-glib-2.0 install
glib-networking install
glib-networking-common install
glib-networking-services install
gnupg install
gnupg-agent install
gnupg2 install
gpgsm install
gpgv install
gpsd install
grep install
groff-base install
growisofs install
grub-common install
grub-efi install
grub-efi-amd64 install
grub-efi-amd64-bin install
grub2-common install
gs-cjk-resource install
gsettings-desktop-schemas install
gsfonts install
gstreamer0.10-alsa install
gstreamer0.10-fluendo-mp3 install
gstreamer0.10-plugins-base install
gstreamer0.10-plugins-good install
gstreamer0.10-plugins-ugly install
gstreamer0.10-pulseaudio install
gstreamer0.10-qapt install
gstreamer0.10-x install
gtk2-engines-oxygen install
gtk3-engines-oxygen install
gwenview install
gzip install
hdparm install
hicolor-icon-theme install
hostname install
hplip install
hplip-data install
hunspell-en-ca install
hunspell-en-us install
hyphen-en-us install
ibus-qt4 install
icoutils install
ifupdown install
im-switch install
info install
initramfs-tools install
initramfs-tools-bin install
initscripts install
inputattach install
insserv install
install-info install
installation-report install
iproute install
iptables install
iputils-arping install
iputils-ping install
iputils-tracepath install
irqbalance install
isc-dhcp-client install
isc-dhcp-common install
iso-codes install
jockey-common install
jockey-kde install
k3b install
k3b-data install
kaccessible install
kaddressbook install
kamera install
kate install
kate-data install
katepart install
kbd install
kcalc install
kde-baseapps-bin install
kde-baseapps-data install
kde-config-gtk install
kde-config-touchpad install
kde-l10n-engb install
kde-runtime install
kde-runtime-data install
kde-style-oxygen install
kde-wallpapers-default install
kde-window-manager install
kde-window-manager-common install
kde-workspace install
kde-workspace-bin install
kde-workspace-data install
kde-workspace-kgreet-plugins install
kde-zeroconf install
kdegames-card-data install
kdegraphics-strigi-analyzer install
kdelibs-bin install
kdelibs5-data install
kdelibs5-plugins install
kdemultimedia-kio-plugins install
kdenetwork-filesharing install
kdepasswd install
kdepim-kresources install
kdepim-runtime install
kdepim-strigi-plugins install
kdepimlibs-kio-plugins install
kdesudo install
kdm install
kdoctools install
keepassx install
kerneloops-daemon install
keyboard-configuration install
khelpcenter4 install
kinfocenter install
klibc-utils install
klipper install
kmag install
kmail install
kmenuedit install
kmix install
kmousetool install
knotes install
konsole install
kontact install
kopete install
kopete-message-indicator install
korganizer install
kpat install
kppp install
krb5-locales install
ksnapshot install
ksysguard install
ksysguardd install
ksystemlog install
ktorrent install
ktorrent-data install
kubuntu-debug-installer install
kubuntu-default-settings install
kubuntu-desktop install
kubuntu-docs install
kubuntu-firefox-installer install
kubuntu-netbook-default-settings install
kubuntu-notification-helper install
kubuntu-web-shortcuts install
kvkbd install
kwalletmanager install
language-pack-en install
language-pack-en-base install
language-pack-kde-en install
language-pack-kde-en-base install
language-selector-common install
language-selector-kde install
laptop-detect install
less install
liba52-0.7.4 install
libaa1 install
libaccountsservice0 install
libacl1 install
libakonadi-calendar4 install
libakonadi-contact4 install
libakonadi-kabc4 install
libakonadi-kcal4 install
libakonadi-kde4 install
libakonadi-kmime4 install
libakonadi-notes4 install
libakonadiprotocolinternals1 install
libapt-inst1.4 install
libapt-pkg4.12 install
libarchive12 install
libart-2.0-2 install
libasn1-8-heimdal install
libasound2 install
libasound2-plugins install
libaspell15 install
libassuan0 install
libasyncns0 install
libatasmart4 install
libatk1.0-0 install
libatk1.0-data install
libattica0.3 install
libattr1 install
libaudio2 install
libavahi-client3 install
libavahi-common-data install
libavahi-common3 install
libavahi-core7 install
libavc1394-0 install
libbind9-80 install
libblkid1 install
libbluedevil1 install
libbluetooth3 install
libboost-iostreams1.46.1 install
libboost-program-options1.46.1 install
libbrlapi0.5 install
libbsd0 install
libbz2-1.0 install
libc-bin install
libc6 install
libcaca0 install
libcairo-gobject2 install
libcairo2 install
libcalendarsupport4 install
libcanberra-pulse install
libcanberra0 install
libcap-ng0 install
libcap2 install
libcdio13 install
libcdparanoia0 install
libck-connector0 install
libclass-accessor-perl install
libclass-isa-perl install
libcln6 install
libclucene0ldbl install
libcmis-0.2-0 install
libcolord1 install
libcomerr2 install
libcroco3 install
libcrypt-passwdmd5-perl install
libcryptsetup4 install
libcups2 install
libcupscgi1 install
libcupsdriver1 install
libcupsfilters1 install
libcupsimage2 install
libcupsmime1 install
libcupsppdc1 install
libcurl3-gnutls install
libcwidget3 install
libdaemon0 install
libdatrie1 install
libdb5.1 install
libdbus-1-3 install
libdbus-glib-1-2 install
libdbusmenu-glib4 install
libdbusmenu-gtk3-4 install
libdbusmenu-gtk4 install
libdbusmenu-qt2 install
libdconf0 install
libdebconf-kde0 install
libdevmapper-event1.02.1 install
libdevmapper1.02.1 install
libdiscid0 install
libdjvulibre-text install
libdjvulibre21 install
libdlrestrictions1 install
libdmtx0a install
libdns81 install
libdrm-intel1 install
libdrm-nouveau1a install
libdrm-radeon1 install
libdrm2 install
libdv4 install
libdvdnav4 install
libdvdread4 install
libedit2 install
libelf1 install
libenchant1c2a install
libencode-locale-perl install
libept1.4.12 install
libepub0 install
libeventviews4 install
libexif12 install
libexiv2-11 install
libexpat1 install
libexttextcat-data install
libexttextcat0 install
libffi6 install
libfile-basedir-perl install
libfile-copy-recursive-perl install
libfile-desktopentry-perl install
libfile-listing-perl install
libfile-mimeinfo-perl install
libflac++6 install
libflac8 install
libfont-afm-perl install
libfontconfig1 install
libfontenc1 install
libfreetype6 install
libfribidi0 install
libfs6 install
libfuse2 install
libgadu3 install
libgcc1 install
libgcrypt11 install
libgd2-xpm install
libgdbm3 install
libgdk-pixbuf2.0-0 install
libgdk-pixbuf2.0-common install
libgeoip1 install
libgif4 install
libgirepository-1.0-1 install
libgl1-mesa-dri install
libgl1-mesa-glx install
libglapi-mesa install
libglib2.0-0 install
libglu1-mesa install
libgmp10 install
libgnome-keyring-common install
libgnome-keyring0 install
libgnutls26 install
libgpg-error0 install
libgpgme++2 install
libgpgme11 install
libgphoto2-2 install
libgphoto2-l10n install
libgphoto2-port0 install
libgpm2 install
libgpod4-nogtk install
libgps20 install
libgrantlee-core0 install
libgs9 install
libgs9-common install
libgssapi-krb5-2 install
libgssapi3-heimdal install
libgstreamer-plugins-base0.10-0 install
libgstreamer0.10-0 install
libgtk-3-0 install
libgtk-3-bin install
libgtk-3-common install
libgtk2.0-0 install
libgtk2.0-bin install
libgtk2.0-common install
libgudev-1.0-0 install
libgutenprint2 install
libhcrypto4-heimdal install
libheimbase1-heimdal install
libheimntlm0-heimdal install
libhpmud0 install
libhtml-form-perl install
libhtml-format-perl install
libhtml-parser-perl install
libhtml-tagset-perl install
libhtml-tree-perl install
libhttp-cookies-perl install
libhttp-daemon-perl install
libhttp-date-perl install
libhttp-message-perl install
libhttp-negotiate-perl install
libhunspell-1.3-0 install
libhx509-5-heimdal install
libhyphen0 install
libibus-qt1 install
libical0 install
libice6 install
libicu48 install
libidn11 install
libiec61883-0 install
libieee1284-3 install
libijs-0.35 install
libilmbase6 install
libimobiledevice2 install
libincidenceeditorsng4 install
libindicate-qt1 install
libindicate5 install
libio-socket-inet6-perl install
libio-socket-ssl-perl install
libio-string-perl install
libisc83 install
libisccc80 install
libisccfg82 install
libiw30 install
libjack-jackd2-0 install
libjasper1 install
libjbig2dec0 install
libjpeg-turbo8 install
libjpeg8 install
libjs-jquery install
libjson0 install
libk3b6 install
libk5crypto3 install
libkabc4 install
libkactivities-bin install
libkactivities6 install
libkalarmcal2 install
libkateinterfaces4 install
libkatepartinterfaces4 install
libkblog4 install
libkcal4 install
libkcalcore4 install
libkcalutils4 install
libkcddb4 install
libkcmutils4 install
libkde3support4 install
libkdeclarative5 install
libkdecorations4 install
libkdecore5 install
libkdegames5a install
libkdepim4 install
libkdepimdbusinterfaces4 install
libkdesu5 install
libkdeui5 install
libkdewebkit5 install
libkdgantt2 install
libkdnssd4 install
libkemoticons4 install
libkephal4abi1 install
libkexiv2-10 install
libkexiv2-data install
libkeyutils1 install
libkfile4 install
libkholidays4 install
libkhtml5 install
libkidletime4 install
libkimap4 install
libkio5 install
libkipi-data install
libkipi8 install
libkjsapi4 install
libkjsembed4 install
libkldap4 install
libkleo4 install
libklibc install
libkmanagesieve4 install
libkmbox4 install
libkmediaplayer4 install
libkmime4 install
libknewstuff2-4 install
libknewstuff3-4 install
libknotifyconfig4 install
libkntlm4 install
libkonq-common install
libkonq5-templates install
libkonq5abi1 install
libkontactinterface4 install
libkopete4 install
libkparts4 install
libkpgp4 install
libkpimidentities4 install
libkpimtextedit4 install
libkpimutils4 install
libkprintutils4 install
libkpty4 install
libkrb5-26-heimdal install
libkrb5-3 install
libkrb5support0 install
libkresources4 install
libkrosscore4 install
libksba8 install
libkscreensaver5 install
libksgrd4 install
libksieve4 install
libksieveui4 install
libksignalplotter4 install
libktexteditor4 install
libktnef4 install
libktorrent-l10n install
libktorrent3 install
libkunitconversion4 install
libkwineffects1abi3 install
libkwinglutils1 install
libkwinnvidiahack4 install
libkworkspace4abi1 install
libkxmlrpcclient4 install
liblastfm0 install
liblcms1 install
liblcms2-2 install
libldap-2.4-2 install
libllvm3.0 install
liblocale-gettext-perl install
liblockfile-bin install
liblockfile1 install
libloudmouth1-0 install
libltdl7 install
liblvm2app2.2 install
liblwp-mediatypes-perl install
liblwp-protocol-https-perl install
liblwres80 install
liblzma5 install
libmad0 install
libmagic1 install
libmailcommon4 install
libmailtools-perl install
libmailtransport4 install
libmeanwhile1 install
libmessagecomposer4 install
libmessagecore4 install
libmessagelist4 install
libmessageviewer4 install
libmhash2 install
libmicroblog4 install
libmng1 install
libmount1 install
libmp3lame0 install
libmpc2 install
libmpcdec6 install
libmpeg2-4 install
libmpfr4 install
libmsn0.3 install
libmtdev1 install
libmtp-common install
libmtp-runtime install
libmtp9 install
libmuonprivate1 install
libmusicbrainz3-6 install
libmygpo-qt1 install
libmysqlclient18 install
libmythes-1.2-0 install
libnautilus-extension1a install
libncurses5 install
libncursesw5 install
libneon27-gnutls install
libnepomuk4 install
libnepomukdatamanagement4 install
libnepomukquery4a install
libnepomuksync4 install
libnepomukutils4 install
libnet-http-perl install
libnet-ssleay-perl install
libnetfilter-conntrack3 install
libnettle4 install
libnewt0.52 install
libnfnetlink0 install
libnih-dbus1 install
libnih1 install
libnl-3-200 install
libnl-genl-3-200 install
libnl-route-3-200 install
libnm-glib-vpn1 install
libnm-glib4 install
libnm-util2 install
libnspr4 install
libnspr4-0d install
libnss-mdns install
libnss3 install
libnss3-1d install
libntrack-qt4-1 install
libntrack0 install
libogg0 install
liboil0.3 install
libokularcore1abi1 install
libopencore-amrnb0 install
libopencore-amrwb0 install
libopenexr6 install
libopenobex1 install
liborc-0.4-0 install
libotr2 install
libp11-kit0 install
libpam-ck-connector install
libpam-modules install
libpam-modules-bin install
libpam-runtime install
libpam0g install
libpango1.0-0 install
libpaper-utils install
libpaper1 install
libparse-debianchangelog-perl install
libparted0debian1 install
libpcap0.8 install
libpci3 install
libpciaccess0 install
libpcre3 install
libpcsclite1 install
libperl5.14 install
libphonon4 install
libpipeline1 install
libpixman-1-0 install
libplasma-geolocation-interface4 install
libplasma3 install
libplasmaclock4abi3 install
libplasmagenericshell4 install
libplist1 install
libplymouth2 install
libpng12-0 install
libpolkit-agent-1-0 install
libpolkit-backend-1-0 install
libpolkit-gobject-1-0 install
libpolkit-qt-1-1 install
libpoppler-qt4-3 install
libpoppler19 install
libpopt0 install
libprison0 install
libprocesscore4abi1 install
libprocessui4a install
libproxy1 install
libpth20 install
libpulse-mainloop-glib0 install
libpulse0 install
libpulsedsp install
libpython2.7 install
libqalculate5 install
libqapt-runtime install
libqapt1 install
libqca2 install
libqca2-plugin-ossl install
libqgpgme1 install
libqimageblitz4 install
libqjson0 install
libqrencode3 install
libqt4-dbus install
libqt4-declarative install
libqt4-designer install
libqt4-help install
libqt4-network install
libqt4-opengl install
libqt4-qt3support install
libqt4-script install
libqt4-scripttools install
libqt4-sql install
libqt4-sql-mysql install
libqt4-sql-sqlite install
libqt4-svg install
libqt4-test install
libqt4-xml install
libqt4-xmlpatterns install
libqtassistantclient4 install
libqtcore4 install
libqtglib-2.0-0 install
libqtgstreamer-0.10-0 install
libqtgui4 install
libqtscript4-core install
libqtscript4-gui install
libqtscript4-network install
libqtscript4-sql install
libqtscript4-uitools install
libqtscript4-xml install
libqtwebkit4 install
libraptor2-0 install
librasqal3 install
libraw1394-11 install
librdf0 install
libreadline6 install
libreoffice-base-core install
libreoffice-calc install
libreoffice-common install
libreoffice-core install
libreoffice-draw install
libreoffice-emailmerge install
libreoffice-help-en-gb install
libreoffice-help-en-us install
libreoffice-impress install
libreoffice-kde install
libreoffice-l10n-en-gb install
libreoffice-l10n-en-za install
libreoffice-math install
libreoffice-style-oxygen install
libreoffice-writer install
libroken18-heimdal install
librsvg2-2 install
librtmp0 install
libsamplerate0 install
libsane install
libsane-common install
libsane-hpaio install
libsasl2-2 install
libsasl2-modules install
libselinux1 install
libsensors4 install
libsgutils2-2 install
libshout3 install
libsidplay1 install
libsigc++-2.0-0c2a install
libslang2 install
libslp1 install
libsm6 install
libsmbclient install
libsndfile1 install
libsnmp-base install
libsnmp15 install
libsocket6-perl install
libsolid4 install
libsolidcontrol4abi2 install
libsolidcontrolifaces4abi2 install
libsoprano4 install
libsoup-gnome2.4-1 install
libsoup2.4-1 install
libspectre1 install
libspeechd2 install
libspeex1 install
libspeexdsp1 install
libsqlite3-0 install
libss2 install
libssh-4 install
libssl1.0.0 install
libstartup-notification0 install
libstdc++6 install
libstreamanalyzer0 install
libstreams0 install
libsub-name-perl install
libswitch-perl install
libsyndication4 install
libsysfs2 install
libtag-extras1 install
libtag1-vanilla install
libtag1c2a install
libtalloc2 install
libtaskmanager4abi3 install
libtasn1-3 install
libtdb1 install
libtemplateparser4 install
libtext-charwidth-perl install
libtext-iconv-perl install
libtext-wrapi18n-perl install
libthai-data install
libthai0 install
libtheora0 install
libthreadweaver4 install
libtiff4 install
libtimedate-perl install
libtinfo5 install
libtwolame0 install
libudev0 install
libupower-glib1 install
liburi-perl install
libusb-0.1-4 install
libusb-1.0-0 install
libusbmuxd1 install
libutempter0 install
libuuid1 install
libv4l-0 install
libv4lconvert0 install
libvirtodbc0 install
libvisual-0.4-0 install
libvisual-0.4-plugins install
libvorbis0a install
libvorbisenc2 install
libvorbisfile3 install
libwavpack1 install
libwbclient0 install
libweather-ion6 install
libwind0-heimdal install
libwpd-0.9-9 install
libwpg-0.2-2 install
libwps-0.2-2 install
libwrap0 install
libwww-perl install
libwww-robotrules-perl install
libx11-6 install
libx11-data install
libx11-xcb1 install
libx264-120 install
libx86-1 install
libxapian22 install
libxatracker1 install
libxau6 install
libxaw7 install
libxcb-dri2-0 install
libxcb-glx0 install
libxcb-render0 install
libxcb-shape0 install
libxcb-shm0 install
libxcb-util0 install
libxcb1 install
libxcomposite1 install
libxcursor1 install
libxdamage1 install
libxdmcp6 install
libxext6 install
libxfixes3 install
libxfont1 install
libxft2 install
libxi6 install
libxinerama1 install
libxkbfile1 install
libxml2 install
libxml2-utils install
libxmu6 install
libxmuu1 install
libxp6 install
libxpm4 install
libxrandr2 install
libxrender1 install
libxslt1.1 install
libxss1 install
libxt6 install
libxtst6 install
libxv1 install
libxvmc1 install
libxxf86dga1 install
libxxf86vm1 install
libyajl1 install
libzip2 install
linux-firmware install
linux-generic install
linux-headers-3.2.0-23 install
linux-headers-3.2.0-23-generic install
linux-headers-3.2.0-38 install
linux-headers-3.2.0-38-generic install
linux-headers-generic install
linux-image-3.2.0-23-generic install
linux-image-3.2.0-38-generic install
linux-image-generic install
linux-sound-base install
locales install
lockfile-progs install
login install
logrotate install
lsb-base install
lsb-release install
lshw install
lsof install
ltrace install
makedev install
man-db install
manpages install
mawk install
memtest86+ install
mime-support install
mlocate install
mobile-broadband-provider-info install
modemmanager install
module-init-tools install
mount install
mountall install
mscompress install
mtools install
mtr-tiny install
multiarch-support install
muon install
muon-installer install
muon-notifier install
muon-updater install
myspell-en-au install
myspell-en-gb install
myspell-en-za install
mysql-client-core-5.5 install
mysql-common install
mysql-server-core-5.5 install
mythes-en-au install
mythes-en-us install
nano install
nautilus-dropbox install
ncurses-base install
ncurses-bin install
net-tools install
netbase install
netcat-openbsd install
network-manager install
network-manager-pptp install
ntfs-3g install
ntpdate install
ntrack-module-libnl-0 install
nvidia-common install
obex-data-server install
obexd-client install
odbcinst install
odbcinst1debian2 install
okular install
okular-extra-backends install
openoffice.org-hyphenation install
openprinting-ppds install
openssh-client install
openssl install
os-prober install
oxygen-cursor-theme install
oxygen-icon-theme install
parted install
partitionmanager install
passwd install
patch install
pciutils install
pcmciautils install
perl install
perl-base install
perl-modules install
phonon install
phonon-backend-gstreamer install
pinentry-qt4 install
plasma-dataengines-addons install
plasma-dataengines-workspace install
plasma-desktop install
plasma-netbook install
plasma-scriptengine-javascript install
plasma-scriptengine-python install
plasma-widget-facebook install
plasma-widget-folderview install
plasma-widget-kimpanel install
plasma-widget-menubar install
plasma-widget-message-indicator install
plasma-widget-networkmanagement install
plasma-widgets-addons install
plasma-widgets-workspace install
plymouth install
plymouth-label install
plymouth-theme-kubuntu-logo install
plymouth-theme-kubuntu-text install
plymouth-theme-ubuntu-text install
pm-utils install
policykit-1 install
policykit-desktop-privileges install
polkit-kde-1 install
poppler-data install
poppler-utils install
popularity-contest install
powermgmt-base install
ppp install
pppconfig install
pppoeconf install
pptp-linux install
printer-applet install
printer-driver-c2esp install
printer-driver-foo2zjs install
printer-driver-gutenprint install
printer-driver-hpcups install
printer-driver-hpijs install
printer-driver-min12xxw install
printer-driver-pnm2ppa install
printer-driver-postscript-hp install
printer-driver-ptouch install
printer-driver-pxljr install
printer-driver-sag-gdi install
printer-driver-splix install
procps install
psmisc install
pulseaudio install
pulseaudio-module-bluetooth install
pulseaudio-module-x11 install
pulseaudio-utils install
python install
python-apport install
python-apt install
python-apt-common install
python-aptdaemon install
python-cairo install
python-chardet install
python-crypto install
python-cups install
python-cupshelpers install
python-dbus install
python-dbus-dev install
python-debian install
python-defer install
python-gdbm install
python-gi install
python-gnupginterface install
python-gobject install
python-gobject-2 install
python-gpgme install
python-gtk2 install
python-httplib2 install
python-imaging install
python-kde4 install
python-keyring install
python-launchpadlib install
python-lazr.restfulclient install
python-lazr.uri install
python-minimal install
python-oauth install
python-pexpect install
python-pkg-resources install
python-problem-report install
python-pycurl install
python-pyudev install
python-qt4 install
python-qt4-dbus install
python-renderpm install
python-reportlab install
python-reportlab-accel install
python-simplejson install
python-sip install
python-smbc install
python-software-properties install
python-uno install
python-wadllib install
python-xapian install
python-xdg install
python-xkit install
python-zope.interface install
python2.7 install
python2.7-minimal install
qapt-batch install
qapt-deb-installer install
qdbus install
quassel install
quassel-data install
radeontool install
readline-common install
rekonq install
resolvconf install
rfkill install
rsync install
rsyslog install
rtkit install
samba-common install
samba-common-bin install
sane-utils install
sed install
sensible-utils install
sgml-base install
sgml-data install
shared-desktop-ontologies install
shared-mime-info install
smbclient install
software-properties-kde install
soprano-daemon install
sound-theme-freedesktop install
ssl-cert install
strace install
sudo install
syslinux install
syslinux-common install
syslinux-legacy install
system-config-printer-common install
system-config-printer-kde install
system-config-printer-udev install
systemsettings install
sysv-rc install
sysvinit-utils install
tar install
tasks-icons install
tasksel install
tasksel-data install
tcpd install
tcpdump install
telnet install
time install
toshset install
ttf-dejavu-core install
ttf-freefont install
ttf-indic-fonts-core install
ttf-punjabi-fonts install
ttf-ubuntu-font-family install
ttf-wqy-microhei install
tzdata install
ubuntu-extras-keyring install
ubuntu-keyring install
ubuntu-minimal install
ubuntu-standard install
ucf install
udev install
udisks install
ufw install
unattended-upgrades install
uno-libs3 install
unzip install
update-inetd install
update-manager-core install
update-manager-kde install
update-notifier-common install
upower install
upstart install
ure install
ureadahead install
usb-creator-common install
usb-creator-kde install
usb-modeswitch install
usb-modeswitch-data install
usbmuxd install
usbutils install
userconfig install
util-linux install
uuid-runtime install
vbetool install
vim-common install
vim-tiny install
virtuoso-minimal install
virtuoso-opensource-6.1-bin install
virtuoso-opensource-6.1-common install
wamerican install
wbritish install
wget install
whiptail install
wireless-regdb install
wireless-tools install
wodim install
wpasupplicant install
x11-apps install
x11-common install
x11-session-utils install
x11-utils install
x11-xfs-utils install
x11-xkb-utils install
x11-xserver-utils install
xauth install
xbitmaps install
xcursor-themes install
xdg-user-dirs install
xdg-utils install
xfonts-base install
xfonts-encodings install
xfonts-mathml install
xfonts-scalable install
xfonts-utils install
xinit install
xinput install
xkb-data install
xml-core install
xorg install
xorg-docs-core install
xserver-common install
xserver-xorg install
xserver-xorg-core install
xserver-xorg-input-all install
xserver-xorg-input-evdev install
xserver-xorg-input-mouse install
xserver-xorg-input-synaptics install
xserver-xorg-input-vmmouse install
xserver-xorg-input-wacom install
xserver-xorg-video-all install
xserver-xorg-video-ati install
xserver-xorg-video-cirrus install
xserver-xorg-video-fbdev install
xserver-xorg-video-intel install
xserver-xorg-video-mach64 install
xserver-xorg-video-mga install
xserver-xorg-video-neomagic install
xserver-xorg-video-nouveau install
xserver-xorg-video-openchrome install
xserver-xorg-video-qxl install
xserver-xorg-video-r128 install
xserver-xorg-video-radeon install
xserver-xorg-video-s3 install
xserver-xorg-video-savage install
xserver-xorg-video-siliconmotion install
xserver-xorg-video-sis install
xserver-xorg-video-sisusb install
xserver-xorg-video-tdfx install
xserver-xorg-video-trident install
xserver-xorg-video-vesa install
xserver-xorg-video-vmware install
xsettings-kde install
xul-ext-ubufox install
xz-lzma install
xz-utils install
zip install
zlib1g install

== PRINTER =====================================================================
--[ File: /etc/cups/cupsd.conf ]--(0644, root, root, 4617)----------------------
#
#
# Sample configuration file for the CUPS scheduler.  See "man cupsd.conf" for a
# complete description of this file.
#

# Log general information in error_log - change "warn" to "debug"
# for troubleshooting...
LogLevel warn

# Deactivate CUPS' internal logrotating, as we provide a better one, especially
# LogLevel debug2 gets usable now
MaxLogSize 0

# Administrator user group...
SystemGroup lpadmin


# Only listen for connections from the local machine.
Listen localhost:631
Listen /var/run/cups/cups.sock

# Show shared printers on the local network.
Browsing Off
BrowseOrder allow,deny
BrowseAllow all
BrowseLocalProtocols CUPS dnssd
BrowseAddress @LOCAL

# Default authentication type, when authentication is required...
DefaultAuthType Basic

# Web interface setting...
WebInterface Yes

# Restrict access to the server...
<Location />
  Order allow,deny
</Location>

# Restrict access to the admin pages...
<Location /admin>
  Order allow,deny
</Location>

# Restrict access to configuration files...
<Location /admin/conf>
  AuthType Default
  Require user @SYSTEM
  Order allow,deny
</Location>

# Set the default printer/job policies...
<Policy default>
  # Job/subscription privacy...
  JobPrivateAccess default
  JobPrivateValues default
  SubscriptionPrivateAccess default
  SubscriptionPrivateValues default

  # Job-related operations must be done by the owner or an administrator...
  <Limit Create-Job Print-Job Print-URI Validate-Job>
    Order deny,allow
  </Limit>

  <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  # All administration operations require an administrator to authenticate...
  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # All printer operations require a printer operator to authenticate...
  <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # Only the owner or an administrator can cancel or authenticate a job...
  <Limit Cancel-Job CUPS-Authenticate-Job>
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  <Limit All>
    Order deny,allow
  </Limit>
</Policy>

# Set the authenticated printer/job policies...
<Policy authenticated>
  # Job/subscription privacy...
  JobPrivateAccess default
  JobPrivateValues default
  SubscriptionPrivateAccess default
  SubscriptionPrivateValues default

  # Job-related operations must be done by the owner or an administrator...
  <Limit Create-Job Print-Job Print-URI Validate-Job>
    AuthType Default
    Order deny,allow
  </Limit>

  <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  # All administration operations require an administrator to authenticate...
  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # All printer operations require a printer operator to authenticate...
  <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # Only the owner or an administrator can cancel or authenticate a job...
  <Limit Cancel-Job CUPS-Authenticate-Job>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  <Limit All>
    Order deny,allow
  </Limit>
</Policy>

#
#

--[ File: /etc/printcap ]--(0644, root, root, 216)------------------------------
# This file was automatically generated by cupsd(8) from the
# /etc/cups/printers.conf file.  All changes to this file
# will be lost.
HP-LaserJet-1200|Hewlett-Packard HP LaserJet 1200:rm=ubuntu:rp=HP-LaserJet-1200:

== SAMBA =======================================================================
--[ File: /etc/samba/smb.conf ]--(0644, root, root, 12464)----------------------
#
# Sample configuration file for the Samba suite for Debian GNU/Linux.
#
#
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options most of which
# are not shown in this example
#
# Some options that are often worth tuning have been included as
# commented-out examples in this file.
#  - When such options are commented with ";", the proposed setting
#    differs from the default Samba behaviour
#  - When commented with "#", the proposed setting is the default
#    behaviour of Samba but the option is considered important
#    enough to be mentioned here
#
# NOTE: Whenever you modify this file you should run the command
# "testparm" to check that you have not made any basic syntactic
# errors.
# A well-established practice is to name the original file
# "smb.conf.master" and create the "real" config file with
# testparm -s smb.conf.master >smb.conf
# This minimizes the size of the really used smb.conf file
# which, according to the Samba Team, impacts performance
# However, use this with caution if your smb.conf file contains nested
# "include" statements. See Debian bug #483187 for a case
# where using a master file is not a good idea.
#

#======================= Global Settings =======================

[global]

## Browsing/Identification ###

# Change this to the workgroup/NT-domain name your Samba server will part of
   workgroup = WORKGROUP

# server string is the equivalent of the NT Description field
   server string = %h server (Samba, Ubuntu)

# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
#   wins support = no

# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
;   wins server = w.x.y.z

# This will prevent nmbd to search for NetBIOS names through DNS.
   dns proxy = no

# What naming service and in what order should we use to resolve host names
# to IP addresses
;   name resolve order = lmhosts host wins bcast

#### Networking ####

# The specific set of interfaces / networks to bind to
# This can be either the interface name or an IP address/netmask;
# interface names are normally preferred
;   interfaces = 127.0.0.0/8 eth0

# Only bind to the named interfaces and/or networks; you must use the
# 'interfaces' option above to use this.
# It is recommended that you enable this feature if your Samba machine is
# not protected by a firewall or is a firewall itself.  However, this
# option cannot handle dynamic or non-broadcast interfaces correctly.
;   bind interfaces only = yes



#### Debugging/Accounting ####

# This tells Samba to use a separate log file for each machine
# that connects
   log file = /var/log/samba/log.%m

# Cap the size of the individual log files (in KiB).
   max log size = 1000

# If you want Samba to only log through syslog then set the following
# parameter to 'yes'.
#   syslog only = no

# We want Samba to log a minimum amount of information to syslog. Everything
# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
# through syslog you should set the following parameter to something higher.
   syslog = 0

# Do something sensible when Samba crashes: mail the admin a backtrace
   panic action = /usr/share/samba/panic-action %d


####### Authentication #######

# "security = user" is always a good idea. This will require a Unix account
# in this server for every user accessing the server. See
# /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html
# in the samba-doc package for details.
#   security = user

# You may wish to use password encryption.  See the section on
# 'encrypt passwords' in the smb.conf(5) manpage before enabling.
   encrypt passwords = true

# If you are using encrypted passwords, Samba will need to know what
# password database type you are using.
   passdb backend = tdbsam

   obey pam restrictions = yes

# This boolean parameter controls whether Samba attempts to sync the Unix
# password with the SMB password when the encrypted SMB password in the
# passdb is changed.
   unix password sync = yes

# For Unix password sync to work on a Debian GNU/Linux system, the following
# parameters must be set (thanks to Ian Kahan <<kahan@informatik.tu-muenchen.de> for
# sending the correct chat script for the passwd program in Debian Sarge).
   passwd program = /usr/bin/passwd %u
   passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .

# This boolean controls whether PAM will be used for password changes
# when requested by an SMB client instead of the program listed in
# 'passwd program'. The default is 'no'.
   pam password change = yes

# This option controls how unsuccessful authentication attempts are mapped
# to anonymous connections
   map to guest = bad user

########## Domains ###########

# Is this machine able to authenticate users. Both PDC and BDC
# must have this setting enabled. If you are the BDC you must
# change the 'domain master' setting to no
#
;   domain logons = yes
#
# The following setting only takes effect if 'domain logons' is set
# It specifies the location of the user's profile directory
# from the client point of view)
# The following required a [profiles] share to be setup on the
# samba server (see below)
;   logon path = \\%N\profiles\%U
# Another common choice is storing the profile in the user's home directory
# (this is Samba's default)
#   logon path = \\%N\%U\profile

# The following setting only takes effect if 'domain logons' is set
# It specifies the location of a user's home directory (from the client
# point of view)
;   logon drive = H:
#   logon home = \\%N\%U

# The following setting only takes effect if 'domain logons' is set
# It specifies the script to run during logon. The script must be stored
# in the [netlogon] share
# NOTE: Must be store in 'DOS' file format convention
;   logon script = logon.cmd

# This allows Unix users to be created on the domain controller via the SAMR
# RPC pipe.  The example command creates a user account with a disabled Unix
# password; please adapt to your needs
; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u

# This allows machine accounts to be created on the domain controller via the
# SAMR RPC pipe.
# The following assumes a "machines" group exists on the system
; add machine script  = /usr/sbin/useradd -g machines -c "%u machine account" -d /var/lib/samba -s /bin/false %u

# This allows Unix groups to be created on the domain controller via the SAMR
# RPC pipe.
; add group script = /usr/sbin/addgroup --force-badname %g

########## Printing ##########

# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
#   load printers = yes

# lpr(ng) printing. You may wish to override the location of the
# printcap file
;   printing = bsd
;   printcap name = /etc/printcap

# CUPS printing.  See also the cupsaddsmb(8) manpage in the
# cupsys-client package.
;   printing = cups
;   printcap name = cups

############ Misc ############

# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting
;   include = /home/samba/etc/smb.conf.%m

# Most people will find that this option gives better performance.
# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html
# for details
# You may want to add the following on a Linux system:
#         SO_RCVBUF=8192 SO_SNDBUF=8192
#   socket options = TCP_NODELAY

# The following parameter is useful only if you have the linpopup package
# installed. The samba maintainer and the linpopup maintainer are
# working to ease installation and configuration of linpopup and samba.
;   message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' &

# Domain Master specifies Samba to be the Domain Master Browser. If this
# machine will be configured as a BDC (a secondary logon server), you
# must set this to 'no'; otherwise, the default behavior is recommended.
#   domain master = auto

# Some defaults for winbind (make sure you're not using the ranges
# for something else.)
;   idmap uid = 10000-20000
;   idmap gid = 10000-20000
;   template shell = /bin/bash

# The following was the default behaviour in sarge,
# but samba upstream reverted the default because it might induce
# performance issues in large organizations.
# See Debian bug #368251 for some of the consequences of *not*
# having this setting and smb.conf(5) for details.
;   winbind enum groups = yes
;   winbind enum users = yes

# Setup usershare options to enable non-root users to share folders
# with the net usershare command.

# Maximum number of usershare. 0 (default) means that usershare is disabled.
;   usershare max shares = 100

# Allow users who've been granted usershare privileges to create
# public shares, not just authenticated ones
   usershare allow guests = yes

#======================= Share Definitions =======================

# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each
# user's home director as \\server\username
;[homes]
;   comment = Home Directories
;   browseable = no

# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
;   read only = yes

# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
;   create mask = 0700

# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
;   directory mask = 0700

# By default, \\server\username shares can be connected to by anyone
# with access to the samba server. Un-comment the following parameter
# to make sure that only "username" can connect to \\server\username
# The following parameter makes sure that only "username" can connect
#
# This might need tweaking when using external authentication schemes
;   valid users = %S

# Un-comment the following and create the netlogon directory for Domain Logons
# (you need to configure Samba to act as a domain controller too.)
;[netlogon]
;   comment = Network Logon Service
;   path = /home/samba/netlogon
;   guest ok = yes
;   read only = yes

# Un-comment the following and create the profiles directory to store
# users profiles (see the "logon path" option above)
# (you need to configure Samba to act as a domain controller too.)
# The path below should be writable by all users so that their
# profile directory may be created the first time they log on
;[profiles]
;   comment = Users profiles
;   path = /home/samba/profiles
;   guest ok = no
;   browseable = no
;   create mask = 0600
;   directory mask = 0700

[printers]
   comment = All Printers
   browseable = no
   path = /var/spool/samba
   printable = yes
   guest ok = no
   read only = yes
   create mask = 0700

# Windows clients look for this share name as a source of downloadable
# printer drivers
[print$]
   comment = Printer Drivers
   path = /var/lib/samba/printers
   browseable = yes
   read only = yes
   guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# You may need to replace 'lpadmin' with the name of the group your
# admin users are members of.
# Please note that you also need to set appropriate Unix permissions
# to the drivers directory for these users to have write rights in it
;   write list = root, @lpadmin

# A sample share for sharing your CD-ROM with others.
;[cdrom]
;   comment = Samba server's CD-ROM
;   read only = yes
;   locking = no
;   path = /cdrom
;   guest ok = yes

# The next two parameters show how to auto-mount a CD-ROM when the
# cdrom share is accesed. For this to work /etc/fstab must contain
# an entry like this:
#
#       /dev/scd0   /cdrom  iso9660 defaults,noauto,ro,user   0 0
#
# The CD-ROM gets unmounted automatically after the connection to the
#
# If you don't want to use auto-mounting/unmounting make sure the CD
# is mounted on /cdrom
#
;   preexec = /bin/mount /cdrom
;   postexec = /bin/umount /cdrom


--[ File: /etc/samba/smb.conf ]--(0644, root, root, 12464)----------------------
#
# Sample configuration file for the Samba suite for Debian GNU/Linux.
#
#
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options most of which
# are not shown in this example
#
# Some options that are often worth tuning have been included as
# commented-out examples in this file.
#  - When such options are commented with ";", the proposed setting
#    differs from the default Samba behaviour
#  - When commented with "#", the proposed setting is the default
#    behaviour of Samba but the option is considered important
#    enough to be mentioned here
#
# NOTE: Whenever you modify this file you should run the command
# "testparm" to check that you have not made any basic syntactic
# errors.
# A well-established practice is to name the original file
# "smb.conf.master" and create the "real" config file with
# testparm -s smb.conf.master >smb.conf
# This minimizes the size of the really used smb.conf file
# which, according to the Samba Team, impacts performance
# However, use this with caution if your smb.conf file contains nested
# "include" statements. See Debian bug #483187 for a case
# where using a master file is not a good idea.
#

#======================= Global Settings =======================

[global]

## Browsing/Identification ###

# Change this to the workgroup/NT-domain name your Samba server will part of
   workgroup = WORKGROUP

# server string is the equivalent of the NT Description field
   server string = %h server (Samba, Ubuntu)

# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
#   wins support = no

# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
;   wins server = w.x.y.z

# This will prevent nmbd to search for NetBIOS names through DNS.
   dns proxy = no

# What naming service and in what order should we use to resolve host names
# to IP addresses
;   name resolve order = lmhosts host wins bcast

#### Networking ####

# The specific set of interfaces / networks to bind to
# This can be either the interface name or an IP address/netmask;
# interface names are normally preferred
;   interfaces = 127.0.0.0/8 eth0

# Only bind to the named interfaces and/or networks; you must use the
# 'interfaces' option above to use this.
# It is recommended that you enable this feature if your Samba machine is
# not protected by a firewall or is a firewall itself.  However, this
# option cannot handle dynamic or non-broadcast interfaces correctly.
;   bind interfaces only = yes



#### Debugging/Accounting ####

# This tells Samba to use a separate log file for each machine
# that connects
   log file = /var/log/samba/log.%m

# Cap the size of the individual log files (in KiB).
   max log size = 1000

# If you want Samba to only log through syslog then set the following
# parameter to 'yes'.
#   syslog only = no

# We want Samba to log a minimum amount of information to syslog. Everything
# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
# through syslog you should set the following parameter to something higher.
   syslog = 0

# Do something sensible when Samba crashes: mail the admin a backtrace
   panic action = /usr/share/samba/panic-action %d


####### Authentication #######

# "security = user" is always a good idea. This will require a Unix account
# in this server for every user accessing the server. See
# /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html
# in the samba-doc package for details.
#   security = user

# You may wish to use password encryption.  See the section on
# 'encrypt passwords' in the smb.conf(5) manpage before enabling.
   encrypt passwords = true

# If you are using encrypted passwords, Samba will need to know what
# password database type you are using.
   passdb backend = tdbsam

   obey pam restrictions = yes

# This boolean parameter controls whether Samba attempts to sync the Unix
# password with the SMB password when the encrypted SMB password in the
# passdb is changed.
   unix password sync = yes

# For Unix password sync to work on a Debian GNU/Linux system, the following
# parameters must be set (thanks to Ian Kahan <<kahan@informatik.tu-muenchen.de> for
# sending the correct chat script for the passwd program in Debian Sarge).
   passwd program = /usr/bin/passwd %u
   passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .

# This boolean controls whether PAM will be used for password changes
# when requested by an SMB client instead of the program listed in
# 'passwd program'. The default is 'no'.
   pam password change = yes

# This option controls how unsuccessful authentication attempts are mapped
# to anonymous connections
   map to guest = bad user

########## Domains ###########

# Is this machine able to authenticate users. Both PDC and BDC
# must have this setting enabled. If you are the BDC you must
# change the 'domain master' setting to no
#
;   domain logons = yes
#
# The following setting only takes effect if 'domain logons' is set
# It specifies the location of the user's profile directory
# from the client point of view)
# The following required a [profiles] share to be setup on the
# samba server (see below)
;   logon path = \\%N\profiles\%U
# Another common choice is storing the profile in the user's home directory
# (this is Samba's default)
#   logon path = \\%N\%U\profile

# The following setting only takes effect if 'domain logons' is set
# It specifies the location of a user's home directory (from the client
# point of view)
;   logon drive = H:
#   logon home = \\%N\%U

# The following setting only takes effect if 'domain logons' is set
# It specifies the script to run during logon. The script must be stored
# in the [netlogon] share
# NOTE: Must be store in 'DOS' file format convention
;   logon script = logon.cmd

# This allows Unix users to be created on the domain controller via the SAMR
# RPC pipe.  The example command creates a user account with a disabled Unix
# password; please adapt to your needs
; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u

# This allows machine accounts to be created on the domain controller via the
# SAMR RPC pipe.
# The following assumes a "machines" group exists on the system
; add machine script  = /usr/sbin/useradd -g machines -c "%u machine account" -d /var/lib/samba -s /bin/false %u

# This allows Unix groups to be created on the domain controller via the SAMR
# RPC pipe.
; add group script = /usr/sbin/addgroup --force-badname %g

########## Printing ##########

# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
#   load printers = yes

# lpr(ng) printing. You may wish to override the location of the
# printcap file
;   printing = bsd
;   printcap name = /etc/printcap

# CUPS printing.  See also the cupsaddsmb(8) manpage in the
# cupsys-client package.
;   printing = cups
;   printcap name = cups

############ Misc ############

# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting
;   include = /home/samba/etc/smb.conf.%m

# Most people will find that this option gives better performance.
# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html
# for details
# You may want to add the following on a Linux system:
#         SO_RCVBUF=8192 SO_SNDBUF=8192
#   socket options = TCP_NODELAY

# The following parameter is useful only if you have the linpopup package
# installed. The samba maintainer and the linpopup maintainer are
# working to ease installation and configuration of linpopup and samba.
;   message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' &

# Domain Master specifies Samba to be the Domain Master Browser. If this
# machine will be configured as a BDC (a secondary logon server), you
# must set this to 'no'; otherwise, the default behavior is recommended.
#   domain master = auto

# Some defaults for winbind (make sure you're not using the ranges
# for something else.)
;   idmap uid = 10000-20000
;   idmap gid = 10000-20000
;   template shell = /bin/bash

# The following was the default behaviour in sarge,
# but samba upstream reverted the default because it might induce
# performance issues in large organizations.
# See Debian bug #368251 for some of the consequences of *not*
# having this setting and smb.conf(5) for details.
;   winbind enum groups = yes
;   winbind enum users = yes

# Setup usershare options to enable non-root users to share folders
# with the net usershare command.

# Maximum number of usershare. 0 (default) means that usershare is disabled.
;   usershare max shares = 100

# Allow users who've been granted usershare privileges to create
# public shares, not just authenticated ones
   usershare allow guests = yes

#======================= Share Definitions =======================

# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each
# user's home director as \\server\username
;[homes]
;   comment = Home Directories
;   browseable = no

# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
;   read only = yes

# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
;   create mask = 0700

# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
;   directory mask = 0700

# By default, \\server\username shares can be connected to by anyone
# with access to the samba server. Un-comment the following parameter
# to make sure that only "username" can connect to \\server\username
# The following parameter makes sure that only "username" can connect
#
# This might need tweaking when using external authentication schemes
;   valid users = %S

# Un-comment the following and create the netlogon directory for Domain Logons
# (you need to configure Samba to act as a domain controller too.)
;[netlogon]
;   comment = Network Logon Service
;   path = /home/samba/netlogon
;   guest ok = yes
;   read only = yes

# Un-comment the following and create the profiles directory to store
# users profiles (see the "logon path" option above)
# (you need to configure Samba to act as a domain controller too.)
# The path below should be writable by all users so that their
# profile directory may be created the first time they log on
;[profiles]
;   comment = Users profiles
;   path = /home/samba/profiles
;   guest ok = no
;   browseable = no
;   create mask = 0600
;   directory mask = 0700

[printers]
   comment = All Printers
   browseable = no
   path = /var/spool/samba
   printable = yes
   guest ok = no
   read only = yes
   create mask = 0700

# Windows clients look for this share name as a source of downloadable
# printer drivers
[print$]
   comment = Printer Drivers
   path = /var/lib/samba/printers
   browseable = yes
   read only = yes
   guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# You may need to replace 'lpadmin' with the name of the group your
# admin users are members of.
# Please note that you also need to set appropriate Unix permissions
# to the drivers directory for these users to have write rights in it
;   write list = root, @lpadmin

# A sample share for sharing your CD-ROM with others.
;[cdrom]
;   comment = Samba server's CD-ROM
;   read only = yes
;   locking = no
;   path = /cdrom
;   guest ok = yes

# The next two parameters show how to auto-mount a CD-ROM when the
# cdrom share is accesed. For this to work /etc/fstab must contain
# an entry like this:
#
#       /dev/scd0   /cdrom  iso9660 defaults,noauto,ro,user   0 0
#
# The CD-ROM gets unmounted automatically after the connection to the
#
# If you don't want to use auto-mounting/unmounting make sure the CD
# is mounted on /cdrom
#
;   preexec = /bin/mount /cdrom
;   postexec = /bin/umount /cdrom


== SECURITY ====================================================================
--[ File: /etc/group ]--(0644, root, root, 810)---------------------------------
root:x:0:
daemon:x:1:
bin:x:2:
sys:x:3:
adm:x:4:chad
tty:x:5:
disk:x:6:
lp:x:7:
mail:x:8:
news:x:9:
uucp:x:10:
man:x:12:
proxy:x:13:
kmem:x:15:
dialout:x:20:
fax:x:21:
voice:x:22:
cdrom:x:24:chad
floppy:x:25:
tape:x:26:
sudo:x:27:chad
audio:x:29:pulse
dip:x:30:chad
www-data:x:33:
backup:x:34:
operator:x:37:
list:x:38:
irc:x:39:
src:x:40:
gnats:x:41:
shadow:x:42:
utmp:x:43:
video:x:44:
sasl:x:45:
plugdev:x:46:chad
staff:x:50:
games:x:60:
users:x:100:
nogroup:x:65534:
libuuid:x:101:
crontab:x:102:
syslog:x:103:
messagebus:x:104:
fuse:x:105:
bluetooth:x:106:
scanner:x:107:
colord:x:108:
lpadmin:x:109:chad
ssl-cert:x:110:
netdev:x:111:
mlocate:x:112:
ssh:x:113:
utempter:x:114:
avahi-autoipd:x:115:
avahi:x:116:
pulse:x:117:
pulse-access:x:118:
rtkit:x:119:
saned:x:120:
chad:x:1000:
sambashare:x:121:chad

--[ File: /etc/hosts.allow ]--(0644, root, root, 580)---------------------------
# /etc/hosts.allow: list of hosts that are allowed to access the system.
#                   See the manual pages hosts_access(5) and hosts_options(5).
#
# Example:    ALL: LOCAL @some_netgroup
#             ALL: .foobar.edu EXCEPT terminalserver.foobar.edu
#
# If you're going to protect the portmapper use the name "portmap" for the
# daemon name. Remember that you can only use the keyword "ALL" and IP
# addresses (NOT host or domain names) for the portmapper, as well as for
# rpc.mountd (the NFS mount daemon). See portmap(8) and rpc.mountd(8)
# for further information.
#


--[ File: /etc/hosts.deny ]--(0644, root, root, 880)----------------------------
# /etc/hosts.deny: list of hosts that are _not_ allowed to access the system.
#                  See the manual pages hosts_access(5) and hosts_options(5).
#
# Example:    ALL: some.host.name, .some.domain
#             ALL EXCEPT in.fingerd: other.host.name, .other.domain
#
# If you're going to protect the portmapper use the name "portmap" for the
# daemon name. Remember that you can only use the keyword "ALL" and IP
# addresses (NOT host or domain names) for the portmapper, as well as for
# rpc.mountd (the NFS mount daemon). See portmap(8) and rpc.mountd(8)
# for further information.
#
# The PARANOID wildcard matches any host whose name does not match its
# address.
#
# You may wish to enable this to ensure any programs that don't
# validate looked up hostnames still leave understandable logs. In past
# versions of Debian this has been the default.
# ALL: PARANOID


--[ File: /etc/passwd ]--(0644, root, root, 1496)-------------------------------
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/bin/sh
bin:x:2:2:bin:/bin:/bin/sh
sys:x:3:3:sys:/dev:/bin/sh
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/bin/sh
man:x:6:12:man:/var/cache/man:/bin/sh
lp:x:7:7:lp:/var/spool/lpd:/bin/sh
mail:x:8:8:mail:/var/mail:/bin/sh
news:x:9:9:news:/var/spool/news:/bin/sh
uucp:x:10:10:uucp:/var/spool/uucp:/bin/sh
proxy:x:13:13:proxy:/bin:/bin/sh
www-data:x:33:33:www-data:/var/www:/bin/sh
backup:x:34:34:backup:/var/backups:/bin/sh
list:x:38:38:Mailing List Manager:/var/list:/bin/sh
irc:x:39:39:ircd:/var/run/ircd:/bin/sh
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/bin/sh
nobody:x:65534:65534:nobody:/nonexistent:/bin/sh
libuuid:x:100:101::/var/lib/libuuid:/bin/sh
syslog:x:101:103::/home/syslog:/bin/false
messagebus:x:102:104::/var/run/dbus:/bin/false
colord:x:103:108:colord colour management daemon,,,:/var/lib/colord:/bin/false
usbmux:x:104:46:usbmux daemon,,,:/home/usbmux:/bin/false
avahi-autoipd:x:105:115:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false
avahi:x:106:116:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false
kernoops:x:107:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false
pulse:x:108:117:PulseAudio daemon,,,:/var/run/pulse:/bin/false
rtkit:x:109:119:RealtimeKit,,,:/proc:/bin/false
saned:x:110:120::/home/saned:/bin/false
hplip:x:111:7:HPLIP system user,,,:/var/run/hplip:/bin/false
kdm:x:112:65534::/home/kdm:/bin/false
chad:x:1000:1000:DC,,,:/home/chad:/bin/bash

== SHELL =======================================================================
--[ File: /etc/bash.bashrc ]--(0644, root, root, 2076)--------------------------
# System-wide .bashrc file for interactive bash(1) shells.

# To enable the settings / commands in this file for login shells as well,
# this file has to be sourced in /etc/profile.

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, overwrite the one in /etc/profile)
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '

# Commented out, don't overwrite xterm -T "title" -n "icontitle" by default.
# If this is an xterm set the title to user@host:dir
#case "$TERM" in
#xterm*|rxvt*)
#    PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
#    ;;
#*)
#    ;;
#esac

# enable bash completion in interactive shells
#if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
#    . /etc/bash_completion
#fi

# sudo hint
if [ ! -e "$HOME/.sudo_as_admin_successful" ] && [ ! -e "$HOME/.hushlogin" ] ; then
    case " $(groups) " in *\ admin\ *)
    if [ -x /usr/bin/sudo ]; then
cat <<-EOF
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.

EOF
    fi
    esac
fi

# if the command-not-found package is installed, use it
if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
function command_not_found_handle {
       # check because c-n-f could've been removed in the meantime
                if [ -x /usr/lib/command-not-found ]; then
  /usr/bin/python /usr/lib/command-not-found -- "$1"
                   return $?
                elif [ -x /usr/share/command-not-found/command-not-found ]; then
  /usr/bin/python /usr/share/command-not-found/command-not-found -- "$1"
                   return $?
else
  printf "%s: command not found\n" "$1" >&2
  return 127
fi
}
fi

--[ File: /etc/bash_completion ]--(0644, root, root, 58753)---------------------
#
#   bash_completion - programmable completion functions for bash 3.2+
#
#   Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
#             © 2009-2011, Bash Completion Maintainers
#                     <bash-completion-devel@lists.alioth.debian.org>
#
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2, or (at your option)
#   any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software Foundation,
#   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#   The latest version of this software can be obtained here:
#
#   http://bash-completion.alioth.debian.org/
#
#   RELEASE: 1.3

if [[ $- == *v* ]]; then
    BASH_COMPLETION_ORIGINAL_V_VALUE="-v"
else
    BASH_COMPLETION_ORIGINAL_V_VALUE="+v"
fi

if [[ -n $BASH_COMPLETION_DEBUG ]]; then
    set -v
else
    set +v
fi

# Alter the following to reflect the location of this file.
#
[ -n "$BASH_COMPLETION" ] || BASH_COMPLETION=/etc/bash_completion
[ -n "$BASH_COMPLETION_DIR" ] || BASH_COMPLETION_DIR=/etc/bash_completion.d
[ -n "$BASH_COMPLETION_COMPAT_DIR" ] || BASH_COMPLETION_COMPAT_DIR=/etc/bash_completion.d
readonly BASH_COMPLETION BASH_COMPLETION_DIR BASH_COMPLETION_COMPAT_DIR

# Set a couple of useful vars
#
UNAME=$( uname -s )
# strip OS type and version under Cygwin (e.g. CYGWIN_NT-5.1 => Cygwin)
UNAME=${UNAME/CYGWIN_*/Cygwin}

case ${UNAME} in
    Linux|GNU|GNU/*) USERLAND=GNU ;;
    *) USERLAND=${UNAME} ;;
esac

# Turn on extended globbing and programmable completion
shopt -s extglob progcomp

# A lot of the following one-liners were taken directly from the
# completion examples provided with the bash 2.04 source distribution

# Make directory commands see only directories
complete -d pushd

# The following section lists completions that are redefined later
# Do NOT break these over multiple lines.
#
# START exclude -- do NOT remove this line
# bzcmp, bzdiff, bz*grep, bzless, bzmore intentionally not here, see Debian: #455510
complete -f -X '!*.?(t)bz?(2)' bunzip2 bzcat pbunzip2 pbzcat
complete -f -X '!*.@(zip|[ejw]ar|exe|pk3|wsz|zargo|xpi|sxw|o[tx]t|od[fgpst]|epub|apk)' unzip zipinfo
complete -f -X '*.Z' compress znew
# zcmp, zdiff, z*grep, zless, zmore intentionally not here, see Debian: #455510
complete -f -X '!*.@(Z|[gGd]z|t[ag]z)' gunzip zcat unpigz
complete -f -X '!*.Z' uncompress
# lzcmp, lzdiff intentionally not here, see Debian: #455510
complete -f -X '!*.@(tlz|lzma)' lzcat lzegrep lzfgrep lzgrep lzless lzmore unlzma
complete -f -X '!*.@(?(t)xz|tlz|lzma)' unxz xzcat
complete -f -X '!*.lrz' lrunzip
complete -f -X '!*.@(gif|jp?(e)g|miff|tif?(f)|pn[gm]|p[bgp]m|bmp|xpm|ico|xwd|tga|pcx)' ee
complete -f -X '!*.@(gif|jp?(e)g|tif?(f)|png|p[bgp]m|bmp|x[bp]m|rle|rgb|pcx|fits|pm)' xv qiv
complete -f -X '!*.@(@(?(e)ps|?(E)PS|pdf|PDF)?(.gz|.GZ|.bz2|.BZ2|.Z))' gv ggv kghostview
complete -f -X '!*.@(dvi|DVI)?(.@(gz|Z|bz2))' xdvi kdvi
complete -f -X '!*.dvi' dvips dviselect dvitype dvipdf advi dvipdfm dvipdfmx
complete -f -X '!*.[pf]df' acroread gpdf xpdf
complete -f -X '!*.@(?(e)ps|pdf)' kpdf
complete -f -X '!*.@(@(?(e)ps|?(E)PS|[pf]df|[PF]DF|dvi|DVI)?(.gz|.GZ|.bz2|.BZ2)|cb[rz]|djv?(u)|gif|jp?(e)g|miff|tif?(f)|pn[gm]|p[bgp]m|bmp|xpm|ico|xwd|tga|pcx|fdf)' evince
complete -f -X '!*.@(okular|@(?(e|x)ps|?(E|X)PS|pdf|PDF|dvi|DVI|cb[rz]|CB[RZ]|djv?(u)|DJV?(U)|dvi|DVI|gif|jp?(e)g|miff|tif?(f)|pn[gm]|p[bgp]m|bmp|xpm|ico|xwd|tga|pcx|GIF|JP?(E)G|MIFF|TIF?(F)|PN[GM]|P[BGP]M|BMP|XPM|ICO|XWD|TGA|PCX|epub|EPUB|odt|ODT|fb?(2)|FB?(2)|mobi|MOBI|g3|G3|chm|CHM|fdf|FDF)?(.?(gz|GZ|bz2|BZ2)))' okular
complete -f -X '!*.@(?(e)ps|pdf)' ps2pdf ps2pdf12 ps2pdf13 ps2pdf14 ps2pdfwr
complete -f -X '!*.texi*' makeinfo texi2html
complete -f -X '!*.@(?(la)tex|texi|dtx|ins|ltx)' tex latex slitex jadetex pdfjadetex pdftex pdflatex texi2dvi
complete -f -X '!*.mp3' mpg123 mpg321 madplay
complete -f -X '!*@(.@(mp?(e)g|MP?(E)G|wma|avi|AVI|asf|vob|VOB|bin|dat|divx|DIVX|vcd|ps|pes|fli|flv|FLV|fxm|FXM|viv|rm|ram|yuv|mov|MOV|qt|QT|wmv|mp[234]|MP[234]|m4[pv]|M4[PV]|mkv|MKV|og[agmvx]|OG[AGMVX]|t[ps]|T[PS]|m2t?(s)|M2T?(S)|wav|WAV|flac|FLAC|asx|ASX|mng|MNG|srt|m[eo]d|M[EO]D|s[3t]m|S[3T]M|it|IT|xm|XM)|+([0-9]).@(vdr|VDR))?(.part)' xine aaxine fbxine
complete -f -X '!*@(.@(mp?(e)g|MP?(E)G|wma|avi|AVI|asf|vob|VOB|bin|dat|divx|DIVX|vcd|ps|pes|fli|flv|FLV|fxm|FXM|viv|rm|ram|yuv|mov|MOV|qt|QT|wmv|mp[234]|MP[234]|m4[pv]|M4[PV]|mkv|MKV|og[agmvx]|OG[AGMVX]|t[ps]|T[PS]|m2t?(s)|M2T?(S)|wav|WAV|flac|FLAC|asx|ASX|mng|MNG|srt|m[eo]d|M[EO]D|s[3t]m|S[3T]M|it|IT|xm|XM|iso|ISO)|+([0-9]).@(vdr|VDR))?(.part)' kaffeine dragon
complete -f -X '!*.@(avi|asf|wmv)' aviplay
complete -f -X '!*.@(rm?(j)|ra?(m)|smi?(l))' realplay
complete -f -X '!*.@(mpg|mpeg|avi|mov|qt)' xanim
complete -f -X '!*.@(og[ag]|m3u|flac|spx)' ogg123
complete -f -X '!*.@(mp3|og[ag]|pls|m3u)' gqmpeg freeamp
complete -f -X '!*.fig' xfig
complete -f -X '!*.@(mid?(i)|cmf)' playmidi
complete -f -X '!*.@(mid?(i)|rmi|rcp|[gr]36|g18|mod|xm|it|x3m|s[3t]m|kar)' timidity
complete -f -X '!*.@(m[eo]d|s[3t]m|xm|it)' modplugplay modplug123
complete -f -X '*.@(o|so|so.!(conf)|a|[rs]pm|gif|jp?(e)g|mp3|mp?(e)g|avi|asf|ogg|class)' vi vim gvim rvim view rview rgvim rgview gview emacs xemacs sxemacs kate kwrite
complete -f -X '!*.@([eE][xX][eE]?(.[sS][oO])|[cC][oO][mM]|[sS][cC][rR])' wine
complete -f -X '!*.@(zip|z|gz|tgz)' bzme
# konqueror not here on purpose, it's more than a web/html browser
complete -f -X '!*.@(?([xX]|[sS])[hH][tT][mM]?([lL]))' netscape mozilla lynx opera galeon dillo elinks amaya firefox mozilla-firefox iceweasel google-chrome chromium-browser epiphany
complete -f -X '!*.@(sxw|stw|sxg|sgl|doc?([mx])|dot?([mx])|rtf|txt|htm|html|odt|ott|odm)' oowriter
complete -f -X '!*.@(sxi|sti|pps?(x)|ppt?([mx])|pot?([mx])|odp|otp)' ooimpress
complete -f -X '!*.@(sxc|stc|xls?([bmx])|xlw|xlt?([mx])|[ct]sv|ods|ots)' oocalc
complete -f -X '!*.@(sxd|std|sda|sdd|odg|otg)' oodraw
complete -f -X '!*.@(sxm|smf|mml|odf)' oomath
complete -f -X '!*.odb' oobase
complete -f -X '!*.[rs]pm' rpm2cpio
complete -f -X '!*.aux' bibtex
complete -f -X '!*.po' poedit gtranslator kbabel lokalize
complete -f -X '!*.@([Pp][Rr][Gg]|[Cc][Ll][Pp])' harbour gharbour hbpp
complete -f -X '!*.[Hh][Rr][Bb]' hbrun
complete -f -X '!*.ly' lilypond ly2dvi
complete -f -X '!*.@(dif?(f)|?(d)patch)?(.@([gx]z|bz2|lzma))' cdiff
complete -f -X '!*.lyx' lyx
complete -f -X '!@(*.@(ks|jks|jceks|p12|pfx|bks|ubr|gkr|cer|crt|cert|p7b|pkipath|pem|p10|csr|crl)|cacerts)' portecle
complete -f -X '!*.@(mp[234c]|og[ag]|@(fl|a)ac|m4[abp]|spx|tta|w?(a)v|wma|aif?(f)|asf|ape)' kid3 kid3-qt
# FINISH exclude -- do not remove this line

# start of section containing compspecs that can be handled within bash

# user commands see only users
complete -u su write chfn groups slay w sux runuser

# bg completes with stopped jobs
complete -A stopped -P '"%' -S '"' bg

# other job commands
complete -j -P '"%' -S '"' fg jobs disown

# readonly and unset complete with shell variables
complete -v readonly unset

# set completes with set options
complete -A setopt set

# shopt completes with shopt options
complete -A shopt shopt

# helptopics
complete -A helptopic help

# unalias completes with aliases
complete -a unalias

# bind completes with readline bindings (make this more intelligent)
complete -A binding bind

# type and which complete on commands
complete -c command type which

# builtin completes on builtins
complete -b builtin

# start of section containing completion functions called by other functions

# This function checks whether we have a given program on the system.
# No need for bulky functions in memory if we don't.
#
have()
{
    unset -v have
    # Completions for system administrator commands are installed as well in
    # case completion is attempted via `sudo command ...'.
    PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin type $1 &>/dev/null &&
    have="yes"
}

# This function checks whether a given readline variable
# is `on'.
#
_rl_enabled()
{
    [[ "$( bind -v )" = *$1+([[:space:]])on* ]]
}

# This function shell-quotes the argument
quote()
{
    echo \'${1//\'/\'\\\'\'}\' #'# Help vim syntax highlighting
}

# @see _quote_readline_by_ref()
quote_readline()
{
    local quoted
    _quote_readline_by_ref "$1" ret
    printf %s "$ret"
} # quote_readline()


# This function shell-dequotes the argument
dequote()
{
    eval echo "$1" 2> /dev/null
}


# Assign variable one scope above the caller
# Usage: local "$1" && _upvar $1 "value(s)"
# Param: $1  Variable name to assign value to
# Param: $*  Value(s) to assign.  If multiple values, an array is
#            assigned, otherwise a single value is assigned.
# NOTE: For assigning multiple variables, use '_upvars'.  Do NOT
#       use multiple '_upvar' calls, since one '_upvar' call might
#       reassign a variable to be used by another '_upvar' call.
# See: http://fvue.nl/wiki/Bash:_Passing_variables_by_reference
_upvar() {
    if unset -v "$1"; then           # Unset & validate varname
        if (( $# == 2 )); then
            eval $1=\"\$2\"          # Return single value
        else
            eval $1=\(\"\${@:2}\"\)  # Return array
        fi
    fi
}


# Assign variables one scope above the caller
# Usage: local varname [varname ...] &&
#        _upvars [-v varname value] | [-aN varname [value ...]] ...
# Available OPTIONS:
#     -aN  Assign next N values to varname as array
#     -v   Assign single value to varname
# Return: 1 if error occurs
# See: http://fvue.nl/wiki/Bash:_Passing_variables_by_reference
_upvars() {
    if ! (( $# )); then
        echo "${FUNCNAME[0]}: usage: ${FUNCNAME[0]} [-v varname"\
            "value] | [-aN varname [value ...]] ..." 1>&2
        return 2
    fi
    while (( $# )); do
        case $1 in
            -a*)
                # Error checking
                [[ ${1#-a} ]] || { echo "bash: ${FUNCNAME[0]}: \`$1': missing"\
                    "number specifier" 1>&2; return 1; }
                printf %d "${1#-a}" &> /dev/null || { echo "bash:"\
                    "${FUNCNAME[0]}: \`$1': invalid number specifier" 1>&2
                    return 1; }
                # Assign array of -aN elements
                [[ "$2" ]] && unset -v "$2" && eval $2=\(\"\${@:3:${1#-a}}\"\) &&
                shift $((${1#-a} + 2)) || { echo "bash: ${FUNCNAME[0]}:"\
                    "\`$1${2+ }$2': missing argument(s)" 1>&2; return 1; }
                ;;
            -v)
                # Assign single value
                [[ "$2" ]] && unset -v "$2" && eval $2=\"\$3\" &&
                shift 3 || { echo "bash: ${FUNCNAME[0]}: $1: missing"\
                "argument(s)" 1>&2; return 1; }
                ;;
            *)
                echo "bash: ${FUNCNAME[0]}: $1: invalid option" 1>&2
                return 1 ;;
        esac
    done
}


# Reassemble command line words, excluding specified characters from the
# list of word completion separators (COMP_WORDBREAKS).
# @param $1 chars  Characters out of $COMP_WORDBREAKS which should
#     NOT be considered word breaks. This is useful for things like scp where
#     we want to return host:path and not only path, so we would pass the
#     colon (:) as $1 here.
# @param $2 words  Name of variable to return words to
# @param $3 cword  Name of variable to return cword to
#
__reassemble_comp_words_by_ref() {
    local exclude i j ref
    # Exclude word separator characters?
    if [[ $1 ]]; then
        # Yes, exclude word separator characters;
        # Exclude only those characters, which were really included
        exclude="${1//[^$COMP_WORDBREAKS]}"
    fi
     
    # Default to cword unchanged
    eval $3=$COMP_CWORD
    # Are characters excluded which were former included?
    if [[ $exclude ]]; then
        # Yes, list of word completion separators has shrunk;
        # Re-assemble words to complete
        for (( i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
            # Is current word not word 0 (the command itself) and is word not
            # empty and is word made up of just word separator characters to be
            # excluded?
            while [[ $i -gt 0 && ${COMP_WORDS[$i]} &&
                ${COMP_WORDS[$i]//[^$exclude]} == ${COMP_WORDS[$i]}
            ]]; do
                [ $j -ge 2 ] && ((j--))
                # Append word separator to current word
                ref="$2[$j]"
                eval $2[$j]=\${!ref}\${COMP_WORDS[i]}
                # Indicate new cword
                [ $i = $COMP_CWORD ] && eval $3=$j
                # Indicate next word if available, else end *both* while and for loop
                (( $i < ${#COMP_WORDS[@]} - 1)) && ((i++)) || break 2
            done
            # Append word to current word
            ref="$2[$j]"
            eval $2[$j]=\${!ref}\${COMP_WORDS[i]}
            # Indicate new cword
            [[ $i == $COMP_CWORD ]] && eval $3=$j
        done
    else
        # No, list of word completions separators hasn't changed;
        eval $2=\( \"\${COMP_WORDS[@]}\" \)
    fi
} # __reassemble_comp_words_by_ref()


# @param $1 exclude  Characters out of $COMP_WORDBREAKS which should NOT be
#     considered word breaks. This is useful for things like scp where
#     we want to return host:path and not only path, so we would pass the
#     colon (:) as $1 in this case.  Bash-3 doesn't do word splitting, so this
#     ensures we get the same word on both bash-3 and bash-4.
# @param $2 words  Name of variable to return words to
# @param $3 cword  Name of variable to return cword to
# @param $4 cur  Name of variable to return current word to complete to
# @see ___get_cword_at_cursor_by_ref()
__get_cword_at_cursor_by_ref() {
    local cword words=()
    __reassemble_comp_words_by_ref "$1" words cword

    local i cur2
    local cur="$COMP_LINE"
    local index="$COMP_POINT"
    for (( i = 0; i <= cword; ++i )); do
        while [[
            # Current word fits in $cur?
            "${#cur}" -ge ${#words[i]} &&
            # $cur doesn't match cword?
            "${cur:0:${#words[i]}}" != "${words[i]}"
        ]]; do
            # Strip first character
            cur="${cur:1}"
            # Decrease cursor position
            ((index--))
        done

        # Does found word matches cword?
        if [[ "$i" -lt "$cword" ]]; then
            # No, cword lies further;
            local old_size="${#cur}"
            cur="${cur#${words[i]}}"
            local new_size="${#cur}"
            index=$(( index - old_size + new_size ))
        fi
    done

    if [[ "${words[cword]:0:${#cur}}" != "$cur" ]]; then
        # We messed up. At least return the whole word so things keep working
        cur2=${words[cword]}
    else
        cur2=${cur:0:$index}
    fi

    local "$2" "$3" "$4" &&
        _upvars -a${#words[@]} $2 "${words[@]}" -v $3 "$cword" -v $4 "$cur2"
}


# Get the word to complete and optional previous words.
# This is nicer than ${COMP_WORDS[$COMP_CWORD]}, since it handles cases
# where the user is completing in the middle of a word.
# (For example, if the line is "ls foobar",
# and the cursor is here -------->   ^
# Also one is able to cross over possible wordbreak characters.
# Usage: _get_comp_words_by_ref [OPTIONS] [VARNAMES]
# Available VARNAMES:
#     cur         Return cur via $cur
#     prev        Return prev via $prev
#     words       Return words via $words
#     cword       Return cword via $cword
#
# Available OPTIONS:
#     -n EXCLUDE  Characters out of $COMP_WORDBREAKS which should NOT be
#                 considered word breaks. This is useful for things like scp
#                 where we want to return host:path and not only path, so we
#                 would pass the colon (:) as -n option in this case.  Bash-3
#                 doesn't do word splitting, so this ensures we get the same
#                 word on both bash-3 and bash-4.
#     -c VARNAME  Return cur via $VARNAME
#     -p VARNAME  Return prev via $VARNAME
#     -w VARNAME  Return words via $VARNAME
#     -i VARNAME  Return cword via $VARNAME
#
# Example usage:
#
#    $ _get_comp_words_by_ref -n : cur prev
#
_get_comp_words_by_ref()
{
    local exclude flag i OPTIND=1
    local cur cword words=()
    local upargs=() upvars=() vcur vcword vprev vwords

    while getopts "c:i:n:p:w:" flag "$@"; do
        case $flag in
            c) vcur=$OPTARG ;;
            i) vcword=$OPTARG ;;
            n) exclude=$OPTARG ;;
            p) vprev=$OPTARG ;;
            w) vwords=$OPTARG ;;
        esac
    done
    while [[ $# -ge $OPTIND ]]; do
        case ${!OPTIND} in
            cur)   vcur=cur ;;
            prev)  vprev=prev ;;
            cword) vcword=cword ;;
            words) vwords=words ;;
            *) echo "bash: $FUNCNAME(): \`${!OPTIND}': unknown argument" \
                1>&2; return 1
        esac
        let "OPTIND += 1"
    done

    __get_cword_at_cursor_by_ref "$exclude" words cword cur

    [[ $vcur   ]] && { upvars+=("$vcur"  ); upargs+=(-v $vcur   "$cur"  ); }
    [[ $vcword ]] && { upvars+=("$vcword"); upargs+=(-v $vcword "$cword"); }
    [[ $vprev  ]] && { upvars+=("$vprev" ); upargs+=(-v $vprev
        "${words[cword - 1]}"); }
    [[ $vwords ]] && { upvars+=("$vwords"); upargs+=(-a${#words[@]} $vwords
        "${words[@]}"); }

    (( ${#upvars[@]} )) && local "${upvars[@]}" && _upvars "${upargs[@]}"
}


# Get the word to complete.
# This is nicer than ${COMP_WORDS[$COMP_CWORD]}, since it handles cases
# where the user is completing in the middle of a word.
# (For example, if the line is "ls foobar",
# and the cursor is here -------->   ^
# @param $1 string  Characters out of $COMP_WORDBREAKS which should NOT be
#     considered word breaks. This is useful for things like scp where
#     we want to return host:path and not only path, so we would pass the
#     colon (:) as $1 in this case.  Bash-3 doesn't do word splitting, so this
#     ensures we get the same word on both bash-3 and bash-4.
# @param $2 integer  Index number of word to return, negatively offset to the
#     current word (default is 0, previous is 1), respecting the exclusions
#     given at $1.  For example, `_get_cword "=:" 1' returns the word left of
#     the current word, respecting the exclusions "=:".
# @deprecated  Use `_get_comp_words_by_ref cur' instead
# @see _get_comp_words_by_ref()
_get_cword()
{
    local LC_CTYPE=C
    local cword words
    __reassemble_comp_words_by_ref "$1" words cword

    # return previous word offset by $2
    if [[ ${2//[^0-9]/} ]]; then
        printf "%s" "${words[cword-$2]}"
    elif [[ "${#words[cword]}" -eq 0 || "$COMP_POINT" == "${#COMP_LINE}" ]]; then
        printf "%s" "${words[cword]}"
    else
        local i
        local cur="$COMP_LINE"
        local index="$COMP_POINT"
        for (( i = 0; i <= cword; ++i )); do
            while [[
                # Current word fits in $cur?
                "${#cur}" -ge ${#words[i]} &&
                # $cur doesn't match cword?
                "${cur:0:${#words[i]}}" != "${words[i]}"
            ]]; do
                # Strip first character
                cur="${cur:1}"
                # Decrease cursor position
                ((index--))
            done

            # Does found word matches cword?
            if [[ "$i" -lt "$cword" ]]; then
                # No, cword lies further;
                local old_size="${#cur}"
                cur="${cur#${words[i]}}"
                local new_size="${#cur}"
                index=$(( index - old_size + new_size ))
            fi
        done

        if [[ "${words[cword]:0:${#cur}}" != "$cur" ]]; then
            # We messed up! At least return the whole word so things
            # keep working
            printf "%s" "${words[cword]}"
        else
            printf "%s" "${cur:0:$index}"
        fi
    fi
} # _get_cword()


# Get word previous to the current word.
# This is a good alternative to `prev=${COMP_WORDS[COMP_CWORD-1]}' because bash4
# will properly return the previous word with respect to any given exclusions to
# COMP_WORDBREAKS.
# @deprecated  Use `_get_comp_words_by_ref cur prev' instead
# @see _get_comp_words_by_ref()
#
_get_pword()
{
    if [ $COMP_CWORD -ge 1 ]; then
        _get_cword "${@:-}" 1;
    fi
}


# If the word-to-complete contains a colon (:), left-trim COMPREPLY items with
# word-to-complete.
# On bash-3, and bash-4 with a colon in COMP_WORDBREAKS, words containing
# colons are always completed as entire words if the word to complete contains
# a colon.  This function fixes this, by removing the colon-containing-prefix
# from COMPREPLY items.
# The preferred solution is to remove the colon (:) from COMP_WORDBREAKS in
# your .bashrc:
#
#    # Remove colon (:) from list of word completion separators
#    COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
#
# See also: Bash FAQ - E13) Why does filename completion misbehave if a colon
# appears in the filename? - http://tiswww.case.edu/php/chet/bash/FAQ
# @param $1 current word to complete (cur)
# @modifies global array $COMPREPLY
#
__ltrim_colon_completions() {
    # If word-to-complete contains a colon,
    # and bash-version < 4,
    # or bash-version >= 4 and COMP_WORDBREAKS contains a colon
    if [[
        "$1" == *:* && (
            ${BASH_VERSINFO[0]} -lt 4 ||
            (${BASH_VERSINFO[0]} -ge 4 && "$COMP_WORDBREAKS" == *:*)
        )
    ]]; then
        # Remove colon-word prefix from COMPREPLY items
        local colon_word=${1%${1##*:}}
        local i=${#COMPREPLY[*]}
        while [ $((--i)) -ge 0 ]; do
            COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
        done
    fi
} # __ltrim_colon_completions()


# This function quotes the argument in a way so that readline dequoting
# results in the original argument.  This is necessary for at least
# `compgen' which requires its arguments quoted/escaped:
#
#     $ ls "a'b/"
#     c
#     $ compgen -f "a'b/"       # Wrong, doesn't return output
#     $ compgen -f "a\'b/"      # Good (bash-4)
#     a\'b/c
#     $ compgen -f "a\\\\\'b/"  # Good (bash-3)
#     a\'b/c
#
# On bash-3, special characters need to be escaped extra.  This is
# unless the first character is a single quote (').  If the single
# quote appears further down the string, bash default completion also
# fails, e.g.:
#
#     $ ls 'a&b/'
#     f
#     $ foo 'a&b/<TAB>  # Becomes: foo 'a&b/f'
#     $ foo a'&b/<TAB>  # Nothing happens
#
# See also:
# - http://lists.gnu.org/archive/html/bug-bash/2009-03/msg00155.html
# - http://www.mail-archive.com/bash-completion-devel@lists.alioth.\
#   debian.org/msg01944.html
# @param $1  Argument to quote
# @param $2  Name of variable to return result to
_quote_readline_by_ref()
{
    if [[ ${1:0:1} == "'" ]]; then
        if [[ ${BASH_VERSINFO[0]} -ge 4 ]]; then
            # Leave out first character
            printf -v $2 %s "${1:1}"
        else
            # Quote word, leaving out first character
            printf -v $2 %q "${1:1}"
            # Double-quote word (bash-3)
            printf -v $2 %q ${!2}
        fi
    elif [[ ${BASH_VERSINFO[0]} -le 3 && ${1:0:1} == '"' ]]; then
        printf -v $2 %q "${1:1}"
    else
        printf -v $2 %q "$1"
    fi

    # If result becomes quoted like this: $'string', re-evaluate in order to
    # drop the additional quoting.  See also: http://www.mail-archive.com/
    # bash-completion-devel@lists.alioth.debian.org/msg01942.html
    [[ ${!2:0:1} == '$' ]] && eval $2=${!2}
} # _quote_readline_by_ref()


# This function turns on "-o filenames" behavior dynamically. It is present
# for bash < 4 reasons. See http://bugs.debian.org/272660#64 for info about
# the bash < 4 compgen hack.
_compopt_o_filenames()
{
    # We test for compopt availability first because directly invoking it on
    # bash < 4 at this point may cause terminal echo to be turned off for some
    # reason, see https://bugzilla.redhat.com/653669 for more info.
    type compopt &>/dev/null && compopt -o filenames 2>/dev/null || \
        compgen -f /non-existing-dir/ >/dev/null
}


# This function performs file and directory completion. It's better than
# simply using 'compgen -f', because it honours spaces in filenames.
# @param $1  If `-d', complete only on directories.  Otherwise filter/pick only
#            completions with `.$1' and the uppercase version of it as file
#            extension.
#
_filedir()
{
    local i IFS=$'\n' xspec

    _tilde "$cur" || return 0

    local -a toks
    local quoted tmp

    _quote_readline_by_ref "$cur" quoted
    toks=( ${toks[@]-} $(
        compgen -d -- "$quoted" | {
            while read -r tmp; do
                # TODO: I have removed a "[ -n $tmp ] &&" before 'printf ..',
                #       and everything works again. If this bug suddenly
                #       appears again (i.e. "cd /b<TAB>" becomes "cd /"),
                #       remember to check for other similar conditionals (here
                #       and _filedir_xspec()). --David
                printf '%s\n' $tmp
            done
        }
    ))

    if [[ "$1" != -d ]]; then
        # Munge xspec to contain uppercase version too
        [[ ${BASH_VERSINFO[0]} -ge 4 ]] && \
            xspec=${1:+"!*.@($1|${1^^})"} || \
            xspec=${1:+"!*.@($1|$(printf %s $1 | tr '[:lower:]' '[:upper:]'))"}
        toks=( ${toks[@]-} $( compgen -f -X "$xspec" -- $quoted) )
    fi
    [ ${#toks[@]} -ne 0 ] && _compopt_o_filenames

    # If the filter failed to produce anything, try w/o it (LP: #533985)
    if [[ -n "$1" ]] && [[ "$1" != -d ]] && [[ ${#toks[@]} -lt 1 ]] ; then
       toks=( ${toks[@]-} $( compgen -f -X -- $quoted) )
    fi

    COMPREPLY=( "${COMPREPLY[@]}" "${toks[@]}" )
} # _filedir()


# This function splits $cur=--foo=bar into $prev=--foo, $cur=bar, making it
# easier to support both "--foo bar" and "--foo=bar" style completions.
# Returns 0 if current option was split, 1 otherwise.
#
_split_longopt()
{
    if [[ "$cur" == --?*=* ]]; then
        # Cut also backslash before '=' in case it ended up there
        # for some reason.
        prev="${cur%%?(\\)=*}"
        cur="${cur#*=}"
        return 0
    fi

    return 1
}

# This function tries to parse the help output of the given command.
# @param $1  command
# @param $2  command options (default: --help)
#
_parse_help() {
    $1 ${2:---help} 2>&1 | sed -e '/^[[:space:]]*-/!d' -e 's|[,/]| |g' | \
        awk '{ print $1; if ($2 ~ /^-/) { print $2 } }' | sed -e 's|[<=].*||'
}

# This function completes on signal names
#
_signals()
{
    local i

    # standard signal completion is rather braindead, so we need
    # to hack around to get what we want here, which is to
    # complete on a dash, followed by the signal name minus
    # the SIG prefix
    COMPREPLY=( $( compgen -A signal SIG${cur#-} ))
    for (( i=0; i < ${#COMPREPLY[@]}; i++ )); do
        COMPREPLY[i]=-${COMPREPLY[i]#SIG}
    done
}

# This function completes on known mac addresses
#
_mac_addresses()
{
    local re='\([A-Fa-f0-9]\{2\}:\)\{5\}[A-Fa-f0-9]\{2\}'
    local PATH="$PATH:/sbin:/usr/sbin"

    # Local interfaces (Linux only?)
    COMPREPLY=( "${COMPREPLY[@]}" $( ifconfig -a 2>/dev/null | sed -ne \
        "s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p" ) )

    # ARP cache
    COMPREPLY=( "${COMPREPLY[@]}" $( arp -an 2>/dev/null | sed -ne \
        "s/.*[[:space:]]\($re\)[[:space:]].*/\1/p" -ne \
        "s/.*[[:space:]]\($re\)[[:space:]]*$/\1/p" ) )

    # /etc/ethers
    COMPREPLY=( "${COMPREPLY[@]}" $( sed -ne \
        "s/^[[:space:]]*\($re\)[[:space:]].*/\1/p" /etc/ethers 2>/dev/null ) )

    COMPREPLY=( $( compgen -W '${COMPREPLY[@]}' -- "$cur" ) )
    __ltrim_colon_completions "$cur"
}

# This function completes on configured network interfaces
#
_configured_interfaces()
{
    if [ -f /etc/debian_version ]; then
        # Debian system
        COMPREPLY=( $( compgen -W "$( sed -ne 's|^iface \([^ ]\{1,\}\).*$|\1|p'\
            /etc/network/interfaces )" -- "$cur" ) )
    elif [ -f /etc/SuSE-release ]; then
        # SuSE system
        COMPREPLY=( $( compgen -W "$( printf '%s\n' \
            /etc/sysconfig/network/ifcfg-* | \
            sed -ne 's|.*ifcfg-\(.*\)|\1|p' )" -- "$cur" ) )
    elif [ -f /etc/pld-release ]; then
        # PLD Linux
        COMPREPLY=( $( compgen -W "$( command ls -B \
            /etc/sysconfig/interfaces | \
            sed -ne 's|.*ifcfg-\(.*\)|\1|p' )" -- "$cur" ) )
    else
        # Assume Red Hat
        COMPREPLY=( $( compgen -W "$( printf '%s\n' \
            /etc/sysconfig/network-scripts/ifcfg-* | \
            sed -ne 's|.*ifcfg-\(.*\)|\1|p' )" -- "$cur" ) )
    fi
}

# This function completes on available kernels
#
_kernel_versions()
{
    COMPREPLY=( $( compgen -W '$( command ls /lib/modules )' -- "$cur" ) )
}

# This function completes on all available network interfaces
# -a: restrict to active interfaces only
# -w: restrict to wireless interfaces only
#
_available_interfaces()
{
    local cmd

    if [ "${1:-}" = -w ]; then
        cmd="iwconfig"
    elif [ "${1:-}" = -a ]; then
        cmd="ifconfig"
    else
        cmd="ifconfig -a"
    fi

    COMPREPLY=( $( eval PATH="$PATH:/sbin" $cmd 2>/dev/null | \
        awk '/^[^ \t]/ { print $1 }' ) )
    COMPREPLY=( $( compgen -W '${COMPREPLY[@]/%[[:punct:]]/}' -- "$cur" ) )
}


# Perform tilde (~) completion
# @return  True (0) if completion needs further processing,
#          False (> 0) if tilde is followed by a valid username, completions
#          are put in COMPREPLY and no further processing is necessary.
_tilde() {
    local result=0
    # Does $1 start with tilde (~) and doesn't contain slash (/)?
    if [[ ${1:0:1} == "~" && $1 == ${1//\/} ]]; then
        _compopt_o_filenames
        # Try generate username completions
        COMPREPLY=( $( compgen -P '~' -u "${1#\~}" ) )
        result=${#COMPREPLY[@]}
    fi
    return $result
}


# Expand variable starting with tilde (~)
# We want to expand ~foo/... to /home/foo/... to avoid problems when
# word-to-complete starting with a tilde is fed to commands and ending up
# quoted instead of expanded.
# Only the first portion of the variable from the tilde up to the first slash
# (~../) is expanded.  The remainder of the variable, containing for example
# a dollar sign variable ($) or asterisk (*) is not expanded.
# Example usage:
#
#    $ v="~"; __expand_tilde_by_ref v; echo "$v"
#
# Example output:
#
#       v                  output
#    --------         ----------------
#    ~                /home/user
#    ~foo/bar         /home/foo/bar
#    ~foo/$HOME       /home/foo/$HOME
#    ~foo/a  b        /home/foo/a  b
#    ~foo/*           /home/foo/*
#
# @param $1  Name of variable (not the value of the variable) to expand
__expand_tilde_by_ref() {
    # Does $1 start with tilde (~)?
    if [ "${!1:0:1}" = "~" ]; then
        # Does $1 contain slash (/)?
        if [ "${!1}" != "${!1//\/}" ]; then
            # Yes, $1 contains slash;
            # 1: Remove * including and after first slash (/), i.e. "~a/b"
            #    becomes "~a".  Double quotes allow eval.
            # 2: Remove * before the first slash (/), i.e. "~a/b"
            #    becomes "b".  Single quotes prevent eval.
            #       +-----1----+ +---2----+
            eval $1="${!1/%\/*}"/'${!1#*/}'
        else
            # No, $1 doesn't contain slash
            eval $1="${!1}"
        fi
    fi
} # __expand_tilde_by_ref()


# This function expands tildes in pathnames
#
_expand()
{
    # FIXME: Why was this here?
    #[ "$cur" != "${cur%\\}" ] && cur="$cur\\"

    # Expand ~username type directory specifications.  We want to expand
    # ~foo/... to /home/foo/... to avoid problems when $cur starting with
    # a tilde is fed to commands and ending up quoted instead of expanded.

    if [[ "$cur" == \~*/* ]]; then
        eval cur=$cur
    elif [[ "$cur" == \~* ]]; then
        cur=${cur#\~}
        COMPREPLY=( $( compgen -P '~' -u "$cur" ) )
        [ ${#COMPREPLY[@]} -eq 1 ] && eval COMPREPLY[0]=${COMPREPLY[0]}
        return ${#COMPREPLY[@]}
    fi
}

# This function completes on process IDs.
# AIX and Solaris ps prefers X/Open syntax.
[[ $UNAME == SunOS || $UNAME == AIX ]] &&
_pids()
{
    COMPREPLY=( $( compgen -W '$( command ps -efo pid | sed 1d )' -- "$cur" ))
} ||
_pids()
{
    COMPREPLY=( $( compgen -W '$( command ps axo pid= )' -- "$cur" ) )
}

# This function completes on process group IDs.
# AIX and SunOS prefer X/Open, all else should be BSD.
[[ $UNAME == SunOS || $UNAME == AIX ]] &&
_pgids()
{
    COMPREPLY=( $( compgen -W '$( command ps -efo pgid | sed 1d )' -- "$cur" ))
} ||
_pgids()
{
    COMPREPLY=( $( compgen -W '$( command ps axo pgid= )' -- "$cur" ))
}

# This function completes on process names.
# AIX and SunOS prefer X/Open, all else should be BSD.
[[ $UNAME == SunOS || $UNAME == AIX ]] &&
_pnames()
{
    COMPREPLY=( $( compgen -X '<defunct>' -W '$( command ps -efo comm | \
        sed -e 1d -e "s:.*/::" -e "s/^-//" | sort -u )' -- "$cur" ) )
} ||
_pnames()
{
    # FIXME: completes "[kblockd/0]" to "0". Previously it was completed
    # to "kblockd" which isn't correct either. "kblockd/0" would be
    # arguably most correct, but killall from psmisc 22 treats arguments
    # containing "/" specially unless -r is given so that wouldn't quite
    # work either. Perhaps it'd be best to not complete these to anything
    # for now.
    # Not using "ps axo comm" because under some Linux kernels, it
    # truncates command names (see e.g. http://bugs.debian.org/497540#19)
    COMPREPLY=( $( compgen -X '<defunct>' -W '$( command ps axo command= | \
        sed -e "s/ .*//" -e "s:.*/::" -e "s/:$//" -e "s/^[[(-]//" \
            -e "s/[])]$//" | sort -u )' -- "$cur" ) )
}

# This function completes on user IDs
#
_uids()
{
    if type getent &>/dev/null; then
        COMPREPLY=( $( compgen -W '$( getent passwd | cut -d: -f3 )' -- "$cur" ) )
    elif type perl &>/dev/null; then
        COMPREPLY=( $( compgen -W '$( perl -e '"'"'while (($uid) = (getpwent)[2]) { print $uid . "\n" }'"'"' )' -- "$cur" ) )
    else
        # make do with /etc/passwd
        COMPREPLY=( $( compgen -W '$( cut -d: -f3 /etc/passwd )' -- "$cur" ) )
    fi
}

# This function completes on group IDs
#
_gids()
{
    if type getent &>/dev/null; then
        COMPREPLY=( $( compgen -W '$( getent group | cut -d: -f3 )' \
            -- "$cur" ) )
    elif type perl &>/dev/null; then
        COMPREPLY=( $( compgen -W '$( perl -e '"'"'while (($gid) = (getgrent)[2]) { print $gid . "\n" }'"'"' )' -- "$cur" ) )
    else
        # make do with /etc/group
        COMPREPLY=( $( compgen -W '$( cut -d: -f3 /etc/group )' -- "$cur" ) )
    fi
}

# This function completes on services
#
_services()
{
    local sysvdir famdir
    [ -d /etc/rc.d/init.d ] && sysvdir=/etc/rc.d/init.d || sysvdir=/etc/init.d
    famdir=/etc/xinetd.d
    COMPREPLY=( $( printf '%s\n' \
        $sysvdir/!(*.rpm@(orig|new|save)|*~|functions) ) )

    if [ -d $famdir ]; then
        COMPREPLY=( "${COMPREPLY[@]}" $( printf '%s\n' \
            $famdir/!(*.rpm@(orig|new|save)|*~) ) )
    fi

    COMPREPLY=( $( compgen -W '${COMPREPLY[@]#@($sysvdir|$famdir)/}' -- "$cur" ) )
}

# This function completes on modules
#
_modules()
{
    local modpath
    modpath=/lib/modules/$1
    COMPREPLY=( $( compgen -W "$( command ls -R $modpath | \
        sed -ne 's/^\(.*\)\.k\{0,1\}o\(\.gz\)\{0,1\}$/\1/p' )" -- "$cur" ) )
}

# This function completes on installed modules
#
_installed_modules()
{
    COMPREPLY=( $( compgen -W "$( PATH="$PATH:/sbin" lsmod | \
        awk '{if (NR != 1) print $1}' )" -- "$1" ) )
}

# This function completes on user or user:group format; as for chown and cpio.
#
# The : must be added manually; it will only complete usernames initially.
# The legacy user.group format is not supported.
#
# @param $1  If -u, only return users/groups the user has access to in
#            context of current completion.
_usergroup()
{
    if [[ $cur = *\\\\* || $cur = *:*:* ]]; then
        # Give up early on if something seems horribly wrong.
        return
    elif [[ $cur = *\\:* ]]; then
        # Completing group after 'user\:gr<TAB>'.
        # Reply with a list of groups prefixed with 'user:', readline will
        # escape to the colon.
        local prefix
        prefix=${cur%%*([^:])}
        prefix=${prefix//\\}
        local mycur="${cur#*[:]}"
        if [[ $1 == -u ]]; then
            _allowed_groups "$mycur"
        else
            local IFS=$'\n'
            COMPREPLY=( $( compgen -g -- "$mycur" ) )
        fi
        COMPREPLY=( $( compgen -P "$prefix" -W "${COMPREPLY[@]}" ) )
    elif [[ $cur = *:* ]]; then
        # Completing group after 'user:gr<TAB>'.
        # Reply with a list of unprefixed groups since readline with split on :
        # and only replace the 'gr' part
        local mycur="${cur#*:}"
        if [[ $1 == -u ]]; then
            _allowed_groups "$mycur"
        else
            local IFS=$'\n'
            COMPREPLY=( $( compgen -g -- "$mycur" ) )
        fi
    else
        # Completing a partial 'usernam<TAB>'.
        #
        # Don't suffix with a : because readline will escape it and add a
        # slash. It's better to complete into 'chown username ' than 'chown
        # username\:'.
        if [[ $1 == -u ]]; then
            _allowed_users "$cur"
        else
            local IFS=$'\n'
            COMPREPLY=( $( compgen -u -- "$cur" ) )
        fi
    fi
}

_allowed_users()
{
    if _complete_as_root; then
        local IFS=$'\n'
        COMPREPLY=( $( compgen -u -- "${1:-$cur}" ) )
    else
        local IFS=$'\n '
        COMPREPLY=( $( compgen -W \
            "$( id -un 2>/dev/null || whoami 2>/dev/null )" -- "${1:-$cur}" ) )
    fi
}

_allowed_groups()
{
    if _complete_as_root; then
        local IFS=$'\n'
        COMPREPLY=( $( compgen -g -- "$1" ) )
    else
        local IFS=$'\n '
        COMPREPLY=( $( compgen -W \
            "$( id -Gn 2>/dev/null || groups 2>/dev/null )" -- "$1" ) )
    fi
}

# This function completes on valid shells
#
_shells()
{
    COMPREPLY=( "${COMPREPLY[@]}" $( compgen -W \
        '$( command grep "^[[:space:]]*/" /etc/shells 2>/dev/null )' \
        -- "$cur" ) )
}

# This function completes on valid filesystem types
#
_fstypes()
{
    local fss

    if [ -e /proc/filesystems ] ; then
        # Linux
        fss="$( cut -d$'\t' -f2 /proc/filesystems )
             $( awk '! /\*/ { print $NF }' /etc/filesystems 2>/dev/null )"
    else
        # Generic
        fss="$( awk '/^[ \t]*[^#]/ { print $3 }' /etc/fstab 2>/dev/null )
             $( awk '/^[ \t]*[^#]/ { print $3 }' /etc/mnttab 2>/dev/null )
             $( awk '/^[ \t]*[^#]/ { print $4 }' /etc/vfstab 2>/dev/null )
             $( awk '{ print $1 }' /etc/dfs/fstypes 2>/dev/null )
             $( [ -d /etc/fs ] && command ls /etc/fs )"
    fi

    [ -n "$fss" ] && \
        COMPREPLY=( "${COMPREPLY[@]}" $( compgen -W "$fss" -- "$cur" ) )
}

# Get real command.
# - arg: $1  Command
# - stdout:  Filename of command in PATH with possible symbolic links resolved.
#            Empty string if command not found.
# - return:  True (0) if command found, False (> 0) if not.
_realcommand()
{
    type -P "$1" > /dev/null && {
        if type -p realpath > /dev/null; then
            realpath "$(type -P "$1")"
        elif type -p readlink > /dev/null; then
            readlink -f "$(type -P "$1")"
        else
            type -P "$1"
        fi
    }
}

# This function returns the first arugment, excluding options
# @param $1 chars  Characters out of $COMP_WORDBREAKS which should
#     NOT be considered word breaks. See __reassemble_comp_words_by_ref.
_get_first_arg()
{
    local i

    arg=
    for (( i=1; i < COMP_CWORD; i++ )); do
        if [[ "${COMP_WORDS[i]}" != -* ]]; then
            arg=${COMP_WORDS[i]}
            break
        fi
    done
}


# This function counts the number of args, excluding options
# @param $1 chars  Characters out of $COMP_WORDBREAKS which should
#     NOT be considered word breaks. See __reassemble_comp_words_by_ref.
_count_args()
{
    local i cword words
    __reassemble_comp_words_by_ref "$1" words cword

    args=1
    for i in "${words[@]:1:cword-1}"; do
        [[ "$i" != -* ]] && args=$(($args+1))
    done
}

# This function completes on PCI IDs
#
_pci_ids()
{
    COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -W \
        "$( PATH="$PATH:/sbin" lspci -n | awk '{print $3}')" -- "$cur" ) )
}

# This function completes on USB IDs
#
_usb_ids()
{
    COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -W \
        "$( PATH="$PATH:/sbin" lsusb | awk '{print $6}' )" -- "$cur" ) )
}

# CD device names
_cd_devices()
{
    COMPREPLY=( "${COMPREPLY[@]}"
        $( compgen -f -d -X "!*/?([amrs])cd*" -- "${cur:-/dev/}" ) )
}

# DVD device names
_dvd_devices()
{
    COMPREPLY=( "${COMPREPLY[@]}"
        $( compgen -f -d -X "!*/?(r)dvd*" -- "${cur:-/dev/}" ) )
}

# start of section containing completion functions for external programs

# a little help for FreeBSD ports users
[ $UNAME = FreeBSD ] && complete -W 'index search fetch fetch-list extract \
    patch configure build install reinstall deinstall clean clean-depends \
    kernel buildworld' make

# This function provides simple user@host completion
#
_user_at_host() {
    local cur

    COMPREPLY=()
    _get_comp_words_by_ref -n : cur

    if [[ $cur == *@* ]]; then
        _known_hosts_real "$cur"
    else
        COMPREPLY=( $( compgen -u -- "$cur" ) )
    fi

    return 0
}
shopt -u hostcomplete && complete -F _user_at_host -o nospace talk ytalk finger

# NOTE: Using this function as a helper function is deprecated.  Use
#       `_known_hosts_real' instead.
_known_hosts()
{
    local options
    COMPREPLY=()

    # NOTE: Using `_known_hosts' as a helper function and passing options
    #       to `_known_hosts' is deprecated: Use `_known_hosts_real' instead.
    [[ "$1" == -a || "$2" == -a ]] && options=-a
    [[ "$1" == -c || "$2" == -c ]] && options="$options -c"
    _known_hosts_real $options "$(_get_cword :)"
} # _known_hosts()

# Helper function for completing _known_hosts.
# This function performs host completion based on ssh's config and known_hosts
# files, as well as hostnames reported by avahi-browse if
# COMP_KNOWN_HOSTS_WITH_AVAHI is set to a non-empty value.  Also hosts from
# HOSTFILE (compgen -A hostname) are added, unless
# COMP_KNOWN_HOSTS_WITH_HOSTFILE is set to an empty value.
# Usage: _known_hosts_real [OPTIONS] CWORD
# Options:  -a             Use aliases
#           -c             Use `:' suffix
#           -F configfile  Use `configfile' for configuration settings
#           -p PREFIX      Use PREFIX
# Return: Completions, starting with CWORD, are added to COMPREPLY[]
_known_hosts_real()
{
    local configfile flag prefix
    local cur curd awkcur user suffix aliases i host
    local -a kh khd config

    local OPTIND=1
    while getopts "acF:p:" flag "$@"; do
        case $flag in
            a) aliases='yes' ;;
            c) suffix=':' ;;
            F) configfile=$OPTARG ;;
            p) prefix=$OPTARG ;;
        esac
    done
    [ $# -lt $OPTIND ] && echo "error: $FUNCNAME: missing mandatory argument CWORD"
    cur=${!OPTIND}; let "OPTIND += 1"
    [ $# -ge $OPTIND ] && echo "error: $FUNCNAME("$@"): unprocessed arguments:"\
    $(while [ $# -ge $OPTIND ]; do printf '%s\n' ${!OPTIND}; shift; done)

    [[ $cur == *@* ]] && user=${cur%@*}@ && cur=${cur#*@}
    kh=()

    # ssh config files
    if [ -n "$configfile" ]; then
        [ -r "$configfile" ] &&
        config=( "${config[@]}" "$configfile" )
    else
        for i in /etc/ssh/ssh_config "${HOME}/.ssh/config" \
            "${HOME}/.ssh2/config"; do
            [ -r $i ] && config=( "${config[@]}" "$i" )
        done
    fi

    # Known hosts files from configs
    if [ ${#config[@]} -gt 0 ]; then
        local OIFS=$IFS IFS=$'\n'
        local -a tmpkh
        # expand paths (if present) to global and user known hosts files
        # TODO(?): try to make known hosts files with more than one consecutive
        #          spaces in their name work (watch out for ~ expansion
        #          breakage! Alioth#311595)
        tmpkh=( $( awk 'sub("^[ \t]*([Gg][Ll][Oo][Bb][Aa][Ll]|[Uu][Ss][Ee][Rr])[Kk][Nn][Oo][Ww][Nn][Hh][Oo][Ss][Tt][Ss][Ff][Ii][Ll][Ee][ \t]+", "") { print $0 }' "${config[@]}" | sort -u ) )
        for i in "${tmpkh[@]}"; do
            # Remove possible quotes
            i=${i//\"}
            # Eval/expand possible `~' or `~user'
            __expand_tilde_by_ref i
            [ -r "$i" ] && kh=( "${kh[@]}" "$i" )
        done
        IFS=$OIFS
    fi

    if [ -z "$configfile" ]; then
        # Global and user known_hosts files
        for i in /etc/ssh/ssh_known_hosts /etc/ssh/ssh_known_hosts2 \
            /etc/known_hosts /etc/known_hosts2 ~/.ssh/known_hosts \
            ~/.ssh/known_hosts2; do
            [ -r $i ] && kh=( "${kh[@]}" $i )
        done
        for i in /etc/ssh2/knownhosts ~/.ssh2/hostkeys; do
            [ -d $i ] && khd=( "${khd[@]}" $i/*pub )
        done
    fi

    # If we have known_hosts files to use
    if [[ ${#kh[@]} -gt 0 || ${#khd[@]} -gt 0 ]]; then
        # Escape slashes and dots in paths for awk
        awkcur=${cur//\//\\\/}
        awkcur=${awkcur//\./\\\.}
        curd=$awkcur

        if [[ "$awkcur" == [0-9]*[.:]* ]]; then
            # Digits followed by a dot or a colon - just search for that
            awkcur="^$awkcur[.:]*"
        elif [[ "$awkcur" == [0-9]* ]]; then
            # Digits followed by no dot or colon - search for digits followed
            # by a dot or a colon
            awkcur="^$awkcur.*[.:]"
        elif [ -z "$awkcur" ]; then
            # A blank - search for a dot, a colon, or an alpha character
            awkcur="[a-z.:]"
        else
            awkcur="^$awkcur"
        fi

        if [ ${#kh[@]} -gt 0 ]; then
            # FS needs to look for a comma separated list
            COMPREPLY=( "${COMPREPLY[@]}" $( awk 'BEGIN {FS=","}
            /^\s*[^|\#]/ {for (i=1; i<=2; ++i) { \
            sub(" .*$", "", $i); \
            sub("^\\[", "", $i); sub("\\](:[0-9]+)?$", "", $i); \
            if ($i ~ /'"$awkcur"'/) {print $i} \
            }}' "${kh[@]}" 2>/dev/null ) )
        fi
        if [ ${#khd[@]} -gt 0 ]; then
            # Needs to look for files called
            # .../.ssh2/key_22_<hostname>.pub
            # dont fork any processes, because in a cluster environment,
            # there can be hundreds of hostkeys
            for i in "${khd[@]}" ; do
                if [[ "$i" == *key_22_$curd*.pub && -r "$i" ]]; then
                    host=${i/#*key_22_/}
                    host=${host/%.pub/}
                    COMPREPLY=( "${COMPREPLY[@]}" $host )
                fi
            done
        fi

        # apply suffix and prefix
        for (( i=0; i < ${#COMPREPLY[@]}; i++ )); do
            COMPREPLY[i]=$prefix$user${COMPREPLY[i]}$suffix
        done
    fi

    # append any available aliases from config files
    if [[ ${#config[@]} -gt 0 && -n "$aliases" ]]; then
        local hosts=$( sed -ne 's/^[ \t]*[Hh][Oo][Ss][Tt]\([Nn][Aa][Mm][Ee]\)\{0,1\}['"$'\t '"']\{1,\}\([^#*?]*\)\(#.*\)\{0,1\}$/\2/p' "${config[@]}" )
        COMPREPLY=( "${COMPREPLY[@]}" $( compgen  -P "$prefix$user" \
            -S "$suffix" -W "$hosts" -- "$cur" ) )
    fi

    # Add hosts reported by avahi-browse, if desired and it's available.

    # This feature is disabled because it does not scale to
    #  larger networks. See:
    # https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/510591

    #if [[ ${COMP_KNOWN_HOSTS_WITH_AVAHI:-} ]] && \
    #    type avahi-browse &>/dev/null; then
        # The original call to avahi-browse also had "-k", to avoid lookups
        # into avahi's services DB. We don't need the name of the service, and
        # if it contains ";", it may mistify the result. But on Gentoo (at
        # least), -k wasn't available (even if mentioned in the manpage) some
        # time ago, so...
    #    COMPREPLY=( "${COMPREPLY[@]}" $( \
    #        compgen -P "$prefix$user" -S "$suffix" -W \
    #        "$( avahi-browse -cpr _workstation._tcp 2>/dev/null | \
    #             awk -F';' '/^=/ { print $7 }' | sort -u )" -- "$cur" ) )
    #fi

    # Add results of normal hostname completion, unless
    # `COMP_KNOWN_HOSTS_WITH_HOSTFILE' is set to an empty value.
    if [ -n "${COMP_KNOWN_HOSTS_WITH_HOSTFILE-1}" ]; then
        COMPREPLY=( "${COMPREPLY[@]}"
            $( compgen -A hostname -P "$prefix$user" -S "$suffix" -- "$cur" ) )
    fi

    __ltrim_colon_completions "$prefix$user$cur"

    return 0
} # _known_hosts_real()
complete -F _known_hosts traceroute traceroute6 tracepath tracepath6 ping \
    ping6 fping fping6 telnet host nslookup rsh rlogin ftp dig mtr \
    ssh-installkeys showmount

# This meta-cd function observes the CDPATH variable, so that cd additionally
# completes on directories under those specified in CDPATH.
#
_cd()
{
    local cur IFS=$'\n' i j k
    _get_comp_words_by_ref cur

    # try to allow variable completion
    if [[ "$cur" == ?(\\)\$* ]]; then
        COMPREPLY=( $( compgen -v -P '$' -- "${cur#?(\\)$}" ) )
        return 0
    fi

    _compopt_o_filenames

    # Use standard dir completion if no CDPATH or parameter starts with /,
    # ./ or ../
    if [[ -z "${CDPATH:-}" || "$cur" == ?(.)?(.)/* ]]; then
        _filedir -d
        return 0
    fi

    local -r mark_dirs=$(_rl_enabled mark-directories && echo y)
    local -r mark_symdirs=$(_rl_enabled mark-symlinked-directories && echo y)

    # we have a CDPATH, so loop on its contents
    for i in ${CDPATH//:/$'\n'}; do
        # create an array of matched subdirs
        k="${#COMPREPLY[@]}"
        for j in $( compgen -d $i/$cur ); do
            if [[ ( $mark_symdirs && -h $j || $mark_dirs && ! -h $j ) && ! -d ${j#$i/} ]]; then
                j="${j}/"
            fi
            COMPREPLY[k++]=${j#$i/}
        done
    done

    _filedir -d

    if [[ ${#COMPREPLY[@]} -eq 1 ]]; then
        i=${COMPREPLY[0]}
        if [[ "$i" == "$cur" && $i != "*/" ]]; then
            COMPREPLY[0]="${i}/"
        fi
    fi

    return 0
}
if shopt -q cdable_vars; then
    complete -v -F _cd -o nospace cd
else
    complete -F _cd -o nospace cd
fi

# a wrapper method for the next one, when the offset is unknown
_command()
{
    local offset i

    # find actual offset, as position of the first non-option
    offset=1
    for (( i=1; i <= COMP_CWORD; i++ )); do
        if [[ "${COMP_WORDS[i]}" != -* ]]; then
            offset=$i
            break
        fi
    done
    _command_offset $offset
}

# A meta-command completion function for commands like sudo(8), which need to
# first complete on a command, then complete according to that command's own
# completion definition - currently not quite foolproof (e.g. mount and umount
# don't work properly), but still quite useful.
#
_command_offset()
{
    local cur func cline cspec noglob cmd i char_offset word_offset \
        _COMMAND_FUNC _COMMAND_FUNC_ARGS

    word_offset=$1

    # rewrite current completion context before invoking
    # actual command completion

    # find new first word position, then
    # rewrite COMP_LINE and adjust COMP_POINT
    local first_word=${COMP_WORDS[$word_offset]}
    for (( i=0; i <= ${#COMP_LINE}; i++ )); do
        if [[ "${COMP_LINE:$i:${#first_word}}" == "$first_word" ]]; then
            char_offset=$i
            break
        fi
    done
    COMP_LINE=${COMP_LINE:$char_offset}
    COMP_POINT=$(( COMP_POINT - $char_offset ))

    # shift COMP_WORDS elements and adjust COMP_CWORD
    for (( i=0; i <= COMP_CWORD - $word_offset; i++ )); do
        COMP_WORDS[i]=${COMP_WORDS[i+$word_offset]}
    done
    for (( i; i <= COMP_CWORD; i++ )); do
        unset COMP_WORDS[i];
    done
    COMP_CWORD=$(( $COMP_CWORD - $word_offset ))

    COMPREPLY=()
    _get_comp_words_by_ref cur

    if [[ $COMP_CWORD -eq 0 ]]; then
        _compopt_o_filenames
        COMPREPLY=( $( compgen -c -- "$cur" ) )
    else
        cmd=${COMP_WORDS[0]}
        if complete -p ${cmd##*/} &>/dev/null; then
            cspec=$( complete -p ${cmd##*/} )
            if [ "${cspec#* -F }" != "$cspec" ]; then
                # complete -F <function>

                # get function name
                func=${cspec#*-F }
                func=${func%% *}

                if [[ ${#COMP_WORDS[@]} -ge 2 ]]; then
                    $func $cmd "${COMP_WORDS[${#COMP_WORDS[@]}-1]}" "${COMP_WORDS[${#COMP_WORDS[@]}-2]}"
                else
                    $func $cmd "${COMP_WORDS[${#COMP_WORDS[@]}-1]}"
                fi

                # remove any \: generated by a command that doesn't
                # default to filenames or dirnames (e.g. sudo chown)
                # FIXME: I'm pretty sure this does not work!
                if [ "${cspec#*-o }" != "$cspec" ]; then
                    cspec=${cspec#*-o }
                    cspec=${cspec%% *}
                    if [[ "$cspec" != @(dir|file)names ]]; then
                        COMPREPLY=("${COMPREPLY[@]//\\\\:/:}")
                    else
                        _compopt_o_filenames
                    fi
                fi
            elif [ -n "$cspec" ]; then
                cspec=${cspec#complete};
                cspec=${cspec%%${cmd##*/}};
                COMPREPLY=( $( eval compgen "$cspec" -- "$cur" ) );
            fi
        elif [ ${#COMPREPLY[@]} -eq 0 ]; then
            _filedir
        fi
    fi
}
complete -F _command aoss command do else eval exec ltrace nice nohup padsp \
    then time tsocks vsound xargs

_root_command()
{
    local PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin
    local root_command=$1
    _command $1 $2 $3
}
complete -F _root_command fakeroot gksu gksudo kdesudo really sudo

# Return true if the completion should be treated as running as root
_complete_as_root()
{
    [[ $EUID -eq 0 || ${root_command:-} ]]
}

_longopt()
{
    local cur prev split=false
    _get_comp_words_by_ref -n = cur prev

    _split_longopt && split=true

    case "$prev" in
        --*[Dd][Ii][Rr]*)
            _filedir -d
            return 0
            ;;
        --*[Ff][Ii][Ll][Ee]*|--*[Pp][Aa][Tt][Hh]*)
            _filedir
            return 0
            ;;
    esac

    $split && return 0

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W "$( $1 --help 2>&1 | \
            sed -ne 's/.*\(--[-A-Za-z0-9]\{1,\}\).*/\1/p' | sort -u )" \
            -- "$cur" ) )
    elif [[ "$1" == @(mk|rm)dir ]]; then
        _filedir -d
    else
        _filedir
    fi
}
# makeinfo and texi2dvi are defined elsewhere.
for i in a2ps awk bash bc bison cat colordiff cp csplit \
    curl cut date df diff dir du enscript env expand fmt fold gperf gprof \
    grep grub head indent irb ld ldd less ln ls m4 md5sum mkdir mkfifo mknod \
    mv netstat nl nm objcopy objdump od paste patch pr ptx readelf rm rmdir \
    sed seq sha{,1,224,256,384,512}sum shar sort split strip tac tail tee \
    texindex touch tr uname unexpand uniq units vdir wc wget who; do
    have $i && complete -F _longopt -o default $i
done
unset i

_filedir_xspec()
{
    local IFS cur xspec

    IFS=$'\n'
    COMPREPLY=()
    _get_comp_words_by_ref cur

    _expand || return 0

    # get first exclusion compspec that matches this command
    xspec=$( awk "/^complete[ \t]+.*[ \t]${1##*/}([ \t]|\$)/ { print \$0; exit }" \
        "$BASH_COMPLETION" )
    # prune to leave nothing but the -X spec
    xspec=${xspec#*-X }
    xspec=${xspec%% *}

    local -a toks
    local tmp

    toks=( ${toks[@]-} $(
        compgen -d -- "$(quote_readline "$cur")" | {
        while read -r tmp; do
            # see long TODO comment in _filedir() --David
            printf '%s\n' $tmp
        done
        }
        ))

    # Munge xspec to contain uppercase version too
    eval xspec="${xspec}"
    local matchop=!
    if [[ $xspec == !* ]]; then
        xspec=${xspec#!}
        matchop=@
    fi
    [[ ${BASH_VERSINFO[0]} -ge 4 ]] && \
        xspec="$matchop($xspec|${xspec^^})" || \
        xspec="$matchop($xspec|$(printf %s $xspec | tr '[:lower:]' '[:upper:]'))"

    toks=( ${toks[@]-} $(
        eval compgen -f -X "!$xspec" -- "\$(quote_readline "\$cur")" | {
        while read -r tmp; do
            [ -n $tmp ] && printf '%s\n' $tmp
        done
        }
        ))

    [ ${#toks[@]} -ne 0 ] && _compopt_o_filenames
    COMPREPLY=( "${toks[@]}" )
}
list=( $( sed -ne '/^# START exclude/,/^# FINISH exclude/p' "$BASH_COMPLETION" | \
    # read exclusion compspecs
    (
    while read line
    do
        # ignore compspecs that are commented out
        if [ "${line#\#}" != "$line" ]; then continue; fi
        line=${line%# START exclude*}
        line=${line%# FINISH exclude*}
        line=${line##*\'}
        list=( "${list[@]}" $line )
    done
    printf '%s ' "${list[@]}"
    )
    ) )
# remove previous compspecs
if [ ${#list[@]} -gt 0 ]; then
    eval complete -r ${list[@]}
    # install new compspecs
    eval complete -F _filedir_xspec "${list[@]}"
fi
unset list

# source completion directory definitions
if [[ -d $BASH_COMPLETION_COMPAT_DIR && -r $BASH_COMPLETION_COMPAT_DIR && \
    -x $BASH_COMPLETION_COMPAT_DIR ]]; then
    for i in $(LC_ALL=C command ls "$BASH_COMPLETION_COMPAT_DIR"); do
        i=$BASH_COMPLETION_COMPAT_DIR/$i
        [[ ${i##*/} != @(*~|*.bak|*.swp|\#*\#|*.dpkg*|*.rpm@(orig|new|save)|Makefile*) \
            && -f $i && -r $i ]] && . "$i"
    done
fi
if [[ $BASH_COMPLETION_DIR != $BASH_COMPLETION_COMPAT_DIR && \
    -d $BASH_COMPLETION_DIR && -r $BASH_COMPLETION_DIR && \
    -x $BASH_COMPLETION_DIR ]]; then
    for i in $(LC_ALL=C command ls "$BASH_COMPLETION_DIR"); do
        i=$BASH_COMPLETION_DIR/$i
        [[ ${i##*/} != @(*~|*.bak|*.swp|\#*\#|*.dpkg*|*.rpm@(orig|new|save)|Makefile*) \
            && -f $i && -r $i ]] && . "$i"
    done
fi
unset i

# source user completion file
[[ $BASH_COMPLETION != ~/.bash_completion && -r ~/.bash_completion ]] \
    && . ~/.bash_completion
unset -f have
unset UNAME USERLAND have

set $BASH_COMPLETION_ORIGINAL_V_VALUE
unset BASH_COMPLETION_ORIGINAL_V_VALUE

# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh

--[ File: /etc/profile ]--(0644, root, root, 665)-------------------------------
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

if [ "$PS1" ]; then
  if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
    # The file bash.bashrc already sets the default PS1.
    # PS1='\h:\w\$ '
    if [ -f /etc/bash.bashrc ]; then
      . /etc/bash.bashrc
    fi
  else
    if [ "`id -u`" -eq 0 ]; then
      PS1='# '
    else
      PS1='$ '
    fi
  fi
fi

# The default umask is now handled by pam_umask.
# See pam_umask(8) and /etc/login.defs.

if [ -d /etc/profile.d ]; then
  for i in /etc/profile.d/*.sh; do
    if [ -r $i ]; then
      . $i
    fi
  done
  unset i
fi

== SYSTEM ======================================================================
--[ Cmd: /bin/uname -a ]--(0755, root, root, 27072)-----------------------------
Linux ubuntu 3.2.0-23-generic #36-Ubuntu SMP Tue Apr 10 20:39:51 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

--[ File: /etc/debian_version ]--(0644, root, root, 11)-------------------------
wheezy/sid

No comments: