Guides 11792 Published by

This playbook walks you through installing Vivaldi on recent Ubuntu releases, showing how to set up the official repository so updates come straight from apt instead of juggling .deb files. You add the repo with a single command, refresh your package list, install the stable package, and optionally pull in the dev build for early features while also covering how to clean up unused packages afterwards. For those who prefer snaps, a quick one‑liner installs Vivaldi from the snap store, though it may lag behind the official release, which is fine if you value convenience over cutting‑edge tweaks. If the browser stops launching after an upgrade, simply run apt’s --fix-broken command to resolve any stale dependencies and ensure a smooth experience as you explore Vivaldi’s highly customizable interface.



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!