No Sound

Questions about Wine on Linux
Locked
jimmiebtlr
Newbie
Newbie
Posts: 4
Joined: Mon Oct 07, 2013 9:49 pm

No Sound

Post by jimmiebtlr »

I'm using debian testing. My guess is I'm missing a dependency, though I'm not sure what it would be.

Code: Select all

dpkg --get-selections | grep pulse
gstreamer0.10-pulseaudio:amd64			install
gstreamer1.0-pulseaudio:amd64			install
libcanberra-pulse:amd64				install
libpulse-dev:amd64				install
libpulse-mainloop-glib0:amd64			install
libpulse0:amd64					install
libpulse0:i386					install
libpulsedsp:amd64				install
pulseaudio					install
pulseaudio-module-bluetooth			install
pulseaudio-module-x11				install
pulseaudio-utils				install

Code: Select all

dpkg --get-selections | grep alsa
alsa-base					install
alsa-oss					install
alsa-utils					install
alsaplayer-alsa					install
alsaplayer-common				install
alsaplayer-gtk					install
bluez-alsa:amd64				install
libalsaplayer-dev				install
libalsaplayer0					install
libwine-alsa:i386				install

Not sure if it matters but I'm going to a TV through HDMI (sound works for non wine apps ).

I've likely made a bit of a mess of my sound related packages trying to figure this out, any help is greatly appreciated. Pulse is configured per user.
User avatar
dimesio
Moderator
Moderator
Posts: 13208
Joined: Tue Mar 25, 2008 10:30 pm

Re: No Sound

Post by dimesio »

Looks like you're missing 32 bit alsa and alsa-plugins.
jimmiebtlr
Newbie
Newbie
Posts: 4
Joined: Mon Oct 07, 2013 9:49 pm

Re: No Sound

Post by jimmiebtlr »

By that do you mean libasound2-plugins:i386 and libasound2:i386 ?

Code: Select all

sudo apt-get install libasound2:i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libasound2:i386 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Code: Select all

sudo apt-get install libasound2-plugins:i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libasound2-plugins:i386 : Depends: libjack-jackd2-0:i386 (>= 1.9.5~dfsg-14) but it is not going to be installed or
                                    libjack-0.116:i386
E: Unable to correct problems, you have held broken packages.
jimmiebtlr
Newbie
Newbie
Posts: 4
Joined: Mon Oct 07, 2013 9:49 pm

Re: No Sound

Post by jimmiebtlr »

Code: Select all

dpkg --get-selections | grep libasound
libasound2:amd64				install
libasound2:i386					install
libasound2-data					install
libasound2-dev:amd64				install
libasound2-dev:i386				install
libasound2-plugins:amd64			install
User avatar
dimesio
Moderator
Moderator
Posts: 13208
Joined: Tue Mar 25, 2008 10:30 pm

Re: No Sound

Post by dimesio »

My system (openSUSE) has packages named alsa-plugins, alsa-plugins-32bit, alsa-plugins-pulse, and alsa-plugins-pulse-32bit. The 32 bit ones are needed for 32 bit apps in Wine.

However, packaging and naming conventions vary greatly by distro, and I have no idea what the equivalent packages would be named on Debian. I think it probably is libasound2-plugins:i386, but you should ask on your distro's forum to be sure. Since it wouldn't install, you'll need to ask there anyway how to get it to install.
jimmiebtlr
Newbie
Newbie
Posts: 4
Joined: Mon Oct 07, 2013 9:49 pm

Re: No Sound

Post by jimmiebtlr »

Ok, will do, if I find a solution I'll post back here.
Locked