Audio card shows up in lspci but not in aplay, 18.04

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
1
down vote

favorite












for some reasons I do not fully understand, my Terratec Aureon 5.1 PCI shows up in lspci | grep audio:



$ lspci |grep audio
05:00.0 Multimedia audio controller: C-Media Electronics Inc CMI8738/CMI8768 PCI Audio (rev 10)


but not in aplay -l:



$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 7: HDMI 1 [HDMI 1]
Subdevices: 0/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 8: HDMI 2 [HDMI 2]
Subdevices: 1/1
Subdevice #0: subdevice #0


I installed pavucontrol and it doesn't show up in the config tab either.



It worked well on ubuntu 16.04 though.



Anyone would be able to help?



Thanks in advance.



Edits:



$ dmesg | grep snd
[ 6.987976] snd_hda_intel 0000:01:00.1: Disabling MSI
[ 6.987980] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[ 7.022637] snd_cmipci: `0x330' invalid for parameter `mpu_port'
[ 7.022639] snd_cmipci: `0x388' invalid for parameter `fm_port'
[ 214.411439] snd_cmipci: `0x330' invalid for parameter `mpu_port'
[ 214.411442] snd_cmipci: `0x388' invalid for parameter `fm_port'

$ cat /etc/modprobe.d/alsa-base.conf
# autoloader aliases
install sound-slot-0 /sbin/modprobe snd-card-0
install sound-slot-1 /sbin/modprobe snd-card-1
install sound-slot-2 /sbin/modprobe snd-card-2
install sound-slot-3 /sbin/modprobe snd-card-3
install sound-slot-4 /sbin/modprobe snd-card-4
install sound-slot-5 /sbin/modprobe snd-card-5
install sound-slot-6 /sbin/modprobe snd-card-6
install sound-slot-7 /sbin/modprobe snd-card-7

# Cause optional modules to be loaded above generic modules
install snd /sbin/modprobe --ignore-install snd $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-ioctl32 ; /sbin/modprobe --quiet --use-blacklist snd-seq ;
#
# Workaround at bug #499695 (reverted in Ubuntu see LP #319505)
install snd-pcm /sbin/modprobe --ignore-install snd-pcm $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-pcm-oss ; : ;
install snd-mixer /sbin/modprobe --ignore-install snd-mixer $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-mixer-oss ; : ;
install snd-seq /sbin/modprobe --ignore-install snd-seq $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; /sbin/modprobe --quiet --use-blacklist snd-seq-oss ; : ;
#
install snd-rawmidi /sbin/modprobe --ignore-install snd-rawmidi $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; : ;
# Cause optional modules to be loaded above sound card driver modules
install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-emu10k1-synth ;
install snd-via82xx /sbin/modprobe --ignore-install snd-via82xx $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq ;

# Load saa7134-alsa instead of saa7134 (which gets dragged in by it anyway)
install saa7134 /sbin/modprobe --ignore-install saa7134 $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist saa7134-alsa ; : ;
# Prevent abnormal drivers from grabbing index 0
options bt87x index=-2
options cx88_alsa index=-2
options saa7134-alsa index=-2
options snd-atiixp-modem index=-2
options snd-intel8x0m index=-2
options snd-via82xx-modem index=-2
options snd-usb-audio index=-2
options snd-usb-caiaq index=-2
options snd-usb-ua101 index=-2
options snd-usb-us122l index=-2
options snd-usb-usx2y index=-2
# Ubuntu #62691, enable MPU for snd-cmipci
options snd-cmipci mpu_port=0x330 fm_port=0x388
# Keep snd-pcsp from being loaded as first soundcard
options snd-pcsp index=-2
# Keep snd-usb-audio from beeing loaded as first soundcard
options snd-usb-audio index=-2






share|improve this question






















  • I believe the correct driver for your device is snd_cmipci. Is it loaded? lsmod | grep snd If not, load it and see if there is any improvement: sudo modprobe snd_cmipci Welcome to Ask Ubuntu.
    – chili555
    May 16 at 21:49










  • It is not loaded indeed. So I tried to add it and I got this: $ sudo modprobe snd_cmipci modprobe: ERROR: could not insert 'snd_cmipci': Operation not permitted
    – tNico
    May 16 at 22:25











  • Please show us: dmesg | grep snd.
    – chili555
    May 16 at 22:30










  • I've added to the main question what I get from dmesg and what's in alsa-base.conf. It's a fresh install from 10 minutes ago, I reinstalled just in case I messed up before trying to follow your advice.
    – tNico
    May 16 at 22:42














up vote
1
down vote

favorite












for some reasons I do not fully understand, my Terratec Aureon 5.1 PCI shows up in lspci | grep audio:



$ lspci |grep audio
05:00.0 Multimedia audio controller: C-Media Electronics Inc CMI8738/CMI8768 PCI Audio (rev 10)


but not in aplay -l:



$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 7: HDMI 1 [HDMI 1]
Subdevices: 0/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 8: HDMI 2 [HDMI 2]
Subdevices: 1/1
Subdevice #0: subdevice #0


I installed pavucontrol and it doesn't show up in the config tab either.



It worked well on ubuntu 16.04 though.



Anyone would be able to help?



Thanks in advance.



Edits:



$ dmesg | grep snd
[ 6.987976] snd_hda_intel 0000:01:00.1: Disabling MSI
[ 6.987980] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[ 7.022637] snd_cmipci: `0x330' invalid for parameter `mpu_port'
[ 7.022639] snd_cmipci: `0x388' invalid for parameter `fm_port'
[ 214.411439] snd_cmipci: `0x330' invalid for parameter `mpu_port'
[ 214.411442] snd_cmipci: `0x388' invalid for parameter `fm_port'

$ cat /etc/modprobe.d/alsa-base.conf
# autoloader aliases
install sound-slot-0 /sbin/modprobe snd-card-0
install sound-slot-1 /sbin/modprobe snd-card-1
install sound-slot-2 /sbin/modprobe snd-card-2
install sound-slot-3 /sbin/modprobe snd-card-3
install sound-slot-4 /sbin/modprobe snd-card-4
install sound-slot-5 /sbin/modprobe snd-card-5
install sound-slot-6 /sbin/modprobe snd-card-6
install sound-slot-7 /sbin/modprobe snd-card-7

# Cause optional modules to be loaded above generic modules
install snd /sbin/modprobe --ignore-install snd $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-ioctl32 ; /sbin/modprobe --quiet --use-blacklist snd-seq ;
#
# Workaround at bug #499695 (reverted in Ubuntu see LP #319505)
install snd-pcm /sbin/modprobe --ignore-install snd-pcm $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-pcm-oss ; : ;
install snd-mixer /sbin/modprobe --ignore-install snd-mixer $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-mixer-oss ; : ;
install snd-seq /sbin/modprobe --ignore-install snd-seq $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; /sbin/modprobe --quiet --use-blacklist snd-seq-oss ; : ;
#
install snd-rawmidi /sbin/modprobe --ignore-install snd-rawmidi $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; : ;
# Cause optional modules to be loaded above sound card driver modules
install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-emu10k1-synth ;
install snd-via82xx /sbin/modprobe --ignore-install snd-via82xx $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq ;

# Load saa7134-alsa instead of saa7134 (which gets dragged in by it anyway)
install saa7134 /sbin/modprobe --ignore-install saa7134 $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist saa7134-alsa ; : ;
# Prevent abnormal drivers from grabbing index 0
options bt87x index=-2
options cx88_alsa index=-2
options saa7134-alsa index=-2
options snd-atiixp-modem index=-2
options snd-intel8x0m index=-2
options snd-via82xx-modem index=-2
options snd-usb-audio index=-2
options snd-usb-caiaq index=-2
options snd-usb-ua101 index=-2
options snd-usb-us122l index=-2
options snd-usb-usx2y index=-2
# Ubuntu #62691, enable MPU for snd-cmipci
options snd-cmipci mpu_port=0x330 fm_port=0x388
# Keep snd-pcsp from being loaded as first soundcard
options snd-pcsp index=-2
# Keep snd-usb-audio from beeing loaded as first soundcard
options snd-usb-audio index=-2






share|improve this question






















  • I believe the correct driver for your device is snd_cmipci. Is it loaded? lsmod | grep snd If not, load it and see if there is any improvement: sudo modprobe snd_cmipci Welcome to Ask Ubuntu.
    – chili555
    May 16 at 21:49










  • It is not loaded indeed. So I tried to add it and I got this: $ sudo modprobe snd_cmipci modprobe: ERROR: could not insert 'snd_cmipci': Operation not permitted
    – tNico
    May 16 at 22:25











  • Please show us: dmesg | grep snd.
    – chili555
    May 16 at 22:30










  • I've added to the main question what I get from dmesg and what's in alsa-base.conf. It's a fresh install from 10 minutes ago, I reinstalled just in case I messed up before trying to follow your advice.
    – tNico
    May 16 at 22:42












up vote
1
down vote

favorite









up vote
1
down vote

favorite











for some reasons I do not fully understand, my Terratec Aureon 5.1 PCI shows up in lspci | grep audio:



$ lspci |grep audio
05:00.0 Multimedia audio controller: C-Media Electronics Inc CMI8738/CMI8768 PCI Audio (rev 10)


but not in aplay -l:



$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 7: HDMI 1 [HDMI 1]
Subdevices: 0/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 8: HDMI 2 [HDMI 2]
Subdevices: 1/1
Subdevice #0: subdevice #0


I installed pavucontrol and it doesn't show up in the config tab either.



It worked well on ubuntu 16.04 though.



Anyone would be able to help?



Thanks in advance.



Edits:



$ dmesg | grep snd
[ 6.987976] snd_hda_intel 0000:01:00.1: Disabling MSI
[ 6.987980] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[ 7.022637] snd_cmipci: `0x330' invalid for parameter `mpu_port'
[ 7.022639] snd_cmipci: `0x388' invalid for parameter `fm_port'
[ 214.411439] snd_cmipci: `0x330' invalid for parameter `mpu_port'
[ 214.411442] snd_cmipci: `0x388' invalid for parameter `fm_port'

$ cat /etc/modprobe.d/alsa-base.conf
# autoloader aliases
install sound-slot-0 /sbin/modprobe snd-card-0
install sound-slot-1 /sbin/modprobe snd-card-1
install sound-slot-2 /sbin/modprobe snd-card-2
install sound-slot-3 /sbin/modprobe snd-card-3
install sound-slot-4 /sbin/modprobe snd-card-4
install sound-slot-5 /sbin/modprobe snd-card-5
install sound-slot-6 /sbin/modprobe snd-card-6
install sound-slot-7 /sbin/modprobe snd-card-7

# Cause optional modules to be loaded above generic modules
install snd /sbin/modprobe --ignore-install snd $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-ioctl32 ; /sbin/modprobe --quiet --use-blacklist snd-seq ;
#
# Workaround at bug #499695 (reverted in Ubuntu see LP #319505)
install snd-pcm /sbin/modprobe --ignore-install snd-pcm $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-pcm-oss ; : ;
install snd-mixer /sbin/modprobe --ignore-install snd-mixer $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-mixer-oss ; : ;
install snd-seq /sbin/modprobe --ignore-install snd-seq $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; /sbin/modprobe --quiet --use-blacklist snd-seq-oss ; : ;
#
install snd-rawmidi /sbin/modprobe --ignore-install snd-rawmidi $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; : ;
# Cause optional modules to be loaded above sound card driver modules
install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-emu10k1-synth ;
install snd-via82xx /sbin/modprobe --ignore-install snd-via82xx $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq ;

# Load saa7134-alsa instead of saa7134 (which gets dragged in by it anyway)
install saa7134 /sbin/modprobe --ignore-install saa7134 $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist saa7134-alsa ; : ;
# Prevent abnormal drivers from grabbing index 0
options bt87x index=-2
options cx88_alsa index=-2
options saa7134-alsa index=-2
options snd-atiixp-modem index=-2
options snd-intel8x0m index=-2
options snd-via82xx-modem index=-2
options snd-usb-audio index=-2
options snd-usb-caiaq index=-2
options snd-usb-ua101 index=-2
options snd-usb-us122l index=-2
options snd-usb-usx2y index=-2
# Ubuntu #62691, enable MPU for snd-cmipci
options snd-cmipci mpu_port=0x330 fm_port=0x388
# Keep snd-pcsp from being loaded as first soundcard
options snd-pcsp index=-2
# Keep snd-usb-audio from beeing loaded as first soundcard
options snd-usb-audio index=-2






share|improve this question














for some reasons I do not fully understand, my Terratec Aureon 5.1 PCI shows up in lspci | grep audio:



$ lspci |grep audio
05:00.0 Multimedia audio controller: C-Media Electronics Inc CMI8738/CMI8768 PCI Audio (rev 10)


but not in aplay -l:



$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 7: HDMI 1 [HDMI 1]
Subdevices: 0/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 8: HDMI 2 [HDMI 2]
Subdevices: 1/1
Subdevice #0: subdevice #0


I installed pavucontrol and it doesn't show up in the config tab either.



It worked well on ubuntu 16.04 though.



Anyone would be able to help?



Thanks in advance.



Edits:



$ dmesg | grep snd
[ 6.987976] snd_hda_intel 0000:01:00.1: Disabling MSI
[ 6.987980] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[ 7.022637] snd_cmipci: `0x330' invalid for parameter `mpu_port'
[ 7.022639] snd_cmipci: `0x388' invalid for parameter `fm_port'
[ 214.411439] snd_cmipci: `0x330' invalid for parameter `mpu_port'
[ 214.411442] snd_cmipci: `0x388' invalid for parameter `fm_port'

$ cat /etc/modprobe.d/alsa-base.conf
# autoloader aliases
install sound-slot-0 /sbin/modprobe snd-card-0
install sound-slot-1 /sbin/modprobe snd-card-1
install sound-slot-2 /sbin/modprobe snd-card-2
install sound-slot-3 /sbin/modprobe snd-card-3
install sound-slot-4 /sbin/modprobe snd-card-4
install sound-slot-5 /sbin/modprobe snd-card-5
install sound-slot-6 /sbin/modprobe snd-card-6
install sound-slot-7 /sbin/modprobe snd-card-7

# Cause optional modules to be loaded above generic modules
install snd /sbin/modprobe --ignore-install snd $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-ioctl32 ; /sbin/modprobe --quiet --use-blacklist snd-seq ;
#
# Workaround at bug #499695 (reverted in Ubuntu see LP #319505)
install snd-pcm /sbin/modprobe --ignore-install snd-pcm $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-pcm-oss ; : ;
install snd-mixer /sbin/modprobe --ignore-install snd-mixer $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-mixer-oss ; : ;
install snd-seq /sbin/modprobe --ignore-install snd-seq $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; /sbin/modprobe --quiet --use-blacklist snd-seq-oss ; : ;
#
install snd-rawmidi /sbin/modprobe --ignore-install snd-rawmidi $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq-midi ; : ;
# Cause optional modules to be loaded above sound card driver modules
install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-emu10k1-synth ;
install snd-via82xx /sbin/modprobe --ignore-install snd-via82xx $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist snd-seq ;

# Load saa7134-alsa instead of saa7134 (which gets dragged in by it anyway)
install saa7134 /sbin/modprobe --ignore-install saa7134 $CMDLINE_OPTS && /sbin/modprobe --quiet --use-blacklist saa7134-alsa ; : ;
# Prevent abnormal drivers from grabbing index 0
options bt87x index=-2
options cx88_alsa index=-2
options saa7134-alsa index=-2
options snd-atiixp-modem index=-2
options snd-intel8x0m index=-2
options snd-via82xx-modem index=-2
options snd-usb-audio index=-2
options snd-usb-caiaq index=-2
options snd-usb-ua101 index=-2
options snd-usb-us122l index=-2
options snd-usb-usx2y index=-2
# Ubuntu #62691, enable MPU for snd-cmipci
options snd-cmipci mpu_port=0x330 fm_port=0x388
# Keep snd-pcsp from being loaded as first soundcard
options snd-pcsp index=-2
# Keep snd-usb-audio from beeing loaded as first soundcard
options snd-usb-audio index=-2








share|improve this question













share|improve this question




share|improve this question








edited May 16 at 22:41

























asked May 16 at 21:28









tNico

84




84











  • I believe the correct driver for your device is snd_cmipci. Is it loaded? lsmod | grep snd If not, load it and see if there is any improvement: sudo modprobe snd_cmipci Welcome to Ask Ubuntu.
    – chili555
    May 16 at 21:49










  • It is not loaded indeed. So I tried to add it and I got this: $ sudo modprobe snd_cmipci modprobe: ERROR: could not insert 'snd_cmipci': Operation not permitted
    – tNico
    May 16 at 22:25











  • Please show us: dmesg | grep snd.
    – chili555
    May 16 at 22:30










  • I've added to the main question what I get from dmesg and what's in alsa-base.conf. It's a fresh install from 10 minutes ago, I reinstalled just in case I messed up before trying to follow your advice.
    – tNico
    May 16 at 22:42
















  • I believe the correct driver for your device is snd_cmipci. Is it loaded? lsmod | grep snd If not, load it and see if there is any improvement: sudo modprobe snd_cmipci Welcome to Ask Ubuntu.
    – chili555
    May 16 at 21:49










  • It is not loaded indeed. So I tried to add it and I got this: $ sudo modprobe snd_cmipci modprobe: ERROR: could not insert 'snd_cmipci': Operation not permitted
    – tNico
    May 16 at 22:25











  • Please show us: dmesg | grep snd.
    – chili555
    May 16 at 22:30










  • I've added to the main question what I get from dmesg and what's in alsa-base.conf. It's a fresh install from 10 minutes ago, I reinstalled just in case I messed up before trying to follow your advice.
    – tNico
    May 16 at 22:42















I believe the correct driver for your device is snd_cmipci. Is it loaded? lsmod | grep snd If not, load it and see if there is any improvement: sudo modprobe snd_cmipci Welcome to Ask Ubuntu.
– chili555
May 16 at 21:49




I believe the correct driver for your device is snd_cmipci. Is it loaded? lsmod | grep snd If not, load it and see if there is any improvement: sudo modprobe snd_cmipci Welcome to Ask Ubuntu.
– chili555
May 16 at 21:49












It is not loaded indeed. So I tried to add it and I got this: $ sudo modprobe snd_cmipci modprobe: ERROR: could not insert 'snd_cmipci': Operation not permitted
– tNico
May 16 at 22:25





It is not loaded indeed. So I tried to add it and I got this: $ sudo modprobe snd_cmipci modprobe: ERROR: could not insert 'snd_cmipci': Operation not permitted
– tNico
May 16 at 22:25













Please show us: dmesg | grep snd.
– chili555
May 16 at 22:30




Please show us: dmesg | grep snd.
– chili555
May 16 at 22:30












I've added to the main question what I get from dmesg and what's in alsa-base.conf. It's a fresh install from 10 minutes ago, I reinstalled just in case I messed up before trying to follow your advice.
– tNico
May 16 at 22:42




I've added to the main question what I get from dmesg and what's in alsa-base.conf. It's a fresh install from 10 minutes ago, I reinstalled just in case I messed up before trying to follow your advice.
– tNico
May 16 at 22:42










1 Answer
1






active

oldest

votes

















up vote
2
down vote



accepted










The bug referred to in the alsa-base.conf file is about 12 years old and, obviously, is now ineffective. Documentation on snd_cmipci is very hard to find and is also, typically, old.



As an experiment, I suggest that you remove the offending line:



sudo nano /etc/modprobe.d/alsa-base.conf


Change this line:



options snd-cmipci mpu_port=0x330 fm_port=0x388


To comment it out; that is, make it ineffective, like this:



#options snd-cmipci mpu_port=0x330 fm_port=0x388


Save (Ctrl+o followed by Enter) and exit (Ctrl+x) the text editor. Reboot.



Any improvement?






share|improve this answer






















  • That was it, it's now working perfectly! Thank you.
    – tNico
    May 17 at 0:26











  • Awesome! Glad it's working. If my answer has been helpful, please accept it: askubuntu.com/tour
    – chili555
    May 17 at 0:35










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1037123%2faudio-card-shows-up-in-lspci-but-not-in-aplay-18-04%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
2
down vote



accepted










The bug referred to in the alsa-base.conf file is about 12 years old and, obviously, is now ineffective. Documentation on snd_cmipci is very hard to find and is also, typically, old.



As an experiment, I suggest that you remove the offending line:



sudo nano /etc/modprobe.d/alsa-base.conf


Change this line:



options snd-cmipci mpu_port=0x330 fm_port=0x388


To comment it out; that is, make it ineffective, like this:



#options snd-cmipci mpu_port=0x330 fm_port=0x388


Save (Ctrl+o followed by Enter) and exit (Ctrl+x) the text editor. Reboot.



Any improvement?






share|improve this answer






















  • That was it, it's now working perfectly! Thank you.
    – tNico
    May 17 at 0:26











  • Awesome! Glad it's working. If my answer has been helpful, please accept it: askubuntu.com/tour
    – chili555
    May 17 at 0:35














up vote
2
down vote



accepted










The bug referred to in the alsa-base.conf file is about 12 years old and, obviously, is now ineffective. Documentation on snd_cmipci is very hard to find and is also, typically, old.



As an experiment, I suggest that you remove the offending line:



sudo nano /etc/modprobe.d/alsa-base.conf


Change this line:



options snd-cmipci mpu_port=0x330 fm_port=0x388


To comment it out; that is, make it ineffective, like this:



#options snd-cmipci mpu_port=0x330 fm_port=0x388


Save (Ctrl+o followed by Enter) and exit (Ctrl+x) the text editor. Reboot.



Any improvement?






share|improve this answer






















  • That was it, it's now working perfectly! Thank you.
    – tNico
    May 17 at 0:26











  • Awesome! Glad it's working. If my answer has been helpful, please accept it: askubuntu.com/tour
    – chili555
    May 17 at 0:35












up vote
2
down vote



accepted







up vote
2
down vote



accepted






The bug referred to in the alsa-base.conf file is about 12 years old and, obviously, is now ineffective. Documentation on snd_cmipci is very hard to find and is also, typically, old.



As an experiment, I suggest that you remove the offending line:



sudo nano /etc/modprobe.d/alsa-base.conf


Change this line:



options snd-cmipci mpu_port=0x330 fm_port=0x388


To comment it out; that is, make it ineffective, like this:



#options snd-cmipci mpu_port=0x330 fm_port=0x388


Save (Ctrl+o followed by Enter) and exit (Ctrl+x) the text editor. Reboot.



Any improvement?






share|improve this answer














The bug referred to in the alsa-base.conf file is about 12 years old and, obviously, is now ineffective. Documentation on snd_cmipci is very hard to find and is also, typically, old.



As an experiment, I suggest that you remove the offending line:



sudo nano /etc/modprobe.d/alsa-base.conf


Change this line:



options snd-cmipci mpu_port=0x330 fm_port=0x388


To comment it out; that is, make it ineffective, like this:



#options snd-cmipci mpu_port=0x330 fm_port=0x388


Save (Ctrl+o followed by Enter) and exit (Ctrl+x) the text editor. Reboot.



Any improvement?







share|improve this answer














share|improve this answer



share|improve this answer








edited May 17 at 2:09

























answered May 16 at 23:31









chili555

36.2k54775




36.2k54775











  • That was it, it's now working perfectly! Thank you.
    – tNico
    May 17 at 0:26











  • Awesome! Glad it's working. If my answer has been helpful, please accept it: askubuntu.com/tour
    – chili555
    May 17 at 0:35
















  • That was it, it's now working perfectly! Thank you.
    – tNico
    May 17 at 0:26











  • Awesome! Glad it's working. If my answer has been helpful, please accept it: askubuntu.com/tour
    – chili555
    May 17 at 0:35















That was it, it's now working perfectly! Thank you.
– tNico
May 17 at 0:26





That was it, it's now working perfectly! Thank you.
– tNico
May 17 at 0:26













Awesome! Glad it's working. If my answer has been helpful, please accept it: askubuntu.com/tour
– chili555
May 17 at 0:35




Awesome! Glad it's working. If my answer has been helpful, please accept it: askubuntu.com/tour
– chili555
May 17 at 0:35












 

draft saved


draft discarded


























 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1037123%2faudio-card-shows-up-in-lspci-but-not-in-aplay-18-04%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

pylint3 and pip3 broken

Missing snmpget and snmpwalk

How to enroll fingerprints to Ubuntu 17.10 with VFS491