-
-
Notifications
You must be signed in to change notification settings - Fork 2
Arch Linux Bluetooth Configuration
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to configuring Bluetooth on Arch Linux, including device pairing, audio setup, and troubleshooting.
Install packages:
# Install Bluetooth
sudo pacman -S bluez bluez-utils
# Enable service
sudo systemctl enable bluetooth
sudo systemctl start bluetoothInstall GUI:
# Bluetooth manager
sudo pacman -S blueman
# Launch
blueman-managerPair device:
# Start bluetoothctl
bluetoothctl
# Power on
power on
# Scan
scan on
# Pair
pair MAC-ADDRESS
# Connect
connect MAC-ADDRESS
# Trust
trust MAC-ADDRESSBlueman:
# Open Blueman
blueman-manager
# Click search
# Select device
# PairConfigure PulseAudio:
# Install Bluetooth support
sudo pacman -S pulseaudio-bluetooth
# Restart PulseAudio
pulseaudio -k && pulseaudio --startConfigure PipeWire:
# Install PipeWire Bluetooth
sudo pacman -S pipewire-pulse
# Restart PipeWire
systemctl --user restart pipewire pipewire-pulseCheck adapter:
# Check if adapter on
bluetoothctl show
# Power on
bluetoothctl power onReset:
# Restart Bluetooth
sudo systemctl restart bluetooth
# Remove device
bluetoothctl remove MAC-ADDRESS
# Re-pairThis guide covered Bluetooth installation, pairing, audio setup, and troubleshooting.
- Arch Linux Audio Configuration - Audio setup
- Arch Linux Hardware Configuration - More hardware
- ArchWiki Bluetooth: https://wiki.archlinux.org/title/Bluetooth
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.