How to Install and Uninstall perl-Coro.x86_64 Package on Fedora 36

Last updated: May 10,2024

1. Install "perl-Coro.x86_64" package

Please follow the instructions below to install perl-Coro.x86_64 on Fedora 36

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

2. Uninstall "perl-Coro.x86_64" package

Please follow the guidelines below to uninstall perl-Coro.x86_64 on Fedora 36:

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

3. Information about the perl-Coro.x86_64 package on Fedora 36

Last metadata expiration check: 2:51:20 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : perl-Coro
Version : 6.570
Release : 5.fc36
Architecture : x86_64
Size : 245 k
Source : perl-Coro-6.570-5.fc36.src.rpm
Repository : fedora
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.