How To Install texlive-ifplatform on Rocky Linux 8
Introduction
In this tutorial we learn how to install texlive-ifplatform
on Rocky Linux 8.
What is texlive-ifplatform
This package uses the (La)TeX extension -shell-escape to establish whether the document is being processed on a Windows or on a Unix-like system (Mac OS X, Linux, etc.), or on Cygwin (Unix environment over a windows system). Booleans provided are also preserves the output of uname on a Unix-like system, which may be used to distinguish between various classes of Unix systems.
We can use yum
or dnf
to install texlive-ifplatform
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-ifplatform.
Install texlive-ifplatform on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install texlive-ifplatform
using dnf
by running the following command:
sudo dnf -y install texlive-ifplatform
Install texlive-ifplatform on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install texlive-ifplatform
using yum
by running the following command:
sudo yum -y install texlive-ifplatform
How To Uninstall texlive-ifplatform on Rocky Linux 8
To uninstall only the texlive-ifplatform
package we can use the following command:
sudo dnf remove texlive-ifplatform
texlive-ifplatform Package Contents on Rocky Linux 8
/usr/share/licenses/texlive-ifplatform
/usr/share/licenses/texlive-ifplatform/lppl1.txt
/usr/share/texlive/texmf-dist/doc/latex/ifplatform
/usr/share/texlive/texmf-dist/doc/latex/ifplatform/README
/usr/share/texlive/texmf-dist/doc/latex/ifplatform/ifplatform.pdf
/usr/share/texlive/texmf-dist/tex/latex/ifplatform
/usr/share/texlive/texmf-dist/tex/latex/ifplatform/ifplatform.sty
References
Summary
In this tutorial we learn how to install texlive-ifplatform
on Rocky Linux 8 using yum and dnf.