How To Install folly-docs on Fedora 36

In this tutorial we learn how to install folly-docs in Fedora 36. folly-docs is Documentation for folly

Introduction

In this tutorial we learn how to install folly-docs on Fedora 36.

What is folly-docs

Folly (acronymed loosely after Facebook Open Source Library) is a library of C++14 components designed with practicality and efficiency in mind. Folly contains a variety of core library components used extensively at Facebook. In particular, it’s often a dependency of Facebook’s other open source C++ efforts and place where those projects can share code. It complements (as opposed to competing against) offerings such as Boost and of course std. In fact, we embark on defining our own component only when something we need is either not available, or does not meet the needed performance profile. We endeavor to remove things from folly if or when std or Boost obsoletes them. Performance concerns permeate much of Folly, sometimes leading to designs that are more idiosyncratic than they would otherwise be (see e.g. PackedSyncPtr.h, SmallLocks.h). Good performance at large scale is a unifying theme in all of Folly. The folly-docs package contains documentation for folly.

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

Install folly-docs 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 folly-docs using dnf by running the following command:

sudo dnf -y install folly-docs

Install folly-docs 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 folly-docs using yum by running the following command:

sudo yum -y install folly-docs

How To Uninstall folly-docs on Fedora 36

To uninstall only the folly-docs package we can use the following command:

sudo dnf remove folly-docs

folly-docs Package Contents on Fedora 36

/usr/share/doc/folly-docs
/usr/share/doc/folly-docs/AtomicHashMap.html
/usr/share/doc/folly-docs/Benchmark.html
/usr/share/doc/folly-docs/Conv.html
/usr/share/doc/folly-docs/Dynamic.html
/usr/share/doc/folly-docs/DynamicConverter.html
/usr/share/doc/folly-docs/Executors.html
/usr/share/doc/folly-docs/FBString.html
/usr/share/doc/folly-docs/FBVector.html
/usr/share/doc/folly-docs/Format.html
/usr/share/doc/folly-docs/Function.html
/usr/share/doc/folly-docs/Futures.html
/usr/share/doc/folly-docs/GroupVarint.html
/usr/share/doc/folly-docs/Histogram.html
/usr/share/doc/folly-docs/Overview.html
/usr/share/doc/folly-docs/PackedSyncPtr.html
/usr/share/doc/folly-docs/Poly.html
/usr/share/doc/folly-docs/ProducerConsumerQueue.html
/usr/share/doc/folly-docs/SmallLocks.html
/usr/share/doc/folly-docs/Synchronized.html
/usr/share/doc/folly-docs/ThreadCachedInt.html
/usr/share/doc/folly-docs/ThreadLocal.html
/usr/share/doc/folly-docs/Traits.html
/usr/share/doc/folly-docs/index.html
/usr/share/doc/folly-docs/small_vector.html

References

Summary

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