How To Install ghc-atomic-write on Fedora 36

In this tutorial we learn how to install ghc-atomic-write in Fedora 36. ghc-atomic-write is Atomically write to a file

Introduction

In this tutorial we learn how to install ghc-atomic-write on Fedora 36.

What is ghc-atomic-write

Atomically write to a file on POSIX-compliant systems while preserving permissions. On most Unix systems, mv is an atomic operation. This makes it simple to write to a file atomically just by using the mv operation. However, this will destroy the permissions on the original file. This library does the following to preserve permissions while atomically writing to a file * If an original file exists, take those permissions and apply them to the temp file before mving the file into place. * If the original file does not exist, create a following with default permissions (based on the currently-active umask). This way, when the file is mv‘ed into place, the permissions will be the ones held by the original file. This library is based on similar implementations found in common libraries in Ruby and Python * * * To use atomic-write, import the module corresponding to the type you wish to write atomically, e.g., to write a (strict) ByteString atomically > import System.AtomicWrite.Writer.ByteString Then you can use the atomicWriteFile function that accepts a FilePath and a ByteString, e.g. > atomicWriteFile myFilePath myByteString.

We can use yum or dnf to install ghc-atomic-write on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install ghc-atomic-write.

Install ghc-atomic-write on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install ghc-atomic-write using dnf by running the following command:

sudo dnf -y install ghc-atomic-write

Install ghc-atomic-write on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install ghc-atomic-write using yum by running the following command:

sudo yum -y install ghc-atomic-write

How To Uninstall ghc-atomic-write on Fedora 36

To uninstall only the ghc-atomic-write package we can use the following command:

sudo dnf remove ghc-atomic-write

ghc-atomic-write Package Contents on Fedora 36

/usr/lib/.build-id
/usr/lib/.build-id/2a
/usr/lib/.build-id/2a/7ea08229872b8517375d5c47d488bf2eb12922
/usr/lib64/libHSatomic-write-0.2.0.7-AeN3ANOl48n5fBAuKBYdOT-ghc8.10.5.so
/usr/share/licenses/ghc-atomic-write
/usr/share/licenses/ghc-atomic-write/LICENSE

References

Summary

In this tutorial we learn how to install ghc-atomic-write on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).