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

From Seasteading
Jump to: navigation, search
(Headset)
Line 4: Line 4:
 
Hi Heath, do you know of a wireless headset that doesn't echo with asterisk? It seems impossible... [[User:Joep|Joep]] 01:33, 1 June 2008 (UTC)
 
Hi Heath, do you know of a wireless headset that doesn't echo with asterisk? It seems impossible... [[User:Joep|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.
 
: 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
 +
 +
# 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://downloads.sourceforge.net/appconference/appconference-2.0.1.tar.gz
 +
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`
 +
./configure ; make menuselect ; make ; make install ; make samples ; cd ..
 +
cd appconference/trunk
 +
make ; make install ; cd ../../
 +
/etc/init.d/asterisk start

Revision as of 03:14, 2 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

  1. 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

  1. 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://downloads.sourceforge.net/appconference/appconference-2.0.1.tar.gz 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` ./configure ; make menuselect ; make ; make install ; make samples ; cd .. cd appconference/trunk make ; make install ; cd ../../ /etc/init.d/asterisk start