SEARCH

Enter your search query in the box above ^, or use the forum search tool.

You are not logged in.

#1 2012-04-24 21:46:03

gingerling
Member
Registered: 2012-04-24
Posts: 42

sound/alsa INPUT issue - getting a bit stressed out - solved

Hi, I am a newbie and not very technical. I installed yesterday, have got everything towards how i like, but having a major issue with sound.

Output is fine, I can hear video etc

Input wont work, I cannot record sound.

Been on IRC all evening trying to figure it out. Looked at alsamixer, everything was switched off, took me a while to get everything on, found a few additional menus on the fkeys, but even with all of this, I cannot get it to record.

The only breakthrough is that at somepoint, i started hearing my mike in my headphones a little bit, which is how it is in windows (i am dual boot for work, so i know that the card and headset work)

getting really stressed out, its taken me days out of work to get my new os on and get my settings right, i need to get back to work but need sound to work asap. Can someone spare some time to help me out? smile

sorry to be so down, its just so frustrating and mindnumbing a problem to have!

best

A
x

Last edited by gingerling (2012-04-27 09:31:29)

Offline

Help fund CrunchBang, donate to the project!

#2 2012-04-24 22:32:44

Vansgo
#! Die Hard
Registered: 2011-05-02
Posts: 1,580
Website

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Hi,

OK - lets check some things -

What are you trying to record? mic input to soundcard? Do you have PCM capture enabled in alsamixer -
F3 for playback settings, F4 for Capture = record and F5 for all controls. Check that if not already.

Offline

#3 2012-04-25 05:42:39

mynis01
#! Die Hard
From: 127.0.0.1
Registered: 2010-07-02
Posts: 2,005

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

What application are you trying to record sound with?

Offline

#4 2012-04-25 07:34:54

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Post output of

arecord -l

Offline

#5 2012-04-25 09:18:33

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Vansgo wrote:

Hi,

OK - lets check some things -

What are you trying to record? mic input to soundcard? Do you have PCM capture enabled in alsamixer -
F3 for playback settings, F4 for Capture = record and F5 for all controls. Check that if not already.

yes, headset mic input to soundcard (not the one on the motherboard, a separate one at the back) - the headset earphones are plugged into same car, and are working. Tried recording in audacity, and in things like istanbul screencasting.

Alsamixer f4 - I found this on day 2 of trying, it DID change something when i switched it on, I could "hear myself" a little in the headphones when i spoke into mic - but it didn't solve the problem of no recording.  Many things in this menu are off and wont turn on though - i can only turn on the mic volume.

Offline

#6 2012-04-25 09:19:50

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

xaos52 wrote:

Post output of

arecord -l

**** List of CAPTURE Hardware Devices ****
card 0: CMI8738 [C-Media CMI8738], device 0: CMI8738 [C-Media PCI DAC/ADC]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: CMI8738 [C-Media CMI8738], device 2: CMI8738 [C-Media PCI IEC958]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: CAMERA [USB2.0 PC CAMERA], device 0: USB Audio [USB Audio]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

anny news from this? (also, i did try unplugging my webcam yesterday when someone sugested i look at this, as i noted this was listed, and could be causing an issue, but it had no effect)

Offline

#7 2012-04-25 09:21:18

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

mynis01 wrote:

What application are you trying to record sound with?

Tried audacity and istanbul and the other desktop recorder

thanks all for helping guys x

Offline

#8 2012-04-25 09:48:38

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Guess you will have to specify your default card:
Copy the following code into a terminal window:
it will create a $HOME/.asoundrc file, using the first card it finds as the default card:

if default_card="${1:-$(cat "$(for f in $(ls -1 /proc/asound/card[0-9]*/{midi,codec}* 2>/dev/null); do echo "${f%/*}"; done \
| sed -e '\|^[\[:blank:]\]$|d' -e 'q')/id" 2>/dev/null)}"; then
   echo "Using sound card: ${default_card}" >&2 
   cat /proc/asound/card[0-9]*/id | \
   gawk --assign default_card="${default_card}" \
'{print "pcm."$1" { type hw; card "$1"; }\nctl."$1" { type hw; card "$1"; }" }
END {print "pcm.!default pcm."default_card"\nctl.!default ctl."default_card}'
else
   echo "Warning: No sound cards found." >&2
fi

Then post content of $HOME/.asoundrc on the forum.

Offline

#9 2012-04-25 11:16:58

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Hi, I did the comand line, but there is no file named $HOME/.asoundrc  created (even if I look at the hidden files using control h)


This is what terminal does

anna@ethicalpets:~$ if default_card="${1:-$(cat "$(for f in $(ls -1 /proc/asound/card[0-9]*/{midi,codec}* 2>/dev/null); do echo "${f%/*}"; done \
> | sed -e '\|^[\[:blank:]\]$|d' -e 'q')/id" 2>/dev/null)}"; then
>    echo "Using sound card: ${default_card}" >&2
>    cat /proc/asound/card[0-9]*/id | \
>    gawk --assign default_card="${default_card}" \
> '{print "pcm."$1" { type hw; card "$1"; }\nctl."$1" { type hw; card "$1"; }" }
> END {print "pcm.!default pcm."default_card"\nctl.!default ctl."default_card}'
> else
>    echo "Warning: No sound cards found." >&2
> fi
Warning: No sound cards found.
anna@ethicalpets:~$

Offline

#10 2012-04-25 11:42:26

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

This means your card - or rather the codec your card uses - is not recognized.
Post output of

lspci -knn

if it is a pci card, or

lsusb

if it is a USB card.

Also post the kernel version you are using:

uname -r

Last edited by xaos52 (2012-04-25 11:43:17)

Offline

#11 2012-04-25 11:54:39

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

wansnt sure which to use so did both :S

lspci -knn

    Subsystem: Elitegroup Computer Systems Device [1019:2226]
    Kernel driver in use: ehci_hcd
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev e1)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge [8086:27b8] (rev 01)
    Subsystem: Elitegroup Computer Systems Device [1019:2226]
00:1f.1 IDE interface [0101]: Intel Corporation 82801G (ICH7 Family) IDE Controller [8086:27df] (rev 01)
    Subsystem: Elitegroup Computer Systems Device [1019:2226]
    Kernel driver in use: ata_piix
00:1f.2 IDE interface [0101]: Intel Corporation N10/ICH7 Family SATA IDE Controller [8086:27c0] (rev 01)
    Subsystem: Elitegroup Computer Systems Device [1019:2226]
    Kernel driver in use: ata_piix
00:1f.3 SMBus [0c05]: Intel Corporation N10/ICH 7 Family SMBus Controller [8086:27da] (rev 01)
    Subsystem: Elitegroup Computer Systems Device [1019:2226]
    Kernel driver in use: i801_smbus
02:00.0 Ethernet controller [0200]: Atheros Communications AR8132 Fast Ethernet [1969:1062] (rev c0)
    Subsystem: Elitegroup Computer Systems Device [1019:8132]
    Kernel driver in use: atl1c
03:04.0 Multimedia audio controller [0401]: C-Media Electronics Inc CM8738 [13f6:0111] (rev 10)
    Subsystem: C-Media Electronics Inc CMI8738/C3DX PCI Audio Device [13f6:0111]
    Kernel driver in use: C-Media PCI
lsusb

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 002: ID 1c4f:0002 SiGma Micro
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 003: ID 192f:0916 Avago Technologies, Pte.
Bus 002 Device 002: ID 03f0:7604 Hewlett-Packard DeskJet 3940
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 005: ID 18ec:3366 Arkmicro Technologies Inc.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

uname -r
2.6.32-5-686
anna@ethicalpets:~$

Offline

#12 2012-04-25 13:14:58

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Post output of

lsmod|grep -Ei 'snd|cmipci'

snd_cmipci is the kernel module that should be loaded for your card.

Also post output of

dmesg

to see if there are any errors related to sound.

Post between [ code ] brackets please. It makes reading the thread easier.

Offline

#13 2012-04-25 16:42:26

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

thanks, always wondered how the code got to be separate

anna@ethicalpets:~$ lsmod|grep -Ei 'snd|cmipci'

snd_usb_audio          50634  0 
snd_usb_lib            11156  1 snd_usb_audio
snd_cmipci             22455  1 
gameport                6025  1 snd_cmipci
snd_pcm                47226  2 snd_usb_audio,snd_cmipci
snd_page_alloc          4977  1 snd_pcm
snd_opl3_lib            6022  1 snd_cmipci
snd_mpu401_uart         4067  1 snd_cmipci
snd_hwdep               4054  2 snd_usb_audio,snd_opl3_lib
snd_seq_midi            3576  0 
snd_seq_midi_event      3684  1 snd_seq_midi
snd_rawmidi            12513  3 snd_usb_lib,snd_mpu401_uart,snd_seq_midi
snd_seq                35327  2 snd_seq_midi,snd_seq_midi_event
snd_timer              12270  3 snd_pcm,snd_opl3_lib,snd_seq
snd_seq_device          3673  4 snd_opl3_lib,snd_seq_midi,snd_rawmidi,snd_seq
snd                    34387  12 snd_usb_audio,snd_cmipci,snd_pcm,snd_opl3_lib,snd_mpu401_uart,snd_hwdep,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
soundcore               3450  1 snd
usbcore                99125  8 usblp,snd_usb_audio,snd_usb_lib,uvcvideo,usbhid,uhci_hcd,ehci_hcd

anna@ethicalpets:~$ dmesg

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32-5-686 (Debian 2.6.32-41squeeze2) (dannf@debian.org) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Mon Mar 26 05:20:33 UTC 2012
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007bda0000 (usable)
[    0.000000]  BIOS-e820: 000000007bda0000 - 000000007bdae000 (ACPI data)
[    0.000000]  BIOS-e820: 000000007bdae000 - 000000007bdf0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007bdf0000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] DMI present.
[    0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0x7bda0 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF uncachable
[    0.000000]   E0000-EFFFF write-through
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07BE00000 mask FFFE00000 uncachable
[    0.000000]   2 base 07C000000 mask FFC000000 uncachable
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] initial memory mapped : 0 - 01800000
[    0.000000] init_memory_mapping: 0000000000000000-00000000373fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037000000 page 2M
[    0.000000]  0037000000 - 00373fe000 page 4k
[    0.000000] kernel direct mapping tables up to 373fe000 @ 10000-16000
[    0.000000] RAMDISK: 3778b000 - 37fef626
[    0.000000] Allocated new RAMDISK: 00100000 - 00964626
[    0.000000] Move RAMDISK from 000000003778b000 - 0000000037fef625 to 00100000 - 00964625
[    0.000000] ACPI: RSDP 000f9740 00014 (v00 ACPIAM)
[    0.000000] ACPI: RSDT 7bda0000 00040 (v01 040910 RSDT1911 20100409 MSFT 00000097)
[    0.000000] ACPI: FACP 7bda0200 00084 (v01 040910 FACP1911 20100409 MSFT 00000097)
[    0.000000] ACPI: DSDT 7bda0440 06022 (v01  1AAAA 1AAAA000 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 7bdae000 00040
[    0.000000] ACPI: APIC 7bda0390 0006C (v01 040910 APIC1911 20100409 MSFT 00000097)
[    0.000000] ACPI: MCFG 7bda0400 0003C (v01 040910 OEMMCFG  20100409 MSFT 00000097)
[    0.000000] ACPI: OEMB 7bdae040 00073 (v01 040910 OEMB1911 20100409 MSFT 00000097)
[    0.000000] ACPI: HPET 7bda8440 00038 (v01 040910 OEMHPET  20100409 MSFT 00000097)
[    0.000000] ACPI: GSCI 7bdae0c0 02024 (v01 040910 GMCHSCI  20100409 MSFT 00000097)
[    0.000000] ACPI: SSDT 7bdb0640 00A7C (v01 DpgPmm    CpuPm 00000012 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1097MB HIGHMEM available.
[    0.000000] 883MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 373fe000
[    0.000000]   low ram: 0 - 373fe000
[    0.000000]   node 0 low ram: 00000000 - 373fe000
[    0.000000]   node 0 bootmap 00012000 - 00018e80
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 00373fe000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0001000000 - 00014c8d2c]    TEXT DATA BSS ==> [0001000000 - 00014c8d2c]
[    0.000000]   #4 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #5 [00014c9000 - 00014cf0d7]              BRK ==> [00014c9000 - 00014cf0d7]
[    0.000000]   #6 [0000010000 - 0000012000]          PGTABLE ==> [0000010000 - 0000012000]
[    0.000000]   #7 [0000100000 - 0000964626]      NEW RAMDISK ==> [0000100000 - 0000964626]
[    0.000000]   #8 [0000012000 - 0000019000]          BOOTMAP ==> [0000012000 - 0000019000]
[    0.000000] found SMP MP-table at [c00ff780] ff780
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000373fe
[    0.000000]   HighMem  0x000373fe -> 0x0007bda0
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0007bda0
[    0.000000] On node 0 totalpages: 507183
[    0.000000] free_area_init_node: node 0, pgdat c13b08c0, node_mem_map c14d1200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1736 pages used for memmap
[    0.000000]   Normal zone: 220470 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2196 pages used for memmap
[    0.000000]   HighMem zone: 278798 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ee00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @c2800000 s34328 r0 d23016 u1048576
[    0.000000] pcpu-alloc: s34328 r0 d23016 u1048576 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 503219
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-5-686 root=UUID=5d95eaf4-4637-4021-b32d-f84e7c85651e ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    0.000000] Initializing HighMem for node 0 (000373fe:0007bda0)
[    0.000000] Memory: 1997060k/2029184k available (2506k kernel code, 30488k reserved, 1310k data, 380k init, 1123976k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffd56000 - 0xfffff000   (2724 kB)
[    0.000000]     pkmap   : 0xff400000 - 0xff800000   (4096 kB)
[    0.000000]     vmalloc : 0xf7bfe000 - 0xff3fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf73fe000   ( 883 MB)
[    0.000000]       .init : 0xc13bb000 - 0xc141a000   ( 380 kB)
[    0.000000]       .data : 0xc1272b17 - 0xc13ba4c4   (1310 kB)
[    0.000000]       .text : 0xc1000000 - 0xc1272b17   (2506 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:1280
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2792.985 MHz processor.
[    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 5585.97 BogoMIPS (lpj=11171940)
[    0.004015] Security Framework initialized
[    0.004019] SELinux:  Disabled at boot.
[    0.004024] Mount-cache hash table entries: 512
[    0.004119] Initializing cgroup subsys ns
[    0.004122] Initializing cgroup subsys cpuacct
[    0.004125] Initializing cgroup subsys devices
[    0.004127] Initializing cgroup subsys freezer
[    0.004128] Initializing cgroup subsys net_cls
[    0.004145] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004147] CPU: L2 cache: 2048K
[    0.004149] CPU: Physical Processor ID: 0
[    0.004150] CPU: Processor Core ID: 0
[    0.004153] mce: CPU supports 6 MCE banks
[    0.004159] CPU0: Thermal monitoring enabled (TM2)
[    0.004161] using mwait in idle threads.
[    0.004168] Performance Events: Core2 events, Intel PMU driver.
[    0.004173] ... version:                2
[    0.004174] ... bit width:              40
[    0.004175] ... generic registers:      2
[    0.004176] ... value mask:             000000ffffffffff
[    0.004177] ... max period:             000000007fffffff
[    0.004178] ... fixed-purpose events:   3
[    0.004180] ... event mask:             0000000700000003
[    0.004184] Checking 'hlt' instruction... OK.
[    0.021581] ACPI: Core revision 20090903
[    0.027414] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.027724] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.067412] CPU0: Intel Pentium(R) Dual-Core  CPU      E5500  @ 2.80GHz stepping 0a
[    0.068001] Booting processor 1 APIC 0x1 ip 0x6000
[    0.008000] Initializing CPU#1
[    0.008000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.008000] CPU: L2 cache: 2048K
[    0.008000] CPU: Physical Processor ID: 0
[    0.008000] CPU: Processor Core ID: 1
[    0.008000] CPU1: Thermal monitoring enabled (TM2)
[    0.152080] CPU1: Intel Pentium(R) Dual-Core  CPU      E5500  @ 2.80GHz stepping 0a
[    0.152087] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.156049] Brought up 2 CPUs
[    0.156051] Total of 2 processors activated (11171.90 BogoMIPS).
[    0.156795] CPU0 attaching sched-domain:
[    0.156799]  domain 0: span 0-1 level MC
[    0.156800]   groups: group c2803778 cpus 0 group c2903778 cpus 1
[    0.156805] CPU1 attaching sched-domain:
[    0.156807]  domain 0: span 0-1 level MC
[    0.156808]   groups: group c2903778 cpus 1 group c2803778 cpus 0
[    0.156854] devtmpfs: initialized
[    0.156854] regulator: core version 0.5
[    0.156854] NET: Registered protocol family 16
[    0.156854] ACPI: bus type pci registered
[    0.156854] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.156854] PCI: Not using MMCONFIG.
[    0.156854] PCI: Using configuration type 1 for base access
[    0.156854] bio: create slab <bio-0> at 0
[    0.156854] ACPI: EC: Look up EC in DSDT
[    0.161524] ACPI: Executed 1 blocks of module-level executable AML code
[    0.165154] ACPI: Interpreter enabled
[    0.165157] ACPI: (supports S0 S3 S4 S5)
[    0.165170] ACPI: Using IOAPIC for interrupt routing
[    0.165209] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.169906] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
[    0.169908] PCI: Using MMCONFIG for extended config space
[    0.176956] ACPI Warning: Incorrect checksum in table [OEMB] - 60, should be 5B (20090903/tbutils-314)
[    0.177728] ACPI: No dock devices found.
[    0.177955] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.178019] pci 0000:00:02.0: reg 10 64bit mmio: [0xfe400000-0xfe7fffff]
[    0.178024] pci 0000:00:02.0: reg 18 64bit mmio pref: [0xd0000000-0xdfffffff]
[    0.178028] pci 0000:00:02.0: reg 20 io port: [0xcc00-0xcc07]
[    0.178109] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.178112] pci 0000:00:1c.0: PME# disabled
[    0.178166] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.178169] pci 0000:00:1c.2: PME# disabled
[    0.178210] pci 0000:00:1d.0: reg 20 io port: [0xc880-0xc89f]
[    0.178251] pci 0000:00:1d.1: reg 20 io port: [0xc800-0xc81f]
[    0.178292] pci 0000:00:1d.2: reg 20 io port: [0xc480-0xc49f]
[    0.178333] pci 0000:00:1d.3: reg 20 io port: [0xc400-0xc41f]
[    0.178378] pci 0000:00:1d.7: reg 10 32bit mmio: [0xfeafbc00-0xfeafbfff]
[    0.178422] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.178425] pci 0000:00:1d.7: PME# disabled
[    0.178534] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff)
[    0.178570] pci 0000:00:1f.1: reg 10 io port: [0x00-0x07]
[    0.178576] pci 0000:00:1f.1: reg 14 io port: [0x00-0x03]
[    0.178581] pci 0000:00:1f.1: reg 18 io port: [0x8f0-0x8f7]
[    0.178587] pci 0000:00:1f.1: reg 1c io port: [0x8f8-0x8fb]
[    0.178592] pci 0000:00:1f.1: reg 20 io port: [0xffa0-0xffaf]
[    0.178625] pci 0000:00:1f.2: reg 10 io port: [0xc080-0xc087]
[    0.178630] pci 0000:00:1f.2: reg 14 io port: [0xc000-0xc003]
[    0.178635] pci 0000:00:1f.2: reg 18 io port: [0xbc00-0xbc07]
[    0.178640] pci 0000:00:1f.2: reg 1c io port: [0xb880-0xb883]
[    0.178645] pci 0000:00:1f.2: reg 20 io port: [0xb800-0xb80f]
[    0.178664] pci 0000:00:1f.2: PME# supported from D3hot
[    0.178667] pci 0000:00:1f.2: PME# disabled
[    0.178706] pci 0000:00:1f.3: reg 20 io port: [0x400-0x41f]
[    0.178809] pci 0000:02:00.0: reg 10 64bit mmio: [0xfebc0000-0xfebfffff]
[    0.178816] pci 0000:02:00.0: reg 18 io port: [0xdc00-0xdc7f]
[    0.178872] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.178876] pci 0000:02:00.0: PME# disabled
[    0.184097] pci 0000:00:1c.2: bridge io port: [0xd000-0xdfff]
[    0.184103] pci 0000:00:1c.2: bridge 32bit mmio: [0xfeb00000-0xfebfffff]
[    0.184161] pci 0000:03:04.0: reg 10 io port: [0xe800-0xe8ff]
[    0.184217] pci 0000:03:04.0: supports D1 D2
[    0.184256] pci 0000:00:1e.0: transparent bridge
[    0.184259] pci 0000:00:1e.0: bridge io port: [0xe000-0xefff]
[    0.184276] pci_bus 0000:00: on NUMA node 0
[    0.184279] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.184367] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[    0.184418] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT]
[    0.184459] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT]
[    0.190747] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.190834] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.190921] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.191006] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.191091] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.191176] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.191262] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.191347] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.191414] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.191421] vgaarb: loaded
[    0.191431] PCI: Using ACPI for IRQ routing
[    0.191431] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.191431] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.191431] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.196020] Switching to clocksource tsc
[    0.196960] pnp: PnP ACPI init
[    0.196966] ACPI: bus type pnp registered
[    0.201122] pnp: PnP ACPI: found 16 devices
[    0.201123] ACPI: ACPI bus type pnp unregistered
[    0.201126] PnPBIOS: Disabled by ACPI PNP
[    0.201132] system 00:01: iomem range 0xfed14000-0xfed19fff has been reserved
[    0.201134] system 00:01: iomem range 0xfed90000-0xfed93fff has been reserved
[    0.201142] system 00:07: ioport range 0xa00-0xa0f has been reserved
[    0.201144] system 00:07: ioport range 0xa10-0xa1f has been reserved
[    0.201146] system 00:07: ioport range 0xa20-0xa2f has been reserved
[    0.201148] system 00:07: ioport range 0xa30-0xa3f has been reserved
[    0.201152] system 00:08: ioport range 0x4d0-0x4d1 has been reserved
[    0.201154] system 00:08: ioport range 0x800-0x87f has been reserved
[    0.201156] system 00:08: ioport range 0x480-0x4bf has been reserved
[    0.201158] system 00:08: iomem range 0xfed1c000-0xfed1ffff has been reserved
[    0.201161] system 00:08: iomem range 0xfed20000-0xfed8ffff has been reserved
[    0.201165] system 00:0b: iomem range 0xffc00000-0xffefffff has been reserved
[    0.201169] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.201171] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.201175] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved
[    0.201179] system 00:0f: iomem range 0x0-0x9ffff could not be reserved
[    0.201181] system 00:0f: iomem range 0xc0000-0xcffff could not be reserved
[    0.201183] system 00:0f: iomem range 0xe0000-0xfffff could not be reserved
[    0.201185] system 00:0f: iomem range 0x100000-0x7bdfffff could not be reserved
[    0.235833] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
[    0.235836] pci 0000:00:1c.0:   IO window: 0x1000-0x1fff
[    0.235840] pci 0000:00:1c.0:   MEM window: 0x80000000-0x801fffff
[    0.235844] pci 0000:00:1c.0:   PREFETCH window: 0x00000080200000-0x000000803fffff
[    0.235849] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:02
[    0.235851] pci 0000:00:1c.2:   IO window: 0xd000-0xdfff
[    0.235855] pci 0000:00:1c.2:   MEM window: 0xfeb00000-0xfebfffff
[    0.235859] pci 0000:00:1c.2:   PREFETCH window: 0x00000080400000-0x000000805fffff
[    0.235864] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03
[    0.235866] pci 0000:00:1e.0:   IO window: 0xe000-0xefff
[    0.235870] pci 0000:00:1e.0:   MEM window: disabled
[    0.235873] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.235882] pci 0000:00:1c.0: enabling device (0104 -> 0107)
[    0.235888] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.235892] pci 0000:00:1c.0: setting latency timer to 64
[    0.235899] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.235902] pci 0000:00:1c.2: setting latency timer to 64
[    0.235907] pci 0000:00:1e.0: setting latency timer to 64
[    0.235910] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.235911] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[    0.235913] pci_bus 0000:01: resource 0 io:  [0x1000-0x1fff]
[    0.235915] pci_bus 0000:01: resource 1 mem: [0x80000000-0x801fffff]
[    0.235917] pci_bus 0000:01: resource 2 pref mem [0x80200000-0x803fffff]
[    0.235919] pci_bus 0000:02: resource 0 io:  [0xd000-0xdfff]
[    0.235921] pci_bus 0000:02: resource 1 mem: [0xfeb00000-0xfebfffff]
[    0.235923] pci_bus 0000:02: resource 2 pref mem [0x80400000-0x805fffff]
[    0.235925] pci_bus 0000:03: resource 0 io:  [0xe000-0xefff]
[    0.235927] pci_bus 0000:03: resource 3 io:  [0x00-0xffff]
[    0.235929] pci_bus 0000:03: resource 4 mem: [0x000000-0xffffffff]
[    0.235948] NET: Registered protocol family 2
[    0.236004] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.236204] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.236554] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.236743] TCP: Hash tables configured (established 131072 bind 65536)
[    0.236745] TCP reno registered
[    0.236798] NET: Registered protocol family 1
[    0.236811] pci 0000:00:02.0: Boot video device
[    0.236919] Unpacking initramfs...
[    0.413401] Freeing initrd memory: 8593k freed
[    0.417753] audit: initializing netlink socket (disabled)
[    0.417766] type=2000 audit(1335375014.415:1): initialized
[    0.420127] highmem bounce pool size: 64 pages
[    0.420131] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.421087] VFS: Disk quotas dquot_6.5.2
[    0.421123] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.421180] msgmni has been set to 1724
[    0.421318] alg: No test for stdrng (krng)
[    0.421352] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.421354] io scheduler noop registered
[    0.421355] io scheduler anticipatory registered
[    0.421357] io scheduler deadline registered
[    0.421382] io scheduler cfq registered (default)
[    0.421470] pcieport 0000:00:1c.0: irq 24 for MSI/MSI-X
[    0.421477] pcieport 0000:00:1c.0: setting latency timer to 64
[    0.421569] pcieport 0000:00:1c.2: irq 25 for MSI/MSI-X
[    0.421576] pcieport 0000:00:1c.2: setting latency timer to 64
[    0.421698] isapnp: Scanning for PnP cards...
[    0.774593] isapnp: No Plug & Play device found
[    0.775528] Linux agpgart interface v0.103
[    0.775577] agpgart-intel 0000:00:00.0: Intel G41 Chipset
[    0.776152] agpgart-intel 0000:00:00.0: detected 65532K stolen memory
[    0.797012] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[    0.797060] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.797148] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.797448] 00:0d: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.797549] PNP: No PS/2 controller found. Probing ports directly.
[    0.797872] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.797876] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.797928] mice: PS/2 mouse device common for all mice
[    0.797958] rtc_cmos 00:03: RTC can wake from S4
[    0.797985] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    0.798005] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.798015] cpuidle: using governor ladder
[    0.798016] cpuidle: using governor menu
[    0.798019] No iBFT detected.
[    0.798257] TCP cubic registered
[    0.798351] NET: Registered protocol family 10
[    0.798844] Mobile IPv6
[    0.798846] NET: Registered protocol family 17
[    0.798856] Using IPI No-Shortcut mode
[    0.798900] PM: Resume from disk failed.
[    0.798908] registered taskstats version 1
[    0.799121] rtc_cmos 00:03: setting system clock to 2012-04-25 17:30:15 UTC (1335375015)
[    0.799153] Initalizing network drop monitor service
[    0.799168] Freeing unused kernel memory: 380k freed
[    0.799292] Write protecting the kernel text: 2508k
[    0.799307] Write protecting the kernel read-only data: 908k
[    0.809972] udev[56]: starting version 164
[    0.894255] usbcore: registered new interface driver usbfs
[    0.894398] usbcore: registered new interface driver hub
[    0.895244] usbcore: registered new device driver usb
[    0.895885] SCSI subsystem initialized
[    0.908524] libata version 3.00 loaded.
[    0.908566] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.908605] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.908617] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    0.908620] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    0.908636] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    0.908655] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    0.908664] ehci_hcd 0000:00:1d.7: debug port 1
[    0.909927] atl1c 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.909935] atl1c 0000:02:00.0: setting latency timer to 64
[    0.912541] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    0.914445] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfeafbc00
[    0.915541] uhci_hcd: USB Universal Host Controller Interface driver
[    0.916080] thermal LNXTHERM:01: registered as thermal_zone0
[    0.916085] ACPI: Thermal Zone [THRM] (30 C)
[    0.927776] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.927806] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.927810] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.927814] usb usb1: Product: EHCI Host Controller
[    0.927818] usb usb1: Manufacturer: Linux 2.6.32-5-686 ehci_hcd
[    0.927821] usb usb1: SerialNumber: 0000:00:1d.7
[    0.927930] usb usb1: configuration #1 chosen from 1 choice
[    0.927971] hub 1-0:1.0: USB hub found
[    0.927977] hub 1-0:1.0: 8 ports detected
[    0.928025] ata_piix 0000:00:1f.1: version 2.13
[    0.928038] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.928154] ata_piix 0000:00:1f.1: setting latency timer to 64
[    0.928204] scsi0 : ata_piix
[    0.928263] scsi1 : ata_piix
[    0.929136] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    0.929138] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    0.929160] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.929166] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    0.929168] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.929176] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.929196] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000c880
[    0.929223] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    0.929225] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.929227] usb usb2: Product: UHCI Host Controller
[    0.929228] usb usb2: Manufacturer: Linux 2.6.32-5-686 uhci_hcd
[    0.929230] usb usb2: SerialNumber: 0000:00:1d.0
[    0.929278] usb usb2: configuration #1 chosen from 1 choice
[    0.929297] hub 2-0:1.0: USB hub found
[    0.929302] hub 2-0:1.0: 2 ports detected
[    0.929357] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.929360] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    0.929385] ata_piix 0000:00:1f.2: setting latency timer to 64
[    0.929420] scsi2 : ata_piix
[    0.929459] scsi3 : ata_piix
[    0.930438] ata3: SATA max UDMA/133 cmd 0xc080 ctl 0xc000 bmdma 0xb800 irq 19
[    0.930440] ata4: SATA max UDMA/133 cmd 0xbc00 ctl 0xb880 bmdma 0xb808 irq 19
[    0.930465] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.930470] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    0.930473] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    0.930481] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    0.930504] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000c800
[    0.930529] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    0.930531] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.930532] usb usb3: Product: UHCI Host Controller
[    0.930534] usb usb3: Manufacturer: Linux 2.6.32-5-686 uhci_hcd
[    0.930535] usb usb3: SerialNumber: 0000:00:1d.1
[    0.930583] usb usb3: configuration #1 chosen from 1 choice
[    0.930602] hub 3-0:1.0: USB hub found
[    0.930607] hub 3-0:1.0: 2 ports detected
[    0.930638] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.930642] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    0.930644] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    0.930650] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    0.930674] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000c480
[    0.930696] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    0.930698] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.930700] usb usb4: Product: UHCI Host Controller
[    0.930701] usb usb4: Manufacturer: Linux 2.6.32-5-686 uhci_hcd
[    0.930703] usb usb4: SerialNumber: 0000:00:1d.2
[    0.930743] usb usb4: configuration #1 chosen from 1 choice
[    0.930761] hub 4-0:1.0: USB hub found
[    0.930765] hub 4-0:1.0: 2 ports detected
[    0.930796] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[    0.930800] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    0.930803] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    0.930807] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    0.930831] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000c400
[    0.930854] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    0.930856] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.930858] usb usb5: Product: UHCI Host Controller
[    0.930859] usb usb5: Manufacturer: Linux 2.6.32-5-686 uhci_hcd
[    0.930860] usb usb5: SerialNumber: 0000:00:1d.3
[    0.930900] usb usb5: configuration #1 chosen from 1 choice
[    0.930918] hub 5-0:1.0: USB hub found
[    0.930922] hub 5-0:1.0: 2 ports detected
[    1.024625] atl1c 0000:02:00.0: version 1.0.0.2-NAPI
[    1.105984] ata3.00: ATA-8: ST3500418AS, CC38, max UDMA/133
[    1.105987] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.106248] ata4.01: ATAPI: TSSTcorp CDDVDW SH-S223C, SB02, max UDMA/100
[    1.112516] ata3.00: configured for UDMA/133
[    1.112660] scsi 2:0:0:0: Direct-Access     ATA      ST3500418AS      CC38 PQ: 0 ANSI: 5
[    1.120724] ata4.01: configured for UDMA/100
[    1.124395] scsi 3:0:1:0: CD-ROM            TSSTcorp CDDVDW SH-S223C  SB02 PQ: 0 ANSI: 5
[    1.132328] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    1.132373] sd 2:0:0:0: [sda] Write Protect is off
[    1.132375] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.132393] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.132501]  sda:sr0: scsi3-mmc drive: 52x/52x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.139578] Uniform CD-ROM driver Revision: 3.20
[    1.139696] sr 3:0:1:0: Attached scsi CD-ROM sr0
[    1.148824]  sda1 sda2 sda3 sda4
[    1.169205] sd 2:0:0:0: [sda] Attached SCSI disk
[    1.172603] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    1.172625] sr 3:0:1:0: Attached scsi generic sg1 type 5
[    1.468037] usb 1-4: new high speed USB device using ehci_hcd and address 5
[    1.474019] PM: Starting manual resume from disk
[    1.474022] PM: Resume from partition 8:4
[    1.474023] PM: Checking hibernation image.
[    1.476945] PM: Error -22 checking image file
[    1.476948] PM: Resume from disk failed.
[    1.528573] kjournald starting.  Commit interval 5 seconds
[    1.528586] EXT3-fs: mounted filesystem with ordered data mode.
[    1.602883] usb 1-4: New USB device found, idVendor=18ec, idProduct=3366
[    1.602888] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.602893] usb 1-4: Product: USB2.0 PC CAMERA
[    1.602896] usb 1-4: Manufacturer: ARKMICRO
[    1.603010] usb 1-4: configuration #1 chosen from 1 choice
[    1.840017] usb 3-1: new low speed USB device using uhci_hcd and address 2
[    2.108544] usb 3-1: New USB device found, idVendor=1c4f, idProduct=0002
[    2.108549] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.108553] usb 3-1: Product: USB Keykoard
[    2.108556] usb 3-1: Manufacturer: USB
[    2.108670] usb 3-1: configuration #1 chosen from 1 choice
[    2.348535] usb 2-1: new full speed USB device using uhci_hcd and address 2
[    2.391654] udev[406]: starting version 164
[    2.533244] usb 2-1: New USB device found, idVendor=03f0, idProduct=7604
[    2.533249] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.533254] usb 2-1: Product: Deskjet 3900
[    2.533257] usb 2-1: Manufacturer: HP
[    2.533260] usb 2-1: SerialNumber: CN61O1J20S048H
[    2.533384] usb 2-1: configuration #1 chosen from 1 choice
[    2.673397] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.673410] ACPI: Power Button [PWRB]
[    2.673447] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.673450] ACPI: Power Button [PWRF]
[    2.777125] usb 2-2: new low speed USB device using uhci_hcd and address 3
[    2.947246] usb 2-2: New USB device found, idVendor=192f, idProduct=0916
[    2.947251] usb 2-2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.947256] usb 2-2: Product: USB Optical Mouse
[    2.947374] usb 2-2: configuration #1 chosen from 1 choice
[    3.012448] ACPI: SSDT 7bdb00f0 004B2 (v01  PmRef  P001Cst 00003001 INTL 20051117)
[    3.012679] Monitor-Mwait will be used to enter C-1 state
[    3.012697] Monitor-Mwait will be used to enter C-2 state
[    3.012701] Marking TSC unstable due to TSC halts in idle
[    3.012749] processor LNXCPU:00: registered as cooling_device0
[    3.013024] ACPI: SSDT 7bdb05b0 00085 (v01  PmRef  P002Cst 00003000 INTL 20051117)
[    3.013519] input: PC Speaker as /devices/platform/pcspkr/input/input2
[    3.014847] Switching to clocksource hpet
[    3.014923] processor LNXCPU:01: registered as cooling_device1
[    3.448232] intel_rng: FWH not detected
[    3.595433] usbcore: registered new interface driver hiddev
[    3.607796] input: USB USB Keykoard as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input3
[    3.607860] generic-usb 0003:1C4F:0002.0001: input,hidraw0: USB HID v1.10 Keyboard [USB USB Keykoard] on usb-0000:00:1d.1-1/input0
[    3.608489] parport_pc 00:06: reported by Plug and Play ACPI
[    3.608566] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
[    3.610121] C-Media PCI 0000:03:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.623854] input: USB USB Keykoard as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.1/input/input4
[    3.623925] generic-usb 0003:1C4F:0002.0002: input,hidraw1: USB HID v1.10 Device [USB USB Keykoard] on usb-0000:00:1d.1-1/input1
[    3.637502] input: USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input5
[    3.637564] generic-usb 0003:192F:0916.0003: input,hidraw2: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:1d.0-2/input0
[    3.637582] usbcore: registered new interface driver usbhid
[    3.637584] usbhid: v2.6:USB HID core driver
[    3.742409] Linux video capture interface: v2.00
[    3.762880] uvcvideo: Found UVC 1.00 device USB2.0 PC CAMERA (18ec:3366)
[    3.764640] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.
[    3.765029] input: USB2.0 PC CAMERA as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4:1.0/input/input6
[    3.765100] usbcore: registered new interface driver uvcvideo
[    3.765102] USB Video Class driver (v0.1.0)
[    3.799491] [drm] Initialized drm 1.1.0 20060810
[    3.838499] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    4.089467] usbcore: registered new interface driver snd-usb-audio
[    4.112557] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    4.112562] i915 0000:00:02.0: setting latency timer to 64
[    4.117262] i915 0000:00:02.0: irq 26 for MSI/MSI-X
[    4.117268] [drm] set up 63M of stolen space
[    4.340805] Console: switching to colour frame buffer device 200x56
[    4.345554] fb0: inteldrmfb frame buffer device
[    4.345555] registered panic notifier
[    4.345591] No ACPI video bus found
[    4.345627] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    4.520394] usblp0: USB Bidirectional printer dev 2 if 0 alt 0 proto 2 vid 0x03F0 pid 0x7604
[    4.520424] usbcore: registered new interface driver usblp
[    5.426945] Adding 7218168k swap on /dev/sda4.  Priority:-1 extents:1 across:7218168k 
[    5.542272] EXT3 FS on sda3, internal journal
[    5.620930] loop: module loaded
[    6.461872] fuse init (API version 7.13)
[    8.348026] atl1c 0000:02:00.0: irq 27 for MSI/MSI-X
[    8.348138] atl1c 0000:02:00.0: atl1c: eth0 NIC Link is Up<100 Mbps Full Duplex>
[   10.166740] Bluetooth: Core ver 2.15
[   10.166773] NET: Registered protocol family 31
[   10.166774] Bluetooth: HCI device and connection manager initialized
[   10.166776] Bluetooth: HCI socket layer initialized
[   10.247957] Bluetooth: L2CAP ver 2.14
[   10.247959] Bluetooth: L2CAP socket layer initialized
[   10.284589] Bluetooth: RFCOMM TTY layer initialized
[   10.284592] Bluetooth: RFCOMM socket layer initialized
[   10.284593] Bluetooth: RFCOMM ver 1.11
[   10.378844] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   10.378847] Bluetooth: BNEP filters: protocol multicast
[   10.430954] Bridge firewalling registered
[   10.510406] Bluetooth: SCO (Voice Link) ver 0.6
[   10.510409] Bluetooth: SCO socket layer initialized
[   11.028204] lp0: using parport0 (interrupt-driven).
[   11.070132] ppdev: user-space parallel port driver
[   12.816266] usb 2-1: usbfs: interface 0 

Offline

#14 2012-04-25 20:02:56

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

I suspect your USB camera is used as default sound device.

snd_pcm                47226  2 snd_usb_audio,snd_cmipci

I suspect the order of snd_usb_audio,snd_cmipci is wrong.

Do you have these 2 lines in /etc/modprobe.d/alsa-base.conf

# Keep snd-usb-audio from being loaded as first soundcard
options snd-usb-audio index=-2

Replace them by:

# Keep snd-usb-audio from beeing loaded as first soundcard
options snd-cmipci index=0
options snd-usb-audio index=1

Save the file.
Reboot your system, and post the output of

lsmod|grep snd 

again.

Also post output of

aplay -l
aplay -L
cat /proc/asound/cards

Offline

#15 2012-04-25 20:46:53

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

okay, done...

anna@ethicalpets:~$ lsmod|grep snd 
snd_cmipci             22455  1 
gameport                6025  1 snd_cmipci
snd_usb_audio          50634  0 
snd_pcm                47226  2 snd_cmipci,snd_usb_audio
snd_page_alloc          4977  1 snd_pcm
snd_opl3_lib            6022  1 snd_cmipci
snd_mpu401_uart         4067  1 snd_cmipci
snd_usb_lib            11156  1 snd_usb_audio
snd_seq_midi            3576  0 
snd_hwdep               4054  2 snd_usb_audio,snd_opl3_lib
snd_seq_midi_event      3684  1 snd_seq_midi
snd_seq                35327  2 snd_seq_midi,snd_seq_midi_event
snd_rawmidi            12513  3 snd_mpu401_uart,snd_usb_lib,snd_seq_midi
snd_timer              12270  3 snd_pcm,snd_opl3_lib,snd_seq
snd_seq_device          3673  4 snd_opl3_lib,snd_seq_midi,snd_seq,snd_rawmidi
snd                    34387  12 snd_cmipci,snd_usb_audio,snd_pcm,snd_opl3_lib,snd_mpu401_uart,snd_hwdep,snd_seq,snd_rawmidi,snd_timer,snd_seq_device
soundcore               3450  1 snd
usbcore                99125  9 usblp,snd_usb_audio,snd_usb_lib,usbhid,uvcvideo,usb_storage,uhci_hcd,ehci_hcd

and

anna@ethicalpets:~$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: CMI8738 [C-Media CMI8738], device 0: CMI8738 [C-Media PCI DAC/ADC]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: CMI8738 [C-Media CMI8738], device 1: CMI8738 [C-Media PCI 2nd DAC]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: CMI8738 [C-Media CMI8738], device 2: CMI8738 [C-Media PCI IEC958]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
anna@ethicalpets:~$ aplay -L
null
    Discard all samples (playback) or generate zero samples (capture)
default:CARD=CMI8738
    C-Media CMI8738, C-Media PCI DAC/ADC
    Default Audio Device
front:CARD=CMI8738,DEV=0
    C-Media CMI8738, C-Media PCI DAC/ADC
    Front speakers
rear:CARD=CMI8738,DEV=0
    C-Media CMI8738, C-Media PCI 2nd DAC
    Rear speakers
surround40:CARD=CMI8738,DEV=0
    C-Media CMI8738, C-Media PCI DAC/ADC
    4.0 Surround output to Front and Rear speakers
iec958:CARD=CMI8738,DEV=0
    C-Media CMI8738, C-Media PCI DAC/ADC
    IEC958 (S/PDIF) Digital Audio Output
anna@ethicalpets:~$ cat /proc/asound/cards
 0 [CMI8738        ]: CMI8738 - C-Media CMI8738
                      C-Media CMI8738 (model 37) at 0xe800, irq 16
 1 [CAMERA         ]: USB-Audio - USB2.0 PC CAMERA
                      ARKMICRO USB2.0 PC CAMERA at usb-0000:00:1d.7-4, high speed
anna@ethicalpets:~$ 

Offline

#16 2012-04-26 07:30:28

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

That looks better to me.

The question now is ... does recording work?

Use alsamixer first to unmute all channels.

Offline

#17 2012-04-26 12:10:44

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Still not working... :S tried messing about with the choices for input in audacity too, you can choose default of specific things, but no change. Could this be a driver issue? Thanks for so much help x

Offline

#18 2012-04-26 13:34:30

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Let's start with the simple things first:

Does this work from the command line:

http://www.alsa-project.org/main/index. … ardTesting

PS: try speaker-test without '-Dplug:surround51'

Last edited by xaos52 (2012-04-26 13:36:54)

Offline

#19 2012-04-26 14:12:47

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

xaos52 wrote:

Let's start with the simple things first:

Does this work from the command line:

http://www.alsa-project.org/main/index. … ardTesting

PS: try speaker-test without '-Dplug:surround51'

ok so:

anna@ethicalpets:~$ aplay -vv /home/anna/downloads/soundtest.wav 
Playing WAVE '/home/anna/downloads/soundtest.wav' : Signed 16 bit Little Endian, Rate 44100 Hz, Stereo
Plug PCM: Rate conversion PCM (48000, sformat=S16_LE)
Converter: linear-interpolation
Protocol version: 10002
Its setup is:
  stream       : PLAYBACK
  access       : RW_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 44100
  exact rate   : 44100 (44100/1)
  msbits       : 16
  buffer_size  : 15052
  period_size  : 940
  period_time  : 21333
  tstamp_mode  : NONE
  period_step  : 1
  avail_min    : 940
  period_event : 0
  start_threshold  : 15052
  stop_threshold   : 15052
  silence_threshold: 0
  silence_size : 0
  boundary     : 986447872
Slave: Direct Stream Mixing PCM
Its setup is:
  stream       : PLAYBACK
  access       : MMAP_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : NONE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 16384
  stop_threshold   : 16384
  silence_threshold: 0
  silence_size : 0
  boundary     : 1073741824
Hardware PCM card 0 'C-Media CMI8738' device 0 subdevice 0
Its setup is:
  stream       : PLAYBACK
  access       : MMAP_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : ENABLE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 1
  stop_threshold   : 1073741824
  silence_threshold: 0
  silence_size : 1073741824
  boundary     : 1073741824
  appl_ptr     : 0
  hw_ptr       : 15609872
#####       +                                      | 22%underrun!!! (at least 295772095.613 ms long)
Status:
  state       : XRUN
  trigger_time: 1335448767.823718000
  tstamp      : 1335448775.697597000
  delay       : -79
  avail       : 15131
  avail_max   : 16059
##################################################+| 99%underrun!!! (at least 295791087.615 ms long)
Status:
  state       : XRUN
  trigger_time: 1335448775.698048000
  tstamp      : 1335448802.491950000
  delay       : -1854
  avail       : 16906
  avail_max   : 16894
#   +                                              | 06%
anna@ethicalpets:~$ 

- it does work, also, interesting to see my under-run problem, not yet figured out why this is happening as computer is not a slow one.


the second test seemed fine, it worked for left and right as i used my headphones.

The recording thing didnt seem to work. It sat at 0% - plus, my alsa mixer does not have the same options as mentioned. I looked at this for a while, looked at help, pressed some keys. eventually, I found "toggle capture" is space key in capture menu (dunno what this means) pressed it and i got a capture on and off thing like on those screenshots. Then I went back to show all, and seemed to have capture voume which wasnt there before - but now audacity wont work, so am going to reboot. brb

Offline

#20 2012-04-26 14:17:15

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

ok, so, audacity still didnt work, however the arerecord thing worked a bit diffrently

anna@ethicalpets:~$ arecord -vv -fdat foo.wav
Recording WAVE 'foo.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Stereo
Plug PCM: Direct Snoop PCM
Its setup is:
  stream       : CAPTURE
  access       : RW_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : NONE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 1
  stop_threshold   : 16384
  silence_threshold: 0
  silence_size : 0
  boundary     : 1073741824
Hardware PCM card 0 'C-Media CMI8738' device 0 subdevice 0
Its setup is:
  stream       : CAPTURE
  access       : MMAP_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : ENABLE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 1
  stop_threshold   : 1073741824
  silence_threshold: 0
  silence_size : 0
  boundary     : 1073741824
  appl_ptr     : 0
  hw_ptr       : 0
##+                                                | 03%^C
Aborted by signal Interrupt...
anna@ethicalpets:~$ aplay -vv foo.wav
Playing WAVE 'foo.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Stereo
Plug PCM: Direct Stream Mixing PCM
Its setup is:
  stream       : PLAYBACK
  access       : RW_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : NONE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 16384
  stop_threshold   : 16384
  silence_threshold: 0
  silence_size : 0
  boundary     : 1073741824
Hardware PCM card 0 'C-Media CMI8738' device 0 subdevice 0
Its setup is:
  stream       : PLAYBACK
  access       : MMAP_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : ENABLE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 1
  stop_threshold   : 1073741824
  silence_threshold: 0
  silence_size : 1073741824
  boundary     : 1073741824
  appl_ptr     : 0
  hw_ptr       : 0
##+                                                | 03%^C
Aborted by signal Interrupt...

last time is just said 00%, and this time it said 03%

going to look at alsamixer more to see if i can figure out more

Offline

#21 2012-04-26 14:24:38

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

have managed to get capture VOLUME on by changing to line-out, i assume this is in combo with whatever toggle did, but still no recording sound

anna@ethicalpets:~$ alsamixer 
anna@ethicalpets:~$ arecord -vv -fdat foo.wav
Recording WAVE 'foo.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Stereo
Plug PCM: Direct Snoop PCM
Its setup is:
  stream       : CAPTURE
  access       : RW_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : NONE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 1
  stop_threshold   : 16384
  silence_threshold: 0
  silence_size : 0
  boundary     : 1073741824
Hardware PCM card 0 'C-Media CMI8738' device 0 subdevice 0
Its setup is:
  stream       : CAPTURE
  access       : MMAP_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : ENABLE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 1
  stop_threshold   : 1073741824
  silence_threshold: 0
  silence_size : 0
  boundary     : 1073741824
  appl_ptr     : 0
  hw_ptr       : 0
##+                                                | 03%^C
Aborted by signal Interrupt...
anna@ethicalpets:~$ aplay -vv foo.wav
Playing WAVE 'foo.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Stereo
Plug PCM: Direct Stream Mixing PCM
Its setup is:
  stream       : PLAYBACK
  access       : RW_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : NONE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 16384
  stop_threshold   : 16384
  silence_threshold: 0
  silence_size : 0
  boundary     : 1073741824
Hardware PCM card 0 'C-Media CMI8738' device 0 subdevice 0
Its setup is:
  stream       : PLAYBACK
  access       : MMAP_INTERLEAVED
  format       : S16_LE
  subformat    : STD
  channels     : 2
  rate         : 48000
  exact rate   : 48000 (48000/1)
  msbits       : 16
  buffer_size  : 16384
  period_size  : 1024
  period_time  : 21333
  tstamp_mode  : ENABLE
  period_step  : 1
  avail_min    : 1024
  period_event : 0
  start_threshold  : 1
  stop_threshold   : 1073741824
  silence_threshold: 0
  silence_size : 1073741824
  boundary     : 1073741824
  appl_ptr     : 0
  hw_ptr       : 0
##+                                                | 03%underrun!!! (at least 285231085.912 ms long)
Status:
  state       : XRUN
  trigger_time: 1335450218.73861000
  tstamp      : 1335450218.73915000
  delay       : 0
  avail       : 17367
  avail_max   : 18391
##+                                                | 03%

how can it have an underun if it isnt playing? this problem is very weird. sorry for all the posts

Offline

#22 2012-04-26 14:31:07

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

ok, so using the 0 and . keys with numlock off, I have manged to turn on some more things in capture in alsamixer, but its not changed the situation. It's very odd cause if I turn up volume enough I record a kind of static hum, might be feedback or something.

Offline

#23 2012-04-26 14:42:10

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Run this in a terminal window - copy/paste it - and post the output on the forum.
It collects all sound related info from your system.

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

Offline

#24 2012-04-26 14:45:30

gingerling
Member
Registered: 2012-04-24
Posts: 42

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

anna@ethicalpets:~$ wget -O alsa-info.sh http://www.alsa-project.org/alsa-info.sh; chmod +x ./alsa-info.sh; ./alsa-info.sh
--2012-04-26 15:43:43--  http://www.alsa-project.org/alsa-info.sh
Resolving www.alsa-project.org... 77.48.224.243
Connecting to www.alsa-project.org|77.48.224.243|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://git.alsa-project.org/?p=alsa-driver.git;a=blob_plain;f=utils/alsa-info.sh [following]
--2012-04-26 15:43:43--  http://git.alsa-project.org/?p=alsa-driver.git;a=blob_plain;f=utils/alsa-info.sh
Resolving git.alsa-project.org... 77.48.224.243
Reusing existing connection to www.alsa-project.org:80.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/plain]
Saving to: `alsa-info.sh'

    [  <=>                                             ] 27,247       133K/s   in 0.2s    

2012-04-26 15:43:43 (133 KB/s) - `alsa-info.sh' saved [27247]

ALSA Information Script v 0.4.60
--------------------------------

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 './alsa-info.sh --help' for command line options.

Automatically upload ALSA information to www.alsa-project.org? [y/N] : y
Uploading information to www.alsa-project.org ...  Done!

Your ALSA information is located at http://www.alsa-project.org/db/?f=e83bc5c36a7230e8f565172838ec3fce19743c59

Please inform the person helping you.

incase you cant access the link i pasted below

!!################################
!!ALSA Information Script v 0.4.60
!!################################

!!Script ran on: Thu Apr 26 14:43:44 UTC 2012


!!Linux Distribution
!!------------------




!!DMI Information
!!---------------

Manufacturer:      ECS
Product Name:      G41T-M6
Product Version:   1.0


!!Kernel Information
!!------------------

Kernel release:    2.6.32-5-686
Operating System:  GNU/Linux
Architecture:      i686
Processor:         unknown
SMP Enabled:       Yes


!!ALSA Version
!!------------

Driver version:     1.0.21
Library version:    1.0.23
Utilities version:  1.0.23


!!Loaded ALSA modules
!!-------------------

snd_cmipci
snd_usb_audio


!!Sound Servers on this system
!!----------------------------

No sound servers found.


!!Soundcards recognised by ALSA
!!-----------------------------

 0 [CMI8738        ]: CMI8738 - C-Media CMI8738
                      C-Media CMI8738 (model 37) at 0xe800, irq 16
 1 [CAMERA         ]: USB-Audio - USB2.0 PC CAMERA
                      ARKMICRO USB2.0 PC CAMERA at usb-0000:00:1d.7-1, high speed


!!PCI Soundcards installed in the system
!!--------------------------------------

03:04.0 Multimedia audio controller: C-Media Electronics Inc CM8738 (rev 10)


!!Advanced information - PCI Vendor/Device/Subsystem ID's
!!--------------------------------------------------------

03:04.0 0401: 13f6:0111 (rev 10)
    Subsystem: 13f6:0111


!!Modprobe options (Sound related)
!!--------------------------------

snd-atiixp-modem: index=-2
snd-intel8x0m: index=-2
snd-via82xx-modem: index=-2
snd-pcsp: index=-2
snd-cmipci: index=0
snd-usb-audio: index=1


!!Loaded sound module options
!!--------------------------

!!Module: snd_cmipci
    enable : Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y
    fm_port : 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
    id : <NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>
    index : 0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    joystick_port : 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
    mpu_port : 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
    soft_ac3 : Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y

!!Module: snd_usb_audio
    async_unlink : Y
    device_setup : 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
    enable : Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y
    id : <NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>
    ignore_ctl_error : N
    index : 1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    nrpacks : 8
    pid : -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    vid : -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1


!!ALSA Device nodes
!!-----------------

crw-rw----  1 root audio 116, 11 Apr 26 15:13 /dev/snd/controlC0
crw-rw----  1 root audio 116,  5 Apr 26 15:13 /dev/snd/controlC1
crw-rw----  1 root audio 116, 10 Apr 26 15:26 /dev/snd/pcmC0D0c
crw-rw----  1 root audio 116,  9 Apr 26 15:26 /dev/snd/pcmC0D0p
crw-rw----  1 root audio 116,  8 Apr 26 15:13 /dev/snd/pcmC0D1p
crw-rw----  1 root audio 116,  7 Apr 26 15:13 /dev/snd/pcmC0D2c
crw-rw----  1 root audio 116,  6 Apr 26 15:13 /dev/snd/pcmC0D2p
crw-rw----  1 root audio 116,  4 Apr 26 15:13 /dev/snd/pcmC1D0c
crw-rw----  1 root audio 116,  3 Apr 26 15:13 /dev/snd/seq
crw-rw----  1 root audio 116,  2 Apr 26 15:13 /dev/snd/timer

/dev/snd/by-id:
total 0
drwxr-xr-x 2 root root  60 Apr 26 15:13 .
drwxr-xr-x 4 root root 280 Apr 26 15:13 ..
lrwxrwxrwx 1 root root  12 Apr 26 15:13 usb-ARKMICRO_USB2.0_PC_CAMERA-02 -> ../controlC1

/dev/snd/by-path:
total 0
drwxr-xr-x 2 root root  80 Apr 26 15:13 .
drwxr-xr-x 4 root root 280 Apr 26 15:13 ..
lrwxrwxrwx 1 root root  12 Apr 26 15:13 pci-0000:00:1d.7-usb-0:1:1.2 -> ../controlC1
lrwxrwxrwx 1 root root  12 Apr 26 15:13 pci-0000:03:04.0 -> ../controlC0


!!Aplay/Arecord output
!!------------

APLAY

**** List of PLAYBACK Hardware Devices ****
card 0: CMI8738 [C-Media CMI8738], device 0: CMI8738 [C-Media PCI DAC/ADC]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: CMI8738 [C-Media CMI8738], device 1: CMI8738 [C-Media PCI 2nd DAC]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: CMI8738 [C-Media CMI8738], device 2: CMI8738 [C-Media PCI IEC958]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

ARECORD

**** List of CAPTURE Hardware Devices ****
card 0: CMI8738 [C-Media CMI8738], device 0: CMI8738 [C-Media PCI DAC/ADC]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: CMI8738 [C-Media CMI8738], device 2: CMI8738 [C-Media PCI IEC958]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: CAMERA [USB2.0 PC CAMERA], device 0: USB Audio [USB Audio]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

!!Amixer output
!!-------------

!!-------Mixer controls for card 0 [CMI8738]

Card hw:0 'CMI8738'/'C-Media CMI8738 (model 37) at 0xe800, irq 16'
  Mixer name    : 'CMedia PCI'
  Components    : ''
  Controls      : 43
  Simple ctrls  : 23
Simple mixer control 'Master',0
  Capabilities: pvolume penum
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Mono:
  Front Left: Playback 25 [81%]
  Front Right: Playback 25 [81%]
Simple mixer control '3D Control - Switch',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'PCM',0
  Capabilities: pvolume pswitch pswitch-joined cswitch penum
  Playback channels: Front Left - Front Right
  Capture channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Front Left: Playback 24 [77%] [on] Capture [on]
  Front Right: Playback 24 [77%] [on] Capture [on]
Simple mixer control 'Synth',0
  Capabilities: pvolume pswitch pswitch-joined cswitch penum
  Playback channels: Front Left - Front Right
  Capture channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Front Left: Playback 24 [77%] [on] Capture [on]
  Front Right: Playback 24 [77%] [on] Capture [on]
Simple mixer control 'Line',0
  Capabilities: pvolume pswitch cswitch penum
  Playback channels: Front Left - Front Right
  Capture channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Front Left: Playback 24 [77%] [on] Capture [on]
  Front Right: Playback 24 [77%] [on] Capture [on]
Simple mixer control 'Line-In Mode',0
  Capabilities: enum
  Items: 'Line-In' 'Rear Output'
  Item0: 'Line-In'
Simple mixer control 'CD',0
  Capabilities: pvolume pswitch cswitch penum
  Playback channels: Front Left - Front Right
  Capture channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Front Left: Playback 28 [90%] [on] Capture [on]
  Front Right: Playback 28 [90%] [on] Capture [on]
Simple mixer control 'Mic',0
  Capabilities: pvolume pvolume-joined cvolume cvolume-joined pswitch pswitch-joined cswitch cswitch-joined penum
  Playback channels: Mono
  Capture channels: Mono
  Limits: Playback 0 - 31 Capture 0 - 7
  Mono: Playback 30 [97%] [on] Capture 7 [100%] [off]
Simple mixer control 'Mic Boost',0
  Capabilities: pswitch pswitch-joined cswitch cswitch-joined penum
  Playback channels: Mono
  Capture channels: Mono
  Mono: Playback [on] Capture [on]
Simple mixer control 'Phone',0
  Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum
  Playback channels: Mono
  Limits: Playback 0 - 7
  Mono: Playback 0 [0%] [off]
Simple mixer control 'IEC958 5V',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'IEC958 Copyright',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'IEC958 In Monitor',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'IEC958 In Phase Inverse',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'IEC958 In Select',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'IEC958 In Valid',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'IEC958 Loop',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'IEC958 Mix Analog',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'IEC958 Output',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'PC Speaker',0
  Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum
  Playback channels: Mono
  Limits: Playback 0 - 3
  Mono: Playback 2 [67%] [off]
Simple mixer control 'Aux',0
  Capabilities: pvolume pswitch cswitch penum
  Playback channels: Front Left - Front Right
  Capture channels: Front Left - Front Right
  Limits: Playback 0 - 15
  Front Left: Playback 15 [100%] [off] Capture [on]
  Front Right: Playback 15 [100%] [off] Capture [on]
Simple mixer control 'Exchange DAC',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control 'Four Channel Mode',0
  Capabilities: pswitch pswitch-joined penum
  Playback channels: Mono
  Mono: Playback [off]

!!-------Mixer controls for card 1 [CAMERA]

Card hw:1 'CAMERA'/'ARKMICRO USB2.0 PC CAMERA at usb-0000:00:1d.7-1, high speed'
  Mixer name    : 'USB Mixer'
  Components    : 'USB18ec:3366'
  Controls      : 2
  Simple ctrls  : 1
Simple mixer control 'Mic',0
  Capabilities: cvolume cswitch penum
  Capture channels: Front Left - Front Right
  Limits: Capture 0 - 32
  Front Left: Capture 0 [0%] [0.00dB] [on]
  Front Right: Capture 0 [0%] [0.00dB] [on]


!!Alsactl output
!!-------------

--startcollapse--
state.CMI8738 {
    control.1 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 2
        comment.range '0 - 31'
        iface MIXER
        name 'Master Playback Volume'
        value.0 25
        value.1 25
    }
    control.2 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name '3D Control - Switch'
        value false
    }
    control.3 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 2
        comment.range '0 - 31'
        iface MIXER
        name 'PCM Playback Volume'
        value.0 24
        value.1 24
    }
    control.4 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'PCM Playback Switch'
        value true
    }
    control.5 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 2
        iface MIXER
        name 'PCM Capture Switch'
        value.0 true
        value.1 true
    }
    control.6 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 2
        comment.range '0 - 31'
        iface MIXER
        name 'Synth Playback Volume'
        value.0 24
        value.1 24
    }
    control.7 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'Synth Playback Switch'
        value true
    }
    control.8 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 4
        iface MIXER
        name 'Synth Capture Route'
        value.0 true
        value.1 false
        value.2 false
        value.3 true
    }
    control.9 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 2
        comment.range '0 - 31'
        iface MIXER
        name 'CD Playback Volume'
        value.0 28
        value.1 28
    }
    control.10 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 2
        iface MIXER
        name 'CD Playback Switch'
        value.0 true
        value.1 true
    }
    control.11 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 4
        iface MIXER
        name 'CD Capture Route'
        value.0 true
        value.1 false
        value.2 false
        value.3 true
    }
    control.12 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 2
        comment.range '0 - 31'
        iface MIXER
        name 'Line Playback Volume'
        value.0 24
        value.1 24
    }
    control.13 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 2
        iface MIXER
        name 'Line Playback Switch'
        value.0 true
        value.1 true
    }
    control.14 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 4
        iface MIXER
        name 'Line Capture Route'
        value.0 true
        value.1 false
        value.2 false
        value.3 true
    }
    control.15 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 1
        comment.range '0 - 31'
        iface MIXER
        name 'Mic Playback Volume'
        value 30
    }
    control.16 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'Mic Playback Switch'
        value true
    }
    control.17 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'Mic Capture Switch'
        value false
    }
    control.18 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 1
        comment.range '0 - 3'
        iface MIXER
        name 'PC Speaker Playback Volume'
        value 2
    }
    control.19 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 2
        comment.range '0 - 15'
        iface MIXER
        name 'Aux Playback Volume'
        value.0 15
        value.1 15
    }
    control.20 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 2
        iface MIXER
        name 'Aux Playback Switch'
        value.0 false
        value.1 false
    }
    control.21 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 2
        iface MIXER
        name 'Aux Capture Switch'
        value.0 true
        value.1 true
    }
    control.22 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'Mic Boost Playback Switch'
        value true
    }
    control.23 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 1
        comment.range '0 - 7'
        iface MIXER
        name 'Mic Capture Volume'
        value 7
    }
    control.24 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 1
        comment.range '0 - 7'
        iface MIXER
        name 'Phone Playback Volume'
        value 0
    }
    control.25 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'Phone Playback Switch'
        value false
    }
    control.26 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'PC Speaker Playback Switch'
        value false
    }
    control.27 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'Mic Boost Capture Switch'
        value true
    }
    control.28 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'Four Channel Mode'
        value false
    }
    control.29 {
        comment.access 'read write'
        comment.type ENUMERATED
        comment.count 1
        comment.item.0 Line-In
        comment.item.1 'Rear Output'
        iface MIXER
        name 'Line-In Mode'
        value Line-In
    }
    control.30 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'Exchange DAC'
        value false
    }
    control.31 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 Output Switch'
        value false
    }
    control.32 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 In Valid'
        value false
    }
    control.33 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 Copyright'
        value false
    }
    control.34 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 5V'
        value false
    }
    control.35 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 Loop'
        value false
    }
    control.36 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 In Monitor'
        value false
    }
    control.37 {
        comment.access 'read write'
        comment.type IEC958
        comment.count 1
        iface PCM
        device 2
        name 'IEC958 Playback Default'
        value '0082000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
    }
    control.38 {
        comment.access read
        comment.type IEC958
        comment.count 1
        iface PCM
        device 2
        name 'IEC958 Playback Con Mask'
        value ffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    }
    control.40 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 Mix Analog'
        value false
    }
    control.41 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 In Phase Inverse'
        value false
    }
    control.42 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface MIXER
        name 'IEC958 In Select'
        value false
    }
    control.43 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 1
        iface CARD
        name Modem
        value false
    }
}
state.CAMERA {
    control.1 {
        comment.access 'read write'
        comment.type BOOLEAN
        comment.count 2
        iface MIXER
        name 'Mic Capture Switch'
        value.0 true
        value.1 true
    }
    control.2 {
        comment.access 'read write'
        comment.type INTEGER
        comment.count 2
        comment.range '0 - 32'
        comment.dbmin 0
        comment.dbmax 3199
        iface MIXER
        name 'Mic Capture Volume'
        value.0 0
        value.1 0
    }
}
--endcollapse--


!!All Loaded Modules
!!------------------

Module
ppdev
lp
sco
bridge
stp
bnep
l2cap
crc16
bluetooth
rfkill
cpufreq_userspace
cpufreq_conservative
cpufreq_stats
cpufreq_powersave
fuse
loop
snd_cmipci
gameport
snd_opl3_lib
snd_mpu401_uart
snd_usb_audio
snd_seq_midi
snd_seq_midi_event
snd_pcm
snd_page_alloc
snd_usb_lib
snd_rawmidi
snd_hwdep
snd_seq
snd_timer
usblp
i915
snd_seq_device
parport_pc
drm_kms_helper
parport
snd
soundcore
drm
uvcvideo
videodev
v4l1_compat
psmouse
i2c_i801
i2c_algo_bit
rng_core
i2c_core
serio_raw
video
output
pcspkr
button
processor
joydev
evdev
usbhid
hid
ext3
jbd
mbcache
sg
sd_mod
crc_t10dif
sr_mod
cdrom
ata_generic
uhci_hcd
ata_piix
thermal
thermal_sys
ehci_hcd
libata
atl1c
scsi_mod
usbcore
nls_base


!!ALSA/HDA dmesg
!!------------------

Offline

Help fund CrunchBang, donate to the project!

#25 2012-04-26 15:07:35

xaos52
The Good Doctor
From: Planet of the @s
Registered: 2011-06-24
Posts: 4,602

Re: sound/alsa INPUT issue - getting a bit stressed out - solved

Simple mixer control 'Mic',0
  Capabilities: pvolume pvolume-joined cvolume cvolume-joined pswitch pswitch-joined cswitch cswitch-joined penum
  Playback channels: Mono
  Capture channels: Mono
  Limits: Playback 0 - 31 Capture 0 - 7
  Mono: Playback 30 [97%] [on] Capture 7 [100%] [off]

capture is off.

Offline

Board footer

Powered by FluxBB

Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.

Debian Logo