Development Tools

A basic collection of compilers and development tools required to build programs from source.

Since we did a minimal install of the operating system, we'll need to use YUM to install various compilers and development tools:

yum -y install gcc gcc-c++ bison flex make

The OpenSSL development package needs to be installed:

yum -y install openssl-devel

We'll also make a couple directories to hold any source files we will download and compile:

mkdir -p /extra/src
chmod 1755 /extra/src

Recent Updates