How to Install Unity DE on Ubuntu 22.04 or 20.04
If you’re still stuck in the bland GNOME world and want that old‑school Unity feel, this guide will get you there without a lot of fuss. You’ll learn the minimal steps, why each one matters, and how to avoid the usual pitfalls.
What Unity brings
Unity is more than just a look‑and‑feel tweak. It gives you a single‑panel launcher on the left, an integrated dash that’s quicker than searching for files in Nautilus, and better workspace management if you’re not a fan of GNOME’s activities view.
Update your system first
sudo apt update && sudo apt upgrade -y
Unity depends on some up‑to‑date libraries. Skipping this step will leave you with broken packages or, worse, an installer that complains about missing dependencies.
Add the Unity PPA (the only way to get the latest version)
sudo add-apt-repository ppa:unity-scope-team/unity-scope -y sudo apt update
The official Ubuntu repositories stopped shipping Unity after 18.04, so you have to pull it from a maintained PPA. Forgetting this will lead to “Package not found” errors that are hard to debug.
Install the core Unity packages
sudo apt install ubuntu-unity-desktop unity-scope-all apps-launcher-core -y
ubuntu-unity-desktop pulls in the meta‑package that brings together everything you see on the screen. unity-scope-all gives you quick search scopes for files, web, and more. If you only need a minimal install, drop apps-launcher-core.
Switch your session
Log out of whatever desktop you’re using. On the login screen click the gear icon (or press Ctrl+Alt+F3) and pick Unity from the list. Log back in.
If Unity doesn’t appear:
- Make sure ubuntu-unity-desktop is installed.
- Reboot; sometimes the session list refreshes only after a full restart.
Optional: Tweak with Unity Tweak Tool
sudo apt install unity-tweak-tool -y
I’ve seen people over‑install “tweaks” that just add a bunch of icons and do nothing. unity-tweak-tool is lightweight; it lets you change the launcher, dash settings, and appearance without bloating your system.
Common hiccup: Broken drivers after an update
I’ve seen this happen when a graphics driver update pulls in a newer kernel that Unity doesn’t yet support. If Unity freezes or you see “Kernel module not available,” roll back to the previous driver version:
sudo apt install --reinstall xserver-xorg-video-nouveau
Replace nouveau with your specific driver name (nvidia, radeon, etc.). After that, reboot and try logging in again.
Keep Unity happy
- Do not remove the unity-scope-all package unless you’re sure you’ll never need quick search.
- If you start noticing performance issues after a major update, check /var/log/syslog for “Unity” errors. They often point to missing libraries or broken scopes.
That’s it—Unity should now be up and running on Ubuntu 20.04 or 22.04. Enjoy the slick launcher, faster dash, and that nostalgic feel of an older desktop environment without sacrificing modern security patches.