> Vivaldi is not complete open source software. It’s UI is closed source. It’s been covered here because Vivaldi team took effort in making its software available on Linux.
The good thing is that Vivaldi provides pre-built binaries in DEB form for Ubuntu/Debian based distros and in RPM form for Fedora, Red Hat and SUSE.
It is available for both 32 bit and 64-bit platforms, as well as [ARM devices like Raspberry Pi][4].
![Vivaldi provides installer for several types of Linux distributions][5]
The installation process is really simple. You go to the Vivaldi web page and download the appropriate installer file and then double click on it to install it. That’s it.
I’ll show the steps in detail for Ubuntu/Debian. You can use similar steps for other distributions.
#### Step 1: Download Vivaldi
Go to the Vivaldi’s download page and download the DEB file for Ubuntu.
[Download Vivaldi][6]
![Download DEB file for Ubuntu/Debian][7]
#### Step 2: Install the downloaded DEB file
Go to the Downloads folder where you have the deb file downloaded. [Installing deb file][8] is easy. Either just double-click on it or right click to open it with software center.
![Right click on the downloaded deb file and open it with Software Install][9]
It will open the software center application and here, you can see the option to install Vivaldi. Just hit the Install button.
![Hit the Install button][10]
You’ll be asked to enter your system’s account password. Enter that and you should have it installed in a few seconds. You’ll see that Install option changes to remove. This is an indication that Vivaldi is now installed.
#### Step 3: Using Vivaldi
Open the system menu by pressing the super (Windows) key and searching for Vivaldi. Click on the Vivaldi icon.
![Search for Vivaldi in the system menu][11]
You’ll see a screen like this on the first run.
![Vivaldi running in Ubuntu][12]
Now that you know the this method, let me quickly show how to install Vivaldi on Ubuntu and Debian from the terminal.
### Method 2: Installing Vivaldi on Ubuntu and Debian from the command line
Open a terminal and make sure that you have wget installed for [downloading files in the command line.][13]
```
sudo apt install wget
```
Next, get the public key of the Vivaldi repository and add it to your system so that your system trusts the packages coming from it. If interested, read [this article about adding external repository in Ubuntu][14].
And that’s it. Search for it in the menu and start it from there.
### Updating Vivaldi on Ubuntu
Both GUI and command line methods add the Vivaldi repository to your system. This means that whenever there is a new Vivaldi release, you get it along with the system updates.
![Vivaldi repo is added to the system][15]
Basically, you update the Ubuntu system and it updates the Vivaldi browser if there is a new version available.
![Vivaldi browser is updated with the system updates][16]
### Removing Vivaldi from Ubuntu
If you do not like Vivaldi or no longer want to use it, you can surely remove it. Now, to [uninstall applications from Ubuntu][17], you may use Software Center but it won’t find the external, third-party installed software.
You’ll have to use the terminal now even though you used GUI method to install it. That’s really easy. Open a terminal and use the command below:
```
sudo apt remove vivaldi-stable
```
Sudo gives you [root access in Ubuntu][18]. You’ll have to enter your account’s password. While entering the password, nothing is seen on the screen. That’s normal. Enter the password blindly and it will be removed.
I hope you find this tutorial helpful in installing and using Vivaldi on Linux.