As you may know, Vivaldi is a free, cross-platform web browser based on Chromium, designed for users who value flexibility, customization, and control over their browsing experience. It delivers fast navigation speeds while offering a rich set of features that set it apart from other browsers.
One of Vivaldi’s standout features is its advanced tab management, including tab stacking, which allows users to group and organize open pages efficiently. The browser also prioritizes privacy and security, providing built-in tracking protection and ad blocking without relying on third-party extensions.
Additionally, Vivaldi comes with a suite of integrated tools, reducing the need for external applications. These include a note-taking app, a fully featured email client, an RSS reader, an integrated calendar, and even a built-in translator.
What truly sets Vivaldi apart is its user-driven development approach. The browser receives frequent updates, with many new features and improvements directly inspired by community feedback, ensuring a continuously evolving browsing experience.
Whether you’re a casual user or a power user, Vivaldi provides a highly adaptable, secure, and feature-rich environment for all your browsing needs.
The latest version available
The latest version available is Vivaldi 7.2, which has been recently released.
Vivaldi 7.2 introduces a host of enhancements designed to improve speed, usability, and customization. Here’s a detailed overview of the key changes:
Enhanced Address Bar Performance
The address bar has been optimized for faster and more accurate search suggestions, ensuring quicker access to desired content.
Accelerated Page Loading
Optimizations in connection handling have reduced latency on domain lookups, resulting in page load speeds up to twice as fast as previous versions.
Customizable Keyboard Shortcut Priorities
Users can now define a priority list for keyboard shortcuts, allowing for personalized control over browser functions.
Seamless Email to Calendar Integration
Emails can be directly converted into calendar events or tasks, streamlining the process of scheduling from within the browser.
New Currency Conversion Widget
A real-time currency conversion widget has been added to the dashboard, providing up-to-date exchange rates at a glance.
Quick Access to Workspaces
Workspaces are now accessible via Quick Commands, facilitating swift navigation between different browsing contexts.
Reordering of Mail Accounts
The mail client now supports reordering of email accounts, allowing users to customize the display order to their preference.
Additional Improvements
- Independent Feeds Feature: Feeds can now be enabled without activating the Mail and Calendar components, offering more flexibility in content consumption.
- Bookmarklet Installation via Drag-and-Drop: Users can install bookmarklets by dragging and dropping them onto the bookmarks bar, simplifying the process.
- Enhanced Weather Widget: The Weather widget now automatically detects and sets the default location, providing localized weather information without manual configuration.
These updates in Vivaldi 7.2 collectively enhance the browser’s performance, customization options, and user experience, reinforcing its commitment to delivering a versatile and efficient browsing environment.


How to install Vivaldi 7.2 Stable on Ubuntu, Linux Mint, Debian and other Debian-based Linux systems via the official repository:
(Optional) Step 0: Update Your System
Keeping your system updated ensures you have the latest security patches and package versions, preventing compatibility issues.
sudo apt update && sudo apt upgrade -y
This command updates your package lists and upgrades installed packages to their latest versions.
Step 1: Import the Vivaldi GPG Key
Before adding the Vivaldi repository, you need to import the official signing key. This key verifies the authenticity of the downloaded packages.
curl -fSsL https://repo.vivaldi.com/archive/linux_signing_key.pub | sudo gpg --dearmor | sudo tee /usr/share/keyrings/vivaldi.gpg > /dev/null
This command saves the key in /usr/share/keyrings/
, which is the recommended location for APT repository keys.
Step 2: Add the Vivaldi Repository
Next, add the official Vivaldi repository to your system:
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/vivaldi.gpg] https://repo.vivaldi.com/archive/deb/ stable main' | sudo tee /etc/apt/sources.list.d/vivaldi.list
This command creates the vivaldi.list
file in /etc/apt/sources.list.d/
, allowing your system to recognize and install Vivaldi packages.
Step 3: Update the Package List
After adding the new repository, update the APT index to recognize the newly available Vivaldi packages:
sudo apt update
Step 4: Install Vivaldi Stable
Now, install Vivaldi Stable with the following command:
sudo apt install vivaldi-stable -y
The -y
flag automatically confirms the installation, so the process continues without requiring manual input.
(Optional) Remove Vivaldi
If you decide to uninstall Vivaldi from your system, you can do so with:
sudo apt remove vivaldi-stable -y
To completely remove Vivaldi, including configuration files, use:
sudo apt purge vivaldi-stable -y
Additionally, to remove the repository that was added earlier, run:
sudo rm -f /etc/apt/sources.list.d/vivaldi.list
Finally, clean up any unnecessary packages with:
sudo apt autoremove -y
This ensures that any unused dependencies are removed, keeping your system clean.
How to Install Vivaldi on Ubuntu 22.04, Ubuntu 24.04, and Ubuntu 24.10 and Derivative Systems (via Snap)
What is Snap?
Snap is a package management system developed by Canonical, the creators of Ubuntu. It allows applications to be packaged with all their dependencies, simplifying installation and minimizing compatibility issues across different Linux distributions.
One of the main advantages of Snap packages is that they run in a sandboxed environment, enhancing security and stability. Additionally, Snap packages are updated automatically in the background, ensuring users always have the latest version of an application without requiring manual updates.
However, some users may find that Snap applications consume more disk space due to bundled dependencies and may have slightly slower startup times compared to traditional DEB packages.
Prepare Snap (if needed)
On Ubuntu, Snap is pre-installed by default, but if you are using a Linux distribution where Snap is not integrated, you can install it with the following commands:
sudo apt update
sudo apt install snapd
After installing Snap, enable and start the Snap service:
sudo systemctl enable --now snapd
Install Vivaldi via Snap
To install Vivaldi using Snap, open a terminal and run:
sudo snap install vivaldi
Optional: Uninstall Vivaldi Using Snap
If you ever need to remove Vivaldi, you can do so with the following command:
sudo snap remove vivaldi
Conclusion
With a diverse selection of web browsers available for Ubuntu and its derivatives, users can choose the one that best suits their needs.
Mozilla Firefox and Waterfox cater to those who value open-source principles and privacy, while Midori provides a lightweight, minimalistic experience.
Vivaldi stands out with its deep customization options, whereas Microsoft Edge offers seamless integration with Microsoft services.
Brave prioritizes privacy with built-in ad blocking, and Opera enhances usability with features like a free VPN and messaging integrations.
Finally, Chromium serves as a solid foundation for many browsers, delivering speed and security. Whether you prioritize performance, privacy, or customization, there’s a browser perfectly suited for your workflow on Ubuntu.