Sound card shown as Dummy Output in Ubuntu 18.04
Dummy output is showing in Settings -> Sound in Ubuntu 18.04.
Dummy Output
I tried:
sudo alsa force-reload
It does nothing. I am not sure what else to try.
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04 LTS
Release: 18.04
Codename: bionic
$ lsmod | grep snd_hda_intel
snd_hda_intel 40960 3
snd_hda_codec 126976 4 snd_hda_intel,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_hda_core 81920 5 snd_hda_intel,snd_hda_codec,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_pcm 98304 4 snd_hda_intel,snd_hda_codec,snd_hda_core,snd_hda_codec_hdmi
snd 81920 18 snd_hda_intel,snd_hwdep,snd_seq,snd_hda_codec,snd_timer,snd_rawmidi,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_seq_device,snd_hda_codec_realtek,snd_pcm
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation Sunrise Point-H HD Audio [8086:a170] (rev 31)
Subsystem: Micro-Star International Co., Ltd. [MSI] Sunrise Point-H HD Audio [1462:fa15]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
$ 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
options snd-hda-intel model=auto
drivers sound 18.04 pulseaudio alsa
add a comment |
Dummy output is showing in Settings -> Sound in Ubuntu 18.04.
Dummy Output
I tried:
sudo alsa force-reload
It does nothing. I am not sure what else to try.
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04 LTS
Release: 18.04
Codename: bionic
$ lsmod | grep snd_hda_intel
snd_hda_intel 40960 3
snd_hda_codec 126976 4 snd_hda_intel,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_hda_core 81920 5 snd_hda_intel,snd_hda_codec,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_pcm 98304 4 snd_hda_intel,snd_hda_codec,snd_hda_core,snd_hda_codec_hdmi
snd 81920 18 snd_hda_intel,snd_hwdep,snd_seq,snd_hda_codec,snd_timer,snd_rawmidi,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_seq_device,snd_hda_codec_realtek,snd_pcm
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation Sunrise Point-H HD Audio [8086:a170] (rev 31)
Subsystem: Micro-Star International Co., Ltd. [MSI] Sunrise Point-H HD Audio [1462:fa15]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
$ 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
options snd-hda-intel model=auto
drivers sound 18.04 pulseaudio alsa
3
Possible duplicate of No sound in Ubuntu 18.04 HP notebook
– Morgoth
Oct 3 '18 at 9:47
Solution given in the problem above does not work.
– berduchwal
Nov 8 '18 at 9:05
add a comment |
Dummy output is showing in Settings -> Sound in Ubuntu 18.04.
Dummy Output
I tried:
sudo alsa force-reload
It does nothing. I am not sure what else to try.
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04 LTS
Release: 18.04
Codename: bionic
$ lsmod | grep snd_hda_intel
snd_hda_intel 40960 3
snd_hda_codec 126976 4 snd_hda_intel,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_hda_core 81920 5 snd_hda_intel,snd_hda_codec,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_pcm 98304 4 snd_hda_intel,snd_hda_codec,snd_hda_core,snd_hda_codec_hdmi
snd 81920 18 snd_hda_intel,snd_hwdep,snd_seq,snd_hda_codec,snd_timer,snd_rawmidi,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_seq_device,snd_hda_codec_realtek,snd_pcm
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation Sunrise Point-H HD Audio [8086:a170] (rev 31)
Subsystem: Micro-Star International Co., Ltd. [MSI] Sunrise Point-H HD Audio [1462:fa15]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
$ 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
options snd-hda-intel model=auto
drivers sound 18.04 pulseaudio alsa
Dummy output is showing in Settings -> Sound in Ubuntu 18.04.
Dummy Output
I tried:
sudo alsa force-reload
It does nothing. I am not sure what else to try.
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04 LTS
Release: 18.04
Codename: bionic
$ lsmod | grep snd_hda_intel
snd_hda_intel 40960 3
snd_hda_codec 126976 4 snd_hda_intel,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_hda_core 81920 5 snd_hda_intel,snd_hda_codec,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_pcm 98304 4 snd_hda_intel,snd_hda_codec,snd_hda_core,snd_hda_codec_hdmi
snd 81920 18 snd_hda_intel,snd_hwdep,snd_seq,snd_hda_codec,snd_timer,snd_rawmidi,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_seq_device,snd_hda_codec_realtek,snd_pcm
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation Sunrise Point-H HD Audio [8086:a170] (rev 31)
Subsystem: Micro-Star International Co., Ltd. [MSI] Sunrise Point-H HD Audio [1462:fa15]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
$ 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
options snd-hda-intel model=auto
drivers sound 18.04 pulseaudio alsa
drivers sound 18.04 pulseaudio alsa
edited Oct 3 '18 at 10:18
karel
59k13128149
59k13128149
asked Jul 26 '18 at 8:54
berduchwalberduchwal
2116
2116
3
Possible duplicate of No sound in Ubuntu 18.04 HP notebook
– Morgoth
Oct 3 '18 at 9:47
Solution given in the problem above does not work.
– berduchwal
Nov 8 '18 at 9:05
add a comment |
3
Possible duplicate of No sound in Ubuntu 18.04 HP notebook
– Morgoth
Oct 3 '18 at 9:47
Solution given in the problem above does not work.
– berduchwal
Nov 8 '18 at 9:05
3
3
Possible duplicate of No sound in Ubuntu 18.04 HP notebook
– Morgoth
Oct 3 '18 at 9:47
Possible duplicate of No sound in Ubuntu 18.04 HP notebook
– Morgoth
Oct 3 '18 at 9:47
Solution given in the problem above does not work.
– berduchwal
Nov 8 '18 at 9:05
Solution given in the problem above does not work.
– berduchwal
Nov 8 '18 at 9:05
add a comment |
3 Answers
3
active
oldest
votes
I faced this as well when I dist-upgraded my custom-built desktop from 16.04.x to 18.04.1 (both LTS). After upgrading, sound didn't work. lspci
listed the audio device but -- unlike yours -- the system stubbornly refused to load the relevant module. lshw
showed the device as 'unclaimed'.
$ lspci -nnk | grep -A2 Audio
<snip>
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
<snip>
$ sudo lshw -c sound
*-multimedia UNCLAIMED
description: Audio device
product: 200 Series PCH HD Audio
vendor: Intel Corporation
I tried a bunch of Ask Ubuntu and web answers (such as these answers) but they didn't work for me. Eventually I tried the Sound Troubleshooting Procedure on help.ubuntu.com, and Step 3 of the troubleshooting procedures helped me get back sound. Essentially what I did is ran the following commands and rebooted.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get update
sudo apt-get install linux-image-extra-`uname -r`
sudo apt-get install --reinstall linux-image-extra-`uname -r`
sudo apt-get install oem-audio-hda-daily-dkms
Now lspci
shows (and sound works):
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
Thank you for your answer. It did not make any difference. From the list of commands provided only first and last worked (update was automatic).
– berduchwal
Nov 8 '18 at 8:51
add a comment |
Just wanted to add to this, I followed similar instructions to have sound work briefly after a reboot with a dell XPS 13 running Ubuntu cosmic (18.10). Switching between 'auto' and 'generic' didn't change much
sudo alsa force-reload
worked for me.
Previously I tried this and it did now work. However I tried now and it did. Will see after reboot.
– berduchwal
Jan 4 at 9:51
It only worked this time. After reboot I am back to Dummy Output.
– berduchwal
Jan 8 at 21:37
add a comment |
I have slight different variation of the problem, the command
lsmod | grep snd_hda_intel
and
lspci -nnk | grep -A2 Audio
both indicated that I have snd_hda_intel
on the system, however the audio control have always been Dummy Output
.
Following Sound Troubleshooting similar to @sigint, I realized that oem-audio-hda-daily-dkms
is the only one needed.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get install oem-audio-hda-daily-dkms
Please also refer to the HW I have below
- MB: ASROCK Z370 Pro4
- i7 8700k
No help. I tried that but it changed nothing for me.
– berduchwal
Jan 4 at 9:11
@berduchwal this sounds silly, but could it be HW problem? e.g. front panel audio wire or connection? I have done this a few times now and it worked on my ASRock and MSI mobo. What kinds of HW you have?
– hdev213
Jan 7 at 14:34
@berduchwal OK I think I might have found what might be going on. I have faced again this issue today, and I was scratching my head thinking about that is going on... Then I plugged in my headphone and restarted the machine, and all the sudden the headphone option come up. I think this could be due the timing of sound card initialization or it only initialize once at the beginning. I have tested the same theory with the line-in input jack at the back of the machine and same result. I hope this helps.
– hdev213
Jan 28 at 21:58
add a comment |
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',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1059619%2fsound-card-shown-as-dummy-output-in-ubuntu-18-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I faced this as well when I dist-upgraded my custom-built desktop from 16.04.x to 18.04.1 (both LTS). After upgrading, sound didn't work. lspci
listed the audio device but -- unlike yours -- the system stubbornly refused to load the relevant module. lshw
showed the device as 'unclaimed'.
$ lspci -nnk | grep -A2 Audio
<snip>
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
<snip>
$ sudo lshw -c sound
*-multimedia UNCLAIMED
description: Audio device
product: 200 Series PCH HD Audio
vendor: Intel Corporation
I tried a bunch of Ask Ubuntu and web answers (such as these answers) but they didn't work for me. Eventually I tried the Sound Troubleshooting Procedure on help.ubuntu.com, and Step 3 of the troubleshooting procedures helped me get back sound. Essentially what I did is ran the following commands and rebooted.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get update
sudo apt-get install linux-image-extra-`uname -r`
sudo apt-get install --reinstall linux-image-extra-`uname -r`
sudo apt-get install oem-audio-hda-daily-dkms
Now lspci
shows (and sound works):
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
Thank you for your answer. It did not make any difference. From the list of commands provided only first and last worked (update was automatic).
– berduchwal
Nov 8 '18 at 8:51
add a comment |
I faced this as well when I dist-upgraded my custom-built desktop from 16.04.x to 18.04.1 (both LTS). After upgrading, sound didn't work. lspci
listed the audio device but -- unlike yours -- the system stubbornly refused to load the relevant module. lshw
showed the device as 'unclaimed'.
$ lspci -nnk | grep -A2 Audio
<snip>
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
<snip>
$ sudo lshw -c sound
*-multimedia UNCLAIMED
description: Audio device
product: 200 Series PCH HD Audio
vendor: Intel Corporation
I tried a bunch of Ask Ubuntu and web answers (such as these answers) but they didn't work for me. Eventually I tried the Sound Troubleshooting Procedure on help.ubuntu.com, and Step 3 of the troubleshooting procedures helped me get back sound. Essentially what I did is ran the following commands and rebooted.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get update
sudo apt-get install linux-image-extra-`uname -r`
sudo apt-get install --reinstall linux-image-extra-`uname -r`
sudo apt-get install oem-audio-hda-daily-dkms
Now lspci
shows (and sound works):
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
Thank you for your answer. It did not make any difference. From the list of commands provided only first and last worked (update was automatic).
– berduchwal
Nov 8 '18 at 8:51
add a comment |
I faced this as well when I dist-upgraded my custom-built desktop from 16.04.x to 18.04.1 (both LTS). After upgrading, sound didn't work. lspci
listed the audio device but -- unlike yours -- the system stubbornly refused to load the relevant module. lshw
showed the device as 'unclaimed'.
$ lspci -nnk | grep -A2 Audio
<snip>
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
<snip>
$ sudo lshw -c sound
*-multimedia UNCLAIMED
description: Audio device
product: 200 Series PCH HD Audio
vendor: Intel Corporation
I tried a bunch of Ask Ubuntu and web answers (such as these answers) but they didn't work for me. Eventually I tried the Sound Troubleshooting Procedure on help.ubuntu.com, and Step 3 of the troubleshooting procedures helped me get back sound. Essentially what I did is ran the following commands and rebooted.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get update
sudo apt-get install linux-image-extra-`uname -r`
sudo apt-get install --reinstall linux-image-extra-`uname -r`
sudo apt-get install oem-audio-hda-daily-dkms
Now lspci
shows (and sound works):
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
I faced this as well when I dist-upgraded my custom-built desktop from 16.04.x to 18.04.1 (both LTS). After upgrading, sound didn't work. lspci
listed the audio device but -- unlike yours -- the system stubbornly refused to load the relevant module. lshw
showed the device as 'unclaimed'.
$ lspci -nnk | grep -A2 Audio
<snip>
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
<snip>
$ sudo lshw -c sound
*-multimedia UNCLAIMED
description: Audio device
product: 200 Series PCH HD Audio
vendor: Intel Corporation
I tried a bunch of Ask Ubuntu and web answers (such as these answers) but they didn't work for me. Eventually I tried the Sound Troubleshooting Procedure on help.ubuntu.com, and Step 3 of the troubleshooting procedures helped me get back sound. Essentially what I did is ran the following commands and rebooted.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get update
sudo apt-get install linux-image-extra-`uname -r`
sudo apt-get install --reinstall linux-image-extra-`uname -r`
sudo apt-get install oem-audio-hda-daily-dkms
Now lspci
shows (and sound works):
$ lspci -nnk | grep -A2 Audio
00:1f.3 Audio device [0403]: Intel Corporation 200 Series PCH HD Audio [8086:a2f0]
Subsystem: ASUSTeK Computer Inc. 200 Series PCH HD Audio [1043:8723]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
answered Nov 6 '18 at 20:15
sigintsigint
1264
1264
Thank you for your answer. It did not make any difference. From the list of commands provided only first and last worked (update was automatic).
– berduchwal
Nov 8 '18 at 8:51
add a comment |
Thank you for your answer. It did not make any difference. From the list of commands provided only first and last worked (update was automatic).
– berduchwal
Nov 8 '18 at 8:51
Thank you for your answer. It did not make any difference. From the list of commands provided only first and last worked (update was automatic).
– berduchwal
Nov 8 '18 at 8:51
Thank you for your answer. It did not make any difference. From the list of commands provided only first and last worked (update was automatic).
– berduchwal
Nov 8 '18 at 8:51
add a comment |
Just wanted to add to this, I followed similar instructions to have sound work briefly after a reboot with a dell XPS 13 running Ubuntu cosmic (18.10). Switching between 'auto' and 'generic' didn't change much
sudo alsa force-reload
worked for me.
Previously I tried this and it did now work. However I tried now and it did. Will see after reboot.
– berduchwal
Jan 4 at 9:51
It only worked this time. After reboot I am back to Dummy Output.
– berduchwal
Jan 8 at 21:37
add a comment |
Just wanted to add to this, I followed similar instructions to have sound work briefly after a reboot with a dell XPS 13 running Ubuntu cosmic (18.10). Switching between 'auto' and 'generic' didn't change much
sudo alsa force-reload
worked for me.
Previously I tried this and it did now work. However I tried now and it did. Will see after reboot.
– berduchwal
Jan 4 at 9:51
It only worked this time. After reboot I am back to Dummy Output.
– berduchwal
Jan 8 at 21:37
add a comment |
Just wanted to add to this, I followed similar instructions to have sound work briefly after a reboot with a dell XPS 13 running Ubuntu cosmic (18.10). Switching between 'auto' and 'generic' didn't change much
sudo alsa force-reload
worked for me.
Just wanted to add to this, I followed similar instructions to have sound work briefly after a reboot with a dell XPS 13 running Ubuntu cosmic (18.10). Switching between 'auto' and 'generic' didn't change much
sudo alsa force-reload
worked for me.
answered Jan 3 at 13:23
viper233viper233
111
111
Previously I tried this and it did now work. However I tried now and it did. Will see after reboot.
– berduchwal
Jan 4 at 9:51
It only worked this time. After reboot I am back to Dummy Output.
– berduchwal
Jan 8 at 21:37
add a comment |
Previously I tried this and it did now work. However I tried now and it did. Will see after reboot.
– berduchwal
Jan 4 at 9:51
It only worked this time. After reboot I am back to Dummy Output.
– berduchwal
Jan 8 at 21:37
Previously I tried this and it did now work. However I tried now and it did. Will see after reboot.
– berduchwal
Jan 4 at 9:51
Previously I tried this and it did now work. However I tried now and it did. Will see after reboot.
– berduchwal
Jan 4 at 9:51
It only worked this time. After reboot I am back to Dummy Output.
– berduchwal
Jan 8 at 21:37
It only worked this time. After reboot I am back to Dummy Output.
– berduchwal
Jan 8 at 21:37
add a comment |
I have slight different variation of the problem, the command
lsmod | grep snd_hda_intel
and
lspci -nnk | grep -A2 Audio
both indicated that I have snd_hda_intel
on the system, however the audio control have always been Dummy Output
.
Following Sound Troubleshooting similar to @sigint, I realized that oem-audio-hda-daily-dkms
is the only one needed.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get install oem-audio-hda-daily-dkms
Please also refer to the HW I have below
- MB: ASROCK Z370 Pro4
- i7 8700k
No help. I tried that but it changed nothing for me.
– berduchwal
Jan 4 at 9:11
@berduchwal this sounds silly, but could it be HW problem? e.g. front panel audio wire or connection? I have done this a few times now and it worked on my ASRock and MSI mobo. What kinds of HW you have?
– hdev213
Jan 7 at 14:34
@berduchwal OK I think I might have found what might be going on. I have faced again this issue today, and I was scratching my head thinking about that is going on... Then I plugged in my headphone and restarted the machine, and all the sudden the headphone option come up. I think this could be due the timing of sound card initialization or it only initialize once at the beginning. I have tested the same theory with the line-in input jack at the back of the machine and same result. I hope this helps.
– hdev213
Jan 28 at 21:58
add a comment |
I have slight different variation of the problem, the command
lsmod | grep snd_hda_intel
and
lspci -nnk | grep -A2 Audio
both indicated that I have snd_hda_intel
on the system, however the audio control have always been Dummy Output
.
Following Sound Troubleshooting similar to @sigint, I realized that oem-audio-hda-daily-dkms
is the only one needed.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get install oem-audio-hda-daily-dkms
Please also refer to the HW I have below
- MB: ASROCK Z370 Pro4
- i7 8700k
No help. I tried that but it changed nothing for me.
– berduchwal
Jan 4 at 9:11
@berduchwal this sounds silly, but could it be HW problem? e.g. front panel audio wire or connection? I have done this a few times now and it worked on my ASRock and MSI mobo. What kinds of HW you have?
– hdev213
Jan 7 at 14:34
@berduchwal OK I think I might have found what might be going on. I have faced again this issue today, and I was scratching my head thinking about that is going on... Then I plugged in my headphone and restarted the machine, and all the sudden the headphone option come up. I think this could be due the timing of sound card initialization or it only initialize once at the beginning. I have tested the same theory with the line-in input jack at the back of the machine and same result. I hope this helps.
– hdev213
Jan 28 at 21:58
add a comment |
I have slight different variation of the problem, the command
lsmod | grep snd_hda_intel
and
lspci -nnk | grep -A2 Audio
both indicated that I have snd_hda_intel
on the system, however the audio control have always been Dummy Output
.
Following Sound Troubleshooting similar to @sigint, I realized that oem-audio-hda-daily-dkms
is the only one needed.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get install oem-audio-hda-daily-dkms
Please also refer to the HW I have below
- MB: ASROCK Z370 Pro4
- i7 8700k
I have slight different variation of the problem, the command
lsmod | grep snd_hda_intel
and
lspci -nnk | grep -A2 Audio
both indicated that I have snd_hda_intel
on the system, however the audio control have always been Dummy Output
.
Following Sound Troubleshooting similar to @sigint, I realized that oem-audio-hda-daily-dkms
is the only one needed.
sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
sudo apt-get install oem-audio-hda-daily-dkms
Please also refer to the HW I have below
- MB: ASROCK Z370 Pro4
- i7 8700k
answered Jan 3 at 3:49
hdev213hdev213
1
1
No help. I tried that but it changed nothing for me.
– berduchwal
Jan 4 at 9:11
@berduchwal this sounds silly, but could it be HW problem? e.g. front panel audio wire or connection? I have done this a few times now and it worked on my ASRock and MSI mobo. What kinds of HW you have?
– hdev213
Jan 7 at 14:34
@berduchwal OK I think I might have found what might be going on. I have faced again this issue today, and I was scratching my head thinking about that is going on... Then I plugged in my headphone and restarted the machine, and all the sudden the headphone option come up. I think this could be due the timing of sound card initialization or it only initialize once at the beginning. I have tested the same theory with the line-in input jack at the back of the machine and same result. I hope this helps.
– hdev213
Jan 28 at 21:58
add a comment |
No help. I tried that but it changed nothing for me.
– berduchwal
Jan 4 at 9:11
@berduchwal this sounds silly, but could it be HW problem? e.g. front panel audio wire or connection? I have done this a few times now and it worked on my ASRock and MSI mobo. What kinds of HW you have?
– hdev213
Jan 7 at 14:34
@berduchwal OK I think I might have found what might be going on. I have faced again this issue today, and I was scratching my head thinking about that is going on... Then I plugged in my headphone and restarted the machine, and all the sudden the headphone option come up. I think this could be due the timing of sound card initialization or it only initialize once at the beginning. I have tested the same theory with the line-in input jack at the back of the machine and same result. I hope this helps.
– hdev213
Jan 28 at 21:58
No help. I tried that but it changed nothing for me.
– berduchwal
Jan 4 at 9:11
No help. I tried that but it changed nothing for me.
– berduchwal
Jan 4 at 9:11
@berduchwal this sounds silly, but could it be HW problem? e.g. front panel audio wire or connection? I have done this a few times now and it worked on my ASRock and MSI mobo. What kinds of HW you have?
– hdev213
Jan 7 at 14:34
@berduchwal this sounds silly, but could it be HW problem? e.g. front panel audio wire or connection? I have done this a few times now and it worked on my ASRock and MSI mobo. What kinds of HW you have?
– hdev213
Jan 7 at 14:34
@berduchwal OK I think I might have found what might be going on. I have faced again this issue today, and I was scratching my head thinking about that is going on... Then I plugged in my headphone and restarted the machine, and all the sudden the headphone option come up. I think this could be due the timing of sound card initialization or it only initialize once at the beginning. I have tested the same theory with the line-in input jack at the back of the machine and same result. I hope this helps.
– hdev213
Jan 28 at 21:58
@berduchwal OK I think I might have found what might be going on. I have faced again this issue today, and I was scratching my head thinking about that is going on... Then I plugged in my headphone and restarted the machine, and all the sudden the headphone option come up. I think this could be due the timing of sound card initialization or it only initialize once at the beginning. I have tested the same theory with the line-in input jack at the back of the machine and same result. I hope this helps.
– hdev213
Jan 28 at 21:58
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1059619%2fsound-card-shown-as-dummy-output-in-ubuntu-18-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Possible duplicate of No sound in Ubuntu 18.04 HP notebook
– Morgoth
Oct 3 '18 at 9:47
Solution given in the problem above does not work.
– berduchwal
Nov 8 '18 at 9:05