In this tutorial, I used “Centos install development tools”. The Ubuntu distribution install method equivalent to “apt-get build-essential, while the Centos called groupinstall with yum command. How do I install all developer tools such as GNU GCC C/C++ compilers and others? You need to “install Development Tools“. Linux the essential for DevOps Roles.
Install development tools on Centos
For Centos, RHEL, and Fedora
Installing groupinstall use yum command on Centos, RHEL, and Fedora.
[huupv@huupv devopsroles]$ sudo yum groupinstall "Development Tools"
The related with the subcommand Group list
List of groups uses “grouplist” command on Centos, RHEL, and Fedora.
[huupv@huupv devopsroles]$ sudo yum grouplist
To install a unit of a group name.
[huupv@huupv devopsroles]$ sudo yum groupinstall "Group name"
To remove a unit of a group using “groupremove” command on Centos, RHEL, and Fedora.
[huupv@huupv devopsroles]$ sudo yum groupremove "Group name"
Updating a unit of a group by “groupupdate” command on Centos, RHEL and Fedora.
[huupv@huupv devopsroles]$ sudo yum groupupdate "Group name"
Conclusion
Thought the article, You can use “Centos install development tools” as above. I hope will this your helpful.