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

Last updated: November 24,2024

1. Install "perl-Coro.x86_64" package

Please follow the guidelines below to install perl-Coro.x86_64 on Fedora 39

$ 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 39:

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

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

Last metadata expiration check: 1:00:45 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : perl-Coro
Version : 6.570
Release : 14.fc39
Architecture : x86_64
Size : 252 k
Source : perl-Coro-6.570-14.fc39.src.rpm
Repository : fedora
Summary : The only real threads in perl
URL : https://metacpan.org/release/Coro
License : (GPL-1.0-or-later OR Artistic-1.0-Perl) AND (GPL-2.0-or-later OR BSD-2-Clause)
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.