How To Install hunspell-it on Rocky Linux 8
In this tutorial we learn how to install hunspell-it on Rocky Linux 8. hunspell-it is Italian hunspell dictionaries
Introduction
In this tutorial we learn how to install hunspell-it
on Rocky Linux 8.
What is hunspell-it
Italian hunspell dictionaries.
We can use yum
or dnf
to install hunspell-it
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install hunspell-it.
Install hunspell-it on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install hunspell-it
using dnf
by running the following command:
sudo dnf -y install hunspell-it
Install hunspell-it on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install hunspell-it
using yum
by running the following command:
sudo yum -y install hunspell-it
How To Uninstall hunspell-it on Rocky Linux 8
To uninstall only the hunspell-it
package we can use the following command:
sudo dnf remove hunspell-it
hunspell-it Package Contents on Rocky Linux 8
/usr/share/doc/hunspell-it
/usr/share/doc/hunspell-it/it_IT_AUTHORS
/usr/share/doc/hunspell-it/it_IT_COPYING
/usr/share/doc/hunspell-it/it_IT_README.txt
/usr/share/doc/hunspell-it/it_IT_license.txt
/usr/share/doc/hunspell-it/it_IT_notes.txt
/usr/share/myspell/it_CH.aff
/usr/share/myspell/it_CH.dic
/usr/share/myspell/it_IT.aff
/usr/share/myspell/it_IT.dic
References
Summary
In this tutorial we learn how to install hunspell-it
on Rocky Linux 8 using yum and dnf.