Posted On March 31, 2019

How to Install Asterisk on Ubuntu

kimconnect 0 comments
blog.KimConnect.com >> Linux , Windows >> How to Install Asterisk on Ubuntu
su
[enter root password]
cd /temp
wget
apt-get install build-essential wget libssl-dev libncurses5-dev libnewt-dev libxml2-dev linux-headers-$(uname -r) libsqlite3-dev uuid-dev
tar zxvf asterisk-11-current.tar.gz
cd asterisk-11-13.0
./configure
make menuconfig
[enable or disable features]
make
make install
cd /etc/asterisk/
ls
[create all configuration files]
cd /temp/asterisk-11.13.0
make samples <== create sample configuration files in the /etc/asterisk directory
asterisk -cVVV <== start asterisk with verbose level 3
[ctrl z] get out of Asterisk CLI
cd /asterisk-11.13.0/contrib/init.d
cp rc.debian.asterisk /etc/init.d/asterisk <== this doesn't work in the demo

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Elevating Credential

$jumpbox="127.0.0.1" <# # Static Credentials (unsecured) $username = (Get-ADDomain).name+"\ADMINISTRATOR" $password = "PASSWORD" #> # Dynamic…

Set Up Mail Relay Server with CentOS

Notes from 2011...Method 1: Set this relay server to use another server as a relayyum…

How To Create a Virtual Machine Administrator Role in SCVMM

Update: A new write-up has been posted with screenshots here. Virtual Machine Manager (VMM) 2019…