How To Install tomoe-devel on CentOS 8
Introduction
In this tutorial we learn how to install tomoe-devel
on CentOS 8.
What is tomoe-devel
The tomoe-devel package includes the header files for the tomoe package. Install this package if you want to develop programs which use tomoe.
We can use yum
or dnf
to install tomoe-devel
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install tomoe-devel.
Install tomoe-devel on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install tomoe-devel
using dnf
by running the following command:
sudo dnf -y install tomoe-devel
Install tomoe-devel on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install tomoe-devel
using yum
by running the following command:
sudo yum -y install tomoe-devel
How To Uninstall tomoe-devel on CentOS 8
To uninstall only the tomoe-devel
package we can use the following command:
sudo dnf remove tomoe-devel
tomoe-devel Package Contents on CentOS 8
/usr/include/tomoe
/usr/include/tomoe/tomoe-candidate.h
/usr/include/tomoe/tomoe-char.h
/usr/include/tomoe/tomoe-config.h
/usr/include/tomoe/tomoe-context.h
/usr/include/tomoe/tomoe-dict.h
/usr/include/tomoe/tomoe-enum-types.h
/usr/include/tomoe/tomoe-module-impl.h
/usr/include/tomoe/tomoe-module.h
/usr/include/tomoe/tomoe-query.h
/usr/include/tomoe/tomoe-reading.h
/usr/include/tomoe/tomoe-recognizer.h
/usr/include/tomoe/tomoe-shelf.h
/usr/include/tomoe/tomoe-writing.h
/usr/include/tomoe/tomoe.h
/usr/lib64/libtomoe.so
/usr/lib64/pkgconfig/tomoe.pc
/usr/share/gtk-doc
/usr/share/gtk-doc/html
/usr/share/gtk-doc/html/tomoe
/usr/share/gtk-doc/html/tomoe/TomoeCandidate.html
/usr/share/gtk-doc/html/tomoe/TomoeConfig.html
/usr/share/gtk-doc/html/tomoe/TomoeContext.html
/usr/share/gtk-doc/html/tomoe/TomoeDict.html
/usr/share/gtk-doc/html/tomoe/TomoeQuery.html
/usr/share/gtk-doc/html/tomoe/TomoeReading.html
/usr/share/gtk-doc/html/tomoe/TomoeRecognizer.html
/usr/share/gtk-doc/html/tomoe/TomoeShelf.html
/usr/share/gtk-doc/html/tomoe/home.png
/usr/share/gtk-doc/html/tomoe/index.html
/usr/share/gtk-doc/html/tomoe/index_page.html
/usr/share/gtk-doc/html/tomoe/left-insensitive.png
/usr/share/gtk-doc/html/tomoe/left.png
/usr/share/gtk-doc/html/tomoe/right-insensitive.png
/usr/share/gtk-doc/html/tomoe/right.png
/usr/share/gtk-doc/html/tomoe/style.css
/usr/share/gtk-doc/html/tomoe/tomoe-tomoe-char.html
/usr/share/gtk-doc/html/tomoe/tomoe-tomoe-writing.html
/usr/share/gtk-doc/html/tomoe/tomoe-tomoe.html
/usr/share/gtk-doc/html/tomoe/tomoe.devhelp2
/usr/share/gtk-doc/html/tomoe/tomoe.html
/usr/share/gtk-doc/html/tomoe/up-insensitive.png
/usr/share/gtk-doc/html/tomoe/up.png
References
Summary
In this tutorial we learn how to install tomoe-devel
on CentOS 8 using yum and dnf.