Tech/OSS/Asterisk

From lathama
< Tech‎ | OSS
Jump to navigation Jump to search

https://asterisk.org


Minimal Setup on Debian

A quick example for a peer with Asterisk 15 which is current at this point.

apt install build-essential
cd /usr/src
wget https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-15-current.tar.gz
tar -xf asterisk-15-current.tar.gz
cd asterisk-15.*
./configure
make
make install
make basic-pbx
asterisk -rc

Basic configs are much smaller and easier to read see them in the source at http://git.asterisk.org/gitweb/?p=asterisk/asterisk.git;a=tree;f=configs/basic-pbx;h=178585ab107b389368dce0fcfd2969e513e55ebe;hb=HEAD

Clean up from source

Asterisk from the origin of the project has been great at cleaning up. If you uninstall it will really remove the installation.

make uninstall
make uninstall-all