The Spanish Costa Dorada stretches southwest from Barcelona to Tarragona on the east coast. With beautiful sandy beaches next to the mountains, quaint villages and coastal towns, the Costa Dorada is a popular tourist choice for holidays all year round. Families gather here not only because of the wonderful climate and magnificent sandy beaches, but also because of the many attractions. The Costa Dorada has the resorts of Salou and La Pineda, Salou forms an eight-kilometer continuous resort. This stretch of the Mediterranean has beautiful sandy beaches that are ideal for sunbathing, swimming, and a wide range of water sports. The whole family will be happy to take a trip to the Aquopolis water park in La Pineda, and the most famous Spanish theme park, Universal PortAventura. Aquopolis Water Park is on the outskirts of La Pineda and is a great place to cool off when the weather is at its peak. You will even get the chance to swim with the sea lions in the park. The Universal Port A...
Installing Viber on Linux
Get link
Facebook
X
Pinterest
Email
Other Apps
Installing Viber on Linux
Viber supports installation on Ubuntu and Fedora Linux distributions, as well as all derivative distributions.
Note!
We will consider the process of installing Viber on the Linux operating system using the example of the Linux Mint 18 distribution kit (in this case, with the Mate graphical shell).
Viber can only be installed on a 64-bit system, 32-bit systems are currently not supported. You can check which system you have installed using the uname -m command, which must be run in the Linux terminal, it should return the value x86_64 (or you can simply launch the welcome screen from the control center, where the necessary information is displayed).
Step 1
There is no Viber program in the Linux Mint repositories, so we will download the deb package from the official site and install it manually using the terminal.
To do this, launch the terminal, for example, using the icon on the panel or from the Mint->Terminal menu.
SQL course for beginners
Step 2
Then we run the command to download the installation package of the Viber program, for example, let's download the package to the "Downloads" directory of the current user using the wget utility.
Now we can proceed directly to installing the Viber program. To do this, let's use the apt-get command, since in this case all the packages that are needed for Viber to work will be installed automatically (at the prompt for entering a password, enter the user's password).
sudo apt-get -y install ~/Downloads/viber.deb
You can also install Viber using the dpkg package manager, but in this case we install all dependencies with a separate command.
Installing Viber
sudo dpkg -i ~/Downloads/viber.deb
Installing dependencies
sudo apt-get -f -y install
To remove the installation file, you can use the following command, or go to the Downloads folder using a graphical file manager and remove the package there.
sudo rm -f ~/Downloads/viber.deb
If you need to uninstall viber, then you can use the following command to do this.
sudo apt-get -y --purge remove viber
To remove all related packages that we no longer need, after we remove Viber, we need to run the following command, thus we can free up disk space.