BreadCrumbs: Asterisk Install
Asterisk Install
From Luke Jackson
(Difference between revisions)
Revision as of 00:04, 2 May 2007 (edit) Ljackson (Talk | contribs) (→Install) ← Previous diff |
Revision as of 00:07, 2 May 2007 (edit) Ljackson (Talk | contribs) (→Install) Next diff → |
||
Line 5: | Line 5: | ||
A friend called and asked me for some help installing Asterisk 1.4 on his system so lets begin. | A friend called and asked me for some help installing Asterisk 1.4 on his system so lets begin. | ||
- | === Install === | + | === Download the tars from digium === |
- | + | ||
- | * Download the tars from digium | + | |
Make yourself a nice little place to place in /usr/src/ | Make yourself a nice little place to place in /usr/src/ | ||
Line 19: | Line 17: | ||
wget http://ftp1.digium.com/pub/libpri/libpri-1.4.0.tar.gz | wget http://ftp1.digium.com/pub/libpri/libpri-1.4.0.tar.gz | ||
- | * Extract the tars | + | === Extract the tars === |
tar zxvf asterisk-1.4.4.tar.gz | tar zxvf asterisk-1.4.4.tar.gz | ||
Line 26: | Line 24: | ||
tar zxvf zaptel-1.4.2.1.tar.gz | tar zxvf zaptel-1.4.2.1.tar.gz | ||
- | * Build Libpri | + | === Compile zaptel (and libpri) === |
+ | |||
+ | cd /usr/src/zaptel | ||
+ | cp ztdummy.c ztdummy.c.orig | ||
+ | sed -i "s/if 0/if 1/" ztdummy.c | ||
+ | make |
Revision as of 00:07, 2 May 2007
Contents |
Fedora Core
Summary
A friend called and asked me for some help installing Asterisk 1.4 on his system so lets begin.
Download the tars from digium
Make yourself a nice little place to place in /usr/src/
mkdir /usr/src/asterisk cd /usr/src/asterisk
wget http://ftp1.digium.com/pub/asterisk/asterisk-1.4.4.tar.gz wget http://ftp1.digium.com/pub/asterisk/asterisk-addons-1.4.1.tar.gz wget http://ftp1.digium.com/pub/zaptel/zaptel-1.4.2.1.tar.gz wget http://ftp1.digium.com/pub/libpri/libpri-1.4.0.tar.gz
Extract the tars
tar zxvf asterisk-1.4.4.tar.gz tar zxvf asterisk-addons-1.4.1.tar.gz tar zxvf libpri-1.4.0.tar.gz tar zxvf zaptel-1.4.2.1.tar.gz
Compile zaptel (and libpri)
cd /usr/src/zaptel cp ztdummy.c ztdummy.c.orig sed -i "s/if 0/if 1/" ztdummy.c make