danwardle64
Posts: 5
Joined: Wed May 30, 2012 1:45 pm

No sound

Sun Jul 29, 2012 1:47 am

hi there

please please help. i'm a complete noob to this but have being doing my research and basically i cannot for the life of me get sound to come out of my tv. i've changed the config file and tried to set up alsa but it already seems to be installed

i'm running out of ideas.

any help would be greatly appreciated.

dan

zbicin
Posts: 7
Joined: Mon Jul 16, 2012 8:29 am

Re: No sound

Sun Jul 29, 2012 7:58 am

Have you tested the sound using both via hdmi and mini jack with no luck?
And maybe a dumb question, but have you activated sound module via modprobe?

Code: Select all

sudo modprobe snd_bcm2835

danwardle64
Posts: 5
Joined: Wed May 30, 2012 1:45 pm

Re: No sound

Mon Jul 30, 2012 8:30 am

hi,
have not tried through the jack but I have activated the sound module to no avail.
will try through the headphones tonight.

audiodef
Posts: 4
Joined: Fri Aug 31, 2012 4:39 pm

Re: No sound

Sat Sep 01, 2012 5:19 pm

I just got my Pi and I'm not getting any sound, either. I've checked alsamixer, did a modprobe, and checked the preferences in audacious and VLC. I tried using the audio out on my monitor and the jack on the Pi itself. Nothing.

fredjam
Posts: 83
Joined: Thu Jul 19, 2012 3:19 am
Location: London UK

Re: No sound

Sun Sep 02, 2012 12:45 am

This is how I got my sound working through HDMI using the latest version of Raspian
Linux.
1. Did the 'modprobe' command as you have done.
2. Did 'sudo apt-get install alsa-utils' in a terminal window.
3. Did 'sudo nano /etc/asound.conf' in a terminal window and copied the following text
pcm.mmap0 {
type mmap_emul;
slave {
pcm "hw:0,0";
}
}

pcm.!default {
type plug;
slave {
pcm mmap0;
}
}
into the file. Then save the file using Ctrl O and the Return key and exit from the nano editor using
Ctrl+X.
Now in a terminal window type the command 'sudo amixer cset numid=3 2'
This sets the sound to hi-fi over HDMI
Using 'sudo amixer cset numid=3 1' woulod set the sound to lo-fi from the line out socket
Then is a terminal window do 'sudo apt-get install vlc' to install the vlc media player.
You can then use vlc to open a sound file to test your set up. If you still get no sound then
you have entered something incorrectly so post again and we can go through it.
If you are not using the latest version of Raspian then this may not work and you are on
your own so good luck.
.

Return to “Troubleshooting”