How To Install libvideo-frequencies-perl on Ubuntu 18.04
Introduction
In this tutorial we learn how to install libvideo-frequencies-perl on Ubuntu 18.04.
What is libvideo-frequencies-perl
libvideo-frequencies-perl is:
This module exports (yes, exports!) frequency constants as well as hashes with channel => frequency relations for digital and analog video and audio broadcast. Another, shorter way to put it is “worldwide channel/frequency list”. All frequencies are given in kHz.
It’s a good idea to use perldoc -m Video::Frequencies to get an idea on how the various constants and lists look like.
There are three methods to install libvideo-frequencies-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libvideo-frequencies-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libvideo-frequencies-perl using apt-get by running the following command:
sudo apt-get -y install libvideo-frequencies-perl
Install libvideo-frequencies-perl Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libvideo-frequencies-perl using apt by running the following command:
sudo apt -y install libvideo-frequencies-perl
Install libvideo-frequencies-perl 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 libvideo-frequencies-perl using aptitude by running the following command:
sudo aptitude -y install libvideo-frequencies-perl
How To Uninstall libvideo-frequencies-perl on Ubuntu 18.04
To uninstall only the libvideo-frequencies-perl package we can use the following command:
sudo apt-get remove libvideo-frequencies-perl
Uninstall libvideo-frequencies-perl And Its Dependencies
To uninstall libvideo-frequencies-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove libvideo-frequencies-perl
Remove libvideo-frequencies-perl Configurations and Data
To remove libvideo-frequencies-perl configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge libvideo-frequencies-perl
Remove libvideo-frequencies-perl configuration, data, and all of its dependencies
We can use the following command to remove libvideo-frequencies-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libvideo-frequencies-perl
References
Summary
In this tutorial we learn how to install libvideo-frequencies-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.