How to Install Strawberry on Ubuntu 22.04 LTS
If you’re looking for a lightweight yet fully‑featured music player that doesn’t eat up RAM or clutter the dock, this is how you get Strawberry up and running on Ubuntu 22.04 LTS.
Installing Strawberry via apt
1. Update your package list –
sudo apt update
Why it matters: It pulls in the latest metadata so the install command knows what to fetch. Skipping it can leave you with an older or broken package.
2. Install the package –
sudo apt install strawberry
Why this step is critical: The official Ubuntu repository ships Strawberry 1.5.x, which is stable on Jammy and pulls in all required dependencies automatically.
3. Launch it once to finish configuration –
strawberry &
On first run, Strawberry will create its config directory (~/.config/strawberry) and scan your music folder. I’ve seen this happen after a fresh install of Ubuntu: the player silently starts but never shows any library because the scan hasn’t finished. Letting it run for a few minutes solves that.
Upgrading to the newest release
Sometimes you want features like Spotify integration or better album art that only appear in newer builds. The official PPA is the easiest way:
1. Add the Strawberry PPA –
sudo add-apt-repository ppa:strawberry-team/strawberry
Why we need a PPA: Ubuntu’s main repo lags behind upstream; the PPA keeps you in sync with the latest stable release.
2. Refresh and upgrade –
sudo apt update sudo apt install --only-upgrade strawberry
The --only-upgrade flag makes sure you don’t downgrade any other packages that might have been pulled in by the PPA.
3. Restart Strawberry –
Close it completely (not just the tray icon) and launch again. Fresh installations from PPAs sometimes leave stale cache files; a clean restart clears them out.
Quick sanity check
If Strawberry crashes on launch, run:
strawberry -v
The verbose output usually points to missing libraries like libasound2. Install the missing package with:
sudo apt install libasound2
I’ve seen that happen after a kernel upgrade that pulled in newer ALSA drivers but left older user‑land packages behind.
That’s it. You now have a fully functional music player on your Ubuntu 22.04 system, whether you’re sticking with the stock release or jumping to the latest one via PPA.