LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Devuan Jessie, Aspire One 725, Alsa error messages. (https://www.linuxquestions.org/questions/linux-newbie-8/devuan-jessie-aspire-one-725-alsa-error-messages-4175624299/)

globetrotterdk 02-23-2018 05:45 AM

Devuan Jessie, Aspire One 725, Alsa error messages.
 
I am trying to get Alsa to work on my Acer Aspire One 725 with a new, vanilla install of Devuan Jessie with a minimal i3wm install. The Acer uses a Broadcom BCM43228 card. During the process of trying to get things to work, I have tried a number of things. Firstly to see if I had installed all of the relevant Alsa bits, which I believe that I have done:

Code:

$ sudo apt-get install alsa-base alsa-tools alsa-tools-gui alsa-oss alsamixergui libalsaplayer0
Next came:
Code:

$ volti
[alsactrl.py:__init__:41] can't open Master control for card Generic, trying to select first available mixer channel

[alsactrl.py:__init__:49] can't open first available control for card Generic
error: list index out of range
Traceback (most recent call last):
  File "/usr/bin/volti", line 53, in <module>
    volti = main.VolumeTray()
  File "/usr/lib/volti/volti/main.py", line 124, in __init__
    self.watchid = gobject.io_add_watch(fd, eventmask, self.update)
TypeError: an integer is required

Then followed:
Code:

$ amixer set Master 90% unmute
amixer: Unable to find simple control 'Master',0

Lastly:
Code:

$ lspci -nn
00:01.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler HDMI Audio [1002:1314]

Most of the advice that I can find is for Ubuntu and appears to lack relevance for Devuan. Likewise, there is some Arch wiki info, but I still haven't found a silver bullet to kill this issue. The Aspire One is great for when I am lugging music gear around, as it is small and lightweight, but it is certainly also a pain in this instance.

----

BTW, I forgot to mention that I started this attempt at getting the audio to work by running:
Code:

# apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms
and then:
Code:

# modprobe -r b44 b43 b43legacy ssb brcmsmac bcma
lastly:
Code:

# modprobe wl

Shadow_7 02-23-2018 09:01 AM

I seem to have the same volti issue on debian buster amd64. But everything otherwise works.

$ speaker-test -c 2 -l 1 -D hw:0,3
$ alsamixer -D hw:0
$ alsamixer -D hw:1

ofc -c 1 is roughly the same as -D hw:1 for alsamixer. With F1 for help and F6 to change cards in mixer.

globetrotterdk 02-23-2018 10:09 AM

Quote:

Originally Posted by Shadow_7 (Post 5823210)
I seem to have the same volti issue on debian buster amd64. But everything otherwise works.

$ speaker-test -c 2 -l 1 -D hw:0,3
$ alsamixer -D hw:0
$ alsamixer -D hw:1

ofc -c 1 is roughly the same as -D hw:1 for alsamixer. With F1 for help and F6 to change cards in mixer.

Thanks for the quick reply. Your last command allowed me to get the master sound up, but I still don't have any sound output. Interestingly, alsamixer reports my card as being a Realtek ALC271X. Cmus gives me the following error:
"Error: opening audio device: No such device"

BW-userx 02-23-2018 12:19 PM

Code:

┌────────────────────────────── AlsaMixer v1.1.1 ──────────────────────────────┐
│ Card: HDA Intel PCH                                  F1:  Help              │
│ Chip: IDT 92HD81B1X5                                F2:  System information │
│ View: F3:[Playback] F4: Capture  F5: All            F6:  Select sound card  │
│ Item: Master [dB gain: -24.75]                      Esc: Exit              │
│                                                                              │
│    ┌──┐    ┌──┐    ┌──┐    ┌──┐    ┌──┐    ┌──┐    ┌──┐    ┌──┐      │
│    │  │    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      │
│    │  │    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      │
│    │  │    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      >
│    │  │    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      >
│    │  │    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      >
│    │  │    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      >
│    │  │    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      >
│    │▒▒│    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      >
│    │▒▒│    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      >
│    │▒▒│    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      │
│    │▒▒│    │▒▒│    │  │    │▒▒│    │  │    │  │    │  │    │  │      │
│    ├──┤    ├──┤    ├──┤    └──┘    ├──┤    └──┘    ├──┤    └──┘      │
│    │OO│    │OO│    │MM│              │MM│              │MM│              │
│    └──┘    └──┘    └──┘              └──┘              └──┘              │
│      39    100<>100  0<>0  100<>100  0<>0    0<>0    0<>0    0<>0      │
│  < Master >Headphon Speaker+  PCM      Line  Line Boo  Mic    Mic Boos

are you seeing this in your terminal? try alsamixer then F6 and change to your sound card and not default settings.

globetrotterdk 02-23-2018 12:45 PM

Quote:

Originally Posted by BW-userx (Post 5823273)
are you seeing this in your terminal? try alsamixer then F6 and change to your sound card and not default settings.

Only when I run
Code:

$ alsamixer -D hw:1
With F6, only have the choice between two generic cards, 0 or 1. Neither change works. With card 0, I only get a "s/pdif" centered square. Neither card setting works.

globetrotterdk 02-23-2018 12:52 PM

I am grabbing at straws here, but hopefully some of this will provide more info:
Code:

$ lspci -k
00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler HDMI Audio
        Subsystem: Acer Incorporated [ALI] Device 0740
        Kernel driver in use: snd_hda_intel

Code:

$ uname -r
3.16.0-5-amd64

Code:

$ cat /proc/asound/card0/codec#0
Codec: ATI R6xx HDMI
Address: 0
AFG Function Id: 0x1 (unsol 0)
Vendor Id: 0x1002aa01
Subsystem Id: 0x00aa0100
Revision Id: 0x100200
No Modem Function Group found
Default PCM:
    rates [0x70]: 32000 44100 48000
    bits [0x2]: 16
    formats [0x1]: PCM
Default Amp-In caps: N/A
Default Amp-Out caps: N/A
State of AFG node 0x01:
  Power states:  D0 D3
  Power: setting=D0, actual=D0
GPIO: io=0, o=0, i=0, unsolicited=0, wake=0
Node 0x02 [Audio Output] wcaps 0x201: Stereo Digital
  Converter: stream=1, channel=0
  Digital: Enabled
  Digital category: 0x0
  IEC Coding Type: 0x0
Node 0x03 [Pin Complex] wcaps 0x400381: Stereo Digital
  Control: name="HDMI/DP,pcm=3 Jack", index=0, device=0
  Control: name="IEC958 Playback Con Mask", index=0, device=0
  Control: name="IEC958 Playback Pro Mask", index=0, device=0
  Control: name="IEC958 Playback Default", index=0, device=0
  Control: name="IEC958 Playback Switch", index=0, device=0
  Control: name="ELD", index=0, device=3
  Pincap 0x00000094: OUT Detect HDMI
  Pin Default 0x18560010: [Jack] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x1, Sequence = 0x0
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=01, enabled=1
  Connection: 1
    0x02

Code:

$ cat /proc/asound/card1/codec#0 | grep Codec
Codec: Realtek ALC271X

Code:

$ apt-cache policy alsa*
cairo-dock-alsamixer-plug-in:
  Installed: (none)
  Candidate: 3.4.0-1+b1
  Version table:
    3.4.0-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsundials-ida2:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
cysignals-tools:
  Installed: (none)
  Candidate: 1.3.2+ds-1~bpo8+1
  Version table:
    1.3.2+ds-1~bpo8+1 0
        100 http://dk.mirror.devuan.org/merged/ jessie-backports/main amd64 Packages
python-alsaaudio:
  Installed: 0.7-1
  Candidate: 0.7-1
  Version table:
 *** 0.7-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
libghc-intervals-doc:
  Installed: (none)
  Candidate: 0.7-1
  Version table:
    0.7-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
snd-dmotif-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
libboost-signals1.55.0:
  Installed: (none)
  Candidate: 1.55.0+dfsg-3
  Version table:
    1.55.0+dfsg-3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsundials-nvecserial0:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libinternals-perl:
  Installed: (none)
  Candidate: 1.1-2+b1
  Version table:
    1.1-2+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libzita-alsa-pcmi0:
  Installed: (none)
  Candidate: 0.2.0-2
  Version table:
    0.2.0-2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
kredentials:
  Installed: (none)
  Candidate: 2.0~pre3-1.1
  Version table:
    2.0~pre3-1.1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
snd-gtk-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
exfalso:
  Installed: (none)
  Candidate: 3.2.2-1
  Version table:
    3.2.2-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libakonadiprotocolinternals1:
  Installed: (none)
  Candidate: 1.13.0-2+deb8u2
  Version table:
    1.13.0-2+deb8u2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        500 http://dk.mirror.devuan.org/merged/ jessie-security/main amd64 Packages
libboost-signals1.55-dev:
  Installed: (none)
  Candidate: 1.55.0+dfsg-3
  Version table:
    1.55.0+dfsg-3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
falselogin:
  Installed: (none)
  Candidate: 0.3-4
  Version table:
    0.3-4 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libesd-alsa0:
  Installed: (none)
  Candidate: (none)
  Version table:
psemu-sound-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
snd-nox-alsa:
  Installed: (none)
  Candidate: 11.7-3
  Version table:
    11.7-3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsamba-credentials0:
  Installed: (none)
  Candidate: (none)
  Version table:
libclalsadrv-dev:
  Installed: (none)
  Candidate: 2.0.0-3
  Version table:
    2.0.0-3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
cairo-dock-alsamixer-plugin:
  Installed: (none)
  Candidate: (none)
  Version table:
libsox-fmt-alsa:
  Installed: (none)
  Candidate: 14.4.1-5
  Version table:
    14.4.1-5 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libktpcommoninternalsprivate6:
  Installed: (none)
  Candidate: (none)
  Version table:
libktpcommoninternalsprivate7:
  Installed: (none)
  Candidate: 0.8.1-4
  Version table:
    0.8.1-4 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libghc-intervals-dev-0.7-4390a:
  Installed: (none)
  Candidate: (none)
  Version table:
libalsaplayer0:
  Installed: 0.99.81-1+b1
  Candidate: 0.99.81-1+b1
  Version table:
 *** 0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
gstreamer0.10-alsa:
  Installed: (none)
  Candidate: 0.10.36-2
  Version table:
    0.10.36-2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
octave-sundials:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
fusionforge-plugin-globalsearch:
  Installed: (none)
  Candidate: 5.3.2+20141104-3+deb8u3
  Version table:
    6.0.3+20151023-1~bpo8+1 0
        100 http://dk.mirror.devuan.org/merged/ jessie-backports/main amd64 Packages
    5.3.2+20141104-3+deb8u3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        500 http://dk.mirror.devuan.org/merged/ jessie-updates/main amd64 Packages
    5.3.2+20141104-3+deb8u1 0
        500 http://dk.mirror.devuan.org/merged/ jessie-security/main amd64 Packages
alsaplayer-xosd:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsaplayer-gtk:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libghc-intervals-prof:
  Installed: (none)
  Candidate: 0.7-1+b3
  Version table:
    0.7-1+b3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
python2.7-pyalsa:
  Installed: (none)
  Candidate: (none)
  Version table:
libboost-signals1.50-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
libktpcommoninternalsprivate-dbg:
  Installed: (none)
  Candidate: 0.8.1-4
  Version table:
    0.8.1-4 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
volumeicon-alsa:
  Installed: (none)
  Candidate: 0.4.6-2.1
  Version table:
    0.4.6-2.1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
xmms2-plugin-alsa:
  Installed: (none)
  Candidate: 0.8+dfsg-12
  Version table:
    0.8+dfsg-12 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsdl1.2debian-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
python-cysignals-pari:
  Installed: (none)
  Candidate: 1.3.2+ds-1~bpo8+1
  Version table:
    1.3.2+ds-1~bpo8+1 0
        100 http://dk.mirror.devuan.org/merged/ jessie-backports/main amd64 Packages
libwine-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
libdssialsacompat0:
  Installed: (none)
  Candidate: 1.0.8a-1
  Version table:
    1.0.8a-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsa-base:
  Installed: 1.0.27+1
  Candidate: 1.0.27+1
  Version table:
 *** 1.0.27+1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
libsundials-cvode1:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libclalsadrv2:
  Installed: (none)
  Candidate: 2.0.0-3
  Version table:
    2.0.0-3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libktpcommoninternalsprivate-dev:
  Installed: (none)
  Candidate: 0.8.1-4
  Version table:
    0.8.1-4 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsamixergui:
  Installed: 0.9.0rc2-1-9.1
  Candidate: 0.9.0rc2-1-9.1
  Version table:
 *** 0.9.0rc2-1-9.1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
qml-module-qtquick-localstorage:
  Installed: (none)
  Candidate: 5.3.2-4
  Version table:
    5.3.2-4 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
liboss4-salsa-asound2:
  Installed: (none)
  Candidate: 4.2-build2010-2
  Version table:
    4.2-build2010-2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsaplayer-jack:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libboost-signals1.46-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
liballegro4.4-plugin-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
exim4-localscanapi-2.0:
  Installed: (none)
  Candidate: (none)
  Version table:
libalsa-ocaml-w7mv8:
  Installed: (none)
  Candidate: (none)
  Version table:
alsaplayer-common:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
mpg123-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
alsa-tools-gui:
  Installed: 1.0.28-1
  Candidate: 1.0.28-1
  Version table:
 *** 1.0.28-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
osspd-alsa:
  Installed: (none)
  Candidate: 1.3.2-6
  Version table:
    1.3.2-6 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
mopidy-alsamixer:
  Installed: (none)
  Candidate: 1.0.3-1
  Version table:
    1.0.3-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libalsaplayer-dev:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsa-utils:
  Installed: 1.0.28-1
  Candidate: 1.0.28-1
  Version table:
 *** 1.0.28-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
sagemath-database-conway-polynomials:
  Installed: (none)
  Candidate: 0.4.p0+dfsg-1
  Version table:
    0.4.p0+dfsg-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
tuxguitar-alsa:
  Installed: (none)
  Candidate: 1.2-20
  Version table:
    1.2-20 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsundials-serial0:
  Installed: (none)
  Candidate: (none)
  Version table:
bluez-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
alsaplayer:
  Installed: (none)
  Candidate: (none)
  Version table:
alsaplayer-nas:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
animals-dbg:
  Installed: (none)
  Candidate: 201207131226-1+b1
  Version table:
    201207131226-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
gstreamer1.0-alsa:
  Installed: (none)
  Candidate: 1.4.4-2+deb8u1
  Version table:
    1.4.4-2+deb8u1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        500 http://dk.mirror.devuan.org/merged/ jessie-security/main amd64 Packages
alsoft-conf:
  Installed: (none)
  Candidate: 1.4.3-1
  Version table:
    1.4.3-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsundials-serial:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
crystalspace-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
libsnack-alsa:
  Installed: (none)
  Candidate: 2.2.10.20090623-dfsg-4
  Version table:
    2.2.10.20090623-dfsg-4 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsaplayer-alsa:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
gforge-plugin-globalsearch:
  Installed: (none)
  Candidate: (none)
  Version table:
libboost-signals-dev:
  Installed: (none)
  Candidate: 1.55.0.2
  Version table:
    1.55.0.2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libplack-test-externalserver-perl:
  Installed: (none)
  Candidate: 0.01-1
  Version table:
    0.01-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsamba-credentials-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
python-pyalsa:
  Installed: (none)
  Candidate: 1.0.26-1
  Version table:
    1.0.26-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
exim4-localscanapi-1.0:
  Installed: (none)
  Candidate: (none)
  Version table:
exim4-localscanapi-1.1:
  Installed: (none)
  Candidate: (none)
  Version table:
libsundials-cvodes2:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsaplayer-interface:
  Installed: (none)
  Candidate: (none)
  Version table:
libboost-signals1.52-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
alsaplayer-esd:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsundials-kinsol1:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
zita-alsa-pcmi-utils:
  Installed: (none)
  Candidate: 0.2.0-2
  Version table:
    0.2.0-2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
liboss4-salsa2:
  Installed: (none)
  Candidate: 4.2-build2010-2
  Version table:
    4.2-build2010-2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsnack2-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
alsaplayer-oss:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
pysycache-move-animals:
  Installed: (none)
  Candidate: 3.1-3
  Version table:
    3.1-3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsa-tools:
  Installed: 1.0.28-1
  Candidate: 1.0.28-1
  Version table:
 *** 1.0.28-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
libalsa-ocaml-dev-w7mv8:
  Installed: (none)
  Candidate: (none)
  Version table:
python-naturalsort:
  Installed: (none)
  Candidate: 1.0.3-1.1
  Version table:
    1.0.3-1.1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libboost-signals1.42-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
xfce4-mixer-alsa:
  Installed: (none)
  Candidate: (none)
  Version table:
libboost-signals1.48-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
glassfish-toplink-essentials:
  Installed: (none)
  Candidate: 1:2.1.1-b31g+dfsg1-2
  Version table:
    1:2.1.1-b31g+dfsg1-2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
votca-csg-tutorials:
  Installed: (none)
  Candidate: 1.2.4-1
  Version table:
    1.2.4-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
qtdeclarative5-localstorage-plugin:
  Installed: (none)
  Candidate: (none)
  Version table:
libalsa-ocaml-dev:
  Installed: (none)
  Candidate: 0.2.1-1+b2
  Version table:
    0.2.1-1+b2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libalsa-ocaml:
  Installed: (none)
  Candidate: 0.2.1-1+b2
  Version table:
    0.2.1-1+b2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
animals:
  Installed: (none)
  Candidate: 201207131226-1+b1
  Version table:
    201207131226-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libdevel-stacktrace-withlexicals-perl:
  Installed: (none)
  Candidate: 0.10-1
  Version table:
    0.10-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libclalsadrv:
  Installed: (none)
  Candidate: (none)
  Version table:
libboost-signals1.53-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
alsa-firmware-loaders:
  Installed: (none)
  Candidate: 1.0.28-1
  Version table:
    1.0.28-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/contrib amd64 Packages
libsundials-serial-dev:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsaplayer-text:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
sofa-tutorials:
  Installed: (none)
  Candidate: 1.0~beta4-9
  Version table:
    1.0~beta4-9 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
python-cysignals-doc:
  Installed: (none)
  Candidate: 1.3.2+ds-1~bpo8+1
  Version table:
    1.3.2+ds-1~bpo8+1 0
        100 http://dk.mirror.devuan.org/merged/ jessie-backports/main amd64 Packages
libzita-alsa-pcmi-dev:
  Installed: (none)
  Candidate: 0.2.0-2
  Version table:
    0.2.0-2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libghc-intervals-prof-0.7-4390a:
  Installed: (none)
  Candidate: (none)
  Version table:
liquidsoap-plugin-alsa:
  Installed: (none)
  Candidate: 1.1.1-7+b1
  Version table:
    1.1.1-7+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libghc-intervals-dev:
  Installed: (none)
  Candidate: 0.7-1+b3
  Version table:
    0.7-1+b3 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libboost-signals1.49-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
python-cysignals:
  Installed: (none)
  Candidate: (none)
  Version table:
alsaplayer-daemon:
  Installed: (none)
  Candidate: 0.99.81-1+b1
  Version table:
    0.99.81-1+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libomxil-bellagio0-components-alsa:
  Installed: (none)
  Candidate: 0.1-2
  Version table:
    0.1-2 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libsundials-idas0:
  Installed: (none)
  Candidate: 2.5.0-3+b1
  Version table:
    2.5.0-3+b1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
python-cysignals-bare:
  Installed: (none)
  Candidate: 1.3.2+ds-1~bpo8+1
  Version table:
    1.3.2+ds-1~bpo8+1 0
        100 http://dk.mirror.devuan.org/merged/ jessie-backports/main amd64 Packages
alsa-oss:
  Installed: 1.0.28-1
  Candidate: 1.0.28-1
  Version table:
 *** 1.0.28-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
libboost-signals1.54-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
mobyle-tutorials:
  Installed: (none)
  Candidate: 1.5.0-1
  Version table:
    1.5.0-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
balsa-dbg:
  Installed: (none)
  Candidate: 2.4.12-1
  Version table:
    2.4.12-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libwinpr-credentials0.1:
  Installed: (none)
  Candidate: 1.1.0~git20140921.1.440916e+dfsg1-4+deb8u1
  Version table:
    1.1.0~git20140921.1.440916e+dfsg1-4+deb8u1 0
        500 http://dk.mirror.devuan.org/merged/ jessie-security/main amd64 Packages
    1.1.0~git20140921.1.440916e+dfsg1-4 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
gnome-alsamixer:
  Installed: (none)
  Candidate: (none)
  Version table:
balsa:
  Installed: (none)
  Candidate: 2.4.12-1
  Version table:
    2.4.12-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
libdssialsacompat-dev:
  Installed: (none)
  Candidate: 1.0.8a-1
  Version table:
    1.0.8a-1 0
        500 http://dk.mirror.devuan.org/merged/ jessie/main amd64 Packages
alsaplayer-output:
  Installed: (none)
  Candidate: (none)
  Version table:


BW-userx 02-23-2018 12:52 PM

Quote:

Originally Posted by globetrotterdk (Post 5823283)
Only when I run
Code:

$ alsamixer -D hw:1
With F6, only have the choice between two generic cards, 0 or 1. Neither change works. With card 0, I only get a "s/pdif" centered square. Neither card setting works.

speaker-test -c 2 -l 1 -D hw:0,3

did that give you any sound at all, did you try using headphones or ear buds to see if sound is comming out of that?

have you dug into your system to see what it is registering as your sound card?
Code:

$ cat /proc/asound/cards
 0 [PCH            ]: HDA-Intel - HDA Intel PCH
                      HDA Intel PCH at 0xd4500000 irq 33
 1 [HDMI          ]: HDA-Intel - HDA ATI HDMI
                      HDA ATI HDMI at 0xd4420000 irq 34

the actual driver for your actual sound card may not be actually installed even.
Code:

sudo dmesg | grep sound
edit: you posted info while I was writing this. haha

BUT
check your dmesg to see what's going on with your system and card using grep 'sound' or 'Realtek' for key words to pull the information.

globetrotterdk 02-23-2018 01:37 PM

Quote:

Originally Posted by BW-userx (Post 5823290)
BUT check your dmesg to see what's going on with your system and card using grep 'sound' or 'Realtek' for key words to pull the information.

No, no sound in earbuds/earphones. OK, here is the latest info:
Code:

$ sudo dmesg | grep sound
[    4.936034] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input18
[    5.009197] sound hdaudioC1D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    5.009219] sound hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.009230] sound hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    5.009238] sound hdaudioC1D0:    mono: mono_out=0x0
[    5.009245] sound hdaudioC1D0:    inputs:
[    5.009255] sound hdaudioC1D0:      Internal Mic=0x1b
[    5.009264] sound hdaudioC1D0:      Mic=0x19
[    5.018536] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/sound/card1/hdaudioC1D0/input19
[    5.019205] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input20
[    5.019490] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input21
[  25.096237] Modules linked in: bnep nfsd auth_rpcgss oid_registry nfs_acl nfs lockd fscache sunrpc parport_pc ppdev lp parport ecb btusb bluetooth 6lowpan_iphc snd_hda_codec_realtek snd_hda_codec_generic snd_hda_codec_hdmi uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core v4l2_common videodev media joydev acer_wmi sparse_keymap kvm pcspkr psmouse wl(PO) k10temp ohci_pci snd_hda_intel snd_hda_controller snd_hda_codec i2c_piix4 snd_hwdep ohci_hcd ehci_pci snd_pcm ehci_hcd cfg80211 sg xhci_hcd rfkill r8169 snd_timer radeon mii snd usbcore soundcore usb_common shpchp wmi ttm drm_kms_helper drm i2c_algo_bit video i2c_core battery ac button acpi_cpufreq processor ext4 crc16 mbcache jbd2 sd_mod crc_t10dif crct10dif_generic crct10dif_common evdev serio_raw ahci libahci libata scsi_mod thermal thermal_sys
[  25.107879] Modules linked in: bnep nfsd auth_rpcgss oid_registry nfs_acl nfs lockd fscache sunrpc parport_pc ppdev lp parport ecb btusb bluetooth 6lowpan_iphc snd_hda_codec_realtek snd_hda_codec_generic snd_hda_codec_hdmi uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core v4l2_common videodev media joydev acer_wmi sparse_keymap kvm pcspkr psmouse wl(PO) k10temp ohci_pci snd_hda_intel snd_hda_controller snd_hda_codec i2c_piix4 snd_hwdep ohci_hcd ehci_pci snd_pcm ehci_hcd cfg80211 sg xhci_hcd rfkill r8169 snd_timer radeon mii snd usbcore soundcore usb_common shpchp wmi ttm drm_kms_helper drm i2c_algo_bit video i2c_core battery ac button acpi_cpufreq processor ext4 crc16 mbcache jbd2 sd_mod crc_t10dif crct10dif_generic crct10dif_common evdev serio_raw ahci libahci libata scsi_mod thermal thermal_sys
[  35.116719] Modules linked in: bnep nfsd auth_rpcgss oid_registry nfs_acl nfs lockd fscache sunrpc parport_pc ppdev lp parport ecb btusb bluetooth 6lowpan_iphc snd_hda_codec_realtek snd_hda_codec_generic snd_hda_codec_hdmi uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core v4l2_common videodev media joydev acer_wmi sparse_keymap kvm pcspkr psmouse wl(PO) k10temp ohci_pci snd_hda_intel snd_hda_controller snd_hda_codec i2c_piix4 snd_hwdep ohci_hcd ehci_pci snd_pcm ehci_hcd cfg80211 sg xhci_hcd rfkill r8169 snd_timer radeon mii snd usbcore soundcore usb_common shpchp wmi ttm drm_kms_helper drm i2c_algo_bit video i2c_core battery ac button acpi_cpufreq processor ext4 crc16 mbcache jbd2 sd_mod crc_t10dif crct10dif_generic crct10dif_common evdev serio_raw ahci libahci libata scsi_mod thermal thermal_sys


BW-userx 02-23-2018 01:42 PM

NO palseaudio right?

https://wiki.archlinux.org/index.php...roubleshooting


Using ALSA's speaker-test utility

HD-Audio Generic

everything is Audio Generic, does not look like you're getting drivers for it.

Devuan is that no systemD Debian knock off , not every well supported yet distro, yes?

https://airbornesurfer.com/2015/04/h...iver-in-linux/

I'm seeing a lot of issues with your card make modle
https://help.ubuntu.com/community/HdaIntelSoundHowto
that is for Ubuntututu. but you might want to look into it some until you hit a dead end if you do.

globetrotterdk 02-23-2018 02:00 PM

Quote:

Originally Posted by BW-userx (Post 5823316)
NO palseaudio right?

No pulseaudio. Here are some more results:
Code:

$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: Generic_1 [HD-Audio Generic], device 0: ALC271X Analog [ALC271X Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

Code:

# aplay -L
null
    Discard all samples (playback) or generate zero samples (capture)
hdmi:CARD=Generic,DEV=0
    HD-Audio Generic, HDMI 0
    HDMI Audio Output
dmix:CARD=Generic,DEV=3
    HD-Audio Generic, HDMI 0
    Direct sample mixing device
dsnoop:CARD=Generic,DEV=3
    HD-Audio Generic, HDMI 0
    Direct sample snooping device
hw:CARD=Generic,DEV=3
    HD-Audio Generic, HDMI 0
    Direct hardware device without any conversions
plughw:CARD=Generic,DEV=3
    HD-Audio Generic, HDMI 0
    Hardware device with all software conversions
default:CARD=Generic_1
    HD-Audio Generic, ALC271X Analog
    Default Audio Device
sysdefault:CARD=Generic_1
    HD-Audio Generic, ALC271X Analog
    Default Audio Device
front:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    Front speakers
surround21:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    2.1 Surround output to Front and Subwoofer speakers
surround40:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    4.0 Surround output to Front and Rear speakers
surround41:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
dmix:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    Direct sample mixing device
dsnoop:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    Direct sample snooping device
hw:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    Direct hardware device without any conversions
plughw:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC271X Analog
    Hardware device with all software conversions

I didn't include all of the sound test results, as they all end the same:
Code:

$ speaker-test -c 6

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 6 channels
Using 16 octaves of pink noise
ALSA lib pcm_dmix.c:1022:(snd_pcm_dmix_open) unable to open slave
Playback open error: -2,No such file or directory

~$ speaker-test -t sine -f 2600

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 1 channels
Sine wave rate is 2600,0000Hz
ALSA lib pcm_dmix.c:1022:(snd_pcm_dmix_open) unable to open slave
Playback open error: -2,No such file or directory


BW-userx 02-23-2018 02:11 PM

Quote:

Originally Posted by globetrotterdk (Post 5823328)
No pulseaudio. Here are some more results:
Code:

$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: Generic_1 [HD-Audio Generic], device 0: ALC271X Analog [ALC271X Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

I didn't include all of the sound test results, as they all end the same:
Code:

$ speaker-test -c 6

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 6 channels
Using 16 octaves of pink noise
ALSA lib pcm_dmix.c:1022:(snd_pcm_dmix_open) unable to open slave
Playback open error: -2,No such file or directory

~$ speaker-test -t sine -f 2600

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 1 channels
Sine wave rate is 2600,0000Hz
ALSA lib pcm_dmix.c:1022:(snd_pcm_dmix_open) unable to open slave
Playback open error: -2,No such file or directory


Looks like you need to start from the start and get alsa hooked up to your card.

Selecting Alsa's Default Sound Card
https://yuenhoe.com/blog/2014/04/sel...lt-sound-card/

https://wiki.archlinux.org/index.php...d_Architecture

https://superuser.com/questions/6266...-automatically


that is where I'd start. the bold is you speakers and the other one is for your HDMI plug/slot

globetrotterdk 02-23-2018 04:46 PM

Quote:

Originally Posted by BW-userx (Post 5823330)
Looks like you need to start from the start and get alsa hooked up to your card.

Selecting Alsa's Default Sound Card
https://yuenhoe.com/blog/2014/04/sel...lt-sound-card/

https://wiki.archlinux.org/index.php...d_Architecture

https://superuser.com/questions/6266...-automatically


that is where I'd start. the bold is you speakers and the other one is for your HDMI plug/slot

Well, I can't claim that I understood, but I ran:
Code:

$ nano ~/.asoundrc
With the following content:
Quote:

pcm.!default {
type hw
card 1
}
I then got the following errors:
Code:

$ speaker-test -t wav -c 6

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 6 channels
WAV file(s)
Channels count (6) not available for playbacks: Invalid argument
Setting of hwparams failed: Invalid argument

$ speaker-test -t sine -f 2600

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 1 channels
Sine wave rate is 2600,0000Hz
Channels count (1) not available for playbacks: Invalid argument
Setting of hwparams failed: Invalid argument

$ speaker-test -c 6

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 6 channels
Using 16 octaves of pink noise
Channels count (6) not available for playbacks: Invalid argument
Setting of hwparams failed: Invalid argument

Then I tried replacing "type hw" with "type dmix" but then I started getting the following error:
Code:

$ speaker-test -t wav -c 6

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 6 channels
WAV file(s)
ALSA lib pcm_direct.c:1699:(snd1_pcm_direct_parse_open_conf) Unknown field card
Playback open error: -22,Invalid argument

----

BTW, I also have this info:
Code:

$ aplay -l | awk -F \: '/,/{print $2}' | awk '{print $1}' | uniq
Generic
Generic_1


globetrotterdk 02-23-2018 05:07 PM

I tried adding all of the following to the ~/.asoundrc file:
Quote:

pcm.!default {
type hw
card 1
}

pcm.!default {
type plug
slave.pcm "dmixer"
}

pcm.dmixer {
type dmix
ipc_key 1024
slave {
pcm "hw:1,0"
period_time 0
buffer_time 0
period_size 2048
buffer_size 32768
rate 44100
}
bindings {
0 0
1 1
}
}
The following worked (I escaped it at a point):
Code:

$ speaker-test -t sine -f 2600

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 1 channels
Sine wave rate is 2600,0000Hz
Rate set to 48000Hz (requested 48000Hz)
Buffer size range from 4458 to 17832
Period size range from 2229 to 2230
Using max buffer size 17832
Periods = 4
was set period_size = 2229
was set buffer_size = 17832
 0 - Front Left
Time per period = 2,643130
 0 - Front Left
Time per period = 2,972038
 0 - Front Left
Time per period = 2,972033
 0 - Front Left
Time per period = 2,972103
 0 - Front Left
Time per period = 2,972105
 0 - Front Left
Time per period = 2,972630
 0 - Front Left
Time per period = 2,971414
 0 - Front Left
Time per period = 2,971805
 0 - Front Left
Time per period = 2,972284
 0 - Front Left
Time per period = 2,971597
 0 - Front Left
Time per period = 2,972492
 0 - Front Left
^CWrite error: -4,Interrupted system call
xrun_recovery failed: -4,Interrupted system call
Transfer failed: Interrupted system call

However the next test failed:
Code:

speaker-test -t wav -c 6

speaker-test 1.0.28

Playback device is default
Stream parameters are 48000Hz, S16_LE, 6 channels
WAV file(s)
Rate set to 48000Hz (requested 48000Hz)
Buffer size range from 4458 to 17832
Period size range from 2229 to 2230
Using max buffer size 17832
Periods = 4
Unable to set hw params for playback: Invalid argument
Setting of hwparams failed: Invalid argument

None of the other tests work either.

AwesomeMachine 02-23-2018 05:07 PM

Given what the OP has posted so far, it appears the actual sound driver is missing.

BW-userx 02-23-2018 05:10 PM

have you had another distro on that HW yet? just out of curiosity I'd burn a different Live distro to a usb stick and see if they get sound. seeing how that distro is marking what you have as Generic. Like I said you might not even have the dirvers , as i also said they are poorly supported. or you could query their repo for sound drivers and see if you find anything remotely close to your card.


All times are GMT -5. The time now is 04:53 PM.