Linux Spotify Guide - ryzendew/Linux-Tips-and-Tricks GitHub Wiki
Linux Spotify Guide
Complete beginner-friendly guide to Spotify on Linux, covering Arch Linux, CachyOS, and other distributions including installation, configuration, and troubleshooting.
Table of Contents
Spotify Installation
Install Spotify
Arch/CachyOS:
# Install Spotify
sudo pacman -S spotify
# Or from AUR (latest)
yay -S spotify
Debian/Ubuntu:
# Add repository
curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | sudo apt-key add -
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
sudo apt update
sudo apt install spotify-client
Fedora:
# Install from RPM Fusion
sudo dnf install spotify-client
Launch Spotify
Start Spotify:
# Launch Spotify
spotify
# Or from application menu
Spotify Configuration
Account Setup
First launch:
- Login or Sign up
- Choose plan (Free or Premium)
- Start listening
Spotify Settings
Configure Spotify:
- Settings (gear icon)
- Audio Quality: Set quality
- Playback: Configure playback
- Social: Social features
Audio Quality
Quality Settings
Configure quality:
- Settings → Audio Quality
- Very High: 320 kbps (Premium)
- High: 160 kbps
- Normal: 96 kbps
- Low: 24 kbps
Audio Backend
Use different backend:
# Launch with different backend
spotify --audio-backend=pulseaudio
Troubleshooting
Audio Not Working
Check audio:
# Restart PulseAudio
pulseaudio -k
pulseaudio --start
# Check Spotify process
ps aux | grep spotify
Crashes
Clear cache:
# Remove cache
rm -rf ~/.cache/spotify
# Restart Spotify
Summary
This guide covered Spotify installation, configuration, and troubleshooting for Arch Linux, CachyOS, and other distributions.
Next Steps
- Audio Configuration - Audio setup
- Multimedia - Media applications
- Spotify: https://www.spotify.com/
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.