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

Last updated: October 05,2024

1. Install "perl-Coro.x86_64" package

In this section, we are going to explain the necessary steps to install perl-Coro.x86_64 on Fedora 34

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

2. Uninstall "perl-Coro.x86_64" package

Learn how to uninstall perl-Coro.x86_64 on Fedora 34:

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

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

Last metadata expiration check: 2:31:58 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : perl-Coro
Version : 6.570
Release : 2.fc34
Architecture : x86_64
Size : 247 k
Source : perl-Coro-6.570-2.fc34.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.