How To Install mindless on Fedora 34
Introduction
In this tutorial we learn how to install mindless
on Fedora 34.
What is mindless
Mindless is a simple game for two players using the rules of Mastermind. You can play in human vs. human, human vs. computer or computer vs. computer mode. The goal of the game is to crack a secret code consisting of four balls which can each be one of eight colors.
We can use yum
or dnf
to install mindless
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install mindless.
Install mindless 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 mindless
using dnf
by running the following command:
sudo dnf -y install mindless
Install mindless 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 mindless
using yum
by running the following command:
sudo yum -y install mindless
How To Uninstall mindless on Fedora 34
To uninstall only the mindless
package we can use the following command:
sudo dnf remove mindless
mindless Package Contents on Fedora 34
/usr/bin/mindless
/usr/lib/.build-id
/usr/lib/.build-id/29
/usr/lib/.build-id/29/32cd9efbba1d0e218bdd01ed611eccf7fef54d
/usr/share/applications/mindless.desktop
/usr/share/doc/mindless
/usr/share/doc/mindless/COPYING
/usr/share/doc/mindless/ChangeLog
/usr/share/doc/mindless/NEWS
/usr/share/doc/mindless/README
/usr/share/doc/mindless/TODO
/usr/share/icons/hicolor/32x32/apps/mindless.png
/usr/share/icons/hicolor/48x48/apps/mindless.png
/usr/share/icons/hicolor/64x64/apps/mindless.png
/usr/share/man/man6/mindless.6.gz
/usr/share/metainfo/mindless.appdata.xml
/usr/share/mindless
/usr/share/mindless/images
/usr/share/mindless/images/background.png
/usr/share/mindless/images/black.png
/usr/share/mindless/images/code.png
/usr/share/mindless/images/codeOk.png
/usr/share/mindless/images/codeOkHigh.png
/usr/share/mindless/images/color0.png
/usr/share/mindless/images/color1.png
/usr/share/mindless/images/color10.png
/usr/share/mindless/images/color11.png
/usr/share/mindless/images/color2.png
/usr/share/mindless/images/color3.png
/usr/share/mindless/images/color4.png
/usr/share/mindless/images/color5.png
/usr/share/mindless/images/color6.png
/usr/share/mindless/images/color7.png
/usr/share/mindless/images/color8.png
/usr/share/mindless/images/color9.png
/usr/share/mindless/images/colors.png
/usr/share/mindless/images/mindless.png
/usr/share/mindless/images/ok.png
/usr/share/mindless/images/ok2.png
/usr/share/mindless/images/player1.png
/usr/share/mindless/images/player2.png
/usr/share/mindless/images/setupBG.png
/usr/share/mindless/images/start.png
/usr/share/mindless/images/startHigh.png
/usr/share/mindless/images/type.png
/usr/share/mindless/images/white.png
References
Summary
In this tutorial we learn how to install mindless
on Fedora 34 using yum and dnf.