소리 장치가 감지되지 않습니다


26

새 Lenovo E470 시스템에 Ubuntu 16.04 LTE를 설치했습니다. 사운드 장치가 감지되지 않습니다.

여기에 이미지 설명을 입력하십시오

마찬가지로 입력 장치도 감지되지 않습니다. 도움이 될만한 정보 : aplay -lReturns

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

어쨌든 오디오 장치가 있습니다 : sudo lspci -v반환 (다른 것들 중에서)

00:1f.3 Audio device: Intel Corporation Device 9d71 (rev 21)
    Subsystem: Lenovo Device 505b
    Flags: bus master, fast devsel, latency 64, IRQ 16
    Memory at f4420000 (64-bit, non-prefetchable) [size=16K]
    Memory at f4410000 (64-bit, non-prefetchable) [size=64K]
    Capabilities: [50] Power Management version 3
    Capabilities: [60] MSI: Enable- Count=1/1 Maskable- 64bit+
    Kernel driver in use: snd_hda_intel
    Kernel modules: snd_hda_intel

나는 alsa를 다시로드하려고 시도했다 : sudo alsa force-reload반환

Terminating processes: 10509 (failed: processes still using sound devices: 30977(pulseaudio)).
Unloading ALSA sound driver modules: snd-seq-midi snd-seq-midi-event snd-seq snd-rawmidi snd-seq-device snd-hda-codec-hdmi snd-hda-intel snd-hda-codec snd-hda-core snd-hwdep snd-pcm snd-timer (failed: modules still loaded: snd-hda-codec-hdmi snd-hda-intel snd-hda-codec snd-hda-core snd-hwdep snd-pcm snd-timer).
Loading ALSA sound driver modules: snd-seq-midi snd-seq-midi-event snd-seq snd-rawmidi snd-seq-device snd-hda-codec-hdmi snd-hda-intel snd-hda-codec snd-hda-core snd-hwdep snd-pcm snd-timer.

pacmd의 싱크 목록 : pacmd

Welcome to PulseAudio 8.0! Use "help" for usage information.
>>> list-sinks

1 sink(s) available.
  * index: 0
    name: <alsa_output.pci-0000_00_1f.3.hdmi-stereo>
    driver: <module-alsa-card.c>
    flags: HARDWARE DECIBEL_VOLUME LATENCY DYNAMIC_LATENCY
    state: IDLE
    suspend cause: 
    priority: 9950
    volume: front-left: 53740 /  82% / -5.17 dB,   front-right: 53740 /  82% / -5.17 dB
            balance 0.00
    base volume: 65536 / 100% / 0.00 dB
    volume steps: 65537
    muted: no
    current latency: 370.83 ms
    max request: 64 KiB
    max rewind: 64 KiB
    monitor source: 0
    sample spec: s16le 2ch 44100Hz
    channel map: front-left,front-right
                 Stereo
    used by: 0
    linked by: 0
    configured latency: 371.52 ms; range is 0.50 .. 371.52 ms
    card: 0 <alsa_card.pci-0000_00_1f.3>
    module: 6
    properties:
        alsa.resolution_bits = "16"
        device.api = "alsa"
        device.class = "sound"
        alsa.class = "generic"
        alsa.subclass = "generic-mix"
        alsa.name = "HDMI 0"
        alsa.id = "HDMI 0"
        alsa.subdevice = "0"
        alsa.subdevice_name = "subdevice #0"
        alsa.device = "3"
        alsa.card = "0"
        alsa.card_name = "HDA Intel"
        alsa.long_card_name = "HDA Intel at 0xf4420000 irq 126"
        alsa.driver_name = "snd_hda_intel"
        device.bus_path = "pci-0000:00:1f.3"
        sysfs.path = "/devices/pci0000:00/0000:00:1f.3/sound/card0"
        device.bus = "pci"
        device.vendor.id = "8086"
        device.vendor.name = "Intel Corporation"
        device.product.id = "9d71"
        device.form_factor = "internal"
        device.string = "hdmi:0"
        device.buffering.buffer_size = "65536"
        device.buffering.fragment_size = "32768"
        device.access_mode = "mmap+timer"
        device.profile.name = "hdmi-stereo"
        device.profile.description = "Digital Stereo (HDMI)"
        device.description = "Built-in Audio Digital Stereo (HDMI)"
        alsa.mixer_name = "Intel Kabylake HDMI"
        alsa.components = "HDA:8086280b,17aa505b,00100000"
        module-udev-detect.discovered = "1"
        device.icon_name = "audio-card-pci"
    ports:
        hdmi-output-0: HDMI / DisplayPort (priority 5900, latency offset 0 usec, available: no)
            properties:
                device.icon_name = "video-display"
    active port: <hdmi-output-0>

미리이 기기에서 어떤 사운드도 생성 할 수 없었습니다.

시간 내 주셔서 감사합니다. 더 유용한 정보를 알려 주시면 알려주십시오.

답변:


35

에 대한 반응에서 제안한 것처럼 pulseaudio의 문제를 해결하는 것을 잊어 버렸습니다 sudo alsa force-reload. 에 따르면 펄스 오디오 페이지 , 나는 실행

rm -r ~/.config/pulse; pulseaudio -k

나는 재부팅했다. 이제 작동합니다! :)


3
다시 부팅 할 필요가 없었습니다. "pulseaudio"는 kubuntu 14.04에서 자동으로 시작되었습니다. 시작되지 않으면 "pulseaudio --start"를 수행하십시오.
dr0i

내는 /etc/pulse/default.pa제가 제거 된 모듈을로드하기 때문에 약간의 오차가 있었다. 문제를 해결하기 pulseaudio위해 콘솔에 입력 한 후 누락 된 모듈을 나타내는 오류 메시지가 표시되었습니다
UnLoCo

1
이 간단한 솔루션이 효과가 있었으면하지만 불행히도 다음과 같이하지 않았습니다. (
Arun Saha

6

나는 같은 문제가 있었고 root를 사용하여 gdm에 로그인했기 때문에 밝혀 졌고이 경우 pulseaudio가 올바르게 시작되지 않지만 pulseaudio -D를 실행하면 올바르게 작동합니다


1

inotify 시계의 수를 늘리면이 문제가 해결되었습니다.

https://wiki.archlinux.org/index.php/PulseAudio/Troubleshooting#Daemon_startup_failed의 지침을 따르십시오.

pulseaudio -v 오류가 발생했습니다 :

E : [pulseaudio] module-udev-detect.c : 당신은 아마도 추적기 / 비글이 그것들을 모두 빼앗아 갔기 때문에 아마도 시계가 부족했을 것입니다. 나는 사람들이 숙제를 먼저하고 inotify를 사용하기 전에 현재 inotify가 확실히 유용하지 않은 전체 디렉토리 트리를 보는 데 사용하기를 바랐습니다. inotify의 깨진 사용에 대해 불평하는 Tracker / Beagle 녀석을 떨어 뜨리십시오.

etc/sysctl.conf이 문제 를 해결하기 위해 줄 추가 :

fs.inotify.max_user_watches = 524288
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.