How To Install R-procmaps on Fedora 36

In this tutorial we learn how to install R-procmaps in Fedora 36. R-procmaps is Portable Address Space Mapping

Introduction

In this tutorial we learn how to install R-procmaps on Fedora 36.

What is R-procmaps

Portable ‘/proc/self/maps’ as a data frame. Determine which library or other region is mapped to a specific address of a process. – R packages can contain native code, compiled to shared libraries at build or installation time. When loaded, each shared library occupies a portion of the address space of the main process. When only a machine instruction pointer is available (e.g. from a backtrace during error inspection or profiling), the address space map determines which library this instruction pointer corresponds to.

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

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

sudo dnf -y install R-procmaps

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

sudo yum -y install R-procmaps

How To Uninstall R-procmaps on Fedora 36

To uninstall only the R-procmaps package we can use the following command:

sudo dnf remove R-procmaps

R-procmaps Package Contents on Fedora 36

/usr/lib/.build-id
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/f6deb5f8019b223120b3d3728cf16daf1ee476
/usr/lib64/R/library/procmaps
/usr/lib64/R/library/procmaps/DESCRIPTION
/usr/lib64/R/library/procmaps/INDEX
/usr/lib64/R/library/procmaps/Meta
/usr/lib64/R/library/procmaps/Meta/Rd.rds
/usr/lib64/R/library/procmaps/Meta/features.rds
/usr/lib64/R/library/procmaps/Meta/hsearch.rds
/usr/lib64/R/library/procmaps/Meta/links.rds
/usr/lib64/R/library/procmaps/Meta/nsInfo.rds
/usr/lib64/R/library/procmaps/Meta/package.rds
/usr/lib64/R/library/procmaps/NAMESPACE
/usr/lib64/R/library/procmaps/NEWS.md
/usr/lib64/R/library/procmaps/R
/usr/lib64/R/library/procmaps/R/procmaps
/usr/lib64/R/library/procmaps/R/procmaps.rdb
/usr/lib64/R/library/procmaps/R/procmaps.rdx
/usr/lib64/R/library/procmaps/WORDLIST
/usr/lib64/R/library/procmaps/help
/usr/lib64/R/library/procmaps/help/AnIndex
/usr/lib64/R/library/procmaps/help/aliases.rds
/usr/lib64/R/library/procmaps/help/path_is_libr.html
/usr/lib64/R/library/procmaps/help/paths.rds
/usr/lib64/R/library/procmaps/help/procmap_get.html
/usr/lib64/R/library/procmaps/help/procmaps.rdb
/usr/lib64/R/library/procmaps/help/procmaps.rdx
/usr/lib64/R/library/procmaps/html
/usr/lib64/R/library/procmaps/html/00Index.html
/usr/lib64/R/library/procmaps/html/R.css
/usr/lib64/R/library/procmaps/html/path_is_libr.html
/usr/lib64/R/library/procmaps/html/procmap_get.html
/usr/lib64/R/library/procmaps/libs
/usr/lib64/R/library/procmaps/libs/procmaps.so

References

Summary

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