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: Email Users with Expiring Passwords

# PasswordExpirationNotification.ps1 # Description: # This script performs the following tasks # a. Query Active…

How to Install ‘Compass’ Program

Copy Compass from \\FILE02\Apps\Compass to C:\Compass   Script:   Create shortcut on desktop with target of: C:\Compass\OMNIS7.EXE agy2000.lbr…

How To Quickly Search a User in Active Directory by Matching Email

This one liner would do the trick: Get-ADUser -Filter {EmailAddress -eq '[email protected]'} PS C:\Windows\system32> Get-ADUser…