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

Last updated: September 20,2024

1. Install "perl-Coro.x86_64" package

Please follow the guidelines below to install perl-Coro.x86_64 on Rocky Linux 8

$ sudo dnf update $ sudo dnf install perl-Coro.x86_64

2. Uninstall "perl-Coro.x86_64" package

Please follow the guidance below to uninstall perl-Coro.x86_64 on Rocky Linux 8:

$ sudo dnf remove perl-Coro.x86_64 $ sudo dnf autoremove

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

Last metadata expiration check: 1:30:31 ago on Mon Sep 12 10:27:18 2022.
Available Packages
Name : perl-Coro
Version : 6.570
Release : 2.el8
Architecture : x86_64
Size : 257 k
Source : perl-Coro-6.570-2.el8.src.rpm
Repository : epel
Summary : The only real threads in perl
URL : https://metacpan.org/release/Coro
License : (GPL+ or Artistic) and (GPLv2 or BSD)
Description : This module collection manages continuations in general, most often in the
: form of cooperative threads (also called coros, or simply "coro" in the
: documentation). They are similar to kernel threads but don't (in general) run
: in parallel at the same time even on SMP machines. The specific flavor of
: thread offered by this module also guarantees you that it will not switch
: between threads unless necessary, at easily-identified points in your
: program, so locking and parallel access are rarely an issue, making thread
: programming much safer and easier than using other thread models.