How To Install libhttp-cache-transparent-perl on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 417 words
Introduction
In this tutorial we learn how to install libhttp-cache-transparent-perl
on Ubuntu.
What is libhttp-cache-transparent-perl
libhttp-cache-transparent-perl is:
HTTP::Cache::Transparent is an implementation of HTTP GET that keeps a local cache of fetched pages to avoid fetching the same data from the server if it hasn’t been updated. The cache is stored on disk and is thus persistent between invocations.
The HTTP headers If-Modified-Since and ETag are used to let the server decide if the version in the cache is up-to-date or not. All HTTP requests are made through the LWP module. Data is stored on disk by the Storable module. Digest::MD5 is used for creating a hash of the URL.
There are three methods to install libhttp-cache-transparent-perl
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 libhttp-cache-transparent-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 libhttp-cache-transparent-perl
using apt-get
by running the following command:
sudo apt-get -y install libhttp-cache-transparent-perl
Install libhttp-cache-transparent-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libhttp-cache-transparent-perl
using apt
by running the following command:
sudo apt -y install libhttp-cache-transparent-perl
Install libhttp-cache-transparent-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 libhttp-cache-transparent-perl
using aptitude
by running the following command:
sudo aptitude -y install libhttp-cache-transparent-perl
How To Uninstall libhttp-cache-transparent-perl on Ubuntu
To uninstall only the libhttp-cache-transparent-perl
package we can use the following command:
sudo apt-get remove libhttp-cache-transparent-perl
Uninstall libhttp-cache-transparent-perl And Its Dependencies
To uninstall libhttp-cache-transparent-perl
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove libhttp-cache-transparent-perl
Remove libhttp-cache-transparent-perl Configurations and Data
To remove libhttp-cache-transparent-perl
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge libhttp-cache-transparent-perl
Remove libhttp-cache-transparent-perl configuration, data, and all of its dependencies
We can use the following command to remove libhttp-cache-transparent-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libhttp-cache-transparent-perl
Dependencies
libhttp-cache-transparent-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libhttp-cache-transparent-perl
package on Ubuntu using different package management tools: apt, apt-get and aptitude.