Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions docs/applications/voip/install-asterisk-on-centos-7/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: 'Installing Asterisk on CentOS 7'
keywords: ["asterisk 13", "centos 7", "centos", "open source", "private branch exchange", "pbx", "asterisk pbx", "sip", "session initiation protocol", "sip protocol", "IP PBX systems", "VoIP gateways"]
license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)'
published: 2015-09-30
modified: 2018-10-30
modified: 2019-01-31
modified_by:
name: Linode
title: 'How to Install Asterisk on CentOS 7'
Expand Down Expand Up @@ -188,7 +188,7 @@ PJPROJECT is Asterisk's SIP channel driver. It should improve call clarity and p
libpj.so (libc6,x86-64) => /lib64/libpj.so
{{< /output >}}


<!--
## Install DAHDI (Optional)

DAHDI, or *Digium/Asterisk Hardware Device Interface*, is the kernel module that controls telephone interface cards. This type of card is usually used when adding Asterisk to an existing call center that uses older technology.
Expand All @@ -201,7 +201,7 @@ Since it's not possible to add physical cards to a virtual machine you probably

cd ~/build-asterisk

1. Download the latest version of DAHDI (version 2.11.1 at the time of this writing):
1. Download the latest version of DAHDI (version 3.0.0 at the time of this writing):

wget http://downloads.asterisk.org/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz

Expand All @@ -211,7 +211,9 @@ Since it's not possible to add physical cards to a virtual machine you probably

1. Change to the new directory:

cd dahdi-linux-complete-2.11.1+2.11.1/
cd dahdi-linux-complete-3.0.0+3.0.0/

If the directory cannot be found, run the `ls` command and take note of the folder name and `cd` into that directory instead.

1. Build DAHDI:

Expand All @@ -221,7 +223,7 @@ Since it's not possible to add physical cards to a virtual machine you probably

sudo make install
sudo make config

-->

## Install Asterisk

Expand All @@ -237,9 +239,9 @@ Since it's not possible to add physical cards to a virtual machine you probably

tar -zxvf asterisk-16-current.tar.gz

1. Switch to the new Asterisk directory, replacing `16.0.0` if needed:
1. Switch to the new Asterisk directory, replacing `16.1.1` if needed:

cd asterisk-16.0.0
cd asterisk-16.1.1


### Enable MP3 Support
Expand Down