How To Install shiny on Fedora 34
Introduction
In this tutorial we learn how to install shiny
on Fedora 34.
What is shiny
Shader and material management library for OGRE. shiny 0.3 31.git411ac43.fc34 x86_64 274 k shiny-0.3-31.git411ac43.fc34.src.rpm fedora Shader and material management library for OGRE https MIT Shader and material management library for OGRE.
We can use yum
or dnf
to install shiny
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install shiny.
Install shiny on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install shiny
using dnf
by running the following command:
sudo dnf -y install shiny
Install shiny on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install shiny
using yum
by running the following command:
sudo yum -y install shiny
How To Uninstall shiny on Fedora 34
To uninstall only the shiny
package we can use the following command:
sudo dnf remove shiny
shiny Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/42
/usr/lib/.build-id/42/cd25951e74cdcbce4927b8d1486bf383df9a9e
/usr/lib/.build-id/46
/usr/lib/.build-id/46/084559efcfedf954ff7e0b2e6b323e615c839b
/usr/lib64/OGRE/libshiny.OgrePlatform.so
/usr/lib64/libshiny.so.0.3
/usr/share/doc/shiny
/usr/share/doc/shiny/License.txt
/usr/share/doc/shiny/Readme.txt
/usr/lib/.build-id
/usr/lib/.build-id/f0
/usr/lib/.build-id/f0/9d446a86b70aa053eb831e68e3eb21921fdef3
/usr/lib/.build-id/f6
/usr/lib/.build-id/f6/9f6b78b3e5db6127f9b35f5dca7bebc376e83d
/usr/lib/OGRE/libshiny.OgrePlatform.so
/usr/lib/libshiny.so.0.3
/usr/share/doc/shiny
/usr/share/doc/shiny/License.txt
/usr/share/doc/shiny/Readme.txt
References
- [shiny website](https://github.com/scrawl/shiny/ https://github.com/scrawl/shiny/)
Summary
In this tutorial we learn how to install shiny
on Fedora 34 using yum and dnf.