How To Install perl-URI-Title on Fedora 36
Introduction
In this tutorial we learn how to install perl-URI-Title
on Fedora 36.
What is perl-URI-Title
I keep having to find the title of things on the web. This seems like a really simple request, just get() the object, parse for a title tag, you’re done. Ha, I wish. There are several problems with this approach What if the resource is on a very slow server? Do we wait forever or what? What if the resource is a 900 gig file? You don’t want to download that. What if the page title isn’t in a title tag, but is buried in the HTML somewhere? What if the resource is an MP3 file, or a word document or something? … So, let’s solve these issues once.
We can use yum
or dnf
to install perl-URI-Title
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install perl-URI-Title.
Install perl-URI-Title on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install perl-URI-Title
using dnf
by running the following command:
sudo dnf -y install perl-URI-Title
Install perl-URI-Title on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install perl-URI-Title
using yum
by running the following command:
sudo yum -y install perl-URI-Title
How To Uninstall perl-URI-Title on Fedora 36
To uninstall only the perl-URI-Title
package we can use the following command:
sudo dnf remove perl-URI-Title
perl-URI-Title Package Contents on Fedora 36
/usr/share/doc/perl-URI-Title
/usr/share/doc/perl-URI-Title/Changes
/usr/share/doc/perl-URI-Title/README
/usr/share/doc/perl-URI-Title/title.pl
/usr/share/licenses/perl-URI-Title
/usr/share/licenses/perl-URI-Title/LICENSE
/usr/share/man/man3/URI::Title.3pm.gz
/usr/share/man/man3/URI::Title::HTML.3pm.gz
/usr/share/man/man3/URI::Title::Image.3pm.gz
/usr/share/man/man3/URI::Title::MP3.3pm.gz
/usr/share/man/man3/URI::Title::PDF.3pm.gz
/usr/share/perl5/vendor_perl/URI
/usr/share/perl5/vendor_perl/URI/Title
/usr/share/perl5/vendor_perl/URI/Title.pm
/usr/share/perl5/vendor_perl/URI/Title/HTML.pm
/usr/share/perl5/vendor_perl/URI/Title/Image.pm
/usr/share/perl5/vendor_perl/URI/Title/MP3.pm
/usr/share/perl5/vendor_perl/URI/Title/PDF.pm
References
Summary
In this tutorial we learn how to install perl-URI-Title
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).