Last active
January 20, 2021 09:03
-
-
Save csegura2011/f03c5eb78960201a41f272ce2554438b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installing optional utilities | |
yum -y install vim # advanced text editor | |
yum -y install sed # stream editor | |
yum -y install awk # line editor | |
yum -y install wget # downloads using http protocol | |
# Install Compiling tools | |
yum install -y gcc # GNU C compiler | |
yum install -y gcc-c++ # GNU C++ compiler | |
yum install -y kernel-devel # Linux Kernel source code | |
yum install -y automake # Compilation tool that can generate a Makefile file automatically | |
# Install development libraries | |
yum install -y ncurses-devel # ncurses text interface | |
yum install -y newt-devel # color text mode, widget based user interfaces | |
yum install -y libuuid-devel # unique id generator | |
yum install -y jansson-devel # json strings handling | |
yum install -y libxml2-devel # xml string handling | |
yum install -y sqlite-devel # sqlite database | |
yum install -y install libtool-ltdl libtool-ltdl-devel # Generic library support script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment