How To Install sha on Fedora 34
Introduction
In this tutorial we learn how to install sha
on Fedora 34.
What is sha
file hashing utility that uses the SHA-1, SHA-256, SHA-384, & SHA-512 hash algorithms. It can be used for file integrity checking, remote file comparisons, etc. The portable algorithm implementations can be useful in other projects too sha 1.0.4b 18.fc34 x86_64 28 k sha-1.0.4b-18.fc34.src.rpm fedora File hashing utility http BSD file hashing utility that uses the SHA-1, SHA-256, SHA-384, & SHA-512 hash algorithms. It can be used for file integrity checking, remote file comparisons, etc. The portable algorithm implementations can be useful in other projects too
We can use yum
or dnf
to install sha
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install sha.
Install sha 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 sha
using dnf
by running the following command:
sudo dnf -y install sha
Install sha 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 sha
using yum
by running the following command:
sudo yum -y install sha
How To Uninstall sha on Fedora 34
To uninstall only the sha
package we can use the following command:
sudo dnf remove sha
sha Package Contents on Fedora 34
/usr/bin/sha
/usr/lib/.build-id
/usr/lib/.build-id/67
/usr/lib/.build-id/67/bc0344347aed8f22e7a0128ec3d05e2be838ca
/usr/lib/.build-id/ee
/usr/lib/.build-id/ee/202d0d1e8c972d239d57181f197b719ce11f3a
/usr/lib64/libsha.so.0
/usr/lib64/libsha.so.0.0.0
/usr/share/doc/sha
/usr/share/doc/sha/ChangeLog
/usr/share/doc/sha/LICENSE
/usr/share/doc/sha/README
/usr/share/doc/sha/README.SHA
/usr/share/man/man1/sha.1.gz
/usr/bin/sha
/usr/lib/.build-id
/usr/lib/.build-id/91
/usr/lib/.build-id/91/d02865a05d4d12271d763e26f0ecd09f911169
/usr/lib/.build-id/f6
/usr/lib/.build-id/f6/219cf465baa5e16d8bb24f4c540dbedbd8c876
/usr/lib/libsha.so.0
/usr/lib/libsha.so.0.0.0
/usr/share/doc/sha
/usr/share/doc/sha/ChangeLog
/usr/share/doc/sha/LICENSE
/usr/share/doc/sha/README
/usr/share/doc/sha/README.SHA
/usr/share/man/man1/sha.1.gz
References
- [sha website](http://hg.saddi.com/sha-asaddi http://hg.saddi.com/sha-asaddi)
Summary
In this tutorial we learn how to install sha
on Fedora 34 using yum and dnf.