Ubuntu Tutorial

How To Install viking on Ubuntu

Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes  • 546 words

Introduction

In this tutorial we learn how to install viking on Ubuntu.

What is viking

viking is:

Viking aims to be easy to use, yet powerful in accomplishing a wide variety of GPS related tasks. It uses a hierarchical layering system to organize GPS data, maps, and other layer types with spatial data, such as coordinate lines.

Some of the things you can use Viking for are:

There are three methods to install viking on Ubuntu. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install viking Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install viking using apt-get by running the following command:

sudo apt-get -y install viking

Install viking Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install viking using apt by running the following command:

sudo apt -y install viking

Install viking Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install viking using aptitude by running the following command:

sudo aptitude -y install viking

How To Uninstall viking on Ubuntu

To uninstall only the viking package we can use the following command:

sudo apt-get remove viking

Uninstall viking And Its Dependencies

To uninstall viking and its dependencies that are no longer needed by Ubuntu, we can use the command below:

sudo apt-get -y autoremove viking

Remove viking Configurations and Data

To remove viking configuration and data from Ubuntu we can use the following command:

sudo apt-get -y purge viking

Remove viking configuration, data, and all of its dependencies

We can use the following command to remove viking configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge viking

Dependencies

viking have the following dependencies:

References

Summary

In this tutorial we learn how to install viking package on Ubuntu using different package management tools: apt, apt-get and aptitude.

Follow us

We provides various tutorials about Ubuntu