How To Install rhino on Fedora 36
Introduction
In this tutorial we learn how to install rhino
on Fedora 36.
What is rhino
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users. Full jar including tools, excluding the JSR-223 Script Engine wrapper.
We can use yum
or dnf
to install rhino
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install rhino.
Install rhino 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 rhino
using dnf
by running the following command:
sudo dnf -y install rhino
Install rhino 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 rhino
using yum
by running the following command:
sudo yum -y install rhino
How To Uninstall rhino on Fedora 36
To uninstall only the rhino
package we can use the following command:
sudo dnf remove rhino
rhino Package Contents on Fedora 36
/usr/bin/rhino
/usr/bin/rhino-debugger
/usr/bin/rhino-jsc
/usr/share/doc/rhino
/usr/share/doc/rhino/CODE_OF_CONDUCT.md
/usr/share/doc/rhino/README.md
/usr/share/doc/rhino/RELEASE-NOTES.md
/usr/share/java/rhino
/usr/share/java/rhino.jar
/usr/share/java/rhino/rhino.jar
/usr/share/licenses/rhino
/usr/share/licenses/rhino/LICENSE.txt
/usr/share/licenses/rhino/NOTICE-tools.txt
/usr/share/licenses/rhino/NOTICE.txt
/usr/share/man/man1/rhino.1.gz
/usr/share/maven-metadata/rhino-rhino.xml
/usr/share/maven-poms/rhino
/usr/share/maven-poms/rhino.pom
/usr/share/maven-poms/rhino/rhino.pom
References
Summary
In this tutorial we learn how to install rhino
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).