How to Install and Uninstall perl-threads-shared.x86_64 Package on CentOS 7 / RHEL 7

Last updated: April 24,2024

1. Install "perl-threads-shared.x86_64" package

Learn how to install perl-threads-shared.x86_64 on CentOS 7 / RHEL 7

$ sudo yum makecache $ sudo yum install perl-threads-shared.x86_64

2. Uninstall "perl-threads-shared.x86_64" package

Please follow the instructions below to uninstall perl-threads-shared.x86_64 on CentOS 7 / RHEL 7:

$ sudo yum remove perl-threads-shared.x86_64 $ sudo yum autoremove

3. Information about the perl-threads-shared.x86_64 package on CentOS 7 / RHEL 7

Installed Packages
Name : perl-threads-shared
Arch : x86_64
Version : 1.43
Release : 6.el7
Size : 72 k
Repo : installed
From repo : anaconda
Summary : Perl extension for sharing data structures between threads
URL : http://search.cpan.org/dist/threads-shared/
License : GPL+ or Artistic
Description : By default, variables are private to each thread, and each newly
: created thread gets a private copy of each existing variable. This
: module allows you to share variables across different threads (and
: pseudo-forks on Win32). It is used together with the threads
: module.