help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Creative Labs Sound Blaster Audigy 2 PCI does not work


From: Adam Mazurkiewicz
Subject: Creative Labs Sound Blaster Audigy 2 PCI does not work
Date: Tue, 18 Jun 2019 05:52:03 +0000

I have the sound card Creative Labs Sound Blaster Audigy 2 PCI Sound
Card SB0240 on PCI port in my PC.

I am newbie in GuixSD and I have no idea how to get the Card to work.
I have also Debian installed on the current PC. On Debian the the card
works without configuration.

I do not now what to do. Any advice would be appreciated. My Desktop
Environment is Xfce. The Card is not present in Audio Mixer.

Perhaps anybody could show me the way to debug the card configuration?

I have been googling about Guix and sound cards for a month and found nothing.

Or at least tell me that GuixSD is not intended to support this kind
of cards and I should buy another one. Then what PCI sound card would
I buy? Here you are my config.scm:

(use-modules
    (gnu)
    (gnu system nss)
    (gnu packages freedesktop)
    (gnu packages admin)
    (gnu services dbus)
    (gnu services desktop)
    (gnu services sound)
    (gnu packages backup)
    (gnu packages glib)
    (gnu packages gnuzilla)
    (gnu packages pulseaudio)
    (gnu packages version-control)
    (gnu packages haskell-apps)
    (gnu packages emacs)
    (gnu packages emacs-xyz)
    (gnu packages cmake)
    (gnu packages statistics)
    (gnu packages finance)
    (gnu packages protobuf)
    (gnu packages guile)
    (gnu packages gnupg)
    (gnu packages graphviz)
        (gnu packages wget)
        (gnu packages curl)
        (gnu packages image)
    (gnu services networking))

(use-service-modules desktop xorg ssh)
(use-package-modules certs gnome ssh)

(operating-system
  (host-name "s")
  (timezone "Europe/Warsaw")
  (locale "en_US.utf8")

  (keyboard-layout (keyboard-layout "pl"))

  (bootloader
    (bootloader-configuration
      (bootloader grub-bootloader)
      (target "/dev/sda")
      (menu-entries
        (list
          (menu-entry
            (label "Debianek")
            (linux "(hd0,6)/v")
            (linux-arguments '("root=/dev/sda6 ro"))
            (initrd "(hd0,6)/i"))))))

  (file-systems (append
                 (list (file-system
                         (device (file-system-label "guixsd"))
                         (mount-point "/")
                         (type "ext4"))
                       (file-system
                         (device (file-system-label "debianek"))
                         (mount-point "/root/debianek")
                         (type "ext4")))
                 %base-file-systems))

  (users (cons (user-account
                (name "s")
                (comment "s")
                (group "users")
        (supplementary-groups '("wheel" "netdev"
                                        "audio" "video"))
                (home-directory "/home/s"))
               %base-user-accounts))

    (packages
        (append
            (list
                nss-certs
                openssh

                network-manager-openvpn
                modem-manager
                network-manager-applet

                icecat
                pavucontrol
                file-roller
                git
                git-annex-remote-hubic
                git-annex

                emacs
                emacs-ag
                emacs-cmake-mode
                emacs-ess
                emacs-flycheck
                emacs-guix
                emacs-ledger-mode
                emacs-linum-relative
                emacs-magit
                emacs-minimal
                emacs-no-x
                emacs-no-x-toolkit
                emacs-powerline
                emacs-protobuf-mode
                emacs-rainbow-delimiters
                emacs-rainbow-identifiers
                emacs-smart-mode-line
                emacs-undo-tree
                emacs-xwidgets
                m17n-db
                m17n-lib
                pinentry-emacs
                graphviz
                wget
                curl
                flameshot
                gvfs)
            %base-packages))

    (services
        (append
            (list
                (service gnome-desktop-service-type)
                (service xfce-desktop-service-type)

                (set-xorg-configuration
                    (xorg-configuration
                        (keyboard-layout keyboard-layout)))
            )
            %desktop-services))

  (name-service-switch %mdns-host-lookup-nss))



Thanks



reply via email to

[Prev in Thread] Current Thread [Next in Thread]