-
-
Notifications
You must be signed in to change notification settings - Fork 1
Arch Linux Microphone Configuration
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to microphone configuration on Arch Linux, including microphone setup, testing, and troubleshooting.
Detect microphone:
# List audio devices
pactl list sources short
# Or
arecord -l
# Check ALSA
cat /proc/asound/cardsConfigure PulseAudio:
# Install PulseAudio
sudo pacman -S pulseaudio pulseaudio-alsa
# Set default source
pactl set-default-source source-name
# Check sources
pactl list sourcesConfigure PipeWire:
# Install PipeWire
sudo pacman -S pipewire pipewire-pulse
# Set default source
pactl set-default-source source-nameTest recording:
# Install tools
sudo pacman -S alsa-utils
# Record
arecord -d 5 test.wav
# Playback
aplay test.wavUse GUI:
# Install tools
sudo pacman -S pavucontrol audacity
# Open PulseAudio Volume Control
pavucontrol
# Record in Audacity
audacityCheck permissions:
# Check audio group
groups
# Add to audio group
sudo usermod -aG audio username
# Log out and back inCheck settings:
# Check microphone
pactl list sources | grep -A 10 "Source"
# Increase volume
pactl set-source-volume source-name 100%This guide covered microphone detection, setup, testing, and troubleshooting.
- Arch Linux Audio Configuration - Audio setup
- Arch Linux Hardware Detection - Hardware
- ArchWiki Microphone: https://wiki.archlinux.org/title/PulseAudio/Examples
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.