As you may know, Vivaldi is a free, cross-platform Chromium-based internet browser. Among others, it offers good navigating speed and permits a lot of customizations. It has tab stacking capabilities, offers enhanced privacy and protection and has different built-in tools, like note taking app, RSS reader and email client.
Also, it receives a lot of updates based on community feedback.
The latest version is Vivaldi 7.0, which bring new features and various fixes. For more, read this blog post.



How to install Vivaldi 7.0 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.
Exploring Various Web Browsers Available For Ubuntu And Derivative Systems
There is a wide range of web browsers available, each offering unique features and user experiences. Here’s an overview of some notable alternatives:
- Mozilla Firefox: An open-source browser known for its commitment to user privacy and extensibility through a wide range of add-ons. Firefox receives regular updates and is praised for its robust performance.
- Waterfox: A variant of Firefox, Waterfox focuses on providing a fast browsing experience while maintaining support for legacy Firefox extensions. It is a popular choice for users looking for a balance between performance and compatibility.
- Midori: A lightweight browser known for its speed and simple interface. Midori is ideal for systems with limited resources and for users who prefer a minimalist browsing experience.
- Vivaldi: Offers a high level of customization, allowing users to modify almost every aspect of the interface and functionality. Vivaldi includes built-in features such as an email client, a notes manager, and support for custom keyboard shortcuts.
- Microsoft Edge: Developed by Microsoft, Edge has evolved significantly, offering seamless integration with Microsoft services and features such as Collections, Immersive Reader, and improved performance.
- Brave Browser: Stands out for its focus on privacy, automatically blocking ads and trackers. Brave also offers a cryptocurrency-based rewards system for users who choose to view ads.
- Opera: A feature-rich browser known for its built-in ad blocker, free VPN, and sidebar integrations for messaging apps. Opera also includes a unique battery saver mode and a customizable start page for enhanced user experience.
- Chromium: The open-source project behind Google Chrome, Chromium provides a fast and secure browsing experience without proprietary Google components. Many browsers, including Microsoft Edge, Brave, and Vivaldi, are based on Chromium.
Pingback: How To Install Midori Browser 11.5 On Ubuntu, Linux Mint, Debian And Derivative Systems
Pingback: How To Install Opera 115 on Ubuntu 25.04, Ubuntu 24.10, Ubuntu 24.04, Ubuntu 22.04 And Derivative Systems via Snap
Pingback: How To Install Waterfox 6.5.2 On Ubuntu, Linux Mint And Derivative Systems via Flatpak