Thursday, December 1, 2011

Asterisk updating from 1.6.1.8 to 1.6.2.19

wget http://pkgs.fedoraproject.org/repo/pkgs/asterisk/asterisk-1.6.2.19.tar.gz/5dfb9352bacfa7f4dc2ef72cb83715c2/asterisk-1.6.2.19.tar.gz
tar -zxvf asterisk-1.6.2.19.tar.gz
cd asterisk-1.6.2.19
./configure
make
make install (Do not delete G729 module)
asterisk -vvvgc
asterisk -vr


http://www.blog.manhag.org/2010/05/installing-the-free-g729-codec-for-asterisk/

Download from here: (Depend on 32bit or 64bit)["i686" means 32-bit. If it was 64-bit, it would be "x86_64"] Check by "uname -a" command
wget http://asterisk.hosting.lv/bin/codec_g729-ast14-gcc4-glibc-pentium.so
(codec_g729-ast16-gcc4-glibc-pentium4.so)



Notice that we are in the modules directory

Rename the codec file
mv codec_g729-ast14-gcc4-glibc-pentium4.so codec_g729.so
Restart Asterisk
/etc/init.d/asterisk restart
Check your work
Connect to Asterisk

asterisk -r
Then show all of the codec translations available using the command below, and check g729 at the left, you should see that it can be translated to many other codecs on the top of the table

Machine*CLI> show translations

**********

After that install mysql module in a proper directory

wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-addons-1.6.2.3.tar.gz
tar -zxvf asterisk-addons-1.6.2.3.tar.gz
cd asterisk-addons-1.6.2.3
./configure
make clean
make
make install

0 comments:

Post a Comment