Difference between revisions of "User talk:Heath/PBX"

From Seasteading
Jump to: navigation, search
(Scratch pad for more specific instructions)
Line 14: Line 14:
 
apt-get install libspeex1 libspeex-dev libvorbis-dev libcurl3-dev unixodbc mysql-server php5-mysql
 
apt-get install libspeex1 libspeex-dev libvorbis-dev libcurl3-dev unixodbc mysql-server php5-mysql
 
apt-get install vim sox nmap ngrep iftop iptraf elinks lynx festival festvox-kallpc8k lighttpd
 
apt-get install vim sox nmap ngrep iftop iptraf elinks lynx festival festvox-kallpc8k lighttpd
apt-get install libspandsp1 libspandsp-dev
+
apt-get install libspandsp1 libspandsp-dev bluetooth libbluetooth2-dev libbluetooth bluez-utils blues-pin
  
 
# Installation
 
# Installation
Line 22: Line 22:
 
wget http://downloads.digium.com/pub/libpri/libpri-1.4-current.tar.gz
 
wget http://downloads.digium.com/pub/libpri/libpri-1.4-current.tar.gz
 
wget http://downloads.digium.com/pub/asterisk/asterisk-addons-1.4-current.tar.gz
 
wget http://downloads.digium.com/pub/asterisk/asterisk-addons-1.4-current.tar.gz
wget http://downloads.sourceforge.net/appconference/appconference-2.0.1.tar.gz
+
wget http://www.chan-mobile.org/downloads/chan_mobile-1.4.x.patch
 +
svn co https://agx-ast-addons.svn.sourceforge.net/svnroot/agx-ast-addons agx-ast-addons
 +
svn co https://appconference.svn.sourceforge.net/svnroot/appconference appconference
 
tar -zxvf libpri*
 
tar -zxvf libpri*
 
tar -zxvf zaptel*
 
tar -zxvf zaptel*
Line 33: Line 35:
 
./configure ; make menuselect ; make ; make install ; make samples ; make config ; cd ..
 
./configure ; make menuselect ; make ; make install ; make samples ; make config ; cd ..
 
cd `ls | grep asterisk-1.4 | grep addons | head -n 1`
 
cd `ls | grep asterisk-1.4 | grep addons | head -n 1`
 +
patch -p0 < ../chan_mobile-1.4.x.patch
 
./configure ; make menuselect ; make ; make install ; make samples ; cd ..
 
./configure ; make menuselect ; make ; make install ; make samples ; cd ..
 
cd appconference/trunk
 
cd appconference/trunk
 
make ; make install ; cd ../../
 
make ; make install ; cd ../../
 +
cd ast-agx-addons/trunk
 +
./build.sh ; cd ../../
 
/etc/init.d/asterisk start
 
/etc/init.d/asterisk start
  
 
</pre>
 
</pre>

Revision as of 23:51, 3 June 2008

Any electricians want to enlighten me as to what I mean by "~1000 available power" ?

Headset

Hi Heath, do you know of a wireless headset that doesn't echo with asterisk? It seems impossible... Joep 01:33, 1 June 2008 (UTC)

If I had to guess, the jitterbuffer is creating too much latency (as of 1.4 it's automatic for SIP and IAX2). You probably already tried turning down the mic? As long as the mic is close to the earpiece, it's difficult to control.

Scratch pad for more specific instructions


# Copypasta from voip-info.org
apt-get install linux-headers-`uname -r` bison openssl libssl-dev libeditline0 libeditline-dev libedit-dev
apt-get install gcc make g++ php5-cli mysql-common libmysqlclient15-dev libnewt-dev
apt-get install libspeex1 libspeex-dev libvorbis-dev libcurl3-dev unixodbc mysql-server php5-mysql
apt-get install vim sox nmap ngrep iftop iptraf elinks lynx festival festvox-kallpc8k lighttpd
apt-get install libspandsp1 libspandsp-dev bluetooth libbluetooth2-dev libbluetooth bluez-utils blues-pin

# Installation
cd /usr/src
wget http://downloads.digium.com/pub/asterisk/asterisk-1.4-current.tar.gz
wget http://downloads.digium.com/pub/zaptel/zaptel-1.4-current.tar.gz
wget http://downloads.digium.com/pub/libpri/libpri-1.4-current.tar.gz
wget http://downloads.digium.com/pub/asterisk/asterisk-addons-1.4-current.tar.gz
wget http://www.chan-mobile.org/downloads/chan_mobile-1.4.x.patch
svn co https://agx-ast-addons.svn.sourceforge.net/svnroot/agx-ast-addons agx-ast-addons
svn co https://appconference.svn.sourceforge.net/svnroot/appconference appconference
tar -zxvf libpri*
tar -zxvf zaptel*
tar -zxvf asterisk*
tar -zxvf appconference*
cd libpri ; make ; make install ; cd ..
cd zaptel ; ./configure ; make menuselect ; make ; make install ; make config ; cd ..
/etc/init.d/zaptel/start
cd `ls | grep asterisk-1.4 | grep -v addons | head -n 1`
./configure ; make menuselect ; make ; make install ; make samples ; make config ; cd ..
cd `ls | grep asterisk-1.4 | grep addons | head -n 1`
patch -p0 < ../chan_mobile-1.4.x.patch
./configure ; make menuselect ; make ; make install ; make samples ; cd ..
cd appconference/trunk
make ; make install ; cd ../../
cd ast-agx-addons/trunk
./build.sh ; cd ../../
/etc/init.d/asterisk start