How To Install safetyblanket on CentOS 7
Introduction
In this tutorial we learn how to install safetyblanket
on CentOS 7.
What is safetyblanket
Safety Blanket was developed in 48 hours for the Ludum Dare 29 game jam. It’s bed time, the monsters are out to get you, and your blanket is just too small to cover your body! Cover your exposed limbs to fend off the approaching tentacles. The tentacles will only go for your feet, hands and head. If the tentacles reach you it’s game over!
We can use yum
or dnf
to install safetyblanket
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install safetyblanket.
Install safetyblanket on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install safetyblanket
using yum
by running the following command:
sudo yum -y install safetyblanket
Install safetyblanket on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install safetyblanket
using dnf
by running the following command:
sudo dnf -y install safetyblanket
How To Uninstall safetyblanket on CentOS 7
To uninstall only the safetyblanket
package we can use the following command:
sudo dnf remove safetyblanket
References
Summary
In this tutorial we learn how to install safetyblanket
on CentOS 7 using yum
and dnf
.