no sound,try all steps with no results. Sound trouble shooting procedure.

Asked by chris christensen

Format: 1.0
Source: oem-audio-hda-daily-dkms
Binary: oem-audio-hda-daily-dkms
Architecture: all
Version: 0.201512111017~ubuntu12.04.1
Maintainer: David Henningsson <email address hidden>
Homepage: https://code.launchpad.net/~ubuntu-audio-dev
Standards-Version: 3.8.1
Build-Depends: dkms, python, quilt, linux-headers-generic, debhelper (>= 5), lsb-release, dh-modaliases
Package-List:
 oem-audio-hda-daily-dkms deb devel extra
Checksums-Sha1:
 8806c293724d04f0a83cb2184de6d70e40511d98 506472 oem-audio-hda-daily-dkms_0.201512111017~ubuntu12.04.1.tar.gz
Checksums-Sha256:
 51c1b53c900694c5ab77cb8a3a992a935135bd05ed0b0467c1f2c4c9686e353a 506472 oem-audio-hda-daily-dkms_0.201512111017~ubuntu12.04.1.tar.gz
Files:
 b554984f7bf55faad81a089dc87ce16e 506472 oem-audio-hda-daily-dkms_0.201512111017~ubuntu12.04.1.tar.gz

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu alsa-driver Edit question
Assignee:
No assignee Edit question
Solved by:
chris christensen
Solved:
Last query:
Last reply:
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1

What is the output of:

wget -O alsa-info.sh http://www.alsa-project.org/alsa-info.sh && chmod +x ./alsa-info.sh && ./alsa-info.sh

Thanks

Do you get sound from headphones?

Revision history for this message
chris christensen (chris220a) said :
#2

I don't know the answer to the first question, I think I had it up once in the terminal, but I got confused trying to copy it.

I don't get sound form headphone.
In Version 10.4 I had sound, I have keep both version plus Windows xp.
I am not familiar with the command line, so please make it simple.

Thank you

Revision history for this message
chris christensen (chris220a) said :
#3

I hope this the file.

#!/bin/bash

SCRIPT_VERSION=0.4.64
CHANGELOG="http://www.alsa-project.org/alsa-info.sh.changelog"

#################################################################################
#Copyright (C) 2007 Free Software Foundation.

#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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

##################################################################################

#The script was written for 2 main reasons:
# 1. Remove the need for the devs/helpers to ask several questions before we can easily help the user.
# 2. Allow newer/inexperienced ALSA users to give us all the info we need to help them.

#Set the locale (this may or may not be a good idea.. let me know)
export LC_ALL=C

#Change the PATH variable, so we can run lspci (needed for some distros)
PATH=$PATH:/bin:/sbin:/usr/bin:/usr/sbin
BGTITLE="ALSA-Info v $SCRIPT_VERSION"
PASTEBINKEY="C9cRIO8m/9y8Cs0nVs0FraRx7U0pHsuc"
#Define some simple functions

WGET=$(which wget 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null)

pbcheck(){
 [[ $UPLOAD = "no" ]] && return

 if [[ -z $PASTEBIN ]]; then
  [[ $(ping -c1 www.alsa-project.org) ]] || KEEP_FILES="yes" UPLOAD="no" PBERROR="yes"
 else
  [[ $(ping -c1 www.pastebin.ca) ]] || KEEP_FILES="yes" UPLOAD="no" PBERROR="yes"
 fi
}

update() {
 test -z "$WGET" -o ! -x "$WGET" && return

 SHFILE=`mktemp -t alsa-info.XXXXXXXXXX` || exit 1
 wget -O $SHFILE "http://www.alsa-project.org/alsa-info.sh" >/dev/null 2>&1
 REMOTE_VERSION=`grep SCRIPT_VERSION $SHFILE |head -n1 |sed 's/.*=//'`
 if [ -s "$SHFILE" -a "$REMOTE_VERSION" != "$SCRIPT_VERSION" ]; then
  if [[ -n $DIALOG ]]
  then
   OVERWRITE=
   if [ -w $0 ]; then
    dialog --yesno "Newer version of ALSA-Info has been found\n\nDo you wish to install it?\nNOTICE: The original file $0 will be overwritten!" 0 0
    DIALOG_EXIT_CODE=$?
    if [[ $DIALOG_EXIT_CODE = 0 ]]; then
      OVERWRITE=yes
    fi
   fi
   if [ -z "$OVERWRITE" ]; then
    dialog --yesno "Newer version of ALSA-Info has been found\n\nDo you wish to download it?" 0 0
    DIALOG_EXIT_CODE=$?
   fi
   if [[ $DIALOG_EXIT_CODE = 0 ]]
   then
    echo "Newer version detected: $REMOTE_VERSION"
    echo "To view the ChangeLog, please visit $CHANGELOG"
    if [ "$OVERWRITE" = "yes" ]; then
     cp $SHFILE $0
     echo "ALSA-Info script has been updated to v $REMOTE_VERSION"
     echo "Please re-run the script"
     rm $SHFILE 2>/dev/null
    else
     echo "ALSA-Info script has been downloaded as $SHFILE."
     echo "Please re-run the script from new location."
    fi
    exit
   else
    rm $SHFILE 2>/dev/null
   fi
  else
   echo "Newer version detected: $REMOTE_VERSION"
   echo "To view the ChangeLog, please visit $CHANGELOG"
   if [ -w $0 ]; then
    echo "The original file $0 will be overwritten!"
    echo -n "If you do not like to proceed, press Ctrl-C now.." ; read inp
    cp $SHFILE $0
    echo "ALSA-Info script has been updated. Please re-run it."
    rm $SHFILE 2>/dev/null
   else
    echo "ALSA-Info script has been downloaded $SHFILE."
    echo "Please, re-run it from new location."
   fi
   exit
  fi
 else
  rm $SHFILE 2>/dev/null
 fi
}

cleanup() {
 if [ -n "$TEMPDIR" -a "$KEEP_FILES" != "yes" ]; then
  rm -rf "$TEMPDIR" 2>/dev/null
 fi
 test -n "$KEEP_OUTPUT" || rm -f "$NFILE"
}

withaplay() {
        echo "!!Aplay/Arecord output" >> $FILE
        echo "!!--------------------" >> $FILE
        echo "" >> $FILE
        echo "APLAY" >> $FILE
 echo "" >> $FILE
 aplay -l >> $FILE 2>&1
        echo "" >> $FILE
        echo "ARECORD" >> $FILE
 echo "" >> $FILE
 arecord -l >> $FILE 2>&1
 echo "" >> $FILE
}

withlsmod() {
 echo "!!All Loaded Modules" >> $FILE
 echo "!!------------------" >> $FILE
 echo "" >> $FILE
 lsmod |awk {'print $1'} >> $FILE
 echo "" >> $FILE
 echo "" >> $FILE
}

withamixer() {
        echo "!!Amixer output" >> $FILE
        echo "!!-------------" >> $FILE
        echo "" >> $FILE
 for i in `grep "]: " /proc/asound/cards | awk -F ' ' '{ print $1} '` ; do
 CARD_NAME=`grep "^ *$i " $TEMPDIR/alsacards.tmp|awk {'print $2'}`
 echo "!!-------Mixer controls for card $i $CARD_NAME]" >> $FILE
 echo "" >>$FILE
 amixer -c$i info>> $FILE 2>&1
 amixer -c$i>> $FILE 2>&1
        echo "" >> $FILE
 done
 echo "" >> $FILE
}

withalsactl() {
 echo "!!Alsactl output" >> $FILE
        echo "!!--------------" >> $FILE
        echo "" >> $FILE
        exe=""
        if [ -x /usr/sbin/alsactl ]; then
         exe="/usr/sbin/alsactl"
        fi
        if [ -x /usr/local/sbin/alsactl ]; then
         exe="/usr/local/sbin/alsactl"
        fi
        if [ -z "$exe" ]; then
         exe=`whereis alsactl | cut -d ' ' -f 2`
        fi
 $exe -f $TEMPDIR/alsactl.tmp store
 echo "--startcollapse--" >> $FILE
 cat $TEMPDIR/alsactl.tmp >> $FILE
 echo "--endcollapse--" >> $FILE
 echo "" >> $FILE
 echo "" >> $FILE
}

withdevices() {
        echo "!!ALSA Device nodes" >> $FILE
        echo "!!-----------------" >> $FILE
        echo "" >> $FILE
        ls -la /dev/snd/* >> $FILE
        echo "" >> $FILE
        echo "" >> $FILE
}

withconfigs() {
if [[ -e $HOME/.asoundrc ]] || [[ -e /etc/asound.conf ]] || [[ -e $HOME/.asoundrc.asoundconf ]]
then
        echo "!!ALSA configuration files" >> $FILE
        echo "!!------------------------" >> $FILE
        echo "" >> $FILE

        #Check for ~/.asoundrc
        if [[ -e $HOME/.asoundrc ]]
        then
                echo "!!User specific config file (~/.asoundrc)" >> $FILE
                echo "" >> $FILE
                cat $HOME/.asoundrc >> $FILE
                echo "" >> $FILE
                echo "" >> $FILE
        fi
 #Check for .asoundrc.asoundconf (seems to be Ubuntu specific)
 if [[ -e $HOME/.asoundrc.asoundconf ]]
 then
  echo "!!asoundconf-generated config file" >> $FILE
  echo "" >> $FILE
  cat $HOME/.asoundrc.asoundconf >> $FILE
  echo "" >> $FILE
  echo "" >> $FILE
 fi
        #Check for /etc/asound.conf
        if [[ -e /etc/asound.conf ]]
        then
                echo "!!System wide config file (/etc/asound.conf)" >> $FILE
                echo "" >> $FILE
                cat /etc/asound.conf >> $FILE
                echo "" >> $FILE
                echo "" >> $FILE
        fi
fi
}

withsysfs() {
    local i f
    local printed=""
    for i in /sys/class/sound/*; do
 case "$i" in
     */hwC?D?)
  if [ -f $i/init_pin_configs ]; then
      if [ -z "$printed" ]; then
   echo "!!Sysfs Files" >> $FILE
   echo "!!-----------" >> $FILE
   echo "" >> $FILE
      fi
      for f in init_pin_configs driver_pin_configs user_pin_configs init_verbs hints; do
   echo "$i/$f:" >> $FILE
   cat $i/$f >> $FILE
   echo >> $FILE
      done
      printed=yes
  fi
  ;;
     esac
    done
    if [ -n "$printed" ]; then
 echo "" >> $FILE
    fi
}

withdmesg() {
 echo "!!ALSA/HDA dmesg" >> $FILE
 echo "!!--------------" >> $FILE
 echo "" >> $FILE
 dmesg | grep -C1 -E 'ALSA|HDA|HDMI|snd[_-]|sound|hda.codec|hda.intel' >> $FILE
 echo "" >> $FILE
 echo "" >> $FILE
}

withall() {
 withdevices
 withconfigs
 withaplay
 withamixer
 withalsactl
 withlsmod
 withsysfs
 withdmesg
 WITHALL="no"
}

get_alsa_library_version() {
 ALSA_LIB_VERSION=`grep VERSION_STR /usr/include/alsa/version.h 2>/dev/null|awk {'print $3'}|sed 's/"//g'`

 if [ -z "$ALSA_LIB_VERSION" ]; then
  if [ -f /etc/lsb-release ]; then
   . /etc/lsb-release
   case "$DISTRIB_ID" in
    Ubuntu)
     if which dpkg > /dev/null ; then
      ALSA_LIB_VERSION=`dpkg -l libasound2 | tail -1 | awk '{print $3}' | cut -f 1 -d -`
     fi

     if [ "$ALSA_LIB_VERSION" = "<none>" ]; then
      ALSA_LIB_VERSION=""
     fi
     return
     ;;
    *)
     return
     ;;
   esac
  elif [ -f /etc/debian_version ]; then
   if which dpkg > /dev/null ; then
    ALSA_LIB_VERSION=`dpkg -l libasound2 | tail -1 | awk '{print $3}' | cut -f 1 -d -`
   fi

   if [ "$ALSA_LIB_VERSION" = "<none>" ]; then
    ALSA_LIB_VERSION=""
   fi
   return
  fi
 fi
}

#Run checks to make sure the programs we need are installed.
LSPCI=$(which lspci 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null);
TPUT=$(which tput 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null);
DIALOG=$(which dialog 2>/dev/null | sed 's|^[^/]*||' 2>/dev/null);

#Check to see if sysfs is enabled in the kernel. We'll need this later on
SYSFS=$(mount |grep sysfs|awk {'print $3'});

#Check modprobe config files for sound related options
SNDOPTIONS=$(modprobe -c|sed -n 's/^options \(snd[-_][^ ]*\)/\1:/p')

KEEP_OUTPUT=
NFILE=""

PASTEBIN=""
WWWSERVICE="www.alsa-project.org"
WELCOME="yes"
PROCEED="yes"
UPLOAD="ask"
REPEAT=""
while [ -z "$REPEAT" ]; do
REPEAT="no"
case "$1" in
 --update|--help|--about)
  WELCOME="no"
  PROCEED="no"
  ;;
 --upload)
  UPLOAD="yes"
  WELCOME="no"
  ;;
 --no-upload)
  UPLOAD="no"
  WELCOME="no"
  ;;
 --pastebin)
  PASTEBIN="yes"
  WWWSERVICE="pastebin"
  ;;
 --no-dialog)
  DIALOG=""
  REPEAT=""
  shift
  ;;
 --stdout)
  DIALOG=""
  UPLOAD="no"
  WELCOME="no"
  TOSTDOUT="yes"
  ;;
esac
done

#Script header output.
if [ "$WELCOME" = "yes" ]; then
greeting_message="\

This script visits the following commands/files to collect diagnostic
information about your ALSA installation and sound related hardware.

  dmesg
  lspci
  lsmod
  aplay
  amixer
  alsactl
  /proc/asound/
  /sys/class/sound/
  ~/.asoundrc (etc.)

See '$0 --help' for command line options.
"
if [ -n "$DIALOG" ]; then
 dialog --backtitle "$BGTITLE" \
  --title "ALSA-Info script v $SCRIPT_VERSION" \
  --msgbox "$greeting_message" 20 80
else
 echo "ALSA Information Script v $SCRIPT_VERSION"
 echo "--------------------------------"
 echo "$greeting_message"
fi # dialog
fi # WELCOME

#Set the output file
TEMPDIR=`mktemp -t -d alsa-info.XXXXXXXXXX` || exit 1
FILE="$TEMPDIR/alsa-info.txt"
if [ -z "$NFILE" ]; then
 NFILE=`mktemp -t alsa-info.txt.XXXXXXXXXX` || exit 1
fi

trap cleanup 0

if [ "$PROCEED" = "yes" ]; then

if [ -z "$LSPCI" ]; then
 if [ -d /sys/bus/pci ]; then
  echo "This script requires lspci. Please install it, and re-run this script."
  exit 0
 fi
fi

#Fetch the info and store in temp files/variables
DISTRO=`grep -ihs "buntu\|SUSE\|Fedora\|PCLinuxOS\|MEPIS\|Mandriva\|Debian\|Damn\|Sabayon\|Slackware\|KNOPPIX\|Gentoo\|Zenwalk\|Mint\|Kubuntu\|FreeBSD\|Puppy\|Freespire\|Vector\|Dreamlinux\|CentOS\|Arch\|Xandros\|Elive\|SLAX\|Red\|BSD\|KANOTIX\|Nexenta\|Foresight\|GeeXboX\|Frugalware\|64\|SystemRescue\|Novell\|Solaris\|BackTrack\|KateOS\|Pardus" /etc/{issue,*release,*version}`
KERNEL_VERSION=`uname -r`
KERNEL_PROCESSOR=`uname -p`
KERNEL_MACHINE=`uname -m`
KERNEL_OS=`uname -o`
[[ `uname -v | grep SMP` ]] && KERNEL_SMP="Yes" || KERNEL_SMP="No"
ALSA_DRIVER_VERSION=`cat /proc/asound/version |head -n1|awk {'print $7'} |sed 's/\.$//'`
get_alsa_library_version
ALSA_UTILS_VERSION=`amixer -v |awk {'print $3'}`
LAST_CARD=$((`grep "]: " /proc/asound/cards | wc -l` - 1 ))

ESDINST=$(which esd 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null)
PAINST=$(which pulseaudio 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null)
ARTSINST=$(which artsd 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null)
JACKINST=$(which jackd 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null)
ROARINST=$(which roard 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null)
DMIDECODE=$(which dmidecode 2>/dev/null| sed 's|^[^/]*||' 2>/dev/null)

#Check for DMI data
if [ -d /sys/class/dmi/id ]; then
    # No root privileges are required when using sysfs method
    DMI_SYSTEM_MANUFACTURER=$(cat /sys/class/dmi/id/sys_vendor 2>/dev/null)
    DMI_SYSTEM_PRODUCT_NAME=$(cat /sys/class/dmi/id/product_name 2>/dev/null)
    DMI_SYSTEM_PRODUCT_VERSION=$(cat /sys/class/dmi/id/product_version 2>/dev/null)
    DMI_SYSTEM_FIRMWARE_VERSION=$(cat /sys/class/dmi/id/bios_version 2>/dev/null)
elif [ -x $DMIDECODE ]; then
    DMI_SYSTEM_MANUFACTURER=$($DMIDECODE -s system-manufacturer 2>/dev/null)
    DMI_SYSTEM_PRODUCT_NAME=$($DMIDECODE -s system-product-name 2>/dev/null)
    DMI_SYSTEM_PRODUCT_VERSION=$($DMIDECODE -s system-version 2>/dev/null)
    DMI_SYSTEM_FIRMWARE_VERSION=$($DMIDECODE -s bios-version 2>/dev/null)
fi

cat /proc/asound/modules 2>/dev/null|awk {'print $2'}>$TEMPDIR/alsamodules.tmp
cat /proc/asound/cards >$TEMPDIR/alsacards.tmp
if [[ ! -z "$LSPCI" ]]; then
lspci |grep -i "multi\|audio">$TEMPDIR/lspci.tmp
fi

#Check for HDA-Intel cards codec#*
cat /proc/asound/card*/codec\#* > $TEMPDIR/alsa-hda-intel.tmp 2> /dev/null

#Check for AC97 cards codec
cat /proc/asound/card*/codec97\#0/ac97\#0-0 > $TEMPDIR/alsa-ac97.tmp 2> /dev/null
cat /proc/asound/card*/codec97\#0/ac97\#0-0+regs > $TEMPDIR/alsa-ac97-regs.tmp 2> /dev/null

#Check for USB mixer setup
cat /proc/asound/card*/usbmixer > $TEMPDIR/alsa-usbmixer.tmp 2> /dev/null

#Fetch the info, and put it in $FILE in a nice readable format.
if [[ -z $PASTEBIN ]]; then
echo "upload=true&script=true&cardinfo=" > $FILE
else
echo "name=$USER&type=33&description=/tmp/alsa-info.txt&expiry=&s=Submit+Post&content=" > $FILE
fi
echo "!!################################" >> $FILE
echo "!!ALSA Information Script v $SCRIPT_VERSION" >> $FILE
echo "!!################################" >> $FILE
echo "" >> $FILE
echo "!!Script ran on: `LANG=C TZ=UTC date`" >> $FILE
echo "" >> $FILE
echo "" >> $FILE
echo "!!Linux Distribution" >> $FILE
echo "!!------------------" >> $FILE
echo "" >> $FILE
echo $DISTRO >> $FILE
echo "" >> $FILE
echo "" >> $FILE
echo "!!DMI Information" >> $FILE
echo "!!---------------" >> $FILE
echo "" >> $FILE
echo "Manufacturer: $DMI_SYSTEM_MANUFACTURER" >> $FILE
echo "Product Name: $DMI_SYSTEM_PRODUCT_NAME" >> $FILE
echo "Product Version: $DMI_SYSTEM_PRODUCT_VERSION" >> $FILE
echo "Firmware Version: $DMI_SYSTEM_FIRMWARE_VERSION" >> $FILE
echo "" >> $FILE
echo "" >> $FILE
echo "!!Kernel Information" >> $FILE
echo "!!------------------" >> $FILE
echo "" >> $FILE
echo "Kernel release: $KERNEL_VERSION" >> $FILE
echo "Operating System: $KERNEL_OS" >> $FILE
echo "Architecture: $KERNEL_MACHINE" >> $FILE
echo "Processor: $KERNEL_PROCESSOR" >> $FILE
echo "SMP Enabled: $KERNEL_SMP" >> $FILE
echo "" >> $FILE
echo "" >> $FILE
echo "!!ALSA Version" >> $FILE
echo "!!------------" >> $FILE
echo "" >> $FILE
echo "Driver version: $ALSA_DRIVER_VERSION" >> $FILE
echo "Library version: $ALSA_LIB_VERSION" >> $FILE
echo "Utilities version: $ALSA_UTILS_VERSION" >> $FILE
echo "" >> $FILE
echo "" >> $FILE
echo "!!Loaded ALSA modules" >> $FILE
echo "!!-------------------" >> $FILE
echo "" >> $FILE
cat $TEMPDIR/alsamodules.tmp >> $FILE
echo "" >> $FILE
echo "" >> $FILE
echo "!!Sound Servers on this system" >> $FILE
echo "!!----------------------------" >> $FILE
echo "" >> $FILE
if [[ -n $PAINST ]];then
[[ `pgrep '^(.*/)?pulseaudio$'` ]] && PARUNNING="Yes" || PARUNNING="No"
echo "Pulseaudio:" >> $FILE
echo " Installed - Yes ($PAINST)" >> $FILE
echo " Running - $PARUNNING" >> $FILE
echo "" >> $FILE
fi
if [[ -n $ESDINST ]];then
[[ `pgrep '^(.*/)?esd$'` ]] && ESDRUNNING="Yes" || ESDRUNNING="No"
echo "ESound Daemon:" >> $FILE
echo " Installed - Yes ($ESDINST)" >> $FILE
echo " Running - $ESDRUNNING" >> $FILE
echo "" >> $FILE
fi
if [[ -n $ARTSINST ]];then
[[ `pgrep '^(.*/)?artsd$'` ]] && ARTSRUNNING="Yes" || ARTSRUNNING="No"
echo "aRts:" >> $FILE
echo " Installed - Yes ($ARTSINST)" >> $FILE
echo " Running - $ARTSRUNNING" >> $FILE
echo "" >> $FILE
fi
if [[ -n $JACKINST ]];then
[[ `pgrep '^(.*/)?jackd$'` ]] && JACKRUNNING="Yes" || JACKRUNNING="No"
echo "Jack:" >> $FILE
echo " Installed - Yes ($JACKINST)" >> $FILE
echo " Running - $JACKRUNNING" >> $FILE
echo "" >> $FILE
fi
if [[ -n $ROARINST ]];then
[[ `pgrep '^(.*/)?roard$'` ]] && ROARRUNNING="Yes" || ROARRUNNING="No"
echo "RoarAudio:" >> $FILE
echo " Installed - Yes ($ROARINST)" >> $FILE
echo " Running - $ROARRUNNING" >> $FILE
echo "" >> $FILE
fi
if [[ -z "$PAINST" && -z "$ESDINST" && -z "$ARTSINST" && -z "$JACKINST" && -z "$ROARINST" ]];then
echo "No sound servers found." >> $FILE
echo "" >> $FILE
fi
echo "" >> $FILE
echo "!!Soundcards recognised by ALSA" >> $FILE
echo "!!-----------------------------" >> $FILE
echo "" >> $FILE
cat $TEMPDIR/alsacards.tmp >> $FILE
echo "" >> $FILE
echo "" >> $FILE

if [[ ! -z "$LSPCI" ]]; then
echo "!!PCI Soundcards installed in the system" >> $FILE
echo "!!--------------------------------------" >> $FILE
echo "" >> $FILE
cat $TEMPDIR/lspci.tmp >> $FILE
echo "" >> $FILE
echo "" >> $FILE
echo "!!Advanced information - PCI Vendor/Device/Subsystem ID's" >> $FILE
echo "!!-------------------------------------------------------" >> $FILE
echo "" >> $FILE
lspci -vvn |grep -A1 040[1-3] >> $FILE
echo "" >> $FILE
echo "" >> $FILE
fi

if [ "$SNDOPTIONS" ]
then
echo "!!Modprobe options (Sound related)" >> $FILE
echo "!!--------------------------------" >> $FILE
echo "" >> $FILE
modprobe -c|sed -n 's/^options \(snd[-_][^ ]*\)/\1:/p' >> $FILE
echo "" >> $FILE
echo "" >> $FILE
fi

if [ -d "$SYSFS" ]
then
echo "!!Loaded sound module options" >> $FILE
echo "!!---------------------------" >> $FILE
echo "" >> $FILE
for mod in `cat /proc/asound/modules|awk {'print $2'}`;do
echo "!!Module: $mod" >> $FILE
for params in `echo $SYSFS/module/$mod/parameters/*`; do
 echo -ne "\t";
 echo "$params : `cat $params`" | sed 's:.*/::';
done >> $FILE
echo "" >> $FILE
done
echo "" >> $FILE
fi

if [ -s "$TEMPDIR/alsa-hda-intel.tmp" ]; then
 echo "!!HDA-Intel Codec information" >> $FILE
 echo "!!---------------------------" >> $FILE
 echo "--startcollapse--" >> $FILE
 echo "" >> $FILE
 cat $TEMPDIR/alsa-hda-intel.tmp >> $FILE
 echo "--endcollapse--" >> $FILE
 echo "" >> $FILE
 echo "" >> $FILE
fi

if [ -s "$TEMPDIR/alsa-ac97.tmp" ]; then
        echo "!!AC97 Codec information" >> $FILE
        echo "!!----------------------" >> $FILE
        echo "--startcollapse--" >> $FILE
        echo "" >> $FILE
        cat $TEMPDIR/alsa-ac97.tmp >> $FILE
        echo "" >> $FILE
        cat $TEMPDIR/alsa-ac97-regs.tmp >> $FILE
        echo "--endcollapse--" >> $FILE
 echo "" >> $FILE
 echo "" >> $FILE
fi

if [ -s "$TEMPDIR/alsa-usbmixer.tmp" ]; then
        echo "!!USB Mixer information" >> $FILE
        echo "!!---------------------" >> $FILE
        echo "--startcollapse--" >> $FILE
        echo "" >> $FILE
        cat $TEMPDIR/alsa-usbmixer.tmp >> $FILE
        echo "--endcollapse--" >> $FILE
 echo "" >> $FILE
 echo "" >> $FILE
fi

#If no command line options are specified, then run as though --with-all was specified
if [ -z "$1" ]; then
 update
 pbcheck
fi

fi # proceed

#loop through command line arguments, until none are left.
if [ -n "$1" ]; then
 until [ -z "$1" ]
 do
 case "$1" in
  --pastebin)
          update
          pbcheck
   ;;
  --update)
   update
   exit
   ;;
  --upload)
   UPLOAD="yes"
   ;;
  --no-upload)
   UPLOAD="no"
   ;;
  --output)
   shift
   NFILE="$1"
   KEEP_OUTPUT="yes"
   ;;
  --debug)
   echo "Debugging enabled. $FILE and $TEMPDIR will not be deleted"
   KEEP_FILES="yes"
   echo ""
   ;;
  --with-all)
   withall
   ;;
  --with-aplay)
   withaplay
   WITHALL="no"
   ;;
  --with-amixer)
   withamixer
   WITHALL="no"
   ;;
  --with-alsactl)
   withalsactl
   WITHALL="no"
   ;;
  --with-devices)
   withdevices
   WITHALL="no"
   ;;
  --with-dmesg)
   withdmesg
   WITHALL="no"
   ;;
  --with-configs)
   WITHALL="no"
   if [[ -e $HOME/.asoundrc ]] || [[ -e /etc/asound.conf ]]
   then
    echo "!!ALSA configuration files" >> $FILE
    echo "!!------------------------" >> $FILE
    echo "" >> $FILE

    #Check for ~/.asoundrc
    if [[ -e $HOME/.asoundrc ]]
    then
     echo "!!User specific config file ($HOME/.asoundrc)" >> $FILE
     echo "" >> $FILE
     cat $HOME/.asoundrc >> $FILE
     echo "" >> $FILE
     echo "" >> $FILE
    fi

    #Check for /etc/asound.conf
    if [[ -e /etc/asound.conf ]]
    then
     echo "!!System wide config file (/etc/asound.conf)" >> $FILE
     echo "" >> $FILE
     cat /etc/asound.conf >> $FILE
     echo "" >> $FILE
     echo "" >> $FILE
    fi
   fi
   ;;
  --stdout)
   UPLOAD="no"
   if [ -z "$WITHALL" ]; then
    withall
   fi
   cat $FILE
   rm $FILE
   ;;
  --about)
   echo "Written/Tested by the following users of #alsa on irc.freenode.net:"
   echo ""
   echo " wishie - Script author and developer / Testing"
   echo " crimsun - Various script ideas / Testing"
   echo " gnubien - Various script ideas / Testing"
   echo " GrueMaster - HDA Intel specific items / Testing"
   echo " olegfink - Script update function"
   echo " TheMuso - display to stdout functionality"
   exit 0
   ;;
  *)
   echo "alsa-info.sh version $SCRIPT_VERSION"
   echo ""
   echo "Available options:"
   echo " --with-aplay (includes the output of aplay -l)"
   echo " --with-amixer (includes the output of amixer)"
   echo " --with-alsactl (includes the output of alsactl)"
   echo " --with-configs (includes the output of ~/.asoundrc and"
   echo " /etc/asound.conf if they exist)"
   echo " --with-devices (shows the device nodes in /dev/snd/)"
   echo " --with-dmesg (shows the ALSA/HDA kernel messages)"
   echo ""
   echo " --output FILE (specify the file to output for no-upload mode)"
   echo " --update (check server for script updates)"
   echo " --upload (upload contents to remote server)"
   echo " --no-upload (do not upload contents to remote server)"
   echo " --pastebin (use http://pastebin.ca) as remote server"
   echo " instead www.alsa-project.org"
   echo " --stdout (print alsa information to standard output"
   echo " instead of a file)"
   echo " --about (show some information about the script)"
   echo " --debug (will run the script as normal, but will not"
   echo " delete $FILE)"
   exit 0
   ;;
 esac
 shift 1
 done
fi

if [ "$PROCEED" = "no" ]; then
 exit 1
fi

if [ -z "$WITHALL" ]; then
 withall
fi

if [ "$UPLOAD" = "ask" ]; then
 if [ -n "$DIALOG" ]; then
  dialog --backtitle "$BGTITLE" --title "Information collected" --yes-label " UPLOAD / SHARE " --no-label " SAVE LOCALLY " --defaultno --yesno "\n\nAutomatically upload ALSA information to $WWWSERVICE?" 10 80
  DIALOG_EXIT_CODE=$?
  if [ $DIALOG_EXIT_CODE != 0 ]; then
   UPLOAD="no"
  else
   UPLOAD="yes"
  fi
 else
  echo -n "Automatically upload ALSA information to $WWWSERVICE? [y/N] : "
  read -e CONFIRM
  if [ "$CONFIRM" != "y" ]; then
   UPLOAD="no"
  else
   UPLOAD="yes"
  fi
 fi

fi

if [ "$UPLOAD" = "no" ]; then

 if [ -z "$TOSTDOUT" ]; then
  mv -f $FILE $NFILE || exit 1
  KEEP_OUTPUT="yes"
 fi

 if [[ -n $DIALOG ]]
 then
  if [[ -n $PBERROR ]]; then
   dialog --backtitle "$BGTITLE" --title "Information collected" --msgbox "An error occurred while contacting the $WWWSERVICE.\n Your information was NOT automatically uploaded.\n\nYour ALSA information is in $NFILE" 10 100
  else
   dialog --backtitle "$BGTITLE" --title "Information collected" --msgbox "\n\nYour ALSA information is in $NFILE" 10 60
  fi
 else
  echo

  if [[ -n $PBERROR ]]; then
   echo "An error occurred while contacting the $WWWSERVICE."
   echo "Your information was NOT automatically uploaded."
   echo ""
   echo "Your ALSA information is in $NFILE"
   echo ""
  else
   if [ -z "$TOSTDOUT" ]; then
    echo ""
    echo "Your ALSA information is in $NFILE"
    echo ""
   fi
  fi
 fi

 exit

fi # UPLOAD

#Test that wget is installed, and supports --post-file. Upload $FILE if it does, and prompt user to upload file if it doesnt.
if [[ -n "${WGET}" ]] && [[ -x "${WGET}" ]] && [[ `wget --help |grep post-file` ]]
then

if [[ -n $DIALOG ]]
then

if [[ -z $PASTEBIN ]]; then
 wget -O - --tries=5 --timeout=60 --post-file=$FILE "http://www.alsa-project.org/cardinfo-db/" &>$TEMPDIR/wget.tmp || echo "Upload failed; exit"
 { for i in 10 20 30 40 50 60 70 80 90; do
  echo $i
  sleep 0.2
 done
 echo; } |dialog --backtitle "$BGTITLE" --guage "Uploading information to www.alsa-project.org ..." 6 70 0
else
 wget -O - --tries=5 --timeout=60 --post-file=$FILE "http://pastebin.ca/quiet-paste.php?api=$PASTEBINKEY&encrypt=t&encryptpw=blahblah" &>$TEMPDIR/wget.tmp || echo "Upload failed; exit"
 { for i in 10 20 30 40 50 60 70 80 90; do
  echo $i
  sleep 0.2
 done
 echo; } |dialog --backtitle "$BGTITLE" --guage "Uploading information to www.pastebin.ca ..." 6 70 0
fi

dialog --backtitle "$BGTITLE" --title "Information uploaded" --yesno "Would you like to see the uploaded information?" 5 100
DIALOG_EXIT_CODE=$?
if [ $DIALOG_EXIT_CODE = 0 ]; then
 grep -v "alsa-info.txt" $FILE >$TEMPDIR/uploaded.txt
 dialog --backtitle "$BGTITLE" --textbox $TEMPDIR/uploaded.txt 0 0
fi

clear

# no dialog
else

if [[ -z $PASTEBIN ]]; then
 echo -n "Uploading information to www.alsa-project.org ... "
 wget -O - --tries=5 --timeout=60 --post-file=$FILE http://www.alsa-project.org/cardinfo-db/ &>$TEMPDIR/wget.tmp &
else
 echo -n "Uploading information to www.pastebin.ca ... "
 wget -O - --tries=5 --timeout=60 --post-file=$FILE http://pastebin.ca/quiet-paste.php?api=$PASTEBINKEY &>$TEMPDIR/wget.tmp &
fi

#Progess spinner for wget transfer.
i=1
sp="/-\|"
echo -n ' '
while pgrep wget &>/dev/null
do
 echo -en "\b${sp:i++%${#sp}:1}"
done

echo -e "\b Done!"
echo ""

fi #dialog

#See if tput is available, and use it if it is.
if [ -n "$TPUT" ]; then
 if [[ -z $PASTEBIN ]]; then
  FINAL_URL=`tput setaf 1; grep "SUCCESS:" $TEMPDIR/wget.tmp | cut -d ' ' -f 2 ; tput sgr0`
 else
  FINAL_URL=`tput setaf 1; grep "SUCCESS:" $TEMPDIR/wget.tmp | sed -n 's/.*\:\([0-9]\+\).*/http:\/\/pastebin.ca\/\1/p';tput sgr0`
 fi
else
 if [[ -z $PASTEBIN ]]; then
  FINAL_URL=`grep "SUCCESS:" $TEMPDIR/wget.tmp | cut -d ' ' -f 2`
 else
  FINAL_URL=`grep "SUCCESS:" $TEMPDIR/wget.tmp | sed -n 's/.*\:\([0-9]\+\).*/http:\/\/pastebin.ca\/\1/p'`
 fi
fi

# Output the URL of the uploaded file.
echo "Your ALSA information is located at $FINAL_URL"
echo "Please inform the person helping you."
echo ""

# We couldnt find a suitable wget, so tell the user to upload manually.
else
 mv -f $FILE $NFILE || exit 1
 KEEP_OUTPUT="yes"
 if [[ -z $DIALOG ]]
 then
  if [[ -z $PASTEBIN ]]; then
  echo ""
  echo "Could not automatically upload output to http://www.alsa-project.org"
  echo "Possible reasons are:"
  echo " 1. Couldnt find 'wget' in your PATH"
  echo " 2. Your version of wget is less than 1.8.2"
  echo ""
  echo "Please manually upload $NFILE to http://www.alsa-project.org/cardinfo-db/ and submit your post."
  echo ""
  else
  echo ""
  echo "Could not automatically upload output to http://www.pastebin.ca"
  echo "Possible reasons are:"
  echo " 1. Couldnt find 'wget' in your PATH"
  echo " 2. Your version of wget is less than 1.8.2"
  echo ""
  echo "Please manually upload $NFILE to http://www.pastebin.ca/upload.php and submit your post."
  echo ""
  fi
 else
  if [[ -z $PASTEBIN ]]; then
   dialog --backtitle "$BGTITLE" --msgbox "Could not automatically upload output to http://www.alsa-project.org.\nPossible reasons are:\n\n 1. Couldn't find 'wget' in your PATH\n 2. Your version of wget is less than 1.8.2\n\nPlease manually upload $NFILE to http://www.alsa-project,org/cardinfo-db/ and submit your post." 25 100
  else
   dialog --backtitle "$BGTITLE" --msgbox "Could not automatically upload output to http://www.pastebin.ca.\nPossible reasons are:\n\n 1. Couldn't find 'wget' in your PATH\n 2. Your version of wget is less than 1.8.2\n\nPlease manually upload $NFILE to http://www.pastebin.ca/upload.php and submit your post." 25 100
  fi
 fi
fi

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#4

Yes that's the file. You clicked the link instead of thinking. Copy the text as one command (ignore the fact that your browser is showing a blue URL, it's part of the command). Once you have copied the text, press CTRL + ALT + T and paste the command to the terminal. Press ENTER and then select to upload the text to the Web. A URL will be generated. Copy that and paste as an update on:
https://answers.launchpad.net/ubuntu/+source/alsa-driver/+question/294218

Revision history for this message
chris christensen (chris220a) said :
#5

Thinking may have come into play. I did get the code loaded, it seemed to run. I rebooted after it was install, but! it didn't work. I mite have made some changes to the system, I don't know if that impacted the results. I did update my Intel chip set during this phase, it was out of date. I also installed 16.04 and ran this code. The screen after loading 16.04 mentioned with errors. I did try some command, hope that didn't effect anything. I used a few commands like force-reload and other, from some of the question and answer from these pages. When I first open the program I had a icon on the top right side that look like a speaker, it's gone and i don't know how to bring it back without reinstall the whole system. It's probably something I accidentlly remove. I have load version 10, 12, 14, and 16, but I have loaded 16 twice. The reason I through the next version would correct the issues. I found a web site on when I was on version 12, I don't remember its name (that a bumber) that it work this was right after I updated the Intel chip.
Thank you for all your help.

Revision history for this message
chris christensen (chris220a) said :
#6

chris@chris-506GR:~$ cat /proc/asound/{version,cards,devices,hwdep,pcm,seq/clients}; sudo rm /etc/asound.conf; sudo rm -r ~/.pulse ~/.asound* ;sudo rm ~/.pulse-cookie; sudo apt-get update; sudo apt-get install aptitude; sudo aptitude install paman gnome-alsamixer libasound2-plugins padevchooser libsdl1.2debian-pulseaudio; sudo lshw -short;ls -lart /dev/snd; find /lib/modules/`uname -r` | grep snd ;cat /dev/sndstat; lspci -nn; lsusb; sudo which alsactl; sudo fuser -v /dev/dsp /dev/snd/* ; dpkg -S bin/slmodemd; dmesg | egrep 'EMU|probe|emu|ALSA|alsa|ac97|udi|snd|ound|irmware'; sudo /etc/init.d/sl-modem-daemon status; sudo grep model /etc/modprobe.d/* ; sudo dmidecode|egrep 'anufact|roduct|erial|elease'; lsmod | egrep 'snd|usb|midi|udio'; pacmd list-sinks; aplay -l; sudo alsa force-reload; ubuntu-support-status ; sudo lshw -C sound
Advanced Linux Sound Architecture Driver Version k4.4.0-22-generic.
 0 [Intel ]: HDA-Intel - HDA Intel
                      HDA Intel at 0x501c0000 irq 28
  1: : sequencer
  2: [ 0] : control
  3: [ 0- 2]: hardware dependent
 33: : timer
00-02: HDA Codec 2
Client info
  cur clients : 1
  peak clients : 1
  max clients : 192

Client 0 : "System" [Kernel]
  Port 0 : "Timer" (Rwe-)
  Port 1 : "Announce" (R-e-)
Client 14 : "Midi Through" [Kernel]
  Port 0 : "Midi Through Port-0" (RWe-)
[sudo] password for chris:
rm: cannot remove '/home/chris/.pulse': No such file or directory
rm: cannot remove '/home/chris/.asound*': No such file or directory
rm: cannot remove '/home/chris/.pulse-cookie': No such file or directory
Hit:1 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu xenial InRelease
Ign:3 http://extras.ubuntu.com/ubuntu xenial InRelease
Ign:4 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial InRelease
Get:5 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [94.5 kB]
Ign:6 http://extras.ubuntu.com/ubuntu xenial Release
Ign:7 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial Release
Ign:8 http://extras.ubuntu.com/ubuntu xenial/main Sources
Hit:9 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease
Ign:10 http://extras.ubuntu.com/ubuntu xenial/main i386 Packages
Ign:11 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 Packages
Ign:12 http://extras.ubuntu.com/ubuntu xenial/main all Packages
Ign:13 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main all Packages
Ign:14 http://extras.ubuntu.com/ubuntu xenial/main Translation-en_US
Ign:15 http://extras.ubuntu.com/ubuntu xenial/main Translation-en
Ign:16 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en_US
Ign:17 http://extras.ubuntu.com/ubuntu xenial/main i386 DEP-11 Metadata
Ign:18 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en
Ign:19 http://extras.ubuntu.com/ubuntu xenial/main DEP-11 64x64 Icons
Ign:20 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 DEP-11 Metadata
Ign:8 http://extras.ubuntu.com/ubuntu xenial/main Sources
Ign:10 http://extras.ubuntu.com/ubuntu xenial/main i386 Packages
Ign:21 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main DEP-11 64x64 Icons
Ign:12 http://extras.ubuntu.com/ubuntu xenial/main all Packages
Ign:11 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 Packages
Ign:14 http://extras.ubuntu.com/ubuntu xenial/main Translation-en_US
Ign:15 http://extras.ubuntu.com/ubuntu xenial/main Translation-en
Ign:13 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main all Packages
Ign:17 http://extras.ubuntu.com/ubuntu xenial/main i386 DEP-11 Metadata
Ign:16 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en_US
Ign:19 http://extras.ubuntu.com/ubuntu xenial/main DEP-11 64x64 Icons
Ign:8 http://extras.ubuntu.com/ubuntu xenial/main Sources
Ign:18 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en
Ign:10 http://extras.ubuntu.com/ubuntu xenial/main i386 Packages
Ign:20 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 DEP-11 Metadata
Ign:12 http://extras.ubuntu.com/ubuntu xenial/main all Packages
Ign:21 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main DEP-11 64x64 Icons
Ign:14 http://extras.ubuntu.com/ubuntu xenial/main Translation-en_US
Ign:15 http://extras.ubuntu.com/ubuntu xenial/main Translation-en
Ign:11 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 Packages
Ign:17 http://extras.ubuntu.com/ubuntu xenial/main i386 DEP-11 Metadata
Ign:13 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main all Packages
Ign:19 http://extras.ubuntu.com/ubuntu xenial/main DEP-11 64x64 Icons
Ign:8 http://extras.ubuntu.com/ubuntu xenial/main Sources
Ign:16 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en_US
Ign:10 http://extras.ubuntu.com/ubuntu xenial/main i386 Packages
Ign:18 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en
Ign:20 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 DEP-11 Metadata
Ign:12 http://extras.ubuntu.com/ubuntu xenial/main all Packages
Ign:21 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main DEP-11 64x64 Icons
Ign:14 http://extras.ubuntu.com/ubuntu xenial/main Translation-en_US
Ign:15 http://extras.ubuntu.com/ubuntu xenial/main Translation-en
Ign:11 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 Packages
Ign:17 http://extras.ubuntu.com/ubuntu xenial/main i386 DEP-11 Metadata
Ign:13 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main all Packages
Ign:19 http://extras.ubuntu.com/ubuntu xenial/main DEP-11 64x64 Icons
Ign:8 http://extras.ubuntu.com/ubuntu xenial/main Sources
Ign:10 http://extras.ubuntu.com/ubuntu xenial/main i386 Packages
Ign:16 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en_US
Ign:12 http://extras.ubuntu.com/ubuntu xenial/main all Packages
Ign:14 http://extras.ubuntu.com/ubuntu xenial/main Translation-en_US
Ign:18 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en
Ign:15 http://extras.ubuntu.com/ubuntu xenial/main Translation-en
Ign:20 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 DEP-11 Metadata
Ign:17 http://extras.ubuntu.com/ubuntu xenial/main i386 DEP-11 Metadata
Ign:21 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main DEP-11 64x64 Icons
Ign:19 http://extras.ubuntu.com/ubuntu xenial/main DEP-11 64x64 Icons
Err:8 http://extras.ubuntu.com/ubuntu xenial/main Sources
  404 Not Found [IP: 91.189.92.152 80]
Ign:11 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 Packages
Err:10 http://extras.ubuntu.com/ubuntu xenial/main i386 Packages
  404 Not Found [IP: 91.189.92.152 80]
Ign:13 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main all Packages
Ign:12 http://extras.ubuntu.com/ubuntu xenial/main all Packages
Ign:14 http://extras.ubuntu.com/ubuntu xenial/main Translation-en_US
Ign:16 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en_US
Ign:15 http://extras.ubuntu.com/ubuntu xenial/main Translation-en
Ign:18 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en
Ign:17 http://extras.ubuntu.com/ubuntu xenial/main i386 DEP-11 Metadata
Ign:19 http://extras.ubuntu.com/ubuntu xenial/main DEP-11 64x64 Icons
Ign:20 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 DEP-11 Metadata
Ign:21 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main DEP-11 64x64 Icons
Err:11 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 Packages
  404 Not Found
Ign:13 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main all Packages
Ign:16 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en_US
Ign:18 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main Translation-en
Ign:20 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main i386 DEP-11 Metadata
Ign:21 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial/main DEP-11 64x64 Icons
Fetched 94.5 kB in 7s (13.0 kB/s)
Reading package lists... Done
W: The repository 'http://extras.ubuntu.com/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/xenial/main/source/Sources 404 Not Found [IP: 91.189.92.152 80]
E: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/xenial/main/binary-i386/Packages 404 Not Found [IP: 91.189.92.152 80]
E: Failed to fetch http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu/dists/xenial/main/binary-i386/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  signon-keyring-extension
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  aptitude-common libcwidget3v5
Suggested packages:
  apt-xapian-index aptitude-doc-en | aptitude-doc debtags tasksel
  libcwidget-dev
The following NEW packages will be installed:
  aptitude aptitude-common libcwidget3v5
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,400 kB of archives.
After this operation, 9,859 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main i386 aptitude-common all 0.7.4-2ubuntu2 [747 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libcwidget3v5 i386 0.5.17-4ubuntu2 [299 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu xenial/main i386 aptitude i386 0.7.4-2ubuntu2 [1,354 kB]
Fetched 2,400 kB in 2s (1,141 kB/s)
Selecting previously unselected package aptitude-common.
(Reading database ... 218744 files and directories currently installed.)
Preparing to unpack .../aptitude-common_0.7.4-2ubuntu2_all.deb ...
Unpacking aptitude-common (0.7.4-2ubuntu2) ...
Selecting previously unselected package libcwidget3v5:i386.
Preparing to unpack .../libcwidget3v5_0.5.17-4ubuntu2_i386.deb ...
Unpacking libcwidget3v5:i386 (0.5.17-4ubuntu2) ...
Selecting previously unselected package aptitude.
Preparing to unpack .../aptitude_0.7.4-2ubuntu2_i386.deb ...
Unpacking aptitude (0.7.4-2ubuntu2) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...
Setting up aptitude-common (0.7.4-2ubuntu2) ...
Setting up libcwidget3v5:i386 (0.5.17-4ubuntu2) ...
Setting up aptitude (0.7.4-2ubuntu2) ...
update-alternatives: using /usr/bin/aptitude-curses to provide /usr/bin/aptitude (aptitude) in auto mode
Processing triggers for libc-bin (2.23-0ubuntu3) ...
libasound2-plugins is already installed at the requested version (1.1.0-0ubuntu1)
No candidate version found for padevchooser
No candidate version found for libsdl1.2debian-pulseaudio
libasound2-plugins is already installed at the requested version (1.1.0-0ubuntu1)
No candidate version found for padevchooser
No candidate version found for libsdl1.2debian-pulseaudio
The following NEW packages will be installed:
  gnome-alsamixer libbonobo2-0{a} libbonobo2-common{a} libbonoboui2-0{a}
  libbonoboui2-common{a} libglade2-0{a} libglademm-2.4-1v5{a}
  libgnome-2-0{a} libgnome2-0{a} libgnome2-bin{a} libgnome2-common{a}
  libgnomecanvas2-0{a} libgnomecanvas2-common{a} libgnomeui-0{a}
  libgnomeui-common{a} libgnomevfs2-0{a} libgnomevfs2-common{a}
  libgtkmm-2.4-1v5{a} liborbit-2-0{a} paman pavumeter{a}
The following packages will be REMOVED:
  signon-keyring-extension{u}
0 packages upgraded, 21 newly installed, 1 to remove and 0 not upgraded.
Need to get 2,109 kB of archives. After unpacking 12.6 MB will be used.
Do you want to continue? [Y/n/?] y
Get: 1 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libbonobo2-common all 2.32.1-3 [34.7 kB]
Get: 2 http://us.archive.ubuntu.com/ubuntu xenial/main i386 liborbit-2-0 i386 1:2.14.19-1build1 [143 kB]
Get: 3 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libbonobo2-0 i386 2.32.1-3 [198 kB]
Get: 4 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libglade2-0 i386 1:2.6.4-2 [43.7 kB]
Get: 5 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnomecanvas2-common all 2.30.3-2 [9,080 B]
Get: 6 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnomecanvas2-0 i386 2.30.3-2 [80.9 kB]
Get: 7 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnomevfs2-common i386 1:2.24.4-6.1ubuntu1 [23.0 kB]
Get: 8 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnomevfs2-0 i386 1:2.24.4-6.1ubuntu1 [235 kB]
Get: 9 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnome2-common all 2.32.1-5ubuntu1 [33.5 kB]
Get: 10 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnome-2-0 i386 2.32.1-5ubuntu1 [56.1 kB]
Get: 11 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnome2-bin i386 2.32.1-5ubuntu1 [4,984 B]
Get: 12 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnome2-0 i386 2.32.1-5ubuntu1 [1,658 B]
Get: 13 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libbonoboui2-common all 2.24.5-3ubuntu1 [11.9 kB]
Get: 14 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libbonoboui2-0 i386 2.24.5-3ubuntu1 [166 kB]
Get: 15 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnomeui-common all 2.24.5-3.1 [16.3 kB]
Get: 16 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgnomeui-0 i386 2.24.5-3.1 [218 kB]
Get: 17 http://us.archive.ubuntu.com/ubuntu xenial/universe i386 gnome-alsamixer i386 0.9.7~cvs.20060916.ds.1-5 [51.4 kB]
Get: 18 http://us.archive.ubuntu.com/ubuntu xenial/main i386 libgtkmm-2.4-1v5 i386 1:2.24.4-2 [672 kB]
Get: 19 http://us.archive.ubuntu.com/ubuntu xenial/universe i386 libglademm-2.4-1v5 i386 2.6.7-5 [18.5 kB]
Get: 20 http://us.archive.ubuntu.com/ubuntu xenial/universe i386 paman i386 0.9.4-1ubuntu5 [68.2 kB]
Get: 21 http://us.archive.ubuntu.com/ubuntu xenial/universe i386 pavumeter i386 0.9.3-4build1 [23.5 kB]
Fetched 2,109 kB in 1s (1,437 kB/s)
(Reading database ... 218872 files and directories currently installed.)
Removing signon-keyring-extension (0.6+14.10.20140513-0ubuntu2) ...
Selecting previously unselected package libbonobo2-common.
(Reading database ... 218868 files and directories currently installed.)
Preparing to unpack .../libbonobo2-common_2.32.1-3_all.deb ...
Unpacking libbonobo2-common (2.32.1-3) ...
Selecting previously unselected package liborbit-2-0:i386.
Preparing to unpack .../liborbit-2-0_1%3a2.14.19-1build1_i386.deb ...
Unpacking liborbit-2-0:i386 (1:2.14.19-1build1) ...
Selecting previously unselected package libbonobo2-0:i386.
Preparing to unpack .../libbonobo2-0_2.32.1-3_i386.deb ...
Unpacking libbonobo2-0:i386 (2.32.1-3) ...
Selecting previously unselected package libglade2-0:i386.
Preparing to unpack .../libglade2-0_1%3a2.6.4-2_i386.deb ...
Unpacking libglade2-0:i386 (1:2.6.4-2) ...
Selecting previously unselected package libgnomecanvas2-common.
Preparing to unpack .../libgnomecanvas2-common_2.30.3-2_all.deb ...
Unpacking libgnomecanvas2-common (2.30.3-2) ...
Selecting previously unselected package libgnomecanvas2-0:i386.
Preparing to unpack .../libgnomecanvas2-0_2.30.3-2_i386.deb ...
Unpacking libgnomecanvas2-0:i386 (2.30.3-2) ...
Selecting previously unselected package libgnomevfs2-common.
Preparing to unpack .../libgnomevfs2-common_1%3a2.24.4-6.1ubuntu1_i386.deb ...
Unpacking libgnomevfs2-common (1:2.24.4-6.1ubuntu1) ...
Selecting previously unselected package libgnomevfs2-0:i386.
Preparing to unpack .../libgnomevfs2-0_1%3a2.24.4-6.1ubuntu1_i386.deb ...
Unpacking libgnomevfs2-0:i386 (1:2.24.4-6.1ubuntu1) ...
Selecting previously unselected package libgnome2-common.
Preparing to unpack .../libgnome2-common_2.32.1-5ubuntu1_all.deb ...
Unpacking libgnome2-common (2.32.1-5ubuntu1) ...
Selecting previously unselected package libgnome-2-0:i386.
Preparing to unpack .../libgnome-2-0_2.32.1-5ubuntu1_i386.deb ...
Unpacking libgnome-2-0:i386 (2.32.1-5ubuntu1) ...
Selecting previously unselected package libgnome2-bin.
Preparing to unpack .../libgnome2-bin_2.32.1-5ubuntu1_i386.deb ...
Unpacking libgnome2-bin (2.32.1-5ubuntu1) ...
Selecting previously unselected package libgnome2-0:i386.
Preparing to unpack .../libgnome2-0_2.32.1-5ubuntu1_i386.deb ...
Unpacking libgnome2-0:i386 (2.32.1-5ubuntu1) ...
Selecting previously unselected package libbonoboui2-common.
Preparing to unpack .../libbonoboui2-common_2.24.5-3ubuntu1_all.deb ...
Unpacking libbonoboui2-common (2.24.5-3ubuntu1) ...
Selecting previously unselected package libbonoboui2-0:i386.
Preparing to unpack .../libbonoboui2-0_2.24.5-3ubuntu1_i386.deb ...
Unpacking libbonoboui2-0:i386 (2.24.5-3ubuntu1) ...
Selecting previously unselected package libgnomeui-common.
Preparing to unpack .../libgnomeui-common_2.24.5-3.1_all.deb ...
Unpacking libgnomeui-common (2.24.5-3.1) ...
Selecting previously unselected package libgnomeui-0:i386.
Preparing to unpack .../libgnomeui-0_2.24.5-3.1_i386.deb ...
Unpacking libgnomeui-0:i386 (2.24.5-3.1) ...
Selecting previously unselected package gnome-alsamixer.
Preparing to unpack .../gnome-alsamixer_0.9.7~cvs.20060916.ds.1-5_i386.deb ...
Unpacking gnome-alsamixer (0.9.7~cvs.20060916.ds.1-5) ...
Selecting previously unselected package libgtkmm-2.4-1v5:i386.
Preparing to unpack .../libgtkmm-2.4-1v5_1%3a2.24.4-2_i386.deb ...
Unpacking libgtkmm-2.4-1v5:i386 (1:2.24.4-2) ...
Selecting previously unselected package libglademm-2.4-1v5.
Preparing to unpack .../libglademm-2.4-1v5_2.6.7-5_i386.deb ...
Unpacking libglademm-2.4-1v5 (2.6.7-5) ...
Selecting previously unselected package paman.
Preparing to unpack .../paman_0.9.4-1ubuntu5_i386.deb ...
Unpacking paman (0.9.4-1ubuntu5) ...
Selecting previously unselected package pavumeter.
Preparing to unpack .../pavumeter_0.9.3-4build1_i386.deb ...
Unpacking pavumeter (0.9.3-4build1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...
Processing triggers for gconf2 (3.2.6-3ubuntu6) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu3) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160415-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Setting up libbonobo2-common (2.32.1-3) ...
Setting up liborbit-2-0:i386 (1:2.14.19-1build1) ...
Setting up libbonobo2-0:i386 (2.32.1-3) ...
Setting up libglade2-0:i386 (1:2.6.4-2) ...
Setting up libgnomecanvas2-common (2.30.3-2) ...
Setting up libgnomecanvas2-0:i386 (2.30.3-2) ...
Setting up libgnomevfs2-common (1:2.24.4-6.1ubuntu1) ...
Setting up libgnomevfs2-0:i386 (1:2.24.4-6.1ubuntu1) ...
Setting up libgnome2-common (2.32.1-5ubuntu1) ...
Setting up libgnome-2-0:i386 (2.32.1-5ubuntu1) ...
Setting up libgnome2-bin (2.32.1-5ubuntu1) ...
Setting up libgnome2-0:i386 (2.32.1-5ubuntu1) ...
Setting up libbonoboui2-common (2.24.5-3ubuntu1) ...
Setting up libbonoboui2-0:i386 (2.24.5-3ubuntu1) ...
Setting up libgnomeui-common (2.24.5-3.1) ...
Setting up libgnomeui-0:i386 (2.24.5-3.1) ...
Setting up gnome-alsamixer (0.9.7~cvs.20060916.ds.1-5) ...
Setting up libgtkmm-2.4-1v5:i386 (1:2.24.4-2) ...
Setting up libglademm-2.4-1v5 (2.6.7-5) ...
Setting up paman (0.9.4-1ubuntu5) ...
Setting up pavumeter (0.9.3-4build1) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...

H/W path Device Class Description
===========================================================
                                 system Computer
/0 bus Motherboard
/0/0 memory 1019MiB System memory
/0/1 processor Intel(R) Pentium(R) 4 CPU 3.40GH
/0/100 bridge 82915G/P/GV/GL/PL/910GL Memory C
/0/100/2 display 82915G/GV/910GL Integrated Graph
/0/100/1b multimedia 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1c bridge 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1c.1 bridge 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1c.2 bridge 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1c.3 bridge 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1d bus 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1d/1 usb2 bus UHCI Host Controller
/0/100/1d/1/1 scsi4 storage eM Bay Reader
/0/100/1d/1/1/0.0.0 /dev/sdb disk SCSI Disk
/0/100/1d/1/1/0.0.1 /dev/sdc disk SCSI Disk
/0/100/1d/1/1/0.0.2 /dev/sdd disk SCSI Disk
/0/100/1d/1/1/0.0.3 /dev/sde disk SCSI Disk
/0/100/1d/1/2 input USB Receiver
/0/100/1d.1 bus 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1d.1/1 usb3 bus UHCI Host Controller
/0/100/1d.2 bus 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1d.2/1 usb4 bus UHCI Host Controller
/0/100/1d.3 bus 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1d.3/1 usb5 bus UHCI Host Controller
/0/100/1d.7 bus 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1d.7/1 usb1 bus EHCI Host Controller
/0/100/1e bridge 82801 PCI Bridge
/0/100/1e/1 communication HSF 56k Data/Fax Modem
/0/100/1e/5 bus FW322/323 [TrueFire] 1394a Contr
/0/100/1e/8 enp5s8 network 82562ET/EZ/GT/GZ - PRO/100 VE (L
/0/100/1f bridge 82801FB/FR (ICH6/ICH6R) LPC Inte
/0/100/1f.1 storage 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/100/1f.2 storage 82801FB/FW (ICH6/ICH6W) SATA Con
/0/100/1f.3 bus 82801FB/FBM/FR/FW/FRW (ICH6 Fami
/0/2 scsi0 storage
/0/2/0.0.0 /dev/cdrom disk CD/DVDW TS-H552B
/0/2/0.1.0 /dev/dvd disk DVD SOHD-167T
/0/3 scsi2 storage
/0/3/0.0.0 /dev/sda disk 200GB ST3200822AS
/0/3/0.0.0/1 /dev/sda1 volume 50GiB Windows NTFS volume
/0/3/0.0.0/2 /dev/sda2 volume 4298MiB Windows FAT volume
/0/3/0.0.0/3 /dev/sda3 volume 131GiB Extended partition
/0/3/0.0.0/3/5 /dev/sda5 volume 2906MiB Linux swap / Solaris par
/0/3/0.0.0/3/6 /dev/sda6 volume 86GiB Linux filesystem partition
/0/3/0.0.0/3/7 /dev/sda7 volume 40GiB Linux filesystem partition
/0/3/0.0.0/3/8 /dev/sda8 volume 1803MiB Linux swap / Solaris par
total 0
crw-rw----+ 1 root audio 116, 33 May 29 15:13 timer
crw-rw----+ 1 root audio 116, 1 May 29 15:13 seq
crw-rw----+ 1 root audio 116, 3 May 29 15:13 hwC0D2
crw-rw----+ 1 root audio 116, 2 May 29 15:13 controlC0
drwxr-xr-x 2 root root 60 May 29 15:13 by-path
drwxr-xr-x 3 root root 140 May 29 15:13 .
drwxr-xr-x 20 root root 4760 May 29 15:19 ..
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/haswell/snd-soc-sst-haswell-pcm.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/atom/snd-soc-sst-mfld-platform.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/atom/sst/snd-intel-sst-pci.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-sst-haswell.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-skl_rt286.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-sst-bytcr-rt5640.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-sst-cht-bsw-max98090_ti.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-sst-byt-max98090-mach.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5672.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-sst-byt-rt5640-mach.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5645.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/boards/snd-soc-sst-broadwell.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/common/snd-soc-sst-acpi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/common/snd-soc-sst-ipc.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/common/snd-soc-sst-dsp.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/skylake/snd-soc-skl.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/intel/skylake/snd-soc-skl-ipc.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs42l56.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ts3a227e.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ssm4567.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8580.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8804.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8753.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-pcm1792a-codec.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic3x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-rt5640.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic23-spi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs42l52.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-sgtl5000.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tas571x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs4265.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs4271-spi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-sti-sas.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8728.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-max98090.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8770.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tpa6130a2.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-sta32x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-pcm512x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8510.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tas2552.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs42xx8.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs4270.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs42l51.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-rt5670.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-sta350.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-spdif-rx.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic23.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8741.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tas5086.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ak4104.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8750.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-si476x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ssm2602-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs42xx8-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-sigmadsp-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs4271.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs42l73.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ak4642.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-sn95031.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ak4554.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8903.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs35l32.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic23-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8523.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8978.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-rt286.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ssm2602.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-spdif-tx.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ak4613.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-pcm1681.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-alc5623.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-es8328.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8737.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic31xx.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-tfa9879.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ac97.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs4349.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs4271-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8711.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-dmic.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8731.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8776.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8804-spi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-rt5631.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-cs42l51-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-adau1701.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8804-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ssm2602-spi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-wm8962.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-pcm512x-spi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-sigmadsp.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-ak5386.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-rl6231.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-gtm601.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-rt5645.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-pcm512x-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/codecs/snd-soc-rl6347a.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/snd-soc-core.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/xtensa/snd-soc-xtfpga-i2s.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/generic/snd-soc-simple-card.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/fsl/snd-soc-fsl-asrc.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/fsl/snd-soc-fsl-ssi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/fsl/snd-soc-fsl-esai.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/fsl/snd-soc-imx-audmux.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/fsl/snd-soc-fsl-sai.ko
/lib/modules/4.4.0-22-generic/kernel/sound/soc/fsl/snd-soc-fsl-spdif.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-als100.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-sscape.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-cmi8330.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/ad1816a/snd-ad1816a.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-sb16-dsp.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-sb16.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-emu8000-synth.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-sb8.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-jazz16.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-sb-common.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-sb8-dsp.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-sbawe.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/sb/snd-sb16-csp.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-azt2320.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/wavefront/snd-wavefront.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/opti9xx/snd-opti92x-ad1848.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/opti9xx/snd-opti93x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/opti9xx/snd-opti92x-cs4231.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/opti9xx/snd-miro.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/cs423x/snd-cs4231.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/cs423x/snd-cs4236.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-sc6000.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/es1688/snd-es1688-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/es1688/snd-es1688.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/wss/snd-wss-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/msnd
/lib/modules/4.4.0-22-generic/kernel/sound/isa/msnd/snd-msnd-classic.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/msnd/snd-msnd-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/msnd/snd-msnd-pinnacle.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/ad1848/snd-ad1848.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-cmi8328.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/gus/snd-interwave.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/gus/snd-gusclassic.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/gus/snd-gusmax.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/gus/snd-interwave-stb.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/gus/snd-gus-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/gus/snd-gusextreme.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-es18xx.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-opl3sa2.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/galaxy/snd-azt1605.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/galaxy/snd-azt2316.ko
/lib/modules/4.4.0-22-generic/kernel/sound/isa/snd-adlib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/6fire/snd-usb-6fire.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/misc/snd-ua101.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/line6/snd-usb-podhd.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/line6/snd-usb-variax.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/line6/snd-usb-toneport.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/line6/snd-usb-pod.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/line6/snd-usb-line6.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/bcd2000/snd-bcd2000.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/usx2y/snd-usb-usx2y.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/usx2y/snd-usb-us122l.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/caiaq/snd-usb-caiaq.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/snd-usb-audio.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/snd-usbmidi-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/usb/hiface/snd-usb-hiface.ko
/lib/modules/4.4.0-22-generic/kernel/sound/synth/emux/snd-emux-synth.ko
/lib/modules/4.4.0-22-generic/kernel/sound/synth/snd-util-mem.ko
/lib/modules/4.4.0-22-generic/kernel/sound/i2c/snd-i2c.ko
/lib/modules/4.4.0-22-generic/kernel/sound/i2c/snd-cs8427.ko
/lib/modules/4.4.0-22-generic/kernel/sound/i2c/other/snd-ak4113.ko
/lib/modules/4.4.0-22-generic/kernel/sound/i2c/other/snd-ak4117.ko
/lib/modules/4.4.0-22-generic/kernel/sound/i2c/other/snd-ak4xxx-adda.ko
/lib/modules/4.4.0-22-generic/kernel/sound/i2c/other/snd-ak4114.ko
/lib/modules/4.4.0-22-generic/kernel/sound/i2c/other/snd-pt2258.ko
/lib/modules/4.4.0-22-generic/kernel/sound/i2c/snd-tea6330t.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/oxfw/snd-oxfw.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/digi00x/snd-firewire-digi00x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/fireworks/snd-fireworks.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/snd-firewire-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/bebob/snd-bebob.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/dice/snd-dice.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/tascam/snd-firewire-tascam.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/snd-isight.ko
/lib/modules/4.4.0-22-generic/kernel/sound/firewire/snd-scs1x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-ens1371.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-fm801.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-sonicvibes.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/ice1712/snd-ice1724.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/ice1712/snd-ice1712.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/trident/snd-trident.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/riptide/snd-riptide.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/emu10k1/snd-emu10k1.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/emu10k1/snd-emu10k1-synth.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/emu10k1/snd-emu10k1x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-azt3328.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-es1938.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-maestro3.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/ac97/snd-ac97-codec.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/lola/snd-lola.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/pcxhr/snd-pcxhr.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/ctxfi/snd-ctxfi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-atiixp-modem.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-bt87x.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/oxygen/snd-virtuoso.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/oxygen/snd-oxygen-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/oxygen/snd-oxygen.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-ens1370.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-via82xx-modem.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-intel8x0.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-es1968.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/nm256/snd-nm256.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-intel8x0m.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-als4000.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/asihpi/snd-asihpi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/ca0106/snd-ca0106.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/cs5535audio/snd-cs5535audio.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/korg1212/snd-korg1212.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-cmipci.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-als300.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/rme9652/snd-hdsp.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/rme9652/snd-hdspm.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/rme9652/snd-rme9652.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/ymfpci/snd-ymfpci.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-mia.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-indigoio.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-layla20.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-indigo.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-gina20.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-echo3g.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-indigodj.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-darla20.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-darla24.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-gina24.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-indigodjx.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-mona.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-indigoiox.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/echoaudio/snd-layla24.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/vx222/snd-vx222.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/cs46xx/snd-cs46xx.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-via82xx.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/mixart/snd-mixart.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-rme96.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-atiixp.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-cs5530.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-ad1889.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/aw2/snd-aw2.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/lx6464es/snd-lx6464es.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-analog.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-generic.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-hdmi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-idt.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-ca0110.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-conexant.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-via.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-cirrus.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-intel.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-si3054.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-cmedia.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-realtek.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/snd-hda-codec-ca0132.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-sis7019.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/au88x0/snd-au8820.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/au88x0/snd-au8830.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/au88x0/snd-au8810.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-cs4281.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/snd-rme32.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pci/ali5451/snd-ali5451.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pcmcia/vx/snd-vxpocket.ko
/lib/modules/4.4.0-22-generic/kernel/sound/pcmcia/pdaudiocf/snd-pdaudiocf.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/snd-virmidi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/snd-dummy.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/vx/snd-vx-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/snd-portman2x4.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/snd-aloop.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/opl4/snd-opl4-synth.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/opl4/snd-opl4-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/pcsp/snd-pcsp.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/mpu401/snd-mpu401.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/opl3/snd-opl3-synth.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/opl3/snd-opl3-lib.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/snd-mts64.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/snd-mtpav.ko
/lib/modules/4.4.0-22-generic/kernel/sound/drivers/snd-serial-u16550.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/seq/snd-seq-dummy.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/seq/snd-seq-device.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/seq/snd-seq.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/seq/snd-seq-virmidi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/seq/snd-seq-midi-emul.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/seq/snd-seq-midi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/seq/snd-seq-midi-event.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/snd-hwdep.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/snd-compress.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/snd-rawmidi.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/snd-timer.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/snd-hrtimer.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/snd-pcm-dmaengine.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/oss/snd-pcm-oss.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/oss/snd-mixer-oss.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/snd.ko
/lib/modules/4.4.0-22-generic/kernel/sound/core/snd-pcm.ko
/lib/modules/4.4.0-22-generic/kernel/sound/hda/snd-hda-core.ko
/lib/modules/4.4.0-22-generic/kernel/sound/hda/ext/snd-hda-ext-core.ko
cat: /dev/sndstat: No such file or directory
00:00.0 Host bridge [0600]: Intel Corporation 82915G/P/GV/GL/PL/910GL Memory Controller Hub [8086:2580] (rev 04)
00:02.0 VGA compatible controller [0300]: Intel Corporation 82915G/GV/910GL Integrated Graphics Controller [8086:2582] (rev 04)
00:1b.0 Audio device [0403]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller [8086:2668] (rev 03)
00:1c.0 PCI bridge [0604]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 [8086:2660] (rev 03)
00:1c.1 PCI bridge [0604]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 [8086:2662] (rev 03)
00:1c.2 PCI bridge [0604]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 3 [8086:2664] (rev 03)
00:1c.3 PCI bridge [0604]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 4 [8086:2666] (rev 03)
00:1d.0 USB controller [0c03]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 [8086:2658] (rev 03)
00:1d.1 USB controller [0c03]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 [8086:2659] (rev 03)
00:1d.2 USB controller [0c03]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 [8086:265a] (rev 03)
00:1d.3 USB controller [0c03]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 [8086:265b] (rev 03)
00:1d.7 USB controller [0c03]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller [8086:265c] (rev 03)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev d3)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801FB/FR (ICH6/ICH6R) LPC Interface Bridge [8086:2640] (rev 03)
00:1f.1 IDE interface [0101]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller [8086:266f] (rev 03)
00:1f.2 IDE interface [0101]: Intel Corporation 82801FB/FW (ICH6/ICH6W) SATA Controller [8086:2651] (rev 03)
00:1f.3 SMBus [0c05]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller [8086:266a] (rev 03)
05:01.0 Communication controller [0780]: Conexant Systems, Inc. HSF 56k Data/Fax Modem [14f1:2f20]
05:05.0 FireWire (IEEE 1394) [0c00]: LSI Corporation FW322/323 [TrueFire] 1394a Controller [11c1:5811] (rev 61)
05:08.0 Ethernet controller [0200]: Intel Corporation 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller [8086:1064] (rev 03)
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 003: ID 046d:c52f Logitech, Inc. Unifying Receiver
Bus 002 Device 002: ID 0a48:3239 I/O Interconnect Multimedia Card Reader
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
/usr/sbin/alsactl
Specified filename /dev/dsp does not exist.
dpkg-query: no path found matching pattern *bin/slmodemd*
[ 0.000000] Found optimal setting for mtrr clean up
[ 0.088000] PCCT header not found.
[ 0.132819] pnp: PnP ACPI: found 6 devices
[ 0.172731] pci 0000:05:08.0: Firmware left e100 interrupts enabled; disabling
[ 1.015062] audit: initializing netlink subsys (disabled)
[ 1.015094] audit: type=2000 audit(1464552781.012:1): initialized
[ 1.147488] libphy: Fixed MDIO Bus: probed
[ 1.195662] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.195873] hub 1-0:1.0: USB hub found
[ 1.196599] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.196788] hub 2-0:1.0: USB hub found
[ 1.197202] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.197383] hub 3-0:1.0: USB hub found
[ 1.197789] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.197972] hub 4-0:1.0: USB hub found
[ 1.198376] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.198553] hub 5-0:1.0: USB hub found
[ 1.215237] ima: No TPM chip found, activating TPM-bypass!
[ 1.259335] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.444823] isapnp: No Plug & Play device found
[ 1.896064] usb 2-1: New USB device found, idVendor=0a48, idProduct=3239
[ 2.574048] usb 2-2: New USB device found, idVendor=046d, idProduct=c52f
[ 4.768038] floppy0: no floppy controllers found
[ 7.513420] systemd[1]: Listening on Journal Audit Socket.
[ 8.220428] lp: driver loaded but no devices found
[ 13.431416] intel_rng: Firmware space is locked read-only. If you can't or
               intel_rng: don't want to disable this in firmware setup, and if
[ 15.316602] snd_hda_codec_realtek hdaudioC0D2: autoconfig for ALC880: line_outs=0 (0x0/0x0/0x0/0x0/0x0) type:line
[ 15.316609] snd_hda_codec_realtek hdaudioC0D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 15.316613] snd_hda_codec_realtek hdaudioC0D2: hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 15.316616] snd_hda_codec_realtek hdaudioC0D2: mono: mono_out=0x1e
[ 15.316618] snd_hda_codec_realtek hdaudioC0D2: inputs:
[ 16.024047] floppy0: no floppy controllers found
[ 18.697827] audit: type=1400 audit(1464552799.932:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=557 comm="apparmor_parser"
[ 18.697842] audit: type=1400 audit(1464552799.932:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=557 comm="apparmor_parser"
[ 18.821789] audit: type=1400 audit(1464552800.056:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=558 comm="apparmor_parser"
[ 18.821805] audit: type=1400 audit(1464552800.056:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=558 comm="apparmor_parser"
[ 18.821815] audit: type=1400 audit(1464552800.056:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=558 comm="apparmor_parser"
[ 18.821824] audit: type=1400 audit(1464552800.056:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=558 comm="apparmor_parser"
[ 19.147930] audit: type=1400 audit(1464552800.380:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=559 comm="apparmor_parser"
[ 19.147948] audit: type=1400 audit(1464552800.380:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince//sanitized_helper" pid=559 comm="apparmor_parser"
[ 19.147958] audit: type=1400 audit(1464552800.380:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=559 comm="apparmor_parser"
[ 19.147969] audit: type=1400 audit(1464552800.380:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer//sanitized_helper" pid=559 comm="apparmor_parser"
sudo: /etc/init.d/sl-modem-daemon: command not found
/etc/modprobe.d/modprobe.conf:option snd_hda_intel model=mb5
 Release Date: 10/08/2004
  Serial services are supported (int 14h)
 Manufacturer: Gateway
 Product Name: 506GR
 Serial Number:
 Manufacturer: Intel Corporation
 Product Name: D915GAG
 Serial Number: BQAG44524252
 Manufacturer:
 Serial Number:
 Manufacturer: Intel(R) Corporation
 Serial Number: Not Specified
 Manufacturer: 0x7F7F7F0B00000000
 Serial Number: 0x08031001
 Manufacturer: NO DIMM
 Serial Number: NO DIMM
 Manufacturer: 0x7F7F7F0B00000000
 Serial Number: 0x59471002
 Manufacturer: NO DIMM
 Serial Number: NO DIMM
snd_seq_dummy 16384 0
snd_hda_codec_realtek 73728 1
snd_hda_codec_generic 69632 1 snd_hda_codec_realtek
snd_hda_intel 36864 0
snd_hda_codec 118784 3 snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_intel
snd_hda_core 61440 4 snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_codec,snd_hda_intel
snd_hwdep 16384 1 snd_hda_codec
snd_pcm 94208 3 snd_hda_codec,snd_hda_intel,snd_hda_core
snd_seq_midi 16384 0
snd_seq_midi_event 16384 1 snd_seq_midi
snd_rawmidi 28672 1 snd_seq_midi
snd_seq 57344 3 snd_seq_midi_event,snd_seq_dummy,snd_seq_midi
snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
snd_timer 32768 2 snd_pcm,snd_seq
snd 69632 10 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec_generic,snd_hda_codec,snd_hda_intel,snd_seq_device
soundcore 16384 1 snd
usbhid 49152 0
hid 98304 3 hid_generic,usbhid
usb_storage 57344 1 uas
1 sink(s) available.
  * index: 0
 name: <auto_null>
 driver: <module-null-sink.c>
 flags: DECIBEL_VOLUME LATENCY DYNAMIC_LATENCY
 state: SUSPENDED
 suspend cause: IDLE
 priority: 1000
 volume: front-left: 84487 / 129% / 6.62 dB, front-right: 84487 / 129% / 6.62 dB
         balance 0.00
 base volume: 65536 / 100% / 0.00 dB
 volume steps: 65537
 muted: no
 current latency: 0.00 ms
 max request: 344 KiB
 max rewind: 344 KiB
 monitor source: 0
 sample spec: s16le 2ch 44100Hz
 channel map: front-left,front-right
              Stereo
 used by: 0
 linked by: 0
 configured latency: 0.00 ms; range is 0.50 .. 2000.00 ms
 module: 14
 properties:
  device.description = "Dummy Output"
  device.class = "abstract"
  device.icon_name = "audio-card"
**** List of PLAYBACK Hardware Devices ****
Unloading ALSA sound driver modules: snd-seq-dummy snd-hda-codec-realtek snd-hda-codec-generic snd-hda-intel snd-hda-codec snd-hda-core snd-hwdep snd-pcm snd-seq-midi snd-seq-midi-event snd-rawmidi snd-seq snd-seq-device snd-timer (failed: modules still loaded: snd-hda-codec-realtek snd-hda-codec-generic snd-hda-codec snd-hda-core snd-hwdep snd-pcm snd-timer).
Loading ALSA sound driver modules: snd-seq-dummy snd-hda-codec-realtek snd-hda-codec-generic snd-hda-intel snd-hda-codec snd-hda-core snd-hwdep snd-pcm snd-seq-midi snd-seq-midi-event snd-rawmidi snd-seq snd-seq-device snd-timerlibkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
libkmod: ERROR ../libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/modprobe.conf line 1: ignoring bad line starting with 'option'
.
Support status summary of 'chris-506GR':

You have 1785 packages (90.3%) supported until April 2021 (5y)
You have 4 packages (0.2%) supported until February 2017 (9m)
You have 99 packages (5.0%) supported until April 2019 (3y)
You have 53 packages (2.7%) supported until January 2017 (9m)

You have 0 packages (0.0%) that can not/no-longer be downloaded
You have 35 packages (1.8%) that are unsupported

Run with --show-unsupported, --show-supported or --show-all to see more details
  *-multimedia
       description: Audio device
       product: 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller
       vendor: Intel Corporation
       physical id: 1b
       bus info: pci@0000:00:1b.0
       version: 03
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list
       configuration: driver=snd_hda_intel latency=0
       resources: irq:28 memory:501c0000-501c3fff
chris@chris-506GR:~$

Revision history for this message
chris christensen (chris220a) said :
#7

Resolved updated “BISO” and it started working.
Thanks