How to Install Vivaldi Browser on Ubuntu 22.10 / 22.04 / 20.04 – A No‑Nonsense Playbook
If you’re tired of Firefox’s “do‑it‑yourself‑but‑still‑bloat‑y” approach and want a browser that feels like it was built for the desktop, this is how you get Vivaldi on any recent Ubuntu release.
Get the official repo in place
sudo add-apt-repository 'deb https://repo.vivaldi.com/stable/deb/ stable main' sudo wget -qO- https://repo.vivaldi.com/stable/repo/vivaldi-snapshot.gpg.key | sudo apt-key add -
Why bother with the repo?
Because Vivaldi ships updates directly through apt, so you’ll get security fixes without rummaging around for .debs each time. I once tried installing from a downloaded package on a fresh 20.04 and hit “Broken dependencies” – adding the repo solved that in seconds.
Refresh your package list
sudo apt update
Skipping this step will leave apt clueless about the new Vivaldi entry, leading to an install failure that feels like a cruel joke.
Install the browser
sudo apt install vivaldi-stable
If you’re on a system with a very old kernel and run into “cannot resolve libXss.so”, you can add the libxss1 package manually, but that’s rare on 20.04+.
(Optional) Install the Dev channel
sudo apt install vivaldi-dev
I’ve used the dev build to test new tab‑stacking features before they hit stable; it’s a great playground if you like being early adopters. Just remember: bugs are part of the fun.
Clean up old packages
sudo apt autoremove
It frees up space and keeps your system tidy—no unnecessary bloat, unlike some other browsers that insist on their own extensions.
Quick‑Fix: Snap for those who hate manual repos
If you’re a fan of the snap ecosystem:
sudo snap install vivaldi
This version is slightly older than the official release and lacks the latest performance tweaks, but it’s painless if you already use snaps. I’ve used it on 20.04 when the repo was temporarily down; works fine enough for light browsing.
Common Pitfall
“Vivaldi fails to start after upgrade.”
That usually means a broken dependency chain from an old libstdc++ version. Run:
sudo apt --fix-broken install
and you’re good to go. It’s the same fix that works for any package with stale links.
Happy surfing, and remember: if your Windows‑style toolbar feels too “plain,” Vivaldi lets you tweak every pixel—no extra software required. Enjoy the new browser, and keep those updates rolling!