---
title: Troubleshooting Linux sound problems
kind: blog
description: Some personal notes about troubleshooting audio problems with HDMI out on a HTPC running Arch Linux.
words: 29
readingMinutes: 1
created: '2013-12-23T19:33:36.000Z'
updated: '2026-06-27T21:03:45+02:00'
tags:
  - linux
  - audio
  - alsa
  - pulseaudio
  - system-administration
---
* Unmuting outputs:  
  
  ```shell
  alsamixer
  ```

* Testing speaker channels:  
  
  ```shell
  speaker-test -c 5 -D default -t wav
  ```

* Disabling automatic suspension of sink in Pulseaudio:  
  
  ```shell
  sudo vi /etc/pulse/default.pa
  ```
  
  Comment this line out:  
  
  ```text
  # load-module module-suspend-on-idle
  ```
  
  Then restart Pulseaudio (probably easiest by logging out and in to X again?)
