Archlinux32를 새 하드웨어로 마이그레이션한 후 소리가 작동하지 않습니다.

Archlinux32를 새 하드웨어로 마이그레이션한 후 소리가 작동하지 않습니다.

하드웨어를 변경하고 동일한 OS를 부팅한 후(아치리눅스32), 소리가 전혀 작동하지 않습니다. 오래된 하드웨어에서는 잘 작동합니다.

마이그레이션할 때:

  1. 라이브 ISO 실행
  2. mkinitcpio -p linux
  3. 업데이트됨 /etc/fstab
  4. 그럽 다시 설치

부팅 후 소리를 제외하고는 모든 것이 잘 작동합니다. pulseaudio 및 alsa-utils도 설치됩니다.


speaker-test -c 2 -D default:

speaker-test 1.1.8

Playback device is default
Stream parameters are 48000Hz, S16_LE, 2 channels
Using 16 octaves of pink noise
Playback open error: -2,No such file or directory

lspci -nn | grep Audio:

00:1b.0 Audio device [0403]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller [8086:2668] (rev 03)

pactl list sinks:

Sink #0
        State: IDLE
        Name: auto_null
        Description: Dummy Output
        Driver: module-null-sink.c
        Sample Specification: s16le 2ch 44100Hz
        Channel Map: front-left,front-right
        Owner Module: 15
        Mute: no
        Volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
                balance 0.00
        Base Volume: 65536 / 100% / 0.00 dB
        Monitor Source: auto_null.monitor
        Latency: 658477 usec, configured 2000000 usec
        Flags: DECIBEL_VOLUME LATENCY
        Properties:
                device.description = "Dummy Output"
                device.class = "abstract"
                device.icon_name = "audio-card"
        Formats:
                pcm

aplay -l:

**** List of PLAYBACK Hardware Devices ****

lsmod | grep snd:

snd_hda_codec_realtek   102400  1
snd_hda_codec_generic    73728  1 snd_hda_codec_realtek
snd_hda_intel          40960  0
snd_hda_codec         118784  3 snd_hda_intel,snd_hda_codec_generic,snd_hda_codec_realtek
snd_hda_core           73728  4 snd_hda_intel,snd_hda_codec,snd_hda_codec_generic,snd_hda_codec_realtek
snd_hwdep              16384  1 snd_hda_codec
snd_pcm               102400  3 snd_hda_intel,snd_hda_codec,snd_hda_core
snd_timer              32768  1 snd_pcm
snd                    73728  7 snd_hda_intel,snd_hwdep,snd_hda_codec,snd_timer,snd_hda_codec_generic,snd_hda_codec_realtek,snd_pcm
soundcore              16384  1 snd

systemctl --user status pulseaudio.socket:

* pulseaudio.socket - Sound System
   Loaded: loaded (/usr/lib/systemd/user/pulseaudio.socket; enabled; vendor preset: enabled)
   Active: active (running) since Sun 2019-03-17 21:09:12 EET; 14min ago
   Listen: /run/user/1000/pulse/native (Stream)
   CGroup: /user.slice/user-1000.slice/[email protected]/pulseaudio.socket

Mar 17 21:09:12 ninmach systemd[381]: Listening on Sound System.
Warning: Journal has been rotated since unit was started. Log output is incomplete or unavailable.

alsamixer:

이미지 2


alsamixer선택으로인텔 HDA카드:

이미지 3


alsamixer누른 채로F5:

이미지 4


pavucontrol:

이미지 1


pavucontrol그리고구성상표:

이미지 5

전체적으로, alsamixer에 Master 등이 표시되지 않고 전혀 작동하지 않는 이유는 무엇입니까?

Foxconn 915A03-G-8KS이것은 싱글 코어 CPU를 갖춘 오래된 마더보드입니다 Intel(R) Celeron(R) CPU 2.66GHz.

답변1

몇몇 좋은 사람들IRC채널 #archlinux32도움말에 따르면 해결 방법은 다음과 같습니다.옵션snd-hda-intel커널 모듈 의 경우 : model=6stack또는 model=6stack-digout.

따라서 다음 옵션을 사용하여 이 모듈을 다시 로드한 후:

modprobe -r snd-hda-intel
modprobe snd-hda-intel model=6stack

이는 아마도 커널의 버그일 수 있으므로 올바른 옵션 없이 이 모듈을 로드합니다.수리하다이 마더보드에는 적용되지 않습니다.

그러나 이 옵션을 수동으로 추가하면 /etc/modprobe.d/시스템은 다음 부팅 시마다 이 옵션을 사용하여 이 모듈을 로드하게 됩니다.

echo "options snd-hda-intel model=6stack" >> /etc/modprobe.d/sound_fix.conf

관련 정보