From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Mazurkiewicz Subject: Checking out if an ALSA driver for a sound card is installed Date: Wed, 19 Jun 2019 13:21:10 +0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:40101) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hdaWk-0003j0-Dj for help-guix@gnu.org; Wed, 19 Jun 2019 09:21:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hdaWj-0005rP-5k for help-guix@gnu.org; Wed, 19 Jun 2019 09:21:26 -0400 Received: from mail-qt1-x833.google.com ([2607:f8b0:4864:20::833]:42035) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hdaWi-0005pN-8d for help-guix@gnu.org; Wed, 19 Jun 2019 09:21:25 -0400 Received: by mail-qt1-x833.google.com with SMTP id s15so19760560qtk.9 for ; Wed, 19 Jun 2019 06:21:23 -0700 (PDT) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org My Sound Blaster PCI card is not working, so I have watched things around ALSA drivers. In fact I cannot state if ALSA is installed: The M-x guix-default-services for %desktop-services is this: (...) agetty gnu/services/base.scm:1104:2 Provide console login using the `agetty' program. alsa gnu/services/sound.scm:93:2 Configure low-level Linux sound support, ALSA. avahi gnu/services/avahi.scm:145:4 Run `avahi-daemon', a host and service discovery daemon that implements the multicast DNS (mDNS) and DNS service discovery (DNS-SD) protocols. Additionally, extend the C library's name service switch (NSS) with support for `.local' host name resolution. (...) So ALSA is present in services, but aplay command doesn't work: bash-4.4# aplay -l bash: aplay: command not found bash-4.4# find / -name aplay /gnu/store/04g77pl6i6b8adj7pr1kbsz0qjar021z-alsa-utils-1.1.8/bin/aplay find: =E2=80=98/run/user/1000/gvfs=E2=80=99: Permission denied bash-4.4# The card is visible here: bash-4.4# lspci -nnk (...) 01:00.0 Multimedia audio controller [0401]: Creative Labs EMU10k2/CA0100/CA0102/CA10200 [Sound Blaster Audigy Series] [1102:0004] (rev 04) Subsystem: Creative Labs SB0240 Audigy 2 Platinum 6.1 [1102:1002] 01:00.1 Input device controller [0980]: Creative Labs SB Audigy Game Port [1102:7003] (rev 04) Subsystem: Creative Labs SB Audigy2 MIDI/Game Port [1102:0060] Kernel driver in use: Emu10k1_gameport Kernel modules: emu10k1_gp 01:00.2 (...) How to check out if ALSA is installed or how to install it?