How to Install and Uninstall perl-threads-shared.x86_64 Package on Rocky Linux 8

Last updated: September 19,2024

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

Please follow the guidance below to install perl-threads-shared.x86_64 on Rocky Linux 8

$ sudo dnf update $ sudo dnf install perl-threads-shared.x86_64

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

This tutorial shows how to uninstall perl-threads-shared.x86_64 on Rocky Linux 8:

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

3. Information about the perl-threads-shared.x86_64 package on Rocky Linux 8

Last metadata expiration check: 1:16:38 ago on Mon Sep 12 10:27:18 2022.
Installed Packages
Name : perl-threads-shared
Version : 1.58
Release : 2.el8
Architecture : x86_64
Size : 76 k
Source : perl-threads-shared-1.58-2.el8.src.rpm
Repository : @System
From repo : baseos
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.