LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Laptop and Netbook (https://www.linuxquestions.org/questions/linux-laptop-and-netbook-25/)
-   -   Mic stopped working on Linux Mint (https://www.linuxquestions.org/questions/linux-laptop-and-netbook-25/mic-stopped-working-on-linux-mint-4175508909/)

glacier.2000 06-23-2014 12:11 PM

Mic stopped working on Linux Mint
 
Hi,

I have a Toshiba Satellite, and I use Linux Mint Cinnamon.
Everything was fine until last Saturday, when my microphone stopped working. The only thing one can ear is noise, if I scream I can barely distinguish it in the background. I thought it was a problem of configuration due to an updated package, so I've updated the whole system from the v16 to v17, but without any improvement.

The configuration in alsamixer is the following one:
http://postimg.org/image/rghafv8r5/
but, following an incredible number of threads in different forums, I've tried all the possible combinations/all the possible tools to change settings.
Any idea?
Thanks a lot in advance!!
R

Peacedog 06-24-2014 06:22 PM

Hi glacier.2000, Welcome to LQ. Please post the results of the following:

Code:

cat /proc/asound/card0/codec#* | grep Codec
Good luck. ;-)

glacier.2000 06-24-2014 11:22 PM

Hi,

Thanks for your answer, here is the output of the command:

Code:

Codec: IDT 92HD99BXX
Codec: Intel PantherPoint HDMI

Have a nice day!
R

Ztcoracat 06-25-2014 12:25 AM

Maybe (I could be wrong) the mic somehow became muted-?

Open the terminal and type:
Code:

alsamixer
Raise up all of the columns, pcm, master and the mic too. If at the bottom of any of the columns you see this:
Code:

[mm]
That means it's muted. [oo] means unmuted.

This video should help:-
https://www.youtube.com/watch?v=wWmXG-e6yzI

HTH

ondoho 06-25-2014 07:30 AM

yep, i can see from the screenshot it's muted.

glacier.2000 06-25-2014 11:46 PM

I've tried un-muting the microphone, but the only thing I can hear is a rustle (the strong white noise above mentioned). For other configurations in alsamixer (with MIC un-muted), I hear nothing.
I have read on the Internet that could be due to the fact that the system "hallucinates" and thinks it has a stereo microphone, therefore I should suppress one of the two channels (either left or right). I tried playing with all the possibilities for both MIC and the digital MIC, still no luck......
Any other suggestion?
Thanks a lot for your answers!!
R

Ztcoracat 06-26-2014 12:27 AM

Run this command that our Guru asked in post #2.
Code:

cat /proc/asound/card0/codec#* | grep Codec
Post the output in code tags so he can read through it and advise you.

ondoho 06-26-2014 08:39 AM

@ztocrat: op did that already.
let's hope peacedog had something in mind when asking for it.

Shadow_7 06-26-2014 10:54 AM

Some mic types require a small voltage. Some soundcards do not provide this voltage. It's sometimes referred to as plug-in power. When an electret mic doesn't have it explicitly it can have the behavior mentioned.

Or it could be something simple like things defaulting to muted on new installs. Although I wouldn't rule out hardware as most mics do not favor humidity or being wet or physical abuse. Cold dry outside to warm humid inside can cause condensation on parts. Or climate controlled office to hot and humid florida like outside.

glacier.2000 06-26-2014 04:28 PM

It could be that the problem is hardware, although I have never moved or crashed into the microphone. I would, however, totally esclude something climate-related (no excessive cold/hot/humidity...)

Ztcoracat 06-26-2014 09:48 PM

Quote:

Originally Posted by ondoho (Post 5194373)
@ztocrat: op did that already.
let's hope peacedog had something in mind when asking for it.

Right, thanks-
I see in post #3 the output-

Ztcoracat 06-26-2014 09:59 PM

Quote:

Originally Posted by glacier.2000 (Post 5194599)
It could be that the problem is hardware, although I have never moved or crashed into the microphone. I would, however, totally esclude something climate-related (no excessive cold/hot/humidity...)

Sorry I don't know how to test for hardware failure associated with a sound card, except for Memtest but that's for testing the RAM-

Running the command: aplay -l should show what sound card you have.

Once you know what sound card it is maybe there will be something online or in the Linux Mint Forum in regard to behavior your having. I'm not sure if there are known issues with that particular card and Mint.

Like Shadow_7 said some don't have that voltage:-

glacier.2000 06-26-2014 11:36 PM

Here's the output of aplay
Code:

**** Liste des Périphériques Matériels PLAYBACK ****
carte 0: PCH [HDA Intel PCH], périphérique 0: 92HD99BXX Analog [92HD99BXX Analog]
  Sous-périphériques: 1/1
  Sous-périphérique #0: subdevice #0
carte 0: PCH [HDA Intel PCH], périphérique 3: HDMI 0 [HDMI 0]
  Sous-périphériques: 1/1
  Sous-périphérique #0: subdevice #0

I will try this afternoon with a different live distro to see if this is really an hardware-related problem.
Thanks!!!
R

Ztcoracat 06-26-2014 11:59 PM

Quote:

Originally Posted by glacier.2000 (Post 5194706)
Here's the output of aplay
Code:

**** Liste des Périphériques Matériels PLAYBACK ****
carte 0: PCH [HDA Intel PCH], périphérique 0: 92HD99BXX Analog [92HD99BXX Analog]
  Sous-périphériques: 1/1
  Sous-périphérique #0: subdevice #0
carte 0: PCH [HDA Intel PCH], périphérique 3: HDMI 0 [HDMI 0]
  Sous-périphériques: 1/1
  Sous-périphérique #0: subdevice #0

I will try this afternoon with a different live distro to see if this is really an hardware-related problem.
Thanks!!!
R

According to Google this is french-
Sous-périphériques: 1/1 means subdevices.
Carte means card and device3 is HDMI meaning High Definition Multimedia Interface.

You could research the HDA Intel PCH Analog card 95HD99Bxx online.
It could be a bug but I am not sure.

I'm thinking that if another distro has the same issue it could very well be a hardware problem.

Ztcoracat 06-27-2014 12:08 AM

Sometimes and in some cases if one is having performance or hardware issue's installing a higher version of the kernel can help solve that.

Maybe one of our members running Mint has experience with installing a newer kernel.
Sorry, I don't:-

https://www.kernel.org/
http://www.wikihow.com/Install-and-U...-on-Linux-Mint

Peacedog 06-27-2014 07:33 AM

Quote:

Originally Posted by Ztcoracat (Post 5194677)
Right, thanks-
I see in post #3 the output-

I was inquiring for the codec of the chip as alsa has many options that can be passed depending on the codec. Please also post the results of the following:

Code:

cat /etc/modprobe.d/alsa-base.conf
Good luck. ;-)

glacier.2000 06-27-2014 08:12 AM

I'll post the config file as soon as I'm back home.
The very strange thing is that, apparently, everything came out of blue sky after it worked like a charm for more than 6 months. The only things I could blame are either Skype (I had removed the "adjust automatically the volumes" option, but it automagically came back on) or an update (but, as far as I remember, I did no kernel updates in the past week and everything worked until my last skype call 10 days ago...). :confused:

glacier.2000 06-27-2014 10:14 AM

Code:

# autoloader aliases
install sound-slot-0 /sbin/modprobe snd-card-0
install sound-slot-1 /sbin/modprobe snd-card-1
install sound-slot-2 /sbin/modprobe snd-card-2
install sound-slot-3 /sbin/modprobe snd-card-3
install sound-slot-4 /sbin/modprobe snd-card-4
install sound-slot-5 /sbin/modprobe snd-card-5
install sound-slot-6 /sbin/modprobe snd-card-6
install sound-slot-7 /sbin/modprobe snd-card-7

# Cause optional modules to be loaded above generic modules
install snd /sbin/modprobe --ignore-install snd $CMDLINE_OPTS && { /sbin/modprobe --quiet --use-blacklist snd-ioctl32 ; /sbin/modprobe --quiet --use-blacklist snd-seq ; }
#
# Workaround at bug #499695 (reverted in Ubuntu see LP #319505)
install snd-pcm /sbin/modprobe --ignore-install snd-pcm $CMDLINE_OPTS && { /sbin/modprobe --quiet --use-blacklist snd-pcm-oss ; : ; }
install snd-mixer /sbin/modprobe --ignore-install snd-mixer $CMDLINE_OPTS && { /sbin/modprobe --quiet --use-blacklist snd-mixer-oss ; : ; }
install snd-seq /sbin/modprobe --ignore-install snd-seq $CMDLINE_OPTS && { /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; /sbin/modprobe --quiet --use-blacklist snd-seq-oss ; : ; }
#
install snd-rawmidi /sbin/modprobe --ignore-install snd-rawmidi $CMDLINE_OPTS && { /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; : ; }
# Cause optional modules to be loaded above sound card driver modules
install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 $CMDLINE_OPTS && { /sbin/modprobe --quiet --use-blacklist snd-emu10k1-synth ; }
install snd-via82xx /sbin/modprobe --ignore-install snd-via82xx $CMDLINE_OPTS && { /sbin/modprobe --quiet --use-blacklist snd-seq ; }

# Load saa7134-alsa instead of saa7134 (which gets dragged in by it anyway)
install saa7134 /sbin/modprobe --ignore-install saa7134 $CMDLINE_OPTS && { /sbin/modprobe --quiet --use-blacklist saa7134-alsa ; : ; }
# Prevent abnormal drivers from grabbing index 0
options bt87x index=-2
options cx88_alsa index=-2
options saa7134-alsa index=-2
options snd-atiixp-modem index=-2
options snd-intel8x0m index=-2
options snd-via82xx-modem index=-2
options snd-usb-audio index=-2
options snd-usb-caiaq index=-2
options snd-usb-ua101 index=-2
options snd-usb-us122l index=-2
options snd-usb-usx2y index=-2
# Ubuntu #62691, enable MPU for snd-cmipci
options snd-cmipci mpu_port=0x330 fm_port=0x388
# Keep snd-pcsp from being loaded as first soundcard
options snd-pcsp index=-2
# Keep snd-usb-audio from beeing loaded as first soundcard
options snd-usb-audio index=-2


glacier.2000 06-27-2014 11:23 AM

Fixed!!
I've started the notebook with a USB key and replicated the alsamixer settings, which were working for the live version. The mic has to be muted, while the digital one un-muted... It's crazy, I have changed them multiple times and this never worked... :confused:
Also, it seems like the volumes change as they wish, without any control.... But that's a minor problem, now I can finally make the phone calls! :)
Thanks to everyone who helped me!
Have a nice week-end!
R

Peacedog 06-27-2014 01:28 PM

Glad you got this sorted.

Good luck. ;-)


All times are GMT -5. The time now is 10:03 PM.