Difference between revisions of "Compile Asterisk di Ubuntu"

From OnnoWiki
Jump to navigation Jump to search
Line 32: Line 32:
  
  
Buka file [[source code]]
+
==Buka file [[source code]]==
  
 
  cd /usr/local/src
 
  cd /usr/local/src
 
  tar zxvf dahdi-linux-2.2.0.2.tar.gz  
 
  tar zxvf dahdi-linux-2.2.0.2.tar.gz  
 
  tar zxvf asterisk-1.8.0.tar.gz
 
  tar zxvf asterisk-1.8.0.tar.gz
  tar zxvf libpri-1.4.10.2.tar.gz
+
  tar zxvf libpri-1.4.11.4.tar.gz  
 
  tar zxvf asterisk-addons-1.6.2.1.tar.gz  
 
  tar zxvf asterisk-addons-1.6.2.1.tar.gz  
 
  tar zxvf asterisk-sounds-1.2.1.tar.gz  
 
  tar zxvf asterisk-sounds-1.2.1.tar.gz  
Line 43: Line 43:
 
  tar zxvf dahdi-linux-complete-2.4.0+2.4.0.tar.gz
 
  tar zxvf dahdi-linux-complete-2.4.0+2.4.0.tar.gz
  
Compile MPG123
+
==Compile MPG123==
  
 
  cd /usr/local/src/mpg123-1.3.1
 
  cd /usr/local/src/mpg123-1.3.1
Line 50: Line 50:
 
  make install
 
  make install
  
Compile Libpri
+
==Compile Libpri==
  
  cd /usr/local/src/libpri-1.4.10.2
+
  cd /usr/local/src/libpri-1.4.11.4/
 
  make all
 
  make all
 
  make install
 
  make install
  
Compile DAHDI.
+
==Compile DAHDI==
 +
 
 
Pastikan [[PC]] kita tersambung ke [[Internet]] karena membutuhkan akses untuk download [[firmware]].
 
Pastikan [[PC]] kita tersambung ke [[Internet]] karena membutuhkan akses untuk download [[firmware]].
  
Line 65: Line 66:
 
  cd /usr/local/src/
 
  cd /usr/local/src/
  
Compile [[asterisk]]
+
==Compile [[asterisk]]==
  
 
* Pastikan tersambung ke Internet untuk download sound
 
* Pastikan tersambung ke Internet untuk download sound
Line 82: Line 83:
 
  make progdocs
 
  make progdocs
  
Compile asterisk addons
+
==Compile asterisk addons==
  
 
  cd /usr/local/src/asterisk-addons-1.6.2.1
 
  cd /usr/local/src/asterisk-addons-1.6.2.1
Line 90: Line 91:
 
  make samples
 
  make samples
  
Compile DAHDI
+
==Compile DAHDI==
  
 
* Pastikan tersambung ke Internet untuk download firmware
 
* Pastikan tersambung ke Internet untuk download firmware
Line 99: Line 100:
  
  
Install asterisk sound
+
==Install asterisk sound==
 +
 
 +
Ini obsolate di asterisk 1.8
  
 
  cd /usr/local/src/asterisk-sounds-1.2.1
 
  cd /usr/local/src/asterisk-sounds-1.2.1

Revision as of 05:41, 1 December 2010

Pengalaman menunjukan asterisk softswitch dari hasil compiling tampaknya lebih bagus dari astrisk dari apt-get. Siapkan Ubuntu untuk Compile Software

sudo apt-get install kernel-package libncurses5-dev fakeroot wget \
bzip2 g++ libssl-dev libxml2-dev doxygen

Pastikan sambungan ke Internet beroperasi karena kita harus download voice untuk asterisk 1.8.

Ambil Source Code zaptel, asterisk, asterisk-addons, asterisk-sounds, dahdi dari situs Asterisk

Sementara paket software mpg123 bisa di ambil di


Copykan seluruh source code yang terbaru ke folder /usr/local/src/

cp dahdi-linux-2.2.0.2.tar.gz /usr/local/src/
cp asterisk-1.8.0.tar.gz  /usr/local/src/
cp libpri-1.4.11.4.tar.gz /usr/local/src
cp asterisk-addons-1.6.2.1.tar.gz /usr/local/src/
cp asterisk-sounds-1.2.1.tar.gz /usr/local/src/
cp dahdi-linux-complete-2.4.0+2.4.0.tar.gz /usr/local/src/
cp libss7-1.0.2.tar.gz /usr/local/src
cp mpg123-1.3.1.tar.bz2 /usr/local/src/


Buka file source code

cd /usr/local/src
tar zxvf dahdi-linux-2.2.0.2.tar.gz 
tar zxvf asterisk-1.8.0.tar.gz
tar zxvf libpri-1.4.11.4.tar.gz 
tar zxvf asterisk-addons-1.6.2.1.tar.gz 
tar zxvf asterisk-sounds-1.2.1.tar.gz 
tar jxvf mpg123-1.3.1.tar.bz2 
tar zxvf dahdi-linux-complete-2.4.0+2.4.0.tar.gz

Compile MPG123

cd /usr/local/src/mpg123-1.3.1
./configure
make
make install

Compile Libpri

cd /usr/local/src/libpri-1.4.11.4/
make all
make install

Compile DAHDI

Pastikan PC kita tersambung ke Internet karena membutuhkan akses untuk download firmware.

cd /usr/local/src/dahdi-linux-2.2.0.2
make 
make install
cd /usr/local/src/

Compile asterisk

  • Pastikan tersambung ke Internet untuk download sound
cd /usr/local/src/asterisk-1.8.0
make menuselect
./configure
make all
make
make install
make samples

Jika anda ingin menginstalasi dokumentasi program, install

apt-get install doxygen
make progdocs

Compile asterisk addons

cd /usr/local/src/asterisk-addons-1.6.2.1
./configure
make
make install
make samples

Compile DAHDI

  • Pastikan tersambung ke Internet untuk download firmware
cd /usr/local/src/dahdi-linux-complete-2.4.0+2.4.0/
make all
make install


Install asterisk sound

Ini obsolate di asterisk 1.8

cd /usr/local/src/asterisk-sounds-1.2.1
make install


Pranala Menarik