-
-
Notifications
You must be signed in to change notification settings - Fork 2
Linux Microphone Configuration
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to microphone configuration on Linux, covering Arch Linux, CachyOS, and other distributions 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.wavInstall Audacity:
# Install Audacity
sudo pacman -S audacity
# Launch and test
audacityCheck microphone:
# Check sources
pactl list sources
# Check if muted
pactl list sources | grep -i mute
# Unmute
pactl set-source-mute source-name falseIncrease volume:
# Set volume
pactl set-source-volume source-name 100%
# Or use GUI
pavucontrolThis guide covered microphone configuration for Arch Linux, CachyOS, and other distributions, including detection, setup, and testing.
- Audio Configuration - Audio setup
- Speakers and Headphones - Audio devices
- ArchWiki Microphone: https://wiki.archlinux.org/title/PulseAudio/Examples#Microphone
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.