How To Install liblircclient0 on Ubuntu 20.04
Introduction
In this tutorial we learn how to install liblircclient0 on Ubuntu 20.04.
What is liblircclient0
liblircclient0 is:
Virtual, empty package used in the process of renaming liblircclient0 to liblirc-client0.
Package: liblircclient0 Architecture: amd64 Version: 0.10.1-6.1 Priority: extra Section: universe/libs Source: lirc Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Lirc Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 41 Depends: liblirc-client0 Filename: pool/universe/l/lirc/liblircclient0_0.10.1-6.1_amd64.deb Size: 4212 MD5sum: 7e67af3af9c6ca46239f7af085b53e4f SHA1: 80d97a9f1c8311bc5cb50d7b1267ef147e830cc9 SHA256: 11033c3dd0bf9045a47eb730a65a015d505110e7ef672d1b36030f4fdf54de06 Homepage: https://sf.net/p/lirc Description-en: Transitional placeholder for obsoleted liblircclient0 Virtual, empty package used in the process of renaming liblircclient0 to liblirc-client0.
There are three methods to install liblircclient0 on Ubuntu 20.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 liblircclient0 Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install liblircclient0 using apt-get by running the following command:
sudo apt-get -y install liblircclient0
Install liblircclient0 Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install liblircclient0 using apt by running the following command:
sudo apt -y install liblircclient0
Install liblircclient0 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 liblircclient0 using aptitude by running the following command:
sudo aptitude -y install liblircclient0
How To Uninstall liblircclient0 on Ubuntu 20.04
To uninstall only the liblircclient0 package we can use the following command:
sudo apt-get remove liblircclient0
Uninstall liblircclient0 And Its Dependencies
To uninstall liblircclient0 and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove liblircclient0
Remove liblircclient0 Configurations and Data
To remove liblircclient0 configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge liblircclient0
Remove liblircclient0 configuration, data, and all of its dependencies
We can use the following command to remove liblircclient0 configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge liblircclient0
References
Summary
In this tutorial we learn how to install liblircclient0 package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.