How to Install LightZone on Ubuntu 22.04 or 20.04
LightZone is that old‑school RAW editor you can’t find in the Ubuntu repos, but it still turns out photos like a wizard if you get it running. Below is a no‑fluff walk‑through that actually works on both 22.04 and 20.04.
Opening Paragraph
If you’ve ever tried to pop up LightZone on Ubuntu and ended up with “missing dependencies” or “no such package,” you’re not alone. In this guide you’ll learn how to get the official .deb file, satisfy its quirks, and launch it without drowning in terminal output. No need for a magic script that installs dozens of useless libraries—just the essentials.
Installing LightZone on Ubuntu
1. Grab the latest package
Head over to LightZone’s GitHub releases page or their old download archive and copy the link to the lightzone-0.xx.x-linux64.deb file (replace xx with the newest version). The .deb is a self‑contained installer that ships all the libs you need.
2. Download it
wget https://downloads.lightzone.org/releases/lightzone-0.7.3/linux64/lightzone_0.7.3_linux64.deb
wget works in scripts, doesn’t ask for confirmation, and is faster than dragging the file through a browser when you’re already inside the terminal.
3. Install missing dependencies
LightZone pulls in some older libraries that Ubuntu’s default package set has trimmed away (e.g., libqt5core5a < 5.15). Run:
sudo apt update && sudo apt install -f
The -f flag tells APT to fix broken installs and pull in any missing dependencies that the .deb requires.
4. Install the deb
sudo dpkg -i lightzone_0.7.3_linux64.deb
If you hit errors about unmet dependencies, run step 3 again until dpkg finishes cleanly.
5. Launch LightZone
You can start it from the terminal to see any lingering issues:
lightzone
Or find “LightZone” in your application launcher. It should open with a familiar dark‑mode UI that feels oddly nostalgic.
Common Pitfalls and Fixes
- Missing libgconf-2.so
Some users report this after upgrading to 22.04. Install the compatibility package:
sudo apt install libgconf-2-4
- “Could not load plugin” errors
LightZone uses Qt plugins that sometimes get misplaced when you upgrade GNOME. Re‑installing the qt5-default metapackage usually fixes it:
sudo apt install qt5-default
Why Use LightZone on Ubuntu?
I’ve seen folks complain that the default “Darktable” or “RawTherapee” feel too heavy for quick edits. LightZone, while older, gives a surprisingly fast workflow and a set of filters that still look good in 2024. If you’re not chasing the newest features, it’s a lean choice.
Feel free to drop a comment if you hit any snags—maybe I can point out an extra tweak or two.