How to Install and Uninstall ocaml-ancient.x86_64 Package on Fedora 34

Last updated: April 27,2024

1. Install "ocaml-ancient.x86_64" package

Learn how to install ocaml-ancient.x86_64 on Fedora 34

$ sudo dnf update $ sudo dnf install ocaml-ancient.x86_64

2. Uninstall "ocaml-ancient.x86_64" package

This tutorial shows how to uninstall ocaml-ancient.x86_64 on Fedora 34:

$ sudo dnf remove ocaml-ancient.x86_64 $ sudo dnf autoremove

3. Information about the ocaml-ancient.x86_64 package on Fedora 34

Last metadata expiration check: 3:56:48 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : ocaml-ancient
Version : 0.9.0
Release : 58.fc34
Architecture : x86_64
Size : 35 k
Source : ocaml-ancient-0.9.0-58.fc34.src.rpm
Repository : fedora
Summary : OCaml library for large memory structures and sharing
URL : http://git.annexia.org/?p=ocaml-ancient.git;a=summary
License : LGPLv2+ with exceptions
Description : Ancient is an OCaml module that allows you to use in-memory data
: structures which are larger than available memory and so are kept in
: swap. If you try this in normal OCaml code, you'll find that the
: machine quickly descends into thrashing as the garbage collector
: repeatedly iterates over swapped memory structures. This module lets
: you break that limitation. Of course the module doesn't work by magic.
: If your program tries to access these large structures, they still
: need to be swapped back in, but it is suitable for large, sparsely
: accessed structures.
:
: Secondly, this module allows you to share those structures between
: processes. In this mode, the structures are backed by a disk file, and
: any process that has read/write access to that disk file can map that
: file in and see the structures.
:
: Developers should read the README.txt file included with the
: ocaml-ancient-devel package carefully.