How to Install Asterisk 11 on CentOS 6
For this install I am using Asterisk 11.0.0 and will be compiling from source on CentOS 6.5. This tutorial should also work on Fedora and RHEL (Red Hat Enterprise Linux) systems with little or no modification. First, you will want to be sure that your server OS is up to date. yum update -y Disable SELinux by changing “enforcing” to “disabled” in /etc/selinux/config. Use a text editor or copy and paste this command. sed -i s/SELINUX=enforcing/SELINUX=disabled/g /etc/selinux/config After you update and disable SELinux, you’ll need to reboot. reboot Next, you will want to resolve basic dependencies. ( More information on Asterisk dependencies .) yum install -y make wget openssl-devel ncurses-devel newt-devel libxml2-devel kernel-devel gcc gcc-c++ sqlite-devel Change into the /usr/src/ directory to store your source code. cd /usr/src/ Download the source tarballs. These commands will get the current release of DAHDI 2.6, libpri 1.4 and Asterisk 11. wget http://downloa