!!################################ !!ALSA Information Script v 0.4.60 !!################################ !!Script ran on: Tue Sep 13 23:45:42 UTC 2011 !!Linux Distribution !!------------------ Ubuntu 11.04 \n \l DISTRIB_ID=Ubuntu DISTRIB_DESCRIPTION="Ubuntu 11.04" !!DMI Information !!--------------- Manufacturer: System manufacturer Product Name: System Product Name Product Version: System Version !!Kernel Information !!------------------ Kernel release: 2.6.38-11-generic Operating System: GNU/Linux Architecture: i686 Processor: i686 SMP Enabled: Yes !!ALSA Version !!------------ Driver version: 1.0.23 Library version: 1.0.24.1 Utilities version: 1.0.24.2 !!Loaded ALSA modules !!------------------- !!Sound Servers on this system !!---------------------------- Pulseaudio: Installed - Yes (/usr/bin/pulseaudio) Running - Yes ESound Daemon: Installed - Yes (/usr/bin/esd) Running - No !!Soundcards recognised by ALSA !!----------------------------- --- no soundcards --- !!PCI Soundcards installed in the system !!-------------------------------------- 00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 02) 05:02.0 Multimedia controller: Philips Semiconductors SAA7146 (rev 01) !!Advanced information - PCI Vendor/Device/Subsystem ID's !!-------------------------------------------------------- 00:1b.0 0403: 8086:284b (rev 02) Subsystem: 1043:81ec !!Modprobe options (Sound related) !!-------------------------------- snd-atiixp-modem: index=-2 snd-intel8x0m: index=-2 snd-via82xx-modem: index=-2 snd-usb-audio: index=-2 snd-usb-caiaq: index=-2 snd-usb-ua101: index=-2 snd-usb-us122l: index=-2 snd-usb-usx2y: index=-2 snd-cmipci: mpu_port=0x330 fm_port=0x388 snd-pcsp: index=-2 snd-usb-audio: index=-2 snd-hda-intel: model=6stack-dig snd_hda_intel: model=6stack-dig !!Loaded sound module options !!-------------------------- !!ALSA Device nodes !!----------------- crw-rw---- 1 root audio 116, 1 Sep 14 01:31 /dev/snd/seq crw-rw---- 1 root audio 116, 33 Sep 14 01:31 /dev/snd/timer !!ALSA configuration files !!------------------------ !!System wide config file (/etc/asound.conf) # ~/.asoundrc or /etc/asound.conf # ALSA configuration file ##### USAGE ##### # Save this file as "~/.asoundrc" (for user-specific sound configuration) or # "/etc/asound.conf" (for system-wide sound configuration) and specify ALSA # device names ad described in the next section. ##### DEVICE NAMES ##### # This configuration file defines four devices for use by the user. Those # devices are "analog", "mixed-analog", "digital", and "mixed-digital". The # user may also re-define "default" to be identical to one of the above-named # devices (i.e. to send all sound output to the digital output unless otherwise # specified). Use the device names as described below: # - "analog" outputs to the analog output directly and (at least on software # sound cards) blocks other audio output. After playback completes, "queued" # sounds are output in sequence. # - "mixed-analog" mixes audio output from multiple programs into the analog # output (so you can hear beeps, alerts, and other noises while playing back # an audio stream). # - "digital" outputs to the digital output directly. Since most (all?) # digital outputs expect 48kHz PCM audio, this may not work for some playback # (i.e. CD's--which are 44.1kHz PCM audio--or 32kHz audio streams from TV # recordings, etc.). # - "mixed-digital" # All other devices created within this file are used only by the configuration # file itself and should /not/ be used directly. In other words, do not use # the devices "analog-hw", "dmix-analog", "digital-hw", or "dmix-digital". ##### IMPORTANT ##### # To make this ALSA configuration file work with your sound card, you will need # to define the appropriate card and device information for the "analog-hw" and # "digital-hw" devices below. You can find the card and device information # using "aplay -l". ##### Configuration File ##### # Override the default output used by ALSA. If you do not override the # default, your default device is identical to the (unmixed) "analog" device # shown below. If you prefer mixed and/or digital output, uncomment the # appropriate four lines below (only one slave.pcm line). # # Note, also, that as of ALSA 1.0.9, "software" sound cards have been modified # such that their default "default" device is identical to the "mixed-analog" # device. Whether using an ALSA version before or after 1.0.9, it does no harm # and has no affect on performance to redefine the device (even if the # redefinition does not change anything). Also, by using this ALSA # configuration file, you once again have access to unmixed analog output using # the "analog" device. #pcm.!default { # type plug ## Uncomment the following to use (unmixed) "analog" by default # slave.pcm "analog-hw" ## Uncomment the following to use "mixed-analog" by default # slave.pcm "dmix-analog" ## Uncomment the following to use (unmixed) "digital" by default # slave.pcm "digital-hw" ## Uncomment the following to use "mixed-digital" by default # slave.pcm "dmix-digital" #} pcm.!default { type hw card 0 device 1 } #pcm.!default { #type plug #slave { #pcm "spdif" #rate 48000 #format S16_LE #} #} # Control device (mixer, etc.) for the card ctl.!default { type hw card 0 } # Alias for (converted) analog output on the card # - This is identical to the device named "default"--which always exists and # refers to hw:0,0 (unless overridden) # - Therefore, we can specify "hw:0,0", "default", or "analog" to access analog # output on the card # - Note that as of ALSA 1.0.9, "software" sound card definitions redefine # "default" to do mixing, meaning this device is different from "default" and # allows playback while blocking other sound sources (until playback # completes). #pcm.analog { # type plug # slave.pcm "analog-hw" #} # Control device (mixer, etc.) for the card #ctl.analog { # type hw # card 0 #} # Alias for (converted) mixed analog output on the card # - This will accept audio input--regardless of rate--and convert to the rate # required for the dmix plugin (in this case 48000Hz) # - Note that as of ALSA 1.0.9, "software" sound card definitions redefine # "default" to do mixing, meaning this device is identical to "default" for # "software" sound cards. #pcm.mixed-analog { # type plug # slave.pcm "dmix-analog" #} # Control device (mixer, etc.) for the card #ctl.mixed-analog { # type hw # card 0 #} # Alias for (converted) digital (S/PDIF) output on the card # - This will accept audio input--regardless of rate--and convert to the rate # required for the S/PDIF hardware (in this case 48000Hz) pcm.digital { type plug slave.pcm "digital-hw" } # Control device (mixer, etc.) for the card ctl.digital { type hw card 0 } # Alias for mixed (converted) digital (S/PDIF) output on the card # - This will accept audio input--regardless of rate--and convert to the rate # required for the S/PDIF hardware (in this case 48000Hz) pcm.mixed-digital { type plug slave.pcm "dmix-digital" } # Control device (mixer, etc.) for the card ctl.mixed-digital { type hw card 0 } # The following devices are not useful by themselves. They require specific # rates, channels, and formats. Therefore, you probably do not want to use # them directly. Instead use of of the devices defined above. # Alias for analog output on the card # Do not use this directly--it requires specific rate, channels, and format #pcm.analog-hw { # type hw # card 0 # The default value for device is 0, so no need to specify # - Uncomment one of the below or create a new "device N" line as appropriate # for your sound card or # device 1 # device 4 #} # Control device (mixer, etc.) for the card #ctl.analog-hw { # type hw # card 0 #} # Alias for digital (S/PDIF) output on the card # Do not use this directly--it requires specific rate, channels, and format pcm.digital-hw { type hw card 0 device 1 # - Comment out "device 1" above and uncomment one of the below or create a # new "device N" line as appropriate for your sound card or # device 2 # device 4 } # Control device (mixer, etc.) for the card ctl.digital-hw { type hw card 0 } # Direct software mixing plugin for analog output on the card # Do not use this directly--it requires specific rate, channels, and format #pcm.dmix-analog { # type dmix # ipc_key 1234 # slave { # pcm "analog-hw" # period_time 0 # period_size 1024 # buffer_size 4096 # rate 48000 # } #} # Control device (mixer, etc.) for the card #ctl.dmix-analog { # type hw # card 0 #} # Direct software mixing plugin for digital (S/PDIF) output on the card # Do not use this directly--it requires specific rate, channels, and format pcm.dmix-digital { type dmix ipc_key 1235 slave { pcm "digital-hw" period_time 0 period_size 1024 buffer_size 4096 rate 48000 } } # Control device (mixer, etc.) for the card ctl.dmix-digital { type hw card 0 } !!Aplay/Arecord output !!------------ APLAY aplay: device_list:240: no soundcards found... ARECORD arecord: device_list:240: no soundcards found... !!Amixer output !!------------- !!Alsactl output !!------------- --startcollapse-- --endcollapse-- !!All Loaded Modules !!------------------ Module snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device snd soundcore snd_page_alloc binfmt_misc kvm_intel kvm lp nfsd nfs lockd fscache nfs_acl auth_rpcgss sunrpc autofs4 ftdi_sio usbserial xfs exportfs tda10021 nvidia budget_av saa7146_vv videodev videobuf_dma_sg videobuf_core budget_core dvb_core saa7146 ttpci_eeprom asus_atk0110 ppdev parport_pc parport firewire_sbp2 raid10 usbhid usb_storage raid456 async_raid6_recov async_pq hid uas firewire_ohci ahci firewire_core floppy atl1 crc_itu_t pata_jmicron libahci raid6_pq async_xor xor async_memcpy async_tx raid1 raid0 multipath linear !!ALSA/HDA dmesg !!------------------ [ 7.861884] ppdev: user-space parallel port driver [ 8.100737] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 8.100783] HDA Intel 0000:00:1b.0: irq 45 for MSI/MSI-X [ 8.100806] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 8.132016] hda-intel: no codecs found! [ 8.132096] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 8.342093] nvidia: module license 'NVIDIA' taints kernel. -- [ 25.501615] type=1400 audit(1315955733.088:43): apparmor="ALLOWED" operation="open" parent=1 profile="/usr/sbin/ntpd" name="/var.boot/run/ntpd.pid" pid=1645 comm="ntpd" requested_mask="wc" denied_mask="wc" fsuid=0 ouid=0 [ 337.495863] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 337.495911] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 337.495935] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 337.524072] hda-intel: no codecs found! [ 337.524119] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 424.873117] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 424.873169] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 424.873193] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 424.904013] hda-intel: no codecs found! [ 424.904065] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 475.570468] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 475.570523] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 475.570548] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 475.600059] hda-intel: no codecs found! [ 475.600148] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 519.189461] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 519.189538] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 519.189565] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 519.220075] hda-intel: no codecs found! [ 519.220151] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 546.911043] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 546.911097] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 546.911123] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 546.944656] hda-intel: no codecs found! [ 546.944724] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 904.439752] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 904.439803] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 904.439828] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 904.468082] hda-intel: no codecs found! [ 904.468150] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 982.295296] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 982.295350] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 982.295385] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 982.324069] hda-intel: no codecs found! [ 982.324137] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 1457.486477] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 1457.486530] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 1457.486557] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 1457.520067] hda-intel: no codecs found! [ 1457.520137] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 1467.234122] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 1467.234173] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 1467.234199] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 1467.264077] hda-intel: no codecs found! [ 1467.264136] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 1476.282520] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 1476.282589] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 1476.282616] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 1476.312086] hda-intel: no codecs found! [ 1476.312157] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 1523.594619] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 1523.594676] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 1523.594703] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 1523.624103] hda-intel: no codecs found! [ 1523.624173] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 1726.962047] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 [ 1726.962098] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X [ 1726.962123] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 1726.992077] hda-intel: no codecs found! [ 1726.992136] HDA Intel 0000:00:1b.0: PCI INT A disabled