Installing Asterisk 20 From source On Rocky 9

Update your system and install the required dependencies. At the same time, install a convenient text editor, for example Nano, and the wget and tar applications to download and unpack the installer. If we are used to the yum installer, here we will use the DNF package manager, which is its newer equivalent. Webrtc with … Read more

How to install Asterisk: Asterisk installation on centos

Today, In this article we will know how to Asterisk Installation on centos 8 or a RedHat-based system. Know more about asterisk installation Installation and configuration of WebRTC with asterisk on Amazon What New in Asterisk 16 Step 1: Updating system Update your system before installing Asterisk. After updating set SELinux in permissive mode by … Read more

asterisk 1.4 installation with libpri and DAHDI

asterisk

asterisk 1.4 installation with libpri and DAHDI Update the system before start installation and reboot the system. yum -y update   Install MySQL yum -y install mysql-server /etc/init.d/mysqld start chkconfig mysqld on Install Pre-Install Packages yum -y install kernel-devel make bison flex gcc-c++ gcc httpd php php-cli php-mysql php-pear php-gd curl sox ncurses-devel openssl-devel mysql-devel … Read more

dahdi You do not appear to have the sources for the kernel installed

asterisk

dahdi You do not appear to have the sources for the kernel installed It is important that the kernel version being used match exactly that of the kernel source being installed. You can use uname -a to verify the currently running kernel version: CentOS: sudo yum install kernel-devel-uname -r Ubuntu: sudo apt-get install linux-headers-`uname -r … Read more

install asterisk 14 on CentOS 7

asterisk

install asterisk 14 on CentOS 7 Step 1: Disable SELINUX Modify /etc/sysconfig/selinux file, change SELINUX to disable and restart server. # vi /etc/sysconfig/selinux Change SELINUX=disabled Step 2: Update system: #yum update Step 3: Installing Required Packages: # yum install gcc gcc-c++ php-xml php php-mysql php-pear php-mbstring mariadb-devel mariadb-server mariadb sqlite-devel lynx bison gmime-devel psmisc tftp-server httpd make ncurses-devel … Read more

Installing Asterisk 1.8.9 on Centos 6

asterisk installation

    First step is to set static IP by edit /etc/sysconfig/network-scripts/ifcfg-eth0. Then get the latest updates via: yum update Get Asterisk Source: cd /usr/src wget http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-1.8.9.0.tar.gz tarxvzf asterisk-1.8.9.0.tar.gz Install dependencies/libraries: yum install unixODBC unixODBC-devel mysql-server mysql-devel nano ncurses-devel patch gccgcc-c++ kernel-devel libtiff-devel libtermcap-devel bison flex curl-devel  libtool-ltdl-devel gmime-devel wget make svn libxml2-devel ln -s … Read more