我刚刚在 iMac 18,3 上安装了 fedora 37。一切都很好,除了没有声音。
settings/sound/
- 所选择的输出设备是
Dummy output
,没有其他选择。 - 没有输入。
uname -srm
Linux 6.1.8-200.fc37.x86_64 x86_64
lpsci -v
00:1f.3 Audio device: Intel Corporation 100 Series/C230 Series Chipset Family HD Audio Controller (rev 31)
Subsystem: Intel Corporation Device 7270
Flags: bus master, fast devsel, latency 64, IRQ 60
Memory at 92720000 (64-bit, non-prefetchable) [size=16K]
Memory at 4000000000 (64-bit, non-prefetchable) [size=64K]
Capabilities: <access denied>
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
01:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Ellesmere HDMI Audio [Radeon RX 470/480 / 570/580/590]
Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Ellesmere HDMI Audio [Radeon RX 470/480 / 570/580/590]
Flags: bus master, fast devsel, latency 0, IRQ 61
Memory at 92660000 (64-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
lsmod | grep snd
snd_seq_dummy 16384 0
snd_hrtimer 16384 1
snd_hda_codec_cs8409 36864 1
snd_hda_codec_generic 98304 1 snd_hda_codec_cs8409
snd_hda_codec_hdmi 86016 1
ledtrig_audio 16384 1 snd_hda_codec_generic
snd_hda_intel 61440 3
snd_intel_dspcfg 36864 1 snd_hda_intel
snd_intel_sdw_acpi 20480 1 snd_intel_dspcfg
snd_hda_codec 184320 4 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_codec_cs8409,snd_hda_intel
snd_hda_core 114688 5 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_codec_cs8409,snd_hda_intel,snd_hda_codec
snd_hwdep 16384 1 snd_hda_codec
snd_seq 94208 7 snd_seq_dummy
snd_seq_device 16384 1 snd_seq
snd_pcm 151552 4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core
snd_timer 49152 3 snd_seq,snd_hrtimer,snd_pcm
snd 126976 18 snd_hda_codec_generic,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_codec_cs8409,snd_hda_intel,snd_hda_codec,snd_timer,snd_pcm
soundcore 16384 1 snd
cat /proc/asound/card0/codec* | grep Codec
Codec: Cirrus Logic CS8409
cat /proc/asound/card1/codec* | grep Codec
Codec: ATI R6xx HDMI
从搜索结果中,我看到这个已知问题。
大多数主题不提供解决方案。
这个话题看起来很相似,但它指出这个内核模块我不知道如何使用。
另外,我尝试过
sudo nano /etc/modprobe.d/alsa-base.conf
options snd-hda-intel model=auto,imac27
但这不起作用。
您知道如何在 Linux 上的 iMac 27 上进行音频输入和输出吗?
谢谢
答案1
安装该模块。
Fedora 37 的说明:
# install the kernel headers
sudo dnf install kernel-devel
# clone the repo of the module
git clone https://github.com/egorenar/snd-hda-codec-cs8409.git
# make and install
cd snd-hda-codec-cs8409
make
sudo make install
重启。
此外,麦克风输入现在在系统设置中可见,但仍然不起作用(相关:Github 上的问题,关于 stackexchange 的问题)。
答案2
它也适用于 Debian 12,谢谢。
安装了内核头文件
sudo apt install linux-headers-amd64 build-essential
git clone https://github.com/egorenar/snd-hda-codec-cs8409.git
制作并安装
cd snd-hda-codec-cs8409
make
sudo make install
重启