Ubuntu 16.04 耳机不工作

BcK*_*BcK 6 sound headphones audio-jack 16.04

提醒:我已经从头重新安装了 Ubuntu 16.04 但它没有帮助,问题仍然存在。


我使用 Windows 10 和 Ubuntu 作为双启动。

问题是我无法让耳机工作。它们在 Win 10 上运行良好。显然我的耳机插孔与 Ubuntu 不兼容。如何让 Ubuntu 看到我的耳机插孔?我需要帮助。

耳机插孔不工作?

我已经尝试了上面链接中的所有方法。

耳机 : 苹果

当我插入耳机时,它们甚至不会出现: 系统设置 > 声音

内置扬声器工作正常。

如果您还有其他想知道的事情,请帮我找出来。


编辑:这可能有用。

burakcank@BurakcanK-PC:~/Documents$ lspci | grep Audio
00:03.0 Audio device: Intel Corporation Broadwell-U Audio Controller 
(rev 0a)
00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset 
High Definition Audio Controller (rev 05)
Run Code Online (Sandbox Code Playgroud)

编辑 2:添加了 AlsaInfo


编辑 3:添加了 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
# Keep snd-pcsp from being loaded as first soundcard
options snd-pcsp index=-2
alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intel
options snd-hda-intel model=dell-m6-amic
Run Code Online (Sandbox Code Playgroud)

BcK*_*BcK 8

在寻找该死的 2 个月的解决方案后,我能够解决我自己的问题。

这个问题在 Linux Mint 中也存在,因为它们都基于 Debian,这意味着这是 Debian 中存在的问题。

这篇文章有很多关于这个问题的信息:

[已解决]前面板耳机无法与板载 Intel HD Audio 配合使用

在某些时候它提到了一个包hda-jack-retask。我稍微搜索了一下,发现它位于alsa-tools-gui. 我安装了它然后我写了

sudo hdajackretask
Run Code Online (Sandbox Code Playgroud)

在此 GUI 中,我将前置插孔覆盖到耳机并安装了引导覆盖。

现在我的耳机有清晰的声音,而且它可以检测它们是否已插入!当它们插入时,它会使扬声器静音。


这可能不是一个常见问题,但它很难解决。我在互联网上找到的其他解决方案对这个问题不起作用。

如果有人阅读能够在未来的 Debian 版本中解决这个问题,请联系我或告诉我如何报告这个问题。