<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HOWTO :: VoIP: Whosesale :: Calling Card :: OpenSer :: Radius :: Asterisk :: FreeSwitch :: A2Billing :: IVR :: Colo :: Colocations :: GADGETS</title>
	<atom:link href="http://callsolutions.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://callsolutions.org</link>
	<description>You can also find CCNA :: CCNAP :: Exam, Brandump, CheatSheet, Sample Exams</description>
	<lastBuildDate>Thu, 29 Apr 2010 14:23:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing Asterisk2Billing A2b 1.7.0 in CentOS 5.4</title>
		<link>http://callsolutions.org/installing-asterisk2billing-a2b-1-7-0-in-centos-5-4/</link>
		<comments>http://callsolutions.org/installing-asterisk2billing-a2b-1-7-0-in-centos-5-4/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 14:02:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[A2Billing]]></category>
		<category><![CDATA[1.7.0]]></category>
		<category><![CDATA[a2b]]></category>
		<category><![CDATA[a2b 1.7.0]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[asterisk2billing]]></category>
		<category><![CDATA[centos]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=74</guid>
		<description><![CDATA[Below is a step by step procedure how to install Asterisk2Billing or A2b 1.7.0 in CentOS 5.
Installation Prerequisites
It is assumed that you have already installed Asterisk on a suitable machine. This tutorial does not cover that part of the installation. If you are unfamiliar with the
install of Asterisk, it may be better to start with [...]]]></description>
			<content:encoded><![CDATA[<p>Below is a step by step procedure how to install Asterisk2Billing or A2b 1.7.0 in CentOS 5.</p>
<p>Installation Prerequisites</p>
<p>It is assumed that you have already installed Asterisk on a suitable machine. This tutorial does not cover that part of the installation. If you are unfamiliar with the<br />
install of Asterisk, it may be better to start with a pre-built distribution, e.g.</p>
<p>PBX in a Flash &#8211; www.pbxinaflash.com, or FonicaPABX &#8211; www.fonicaprojects.com may provide a secure base on which to build A2Billing.</p>
<p>Asterisk Now, Elastix and Trixbox are other possibilities to provide a base as part of the family of Asterisk / FreePBX / CentOS distributions. However, the author has<br />
no knowledge of the security measures in place with these distributions, and indeed, Trixbox do recommend that their system is secured behind a firewall, so may not be<br />
suitable for connection directly to the Internet without some remedial work.</p>
<p>Alternatively, Support and Managed Installation and Training services are available through http://www.star2billing.com</p>
<p>The distributions mentioned are based on Centos, so these instructions are Centos biased.</p>
<p>These distributions can be installed on a VMWare image for testing if no hardware is available.</p>
<p>If you have hand-rolled your own distribution, and are familiar with 1.3.4, then the we assume that you have the necessary dependencies already installed.</p>
<p>Install Dependencies</p>
<p>yum -y install perl-DBD-Pg subversion</p>
<p>get A2Billing</p>
<p>mkdir /usr/local/src/a2billing<br />
cd /usr/local/src/a2billing<br />
svn co &#8211;username guest &#8211;password guest http://svn.a2billing.net/svn/asterisk2billing/trunk/ /usr/local/src/a2billing</p>
<p>copy a2billing.conf in /usr/local/src/a2billing/a2billing.conf to /etc/a2billing.conf</p>
<p>Edit a2billing.conf to suit your installation. e.g. change dbtype to mysql.</p>
<p>Install Database</p>
<p>Note that for Piaf and FonicaPABX, the database password is passw0rd and the location is localhost<br />
cd /usr/local/src/a2billing/DataBase/mysql-5.x<br />
./install-db.sh</p>
<p>Answer the questions appropriately with reference to /etc/a2billing.conf</p>
<p>You should now have a database called mya2billing with over 70 tables in it.</p>
<p>Install the AGI and Sound Files</p>
<p>So that we can easily update the system when changes are made during this period of change, we are going to use links back to the location where we installed the SVN<br />
download, so that an update from the SVN will immediately reflect in your A2Billing install.</p>
<p>Note that Database changes will not be included using this methodology, so these will have to be done by hand.</p>
<p>This is not the usual way of doing it, but for testing, it works well. You can also simply move or copy the files into the appropriate location.<br />
ln -s /usr/local/src/a2billing/AGI/a2billing.php /var/lib/asterisk/agi-bin/a2billing.php</p>
<p>set ownership and permissions on AGI</p>
<p>chown asterisk:asterisk /var/lib/asterisk/agi-bin/a2billing.php<br />
chmod +x /var/lib/asterisk/agi-bin/a2billing.php</p>
<p>Set up sounds</p>
<p>cd /usr/local/src/a2billing/addons/sounds<br />
./install_a2b_sounds.sh</p>
<p>set ownership on sounds</p>
<p>chown -R asterisk:asterisk /var/lib/asterisk/</p>
<p>Asterisk Manager</p>
<p>Now edit /etc/asterisk/manager_custom.conf (or manager.conf for those not using a pre-rolled distribution including FreePBX). Add the following lines<br />
[myasterisk]<br />
secret = mycode<br />
deny=0.0.0.0/0.0.0.0<br />
permit=127.0.0.1/255.255.255.0<br />
read = system,call,log,verbose,command,agent,user<br />
write = system,call,log,verbose,command,agent,user</p>
<p>Install Web Pages</p>
<p>Assumption is that apache2 root folder is /var/www/html</p>
<p>Common</p>
<p>ln -s /usr/local/src/a2billing/common /var/www/html/a2billing/common</p>
<p>Admin pages</p>
<p>ln -s /usr/local/src/a2billing/admin /var/www/html/a2billing/admin</p>
<p>Agent</p>
<p>ln -s /usr/local/src/a2billing/agent /var/www/html/a2billing/agent</p>
<p>Customer</p>
<p>ln -s /usr/local/src/a2billing/customer /var/www/html/a2billing/customer</p>
<p>Now we need to set permissions for Apache.</p>
<p>If you are using a pre-rolled Distro, then web group and ownership are asterisk and asterisk, if you are not using a distro, then you probably know what to set anyway.<br />
chown -R asterisk:asterisk /var/www/html/a2billing/<br />
chown -R asterisk:asterisk /usr/local/src/a2billing/common<br />
chown -R asterisk:asterisk /usr/local/src/a2billing/admin<br />
chown -R asterisk:asterisk /usr/local/src/a2billing/customer<br />
chown -R asterisk:asterisk /usr/local/src/a2billing/agent</p>
<p>Cronjobs</p>
<p>echo &#8221;<br />
# Automatically added for A2Billing<br />
0 * * * * php /usr/local/src/a2billing/Cronjobs/a2billing_alarm.php<br />
0 12 * * * php /usr/local/src/a2billing/Cronjobs/a2billing_archive_data_cront.php<br />
0 10 21 * * php /usr/local/src/a2billing/Cronjobs/a2billing_autorefill.php<br />
#Batch process at 00:20 each day<br />
20 0 * * * php /usr/local/src/a2billing/Cronjobs/a2billing_batch_process.php<br />
#Bill DID usage at 00:00 each day<br />
0 0 * * * php /usr/local/src/a2billing/Cronjobs/a2billing_bill_diduse.php<br />
#Generate Invoices at 6am everyday<br />
0 6 * * * php /usr/local/src/a2billing/Cronjobs/a2billing_batch_billing.php<br />
#Check if balance below preset value, and email user if so.<br />
1 * * * * php /usr/local/src/a2billing/Cronjobs/a2billing_notify_account.php<br />
#Charge subscriptions at 06:05 on the 1st of each month<br />
0 6 1 * * php /usr/local/src/a2billing/Cronjobs/a2billing_subscription_fee.php<br />
#Update currencies at 01:00 each day<br />
0 1 * * * php /usr/local/src/a2billing/Cronjobs/currencies_update_yahoo.php<br />
&#8221; &gt;&gt; /var/spool/cron/asterisk</p>
<p>Add directory for monitoring Script</p>
<p>mkdir -p /var/lib/a2billing/script<br />
mkdir -p /var/run/a2billing</p>
<p>Create Log Files</p>
<p>Log files and Permissions</p>
<p>touch /var/log/asterisk/a2billing-daemon-callback.log<br />
touch /var/log/a2billing-daemon-callback.log<br />
touch /var/log/cront_a2b_alarm.log<br />
touch /var/log/cront_a2b_autorefill.log<br />
touch /var/log/cront_a2b_batch_process.log<br />
touch /var/log/cront_a2b_bill_diduse.log<br />
touch /var/log/cront_a2b_subscription_fee.log<br />
touch /var/log/cront_a2b_currency_update.log<br />
touch /var/log/cront_a2b_invoice.log<br />
touch /var/log/a2billing_paypal.log<br />
touch /var/log/a2billing_epayment.log<br />
touch /var/log/api_ecommerce_request.log<br />
touch /var/log/api_callback_request.log<br />
touch /var/log/a2billing_agi.log</p>
<p>Callback</p>
<p>Here is a little script to install the call-back Daemon. Change the LOAD_LOC variable to reflect where you have downloaded A2Billing.</p>
<p>Callback Daemon installation Script</p>
<p>LOAD_LOC=/usr/local/src/a2billing</p>
<p>yum -y install python-setuptools.noarch<br />
yum -y install MySQL-python<br />
easy_install sqlalchemy</p>
<p>cd $LOAD_LOC/Callback/callback-daemon-py<br />
cp $LOAD_LOC/CallBack/callback-daemon-py/build/lib/callback_daemon/a2b-callback-daemon.rc /etc/init.d/a2b-callback-daemon<br />
chmod +x /etc/init.d/a2b-callback-daemon</p>
<p>cd $LOAD_LOC/CallBack/callback-daemon-py/<br />
python setup.py build<br />
python setup.py bdist_egg<br />
easy_install dist/callback_daemon-1.0.prod_r1528-py2.4.egg<br />
chkconfig &#8211;add a2b-callback-daemon<br />
service a2b-callback-daemon start<br />
chkconfig a2b-callback-daemon on</p>
<p>Dialplan</p>
<p>The dialplan you put into Asterisk is the same as it was for A2Billing 1.3.4. I&#8217;ve not got round to writing the dialplan as yet.</p>
<p>Reboot</p>
<p>Login</p>
<p>http://Your-Switch/a2billing</p>
<p>Log into the admin pages with root and changepassword</p>
<p>General Setup</p>
<p>The general setup is similar to 1.3.4, and the order of events is approximately similar</p>
<p>* Set up trunk * Set up callplan * Setup rate plan * add rate table to callplan * add rates * add customer * test.</p>
<p>Guidelines</p>
<p>Keep an eye on the development of A2Billing here.</p>
<p>http://www.asterisk2billing.org/cgi-bin/trac.cgi/browser/trunk</p>
<p>Make sure that you are running the latest version before reporting a bug by periodically running.</p>
<p>Bugs can be dicussed in the bugs section here &#8211; http://forum.asterisk2billing.org/viewforum.php?f=22 before reporting them on the bug tracker.</p>
<p>Bugs tracking and reporting can be done here:- http://www.asterisk2billing.org/cgi-bin/trac.cgi/report</p>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/installing-asterisk2billing-a2b-1-7-0-in-centos-5-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gadget: HTC Droid Incredible Review &#8211; Out in the Market!</title>
		<link>http://callsolutions.org/gadget-htc-droid-incredible-review-out-in-the-market/</link>
		<comments>http://callsolutions.org/gadget-htc-droid-incredible-review-out-in-the-market/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 12:18:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Phones]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[HTC Droid]]></category>
		<category><![CDATA[HTC Droid incredible]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=68</guid>
		<description><![CDATA[At last! At last! A new phone is released that will be worth to replace my 4-year-old O2 Exec XDA phone!
Read on to find out!
Verizon HTC Droid Incredible hands on 006 300&#215;400 Review: Verizons HTC Droid Incredible Is it really Incredible? Or is it just another Droid phone?Verizon HTC Droid Incredible
Available April 29 for $199.99 [...]]]></description>
			<content:encoded><![CDATA[<p>At last! At last! A new phone is released that will be worth to replace my 4-year-old O2 Exec XDA phone!</p>
<p>Read on to find out!</p>
<p>Verizon HTC Droid Incredible hands on 006 300&#215;400 Review: Verizons HTC Droid Incredible Is it really Incredible? Or is it just another Droid phone?Verizon HTC Droid Incredible<br />
Available April 29 for $199.99 with new 2-year contract</p>
<p>Pros:</p>
<p>* Huge 3.7-inch AMOLED capacitive touchscreen display with WVGA resolution.<br />
* Slim form-factor<br />
* Dual-LED camera flash<br />
* 8 megapixel camera<br />
* 8GB internal storage for apps, music, video<br />
* Hot-swappable microSD card</p>
<p>Cons:</p>
<p>* Android Market still lacking the app-diversity and breadth of Appleâ€™s iPhone AppStore<br />
* No simultaneous voice and data service<br />
* Questionable battery cover design</p>
<p>Hardware specifications / Spec-sheet overview</p>
<p>* 1Ghz Snapdragon CPU<br />
* 3.7-inch AMOLED capacitive touchscreen display @ WVGA resolution<br />
* 8 megapixel camera with dual-LED flash<br />
* 3G data<br />
* WiFi<br />
* GPS<br />
* microSD<br />
* Bluetooth (Stereo (A2DP), Handsfree, Headset, Phonebook Access)<br />
* Android 2.1 OS with HTC Sense</p>
<p><a href="http://www.youtube.com/watch?v=a9u1UFeuO_I&amp;feature=player_embedded"></a><a href="http://www.youtube.com/watch?v=a9u1UFeuO_I&amp;feature=player_embedded">Gadget: HTC Droid Incredible Review â€“ Out in the Market!</a></p>
<p>Gadget: HTC Driod Incredible Review &#8211; Out in the Market!</p>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/gadget-htc-droid-incredible-review-out-in-the-market/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS 5.4 or 5.5 + Asterisk 1.4 + G729 + G723</title>
		<link>http://callsolutions.org/centos-5-4-or-5-5-asterisk-1-4-g729-g723/</link>
		<comments>http://callsolutions.org/centos-5-4-or-5-5-asterisk-1-4-g729-g723/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 05:12:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asterisk PBX]]></category>
		<category><![CDATA[asterisk install]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[centos 5.4]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=66</guid>
		<description><![CDATA[This tutorial will teach you how to install Asterisk 1.4 on a fresh install of CentOS 5.4 / 5.5 with g729 and g723 supported codec.
yum update
yum upgrade
yum groupinstall &#8216;Development Tools&#8217;
yum groupinstall &#8216;Development Libraries&#8217;
yum install -y kernel kernel-devel
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
tar xvzf asterisk-1.4-current.tar.gz &#38;&#38; tar xvzf zaptel-1.4-current.tar.gz &#38;&#38; tar xvzf libpri-1.4-current.tar.gz &#38;&#38; tar xvzf [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will teach you how to install Asterisk 1.4 on a fresh install of CentOS 5.4 / 5.5 with g729 and g723 supported codec.</p>
<p>yum update</p>
<p>yum upgrade</p>
<p>yum groupinstall &#8216;Development Tools&#8217;</p>
<p>yum groupinstall &#8216;Development Libraries&#8217;</p>
<p>yum install -y kernel kernel-devel</p>
<p>cd /usr/src</p>
<p>wget http://downloads.digium.com/pub/asterisk/asterisk-1.4-current.tar.gz<br />
wget http://downloads.digium.com/pub/zaptel/zaptel-1.4-current.tar.gz<br />
wget http://downloads.digium.com/pub/libpri/libpri-1.4-current.tar.gz<br />
wget http://downloads.digium.com/pub/asterisk/asterisk-addons-1.4-current.tar.gz</p>
<p>tar xvzf asterisk-1.4-current.tar.gz &amp;&amp; tar xvzf zaptel-1.4-current.tar.gz &amp;&amp; tar xvzf libpri-1.4-current.tar.gz &amp;&amp; tar xvzf asterisk-addons-1.4-current.tar.gz</p>
<p>a) Installing Zaptel</p>
<p>cd /usr/src/zaptel-1.4*<br />
./install_prereq test<br />
./install_prereq install<br />
./configure<br />
make<br />
make install<br />
make config<br />
modprobe ztdummy</p>
<p>b) Installing Libpri</p>
<p>cd /usr/src/libpri-1.4*<br />
make &amp;&amp; make install</p>
<p>c) Installing Asterisk</p>
<p>c) Installing Asterisk</p>
<p>cd /usr/src/asterisk-1.4*</p>
<p>./configure</p>
<p>Comment: The next step is not mandatory. To install core and extra sounds in different languages:</p>
<p>make menuselect</p>
<p>Comment: Select the core-sounds you would like to play and extra sounds. Exit with ï¿½xï¿½ to save.</p>
<p>make<br />
make install<br />
make samples<br />
make config<br />
asterisk -vvvc<br />
stop now<br />
echo ï¿½ztdummyï¿½ &gt;&gt; /etc/modules</p>
<p>d) Installing Asterisk Addons</p>
<p>cd /usr/src/asterisk-addons*<br />
./configure &amp;&amp; make &amp;&amp; make install<br />
make samples</p>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/centos-5-4-or-5-5-asterisk-1-4-g729-g723/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to earn from CNAM Revenue Sharing</title>
		<link>http://callsolutions.org/how-to-earn-from-cnam-revenue-sharing/</link>
		<comments>http://callsolutions.org/how-to-earn-from-cnam-revenue-sharing/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 14:52:58 +0000</pubDate>
		<dc:creator>jfanning</dc:creator>
				<category><![CDATA[CNAM]]></category>
		<category><![CDATA[CNAM DIP Fees]]></category>
		<category><![CDATA[CNAM Revenue Share]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=59</guid>
		<description><![CDATA[Every time a call is made to a phone in the U.S. that has caller-id enabled, the terminating phone company does a lookup in one of several national Â databases that contain all the U.S. caller-id names and numbers. Â This database lookup is called a CNAM dip. Â When this database is being â€˜dippedâ€™ the originating local [...]]]></description>
			<content:encoded><![CDATA[<p>Every time a call is made to a phone in the U.S. that has caller-id enabled, the terminating phone company does a lookup in one of several national Â databases that contain all the U.S. caller-id names and numbers. Â This database lookup is called a CNAM dip. Â When this database is being â€˜dippedâ€™ the originating local phone company getâ€™s compensated. Each and every time â€“ even is the call is not answered.</p>
<p>CNAM Revenue Sharing is when parties receiving CNAM revenue share this with other parties responsible for generating the CNAM revenue.</p>
<p>With SIP VoIP calls Â there usually is no CNAM caller id information published to the CNAM database because the <a href="http://www.ezcallinc.com">Wholesale VoIP Provider</a> does not gain anything from publishing this information. Therefor most of the time these VoIP calls do not generate any CNAM dips and thus no revenue.</p>
<p>CNAM dip revenue is very little per individual dip, we are talking about pennies or even sub-penny level. Therefor collecting CNAM revenue is only applicable for users with a high volume of outbound traffic terminating in the United States. Telemarketing companies, calling card providers, SIP Termination wholesalers etc. make good candidates for CNAM revenue share programs.</p>
<h2>CNAM Revenue Share Programs</h2>
<p>With CNAM revenue share programs, the customer gets assigned a numer of virtual ANIsÂ <em>(simplified you can see ANIs as telephone numbers)</em>. They then program these ANIs to be displayed on their outbound calls as their caller id, the number that shows what number is calling you.</p>
<p>Because this is simply a flag passed on to the SS7 network, it is something that is very easy to do. It does not require the customer to change anything else in their calling paths. Only the programming of the ANI flag with the ANI provided by the CNAM revenue sharing program.</p>
<p>The customer then provides the CNAM revenue sharing party with the caller name (CNAM) they would like to be displayed when they call someone. The CNAM is then distributed to the different CNAM databases where all phone companies get their CNAM data from.</p>
<p>After this, the customer simply gets paid for each call they place that dips into the CNAM database. This can add up to very significant five or even six figure CNAM revenue share commissions.</p>
<p>For more information, please read more about Â <a href="http://www.grnvoip.com/index.php/wholesale-solutions/cnam-revenue-share/">CNAM Revenue Share</a> from grnVoIP&#8217;s website.</p>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/how-to-earn-from-cnam-revenue-sharing/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installing Asterisk2Billing A2B 1.6 in Debian Lenny 5.0.4</title>
		<link>http://callsolutions.org/installing-asterisk2billing-1-6-in-debian-lenny-5-0-4/</link>
		<comments>http://callsolutions.org/installing-asterisk2billing-1-6-in-debian-lenny-5-0-4/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 11:19:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[A2Billing]]></category>
		<category><![CDATA[Asterisk PBX]]></category>
		<category><![CDATA[a2b]]></category>
		<category><![CDATA[asterisk2billing]]></category>
		<category><![CDATA[debin]]></category>
		<category><![CDATA[lenny]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=56</guid>
		<description><![CDATA[I assumed that Debian Lenny is already installed on the system. This is a step-by-step procedure how to install Asterisk2Billing or A2B in Debian Lenny. This HowTo is just a  copy/paste procedure. Let me know if you run into trouble installing this.
apt-get update
apt-get upgrade
aptitude install ssh ntp screen
aptitude install build-essential libcurl3-dev libvorbis-dev libspeex-dev unixodbc [...]]]></description>
			<content:encoded><![CDATA[<p>I assumed that Debian Lenny is already installed on the system. This is a step-by-step procedure how to install Asterisk2Billing or A2B in Debian Lenny. This HowTo is just a  copy/paste procedure. Let me know if you run into trouble installing this.</p>
<p>apt-get update<br />
apt-get upgrade<br />
aptitude install ssh ntp screen<br />
aptitude install build-essential libcurl3-dev libvorbis-dev libspeex-dev unixodbc unixodbc-dev libiksemel-dev flex xsltproc linux-headers-`uname -r` g++ libncurses5-dev libnewt-dev libusb-dev subversion git-core flex bison<br />
cd /usr/src/<br />
wget http://downloads.digium.com/pub/asterisk/asterisk-1.4-current.tar.gz<br />
wget http://downloads.digium.com/pub/zaptel/zaptel-1.4-current.tar.gz<br />
wget http://downloads.digium.com/pub/libpri/libpri-1.4-current.tar.gz<br />
wget http://downloads.digium.com/pub/asterisk/asterisk-addons-1.4-current.tar.gz<br />
tar xvfz asterisk-1.4-current.tar.gz<br />
tar xvzf asterisk-1.4-current.tar.gz &#038;&#038; tar xvzf zaptel-1.4-current.tar.gz &#038;&#038; tar xvzf libpri-1.4-current.tar.gz &#038;&#038; tar xvzf asterisk-addons-1.4-current.tar.gz tar<br />
tar xvfz zaptel-1.4.12.1/<br />
cd zaptel-1.4.12.1/<br />
./install_prereq test<br />
./install_prereq install<br />
./configure<br />
make<br />
make install<br />
make config<br />
modprobe ztdummy<br />
cd ../libpri-1.4.10.2/<br />
make &#038;&#038; make install<br />
cd ../asterisk-1.4.30/<br />
./configure<br />
make<br />
make install<br />
make samples<br />
make config<br />
asterisk -vvvvvvvvvvvvgc<br />
echo &#8220;ztdummy&#8221;<br />
echo &#8220;ztdummy&#8221; >> /etc/modules<br />
cd ../asterisk-addons-1.4-current.tar.gz<br />
cd ..<br />
tar xvfz asterisk-addons-1.4-current.tar.gz<br />
cd asterisk-addons-1.4.10/<br />
./configure &#038;&#038; make &#038;&#038; make install<br />
make samples<br />
apt-get install apache2 php5 mysql-server<br />
cd /var/www/<br />
wget http://www.asterisk2billing.org/downloads/A2Billing_1.6.0.tar.gz<br />
tar xvfz A2Billing_1.6.0.tar.gz<br />
mv A2Billing_1.6.0.tar.gz /tmp/<br />
apt-get install libapache2-mod-php5 php5 php5-common<br />
apt-get install php5-cli php5-mysql mysql-server apache2 php5-gd<br />
apt-get install openssh-server subversion<br />
apt-get install php5-mcrypt<br />
mysql -u root -p < DataBase/mysql-5.x/a2billing-createdb-user.sql<br />
mysql -u a2billinguser -p mya2billing<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/a2billing-schema-v1.4.0.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.4.0-to-v1.4.1.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.4.1-to-v1.4.2.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.4.2-to-v1.4.3.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.4.3-to-v1.4.4.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.4.4-to-v1.4.4.1.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.4.4.1-to-v1.4.5.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.4.5-to-v1.5.0.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.5.0-to-v1.5.1.sql<br />
mysql -u root -p mya2billing < DataBase/mysql-5.x/UPDATE-a2billing-v1.5.1-to-v1.6.0.sql<br />
mysql -u a2billinguser -p mya2billing<br />
cp a2billing.conf /etc/</p>
<p>touch /etc/asterisk/additional_a2billing_iax.conf<br />
touch /etc/asterisk/additional_a2billing_sip.conf<br />
echo \#include additional_a2billing_sip.conf >> /etc/asterisk/sip.conf<br />
echo \#include additional_a2billing_iax.conf >> /etc/asterisk/iax.conf<br />
chown -Rf www-data /etc/asterisk/additional_a2billing_iax.conf<br />
chown -Rf www-data /etc/asterisk/additional_a2billing_sip.conf<br />
cd addons/sounds/<br />
./install_a2b_sounds.sh<br />
chown -R asterisk:asterisk  /var/lib/asterisk/sounds/<br />
vi /etc/asterisk/manager.conf</p>
<p>   Notice that we are using the default values (myasterisk, mycode) in this section. The configuration should look like this<br />
[general]<br />
enabled = yes<br />
port = 5038<br />
bindaddr = 0.0.0.0</p>
<p>[myasterisk]<br />
secret=mycode<br />
read=system,call,log,verbose,command,agent,user<br />
write=system,call,log,verbose,command,agent,user</p>
<p>cd AGI/<br />
cp a2billing.php /var/lib/asterisk/agi-bin/<br />
cp -rf ../common/lib /var/lib/asterisk/agi-bin/<br />
chmod +x /var/lib/asterisk/agi-bin/a2billing.php<br />
mkdir /var/www/a2billing<br />
chown www-data:www-data /var/www/a2billing<br />
mkdir -p /var/lib/a2billing/script<br />
mkdir -p /var/run/a2billing<br />
mv admin a2billing/<br />
mv agent a2billing/<br />
mv customer a2billing/<br />
mv common a2billing/<br />
chmod 755 a2billing/admin/templates_c<br />
chmod 755 a2billing/customer/templates_c<br />
chmod 755 a2billing/agent/templates_c<br />
chown -Rf www-data:www-data /var/www/a2billing/admin/templates_c<br />
chown -Rf www-data:www-data /var/www/a2billing/customer/templates_c/<br />
chown -Rf www-data:www-data /var/www/a2billing/customer/templates_c<br />
chown -Rf www-data:www-data /var/www/a2billing/agent/templates_c<br />
/etc/init.d/apache2 status<br />
/etc/init.d/apache2 restart<br />
apt-get install python-setuptools python-mysqldb python-psycopg2 python-sqlalchemy<br />
easy_install callback-daemon-py/dist/callback_daemon-1.0.prod_r1527-py2.5.egg</p>
<p>Direct a browser to the administrative web interface (http://<ip-addr>/a2billing/admin) and login as administrator. Default passwords are:<br />
user: root<br />
pass: changepassword</p>
<p>vi /etc/asterisk/extensions.conf</p>
<p>[default]</p>
<p>include => a2billing</p>
<p>[a2billing]<br />
; CallingCard application<br />
exten => _X.,1,Answer<br />
exten => _X.,2,Wait,2<br />
exten => _X.,3,DeadAGI,a2billing.php<br />
exten => _X.,4,Wait,2<br />
exten => _X.,5,Hangup</p>
<p>[did]<br />
; CallingCard application<br />
exten => _X.,1,DeadAGI(a2billing.php|1|did)</p>
<p>crontab -e</p>
<p># update the currency table<br />
0 6 * * * php /usr/local/src/a2billing/Cronjobs/currencies_update_yahoo.php</p>
<p># manage the monthly services subscription<br />
0 6 1 * * php /usr/local/src/a2billing/Cronjobs/a2billing_subscription_fee.php</p>
<p># To check account of each Users and send an email if the balance is less than the user have choice.<br />
0 * * * * php /usr/local/src/a2billing/Cronjobs/a2billing_notify_account.php</p>
<p># this script will browse all the DID that are reserve and check if the customer need to pay for it<br />
# bill them or warn them per email to know if they want to pay in order to keep their DIDs<br />
0 2 * * * php /usr/local/src/a2billing/Cronjobs/a2billing_bill_diduse.php</p>
<p># This script will take care of the recurring service.<br />
0 12 * * * php /usr/local/src/a2billing/Cronjobs/a2billing_batch_process.php</p>
<p>#Generate Invoices at 6am everyday<br />
0 6 * * * php /usr/local/src/a2billing/Cronjobs/a2billing_batch_billing.php</p>
<p># to proceed the autodialer<br />
*/5 * * * * php /usr/local/src/a2billing/Cronjobs/a2billing_batch_autodialer.php</p>
<p># manage alarms<br />
0 * * * * php /usr/local/src/a2billing/Cronjobs/a2billing_alarm.php</p>
<p>This is the initial installation for Asterisk2Billing 1.6 in Debian Lenny 5.0.4</p>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/installing-asterisk2billing-1-6-in-debian-lenny-5-0-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Nagios 3.2.1 in CentOS 5</title>
		<link>http://callsolutions.org/installing-nagios-3-2-1-in-centos-5/</link>
		<comments>http://callsolutions.org/installing-nagios-3-2-1-in-centos-5/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 16:26:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Nagios]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[centos 5]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=54</guid>
		<description><![CDATA[Here&#8217;s a quick step-by-step procedure on how to install Nagios Monitoring in CentOS 5. The installation is straightforward. You just have to copy and paste it to your SSH Terminal. 
yum update
yum install httpd php
yum install gcc glibc glibc-common
yum install gd gd-devel
/usr/sbin/useradd -m nagios
passwd nagios
set nagios as password (I used nagios)
/usr/sbin/groupadd nagcmd
/usr/sbin/usermod -a -G nagcmd [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick step-by-step procedure on how to install Nagios Monitoring in CentOS 5. The installation is straightforward. You just have to copy and paste it to your SSH Terminal. </p>
<p>yum update<br />
yum install httpd php<br />
yum install gcc glibc glibc-common<br />
yum install gd gd-devel<br />
/usr/sbin/useradd -m nagios<br />
passwd nagios<br />
set nagios as password (I used nagios)<br />
/usr/sbin/groupadd nagcmd<br />
/usr/sbin/usermod -a -G nagcmd nagios<br />
/usr/sbin/usermod -a -G nagcmd apache<br />
mkdir ~/downloads<br />
cd ~/downloads<br />
wget http://prdownloads.sourceforge.net/sourceforge/nagios/nagios-3.2.1.tar.gz<br />
wget http://prdownloads.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.11.tar.gz<br />
tar xvzf nagios-3.2.1.tar.gz<br />
cd nagios-3.2.1<br />
./configure &#8211;with-command-group=nagcmd<br />
make all<br />
make install<br />
make install-init<br />
make install-config<br />
make install-commandmode<br />
make install-webconf<br />
htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin<br />
set password for nagiosadmin = this is the webui<br />
service httpd restart<br />
cd ~/downloads<br />
tar xvzf nagios-plugins-1.4.11.tar.gz<br />
cd nagios-plugins-1.4.11<br />
./configure &#8211;with-nagios-user=nagios &#8211;with-nagios-group=nagios<br />
make<br />
make install<br />
chkconfig &#8211;add nagios<br />
chkconfig nagios on<br />
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg<br />
chmod 777 /usr/local/nagios/var/rw/nagios.cmd<br />
service nagios start</p>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/installing-nagios-3-2-1-in-centos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing FFmpeg &amp; Dependencies For FLV Conversion</title>
		<link>http://callsolutions.org/installing-ffmpeg-dependencies-for-flv-conversion/</link>
		<comments>http://callsolutions.org/installing-ffmpeg-dependencies-for-flv-conversion/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 17:55:59 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[YouTube-Like Website]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Installing FFmpeg & Dependencies For FLV Conversion]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=47</guid>
		<description><![CDATA[
This guide should teach you how to install all the needed dependencies for ClipShare or other flash video conversion scripts. It’s primarily focused on RHEL or CentOS installs for the dependencies of these packages. The links in this guide are fresh as of 08/04/2008. Here is what this guide will help you install:

 FFmpeg (http://ffmpeg.mplayerhq.hu)
 [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div id="post-8" class="post"><abbr title="2008-06-29T23:57:09-0500" /><!-- by admin -->This guide should teach you how to install all the needed dependencies for ClipShare or other flash video conversion scripts. It’s primarily focused on RHEL or CentOS installs for the dependencies of these packages. The links in this guide are fresh as of 08/04/2008. Here is what this guide will help you install:</p>
<ul>
<li> FFmpeg (<a class="external free" title="http://ffmpeg.mplayerhq.hu" rel="nofollow" href="http://ffmpeg.mplayerhq.hu/">http://ffmpeg.mplayerhq.hu</a>)</li>
<li> FFmpeg-PHP (<a class="external free" title="http://ffmpeg-php.sourceforge.net" rel="nofollow" href="http://ffmpeg-php.sourceforge.net/">http://ffmpeg-php.sourceforge.net</a>)</li>
<li> MPlayer + Mencoder (<a class="external free" title="http://www.mplayerhq.hu/design7/dload.html" rel="nofollow" href="http://www.mplayerhq.hu/design7/dload.html">http://www.mplayerhq.hu/design7/dload.html</a>)</li>
<li> FLV2Tool (<a class="external free" title="http://inlet-media.de/flvtool2" rel="nofollow" href="http://inlet-media.de/flvtool2">http://inlet-media.de/flvtool2</a>)</li>
<li> Libogg (<a class="external free" title="http://www.xiph.org/downloads" rel="nofollow" href="http://www.xiph.org/downloads">http://www.xiph.org/downloads</a>)</li>
<li> Libvorbis (<a class="external free" title="http://www.xiph.org/downloads" rel="nofollow" href="http://www.xiph.org/downloads">http://www.xiph.org/downloads</a>)</li>
<li> LAME MP3 Encoder (<a class="external free" title="http://lame.sourceforge.net" rel="nofollow" href="http://lame.sourceforge.net/">http://lame.sourceforge.net</a>)</li>
</ul>
<p>It assumes you already have Apache and PHP5 installed as those are required dependencies as well. There will also be a guide up for installing PHP5.2.6 from source on CentOS/RHEL soon.</p>
<p>First install subversion and ruby via yum or up2date:</p>
<blockquote><p>yum -y install subversion ruby</p></blockquote>
<p>Now we need to install MPlayer &amp; FFmpeg sources from SVN:</p>
<blockquote><p>cd ~<br />
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg<br />
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer</p></blockquote>
<p>Now we need some codecs:</p>
<blockquote><p>wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20071007.tar.bz2<br />
tar xvjpf essential-20071007.tar.bz2<br />
cd essential-20071007<br />
mkdir /usr/local/lib/codecs<br />
mv * /usr/local/lib/codecs/<br />
chmod -R 755 /usr/local/lib/codecs/<br />
cd ~</p></blockquote>
<p>Next we will install LAME MP3 encoder:</p>
<blockquote><p>wget http://internap.dl.sourceforge.net/sourceforge/lame/lame-398.tar.gz<br />
tar xvzpf lame-398.tar.gz<br />
cd lame-398<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>Now we install Libogg:</p>
<blockquote><p>wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz<br />
tar xvzpf libogg-1.1.3.tar.gz<br />
cd libogg-1.1.3<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>We need to make sure the correct lib directories are setup in ldconfig. Edit the <strong>/etc/ld.so.conf</strong> file and add the following lines:</p>
<blockquote><p>/usr/lib<br />
/usr/local/lib</p></blockquote>
<p>Now save and run the following command:</p>
<blockquote><p>ldconfig</p></blockquote>
<p>To install libvorbis we will run:</p>
<blockquote><p>wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.gz<br />
tar xvzpf libvorbis-1.2.0.tar.gz<br />
cd libvorbis-1.2.0<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>Now we will install FLVTool2:</p>
<blockquote><p>wget http://rubyforge.org/frs/download.php/17497/flvtool2-1.0.6.tgz<br />
tar xvzpf flvtool2-1.0.6.tgz<br />
cd flvtool2-1.0.6<br />
ruby setup.rb config<br />
ruby setup.rb setup<br />
ruby setup.rb install<br />
cd ~</p></blockquote>
<p>Next we should build MPlayer &amp; MEncoder and it will take a while unless you have a nice dual or quad core machine. Note that I’ve seen the SVN version of these packages break before, so you can always download the source code from their site (a stable copy) if it fails on make:</p>
<blockquote><p>cd mplayer<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>We will now build FFmpeg:</p>
<blockquote><p>mkdir /usr/local/src/tmp<br />
chmod 777 /usr/local/src/tmp<br />
export TMPDIR=/usr/local/src/tmp<br />
cd ffmpeg<br />
./configure &#8211;prefix=/usr &#8211;enable-libmp3lame &#8211;enable-libvorbis &#8211;disable-mmx &#8211;enable-shared<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>Symlink some libraries if needed (ignore file exists errors):</p>
<blockquote><p>ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50<br />
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51<br />
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49<br />
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0<br />
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51</p></blockquote>
<p>Now build FFmpeg-PHP:</p>
<blockquote><p>wget http://voxel.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.3.1.tbz2<br />
tar xvjpf ffmpeg-php-0.5.3.1.tbz2<br />
cd ffmpeg-php-0.5.3.1<br />
phpize<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>Now you need to copy the ffmpeg.so file that was created from it’s location (from the build) to /usr/local/lib/php/extensions/, it should look something like:</p>
<blockquote><p>cp /usr/local/lib/php/extensions/no-debug-non-zts-????????????/ffmpeg.so /usr/local/lib/php/extensions/</p></blockquote>
<p>Modify your php.ini. Try <strong>/etc/php.ini</strong> or <strong>/usr/lib/php.ini</strong> or <strong>/usr/local/Zend/etc/php.ini</strong> as they are common locations, you can do <strong>php -i | grep -i</strong> ini to find the proper location. Change the extension_dir value as seen below and add the extension as seen below:</p>
<blockquote><p>extension_dir = “/usr/local/lib/php/extensions/”<br />
extension=ffmpeg.so</p></blockquote>
<p>Now save and restart apache and test php for ffmpeg on both apache via phpinfo() and from shell:</p>
<blockquote><p>service httpd stop<br />
killall -9 httpd<br />
service httpd start<br />
php -i | grep -i ffmpeg</p></blockquote>
<p>Let me know via comments if you find some bugs or better ways to do things!</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/installing-ffmpeg-dependencies-for-flv-conversion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PPCLink HiCalc v2.5.1 (Your Trusted Calculator)</title>
		<link>http://callsolutions.org/ppclink-hicalc-v251-your-trusted-calculator/</link>
		<comments>http://callsolutions.org/ppclink-hicalc-v251-your-trusted-calculator/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 20:10:13 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[Calculators]]></category>
		<category><![CDATA[windows mobile]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=41</guid>
		<description><![CDATA[PPCLink HiCalc v2.5.1 (Your Trusted Calculator)
Requirements: Any Windows Mobile PocketPC, 3 MB of free RAM
Overview: Ultimate Calculator combines all of the features of other calculators in one. HiCALC lets you effortlessly compute confusing calculations at a speed.

HiCALC &#8211; Your Trusted Calculator now with 15 modules &#8211; Arithmetic, Trigonometry, Matrices, Constants, Finance, Statistics, Biorhythm, Tip, Currency [...]]]></description>
			<content:encoded><![CDATA[<div class="postbody"><span style="font-weight: bold;">PPCLink HiCalc v2.5.1 (Your Trusted Calculator)</span><br />
<span style="text-decoration: underline;">Requirements:</span> Any Windows Mobile PocketPC, 3 MB of free RAM<br />
<span style="text-decoration: underline;">Overview:</span> Ultimate Calculator combines all of the features of other calculators in one. HiCALC lets you effortlessly compute confusing calculations at a speed.</p>
<p><img src="http://i30.tinypic.com/4utmxh.gif" alt="Image" /></p>
<p>HiCALC &#8211; Your Trusted Calculator now with 15 modules &#8211; Arithmetic, Trigonometry, Matrices, Constants, Finance, Statistics, Biorhythm, Tip, Currency Converter, Unit converter, Base conversion, Graph, Date-time, Equation Solver and Userï¿½s macro, will make all your calculations become so simple as never before.</p>
<p><span style="font-weight: bold;">Release version 2.5.1</span><br />
# Fixed bug on unit converter in speed category<br />
# Other minor bug fixes.</p>
<p><span style="text-decoration: underline;">More Info:</span></p>
<div class="codewrapper">
<div class="codetitle"><strong>Code:</strong></div>
<div class="codecontent">http://www.ppclink.com/?ppclink=product&amp;do=view&amp;id=44</div>
</div>
<p><span style="text-decoration: underline;">Download Instructions:</span><br />
<a class="postlink" href="http://www.uploadjockey.com/download/6819009/hicalc_arm.cab">http://www.uploadjockey.com/download/6819009/hicalc_arm.cab</a><br />
<a class="postlink" href="http://www.megaupload.com/?d=4PYEAIA9">http://www.megaupload.com/?d=4PYEAIA9</a><br />
<a class="postlink" href="http://www.ziddu.com/download/1682804/hicalc_arm.rar.html">http://www.ziddu.com/download/1682804/hicalc_arm.rar.html</a></p>
<p><span style="font-weight: bold;">Keygen Only:</span><br />
<a class="postlink" href="http://www.uploadjockey.com/download/2352676/ppclink.hicalc.rar">http://www.uploadjockey.com/download/2352676/ppclink.hicalc.rar</a><br />
<a class="postlink" href="http://www.ziddu.com/download/1682820/PPCLINK.HiCalc.rar.html">http://www.ziddu.com/download/1682820/PPCLINK.HiCalc.rar.html</a></p>
<p>&lt; <span style="font-weight: bold;">CAB file:</span> <a class="postlink" href="http://rapidshare.com/files/145983869/hicalc_arm.cab"><span style="font-weight: bold;">hicalc_arm.cab</span></a> &#8211; <a class="postlink" href="http://forum.ppcwarez.org/viewtopic.php?f=119&amp;t=24655"><span style="color: blue;">Request serial</span></a> &#8211; <a class="postlink" href="http://freetexthost.com/1it35aezp6"><span style="color: red;">Insane</span></a> &#8211; <a class="postlink" href="http://forum.ppcwarez.org/viewtopic.php?p=300532#300532"><span style="color: #000000;"><span style="font-style: italic;">SiMiLaR</span></span></a> &gt; <a class="postlink" href="http://forum.ppcwarez.org/viewtopic.php?p=138112#138112"><span style="font-size: 85%; line-height: normal;"><span style="color: #bfbfbf;"> &#8211; G &amp; a</span></span></a></div>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/ppclink-hicalc-v251-your-trusted-calculator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panoramic Calc Pro v2.0.5</title>
		<link>http://callsolutions.org/panoramic-calc-pro-v205/</link>
		<comments>http://callsolutions.org/panoramic-calc-pro-v205/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 20:08:07 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[Calculators]]></category>
		<category><![CDATA[windows mobile]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=39</guid>
		<description><![CDATA[Panoramic Calc Pro v2.0.5
Requirements: Windows Mobile PocketPC
Overview: Panoramic Calc Pro offers more power, more features and the most accuracy than any other mobile calculator.
 
Panoramic Calc Pro offers more power, more features and the most accuracy than any other mobile calculator. With 10 powerful calculators and 10 additional Financial calculators, Calc Pro is by far [...]]]></description>
			<content:encoded><![CDATA[<div class="postbody"><span style="font-weight: bold;">Panoramic Calc Pro v2.0.5</span><br />
<span style="text-decoration: underline;">Requirements:</span> Windows Mobile PocketPC<br />
<span style="text-decoration: underline;">Overview:</span> Panoramic Calc Pro offers more power, more features and the most accuracy than any other mobile calculator.<br />
<img src="http://i34.tinypic.com/aws03l.png" alt="Image" /> <img src="http://i33.tinypic.com/2ztj3up.png" alt="Image" /></p>
<p>Panoramic Calc Pro offers more power, more features and the most accuracy than any other mobile calculator. With 10 powerful calculators and 10 additional Financial calculators, Calc Pro is by far the top choice to replace your default Windows Mobile calculator. With five calculator modes, five display options, and four skins, Calc Pro works the way You want. You can use Panoramic Calc Pro to perform any of the standard or advanced operations for which you would normally use a handheld calculator.</p>
<p>Here are some key features of &#8220;Panoramic Calc Pro&#8221;:<br />
· Ten calculators included for uncluttered and efficient performance: Standard, Scientific, Base Conversions, Graphing, Unit Converter, World Currencies, Date &amp; Time, Constants, Financial, and Statistics<br />
· The Financial Calculator contains 10 powerful calculator worksheets to help solve common financial problems<br />
· Five (5) display options: normal, fractions, scientific, engineering and fixed (2-10 decimal places)<br />
· Five (5) calculator modes: simple, algebraic, direct algebraic, expression and RPN<br />
· Copy and Paste functionality allows transfer of results to other programs, such as Excel and Word<br />
· Option for use of regional settings to format onscreen answers<br />
· Easy to use touch menu systems for quick and intuitive navigation<br />
· Record Tape option outputs a text record of all your calculations so you can review later<br />
· Quick Toggle button to return to the previous calculator<br />
· Four (4) custom skins<br />
· Finger friendly buttons and menus for touch screen devices<br />
· Simple to use &#8211; most options are available just by tapping the display.<br />
· &#8220;Smart Input&#8221; technology prevents you from entering invalid expressions and avoids errors</p>
<p><span style="text-decoration: underline;">More Info:</span></p>
<div class="codewrapper">
<div class="codetitle"><strong>Code:</strong></div>
<div class="codecontent">http://www.panoramicsoft.com/mobileapps/calcpro/Calcpro.php</div>
</div>
<p><span style="text-decoration: underline;">Download Instructions:</span><br />
<!-- m --><a class="postlink" href="http://anonym.to/?http://www.uploadjockey.com/download/1313275/Panoramic.Calc.Pro.v2.0.5.zip" target="_new">http://www.uploadjockey.com/download/13 &#8230; v2.0.5.zip</a><!-- m --></p>
<p>Mirror:<br />
<!-- m --><a class="postlink" href="http://anonym.to/?http://www.ziddu.com/download/2888070/Panoramic.Calc.Pro.v2.0.5.zip.html" target="_new">http://www.ziddu.com/download/2888070/P &#8230; 5.zip.html</a><!-- m --></p>
<p>Thanks to <span style="font-weight: bold;">Kamachi</span></p>
<p>&lt; <span style="font-weight: bold;">CAB file:</span> <a class="postlink" href="http://rapidshare.com/files/172022671/Panoramic.Calc.Pro.v2.0.5.cab"><span style="font-weight: bold;">Panoramic.Calc.Pro.v2.0.5.cab</span></a> &#8211; <span style="color: green;">No serial needed</span> &#8211; <a class="postlink" href="http://forum.ppcwarez.org/viewtopic.php?p=300532#300532"><span style="color: #000000;"><span style="font-style: italic;">SiMiLaR</span></span></a> &gt; <a class="postlink" href="http://forum.ppcwarez.org/viewtopic.php?p=138112#138112"><span style="font-size: 85%; line-height: normal;"><span style="color: #bfbfbf;"> &#8211; G &amp; a</span></span></a></div>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/panoramic-calc-pro-v205/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeSwitch Installation</title>
		<link>http://callsolutions.org/freeswitch-installation/</link>
		<comments>http://callsolutions.org/freeswitch-installation/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 00:00:43 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[FreeSwitch]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=37</guid>
		<description><![CDATA[FreeSwitch Installation Howto:
This FreeSwitch Installation is derived from FreeSwitch Wiki Installation. I used this to install to my Debian Etch Server that runs in AMD Opteron Dual Proc Server.
Download Source Tarball

 Unix Source freeswitch-1.0.1.tar.gz
 Nightly Snapshot of SVN Source freeswitch-snapshot.tar.gz


FreeSWITCH 1.0.1 &#8220;Phoenix&#8221; Release
Here is the much awaited Freeswitch 1.0.1 &#8220;Phoenix&#8221; tarball located at http://files.freeswitch.org/
Follow the [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://callsolutions.org/voip-tutorial/freeswitch/freeswitch-softswitch/">FreeSwitch</a> Installation Howto:</h2>
<p>This <strong>FreeSwitch</strong> Installation is derived from FreeSwitch Wiki Installation. I used this to install to my Debian Etch Server that runs in AMD Opteron Dual Proc Server.</p>
<h2><strong>Download Source Tarball</strong></h2>
<ul>
<li> Unix Source <a class="external text" title="http://files.freeswitch.org/freeswitch-1.0.1.tar.gz" rel="nofollow" href="http://files.freeswitch.org/freeswitch-1.0.1.tar.gz">freeswitch-1.0.1.tar.gz</a></li>
<li> Nightly Snapshot of SVN Source <a class="external text" title="http://files.freeswitch.org/freeswitch-snapshot.tar.gz" rel="nofollow" href="http://files.freeswitch.org/freeswitch-snapshot.tar.gz">freeswitch-snapshot.tar.gz</a></li>
</ul>
<p><a name="FreeSWITCH_1.0.1_.22Phoenix.22_Release"></a></p>
<h2><strong><a href="http://callsolutions.org/voip-tutorial/freeswitch/freeswitch-softswitch/">FreeSWITCH</a> 1.0.1 &#8220;Phoenix&#8221; Release</strong></h2>
<p>Here is the much awaited Freeswitch 1.0.1 &#8220;Phoenix&#8221; tarball located at <a class="external free" title="http://files.freeswitch.org/" rel="nofollow" href="http://files.freeswitch.org/">http://files.freeswitch.org/</a></p>
<p>Follow the instructions below to be a proud user:</p>
<pre>wget http://files.freeswitch.org/freeswitch-1.0.1.tar.gz
tar xvfz freeswitch-1.0.1.tar.gz
cd &lt;freeswitch dir&gt;</pre>
<pre>./configure
make all install</pre>
<p><a name="Quick_and_Dirty_Install_for_the_Impatient_Ones"></a></p>
<h2>Quick and Dirty Install for the Impatient Ones</h2>
<p>If you are impatient and know Linux at least moderately well then hop over to the <a title="Quick and Dirty Install" href="http://wiki.freeswitch.org/wiki/Quick_and_Dirty_Install">quick and dirty install</a> page!</p>
<p><a name="Binary_Installation_or_ISO_CD-ROM_Installation"></a></p>
<h2>Binary Installation or ISO CD-ROM Installation</h2>
<p>The FreeSWITCH™ project maintains binary packages for a number of Linux distributions on the <a class="external text" title="http://opensuse.org" rel="nofollow" href="http://opensuse.org/">openSUSE</a> <a class="external text" title="http://build.opensuse.org" rel="nofollow" href="http://build.opensuse.org/">Build Service</a>. All external dependencies required by these FreeSWITCH™ packages are either part of the base Linux distros or available in the repository at: <a class="external free" title="http://software.opensuse.org/download/network:/telephony/" rel="nofollow" href="http://software.opensuse.org/download/network:/telephony/">http://software.opensuse.org/download/network:/telephony/</a></p>
<p>There are unofficial Ubuntu Hardy packages available at;</p>
<pre>deb <a class="external free" title="http://ppa.launchpad.net/hads/ubuntu" rel="nofollow" href="http://ppa.launchpad.net/hads/ubuntu">http://ppa.launchpad.net/hads/ubuntu</a> hardy main</pre>
<p>Another option is the <a class="external text" title="http://www.trixswitch.org" rel="nofollow" href="http://www.trixswitch.org/">trixswitch</a> ISO install package, a <a class="external text" title="http://centos.org" rel="nofollow" href="http://centos.org/">CentOS</a>-based CD-ROM image that creates a boot CD that will automatically install CentOS and FreeSWITCH™.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Warning" href="http://wiki.freeswitch.org/wiki/Image:Warning.png"><img longdesc="/wiki/Image:Warning.png" src="http://wiki.freeswitch.org/images/thumb/c/cb/Warning.png/64px-Warning.png" alt="Warning" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<hr />installing trixswitch will erase the hard drive!<br />
<hr /></div>
</div>
<p>If your preferred Linux distro and version is listed there, then we recommend you use these packages. If however you wish to build the source yourself, continue reading.</p>
<p><a name="Obtaining_the_Source_Code"></a></p>
<h2>Obtaining the Source Code</h2>
<p>Ensure that you have met the dependencies listed below. Once that is completed, you have two methods to obtain the source code. Via subversion (svn) or by downloading a tarball. Subversion provides access to the latest features and bug fixes, while the tarballs are created nightly. There are subversion clients for windows as well as Unix-like systems. This document assumes that you are using a command-line subversion client. You will want to save the source somewhere convenient, execute the following from the directory appropriate for your operating system eg c:\source, /usr/local/src or /usr/src .</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>svn checkout <a class="external free" title="http://svn.freeswitch.org/svn/freeswitch/trunk" rel="nofollow" href="http://svn.freeswitch.org/svn/freeswitch/trunk">http://svn.freeswitch.org/svn/freeswitch/trunk</a> freeswitch</pre>
</div>
</div>
<p>You can download Freeswitch 1.0.1 release source in a tarball from the following links.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre><a class="external free" title="http://files.freeswitch.org/freeswitch-1.0.1.tar.gz" rel="nofollow" href="http://files.freeswitch.org/freeswitch-1.0.1.tar.gz">http://files.freeswitch.org/freeswitch-1.0.1.tar.gz</a></pre>
</div>
</div>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre><a class="external free" title="http://files.freeswitch.org/freeswitch-1.0.1.tar.bz2" rel="nofollow" href="http://files.freeswitch.org/freeswitch-1.0.1.tar.bz2">http://files.freeswitch.org/freeswitch-1.0.1.tar.bz2</a></pre>
</div>
</div>
<p>You can download the latest tagged release source in a tarball from the following link.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre><a class="external free" title="http://files.freeswitch.org/freeswitch-1.0.latest.tar.gz" rel="nofollow" href="http://files.freeswitch.org/freeswitch-1.0.latest.tar.gz">http://files.freeswitch.org/freeswitch-1.0.latest.tar.gz</a></pre>
</div>
</div>
<p>Or you may download other tarballs from marked releases or binary releases from the following link</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre><a class="external free" title="http://files.freeswitch.org/" rel="nofollow" href="http://files.freeswitch.org/">http://files.freeswitch.org/</a></pre>
</div>
</div>
<p>If you download the tarball you will need to untar it, in Windows you may use a tool like <a class="external text" title="http://www.winzip.com" rel="nofollow" href="http://www.winzip.com/">WinZip</a> Unix-like systems come with tar preinstalled (and most modern ones with gunzip). If you are in a Unix-like system execute the following:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>tar zxvf freeswitch-snapshot.tar.gz</pre>
</div>
</div>
<p>If you are facing problems because of web proxy you could try something like this:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>svn co <a class="external free" title="http://svn.freeswitch.org/svn/freeswitch/trunk" rel="nofollow" href="http://svn.freeswitch.org/svn/freeswitch/trunk">http://svn.freeswitch.org/svn/freeswitch/trunk</a> freeswitch.trunk
 cd freeswitch.trunk
 svn propedit svn:externals . --editor-cmd=[your favorite editor here]
 remove the :81 from both externals urls
 save/exit
 svn update</pre>
</div>
</div>
<p><a name="Compiling_the_Source_Code"></a></p>
<h2>Compiling the Source Code</h2>
<p><a name="Windows"></a></p>
<h3>Windows</h3>
<ul>
<li> Open Freeswitch.sln</li>
<li> Right click the main solution node at the top of the Solution Explorer</li>
<li> Right click and select Build</li>
</ul>
<p>Note that building for Windows within a tree that has previously been built for a different platform will result in numerous errors and build failures. To resolve, delete the following generated files:</p>
<ul>
<li> libs/apr/include/apr.h</li>
<li> libs/js/config.h</li>
<li> libs/js/src/jsautocfg.h</li>
<li> libs/js/nsprpub/pr/include/prcpucfg.h</li>
<li> libs/iksemel/include/config.h</li>
<li> libs/xmlrpc/xmlrpc_config.h</li>
<li> libs/libsndfile/src/sfconfig.h; also rename libs/win32/libsndfile/config.h to libs/win32/libsndfile/sfconfig.h</li>
<li> libs/sofia-sip/libsofia-sip-ua/su/sofia-sip/su_configure.h</li>
</ul>
<p>then Rebuild the solution.</p>
<p>Building under VS 2008 may require that you disable &#8220;Enable Minimal Rebuild&#8221; in the properties pane for FreeSwitchCoreLib project if VS reports an internal compilation error in SimpleGlob.h.</p>
<p>You may also need to &#8220;Enable default libraries&#8221; in the properties pane for XML Interfaces\mod_xml_rpc if VS complains of numerous unresolved external symbols, e.g., _memset, _strcmp.</p>
<p>After following the instructions above to build for Windows, you will need to delete &#8220;libs/js/nsprpub/pr/include/prcpucfg.h&#8221; and rerun &#8220;./bootstrap.sh&#8221; before building for another platform.</p>
<p><a name="Unix-like_systems_.28Linux.2C_BSD.2C_OS_X.29"></a></p>
<h3>Unix-like systems (Linux, BSD, OS X)</h3>
<p>All commands should be executed from within the main source repository. If you downloaded a tarball you may skip this step, jumping to ./configure</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>./bootstrap.sh</pre>
</div>
</div>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Informational Tip" href="http://wiki.freeswitch.org/wiki/Image:Info.png"><img longdesc="/wiki/Image:Info.png" src="http://wiki.freeswitch.org/images/thumb/b/b3/Info.png/64px-Info.png" alt="Informational Tip" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<hr />Some Linux distributions (Debian, for example) include both autoconf2.13 and autoconf2.50 along with a script called &#8220;autoconf&#8221; that automatically selects between the two. The numbers appended to the programs show which flavor of autoconf it provides, but autoconf2.50 can actually be autoconf version 2.61. bootstrap.sh checks for the version of autoconf, but the autoconf script returns version 2.13 by default. If bootstrap.sh fails with a complaint about needing autoconf 2.59 or above and you have installed the prerequisites listed below, try:</p>
<hr /></div>
</div>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>AUTOCONF=/usr/bin/autoconf ./bootstrap.sh</pre>
</div>
</div>
<p>By default FreeSWITCH is installed in the /usr/local/freeswitch prefix. To configure:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>./configure</pre>
</div>
</div>
<p>If you don’t have root access add &#8211;prefix=~/freeswitch to the command. For configuring with ODBC support see <a title="Mod spidermonkey odbc" href="http://wiki.freeswitch.org/wiki/Mod_spidermonkey_odbc">here</a>.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>./configure --prefix=/usr/local/freeswitch</pre>
</div>
</div>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Informational Tip" href="http://wiki.freeswitch.org/wiki/Image:Info.png"><img longdesc="/wiki/Image:Info.png" src="http://wiki.freeswitch.org/images/thumb/b/b3/Info.png/64px-Info.png" alt="Informational Tip" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<hr />Not all Debian releases have /usr/bin/gcc. Instead you can find something like /usr/bin/gcc-X.Y so ./configure will fail, if it is missing. To execute without problem ./configure, try:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>ln -s /usr/bin/gcc-X.Y /usr/bin/gcc</pre>
</div>
</div>
<p>on such a release. Remember to change X.Y with the correct numbers. It will work like a charm.</p>
<hr /></div>
</div>
<p>On ubuntu hardy, configure will complain about missng curses library. libcurses5 is installed by default, so just make a symbolic link:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>ln -s /lib/libncurses.so.5 /lib/libncurses.so</pre>
</div>
</div>
<p>You should now create a modules.conf.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cp build/modules.conf.in modules.conf</pre>
</div>
</div>
<p>Edit modules.conf so that it will build the modules you desire. If you are unsure, leave this to the defaults. FreeSWITCH™ comes with a good set of modules as the default, until you become more familiar with FreeSWITCH™ it is advised that you not edit modules.conf. A # at the beginning will omit that module from being built. A list of the modules can be obtained from the <a title="Modules" href="http://wiki.freeswitch.org/wiki/Modules">Modules</a> page.</p>
<p>Once you are done configuring the build environment you need to run the following commands:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>make
make install
make sounds-install
make moh-install</pre>
</div>
</div>
<p><strong>Suse 10.3 Note:</strong> Compiling on Suse 10.3 if you get this error:</p>
<pre>libtool: link: `src/jsapi.lo' is not a valid libtool object
make[6]: *** [libjs.la] Error 1
make[5]: *** [/usr/src/freeswitch.trunk/libs/js/libjs.la] Error 2
make[4]: *** [all] Error 1
make[3]: *** [mod_spidermonkey-all] Error 1
make[2]: *** [all-recursive] Error 1</pre>
<p>Try the following procedure:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cd libs/js/
make clean
make
cd ../..
make</pre>
</div>
</div>
<p>I don&#8217;t know why it won&#8217;t build correctly on Suse 10.3 the first time around, but bkw suggested that as a workaround mid July 2008 and it seems to work for both the x86 and x86_64 platforms.<br />
There are also higher bitrate sounds available for download and installation with:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>make uhd-sounds-install
make uhd-moh-install
make hd-sounds-install
make hd-moh-install</pre>
</div>
</div>
<p><a name="FreeBSD"></a></p>
<h3>FreeBSD</h3>
<p><strong>Installing FreeBSD dependencies:</strong></p>
<p>SVN: Several Choices.</p>
<p>GNUMAKE: The GNU version of make. (will be installed automatically as a dependency to autoconf)</p>
<p>AUTOCONF: Version 2.50 or higher. Note that version 2.62 does <strong>not</strong> seem to work (at the time writing at least), <tt>./configure</tt> will fail in libsndfile if you are using that version. Version 2.61 seems to work just fine.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>pkg_add -r autoconf261</pre>
</div>
</div>
<p>GCC: Version 3.95 or higher</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>pkg_add -r gcc34</pre>
</div>
</div>
<p>WGET: Almost any version</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>pkg_add -r wget</pre>
</div>
</div>
<p>AUTOMAKE:  Version 1.70 or higher</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>pkg_add -r automake19</pre>
</div>
</div>
<p>GLIBTOOL:  Version 1.5.14 or higher</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>pkg_add -r libtool</pre>
</div>
</div>
<p>LIBNCURSES:  Almost any version</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>pkg_add -r ncurses</pre>
</div>
</div>
<p>SVN:  Subversion</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>pkg_add -r subversion</pre>
</div>
</div>
<p>Get source with wget:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cd /usr/src
/usr/local/bin/wget <a class="external free" title="http://files.freeswitch.org/freeswitch-snapshot.tar.gz" rel="nofollow" href="http://files.freeswitch.org/freeswitch-snapshot.tar.gz">http://files.freeswitch.org/freeswitch-snapshot.tar.gz</a>
tar zxvf freeswitch-snapshot.tar.gz
cd freeswitch-snapshot</pre>
</div>
</div>
<p>Note: ./bootstrap.sh has already been run for Full and Release Candidate versions.<br />
Or get source with SVN</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cd /usr/src
/usr/local/bin/svn co <a class="external free" title="http://svn.freeswitch.org/svn/freeswitch/trunk" rel="nofollow" href="http://svn.freeswitch.org/svn/freeswitch/trunk">http://svn.freeswitch.org/svn/freeswitch/trunk</a> freeswitch.trunk
cd freeswitch.trunk</pre>
</div>
</div>
<p><strong>Build Process</strong> After downloading the source with svn or with wget</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>./bootstrap.sh
./configure
gmake install
gmake samples
gmake sounds-install
gmake moh-install</pre>
</div>
</div>
<p>Make sure you are using gmake and not make, it does not build properly with make at the moment on FreeBSD.</p>
<p><strong>Run Freeswitch</strong></p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cd /usr/local/freeswitch/bin
./freeswitch</pre>
</div>
</div>
<p><a name="Cross_Compiling_for_ARM_on_Linux"></a></p>
<h3>Cross Compiling for ARM on Linux</h3>
<p>These instructions were tested on Linux 2.6.18 (Centos 5) Cross compiling Linux 2.6.21 for ARM using gcc 3.4.6</p>
<p>All commands should be executed from within the main source repository.</p>
<p>Create a modules.conf. (this can be done after configure but it is convenient to do it now)</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cp build/modules.conf.in modules.conf</pre>
</div>
</div>
<p>Decide if you want to include cpp code, if you are running on a small embedded system and don&#8217;t want to install the 2+MBytes libstdc++.so edit Makefile.am in the root of the source repository and remove all references to switch_cpp.cpp and switch_cpp.h, there is one of each. This will also disable all of FreeSWITCH&#8217;s language modules, edit modules.conf and comment out all the language modules, that is all the lines starting with &#8220;language&#8221;. You can still write C applications with the cpp disabled.</p>
<p>I was not able to get javascript working so you should comment out languages/mod_spidermonkey* from modules.conf and comment out the line &#8220;AC_CONFIG_SUBDIRS(libs/js)&#8221; in the file configure.in. If you figure out a way to get it working update this page, I wasn&#8217;t motivated as I did not intend to use it.</p>
<p>If you want to reduce the build time you can comment out other support libraries from configure.in, I only used and tested the following, it saves a lot of build time and I don&#8217;t know if the other libraries will build: libs/srtp libs/sqlite libs/libresample libs/libedit libs/pcre libs/apr libs/apr-util libs/codec/ilbc libs/sofia-sip libs/libsndfile libs/voipcodecs I already had a version of curl cross compiled so I did not use the version that comes with FreeSWITCH.<br />
Run this command next, it will create all the configure scripts</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>./bootstrap.sh</pre>
</div>
</div>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Informational Tip" href="http://wiki.freeswitch.org/wiki/Image:Info.png"><img longdesc="/wiki/Image:Info.png" src="http://wiki.freeswitch.org/images/thumb/b/b3/Info.png/64px-Info.png" alt="Informational Tip" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<hr />Some Linux distributions (Debian, for example) include both autoconf2.13 and autoconf2.50 along with a script called &#8220;autoconf&#8221; that automatically selects between the two. The numbers appended to the programs show which flavor of autoconf it provides, but autoconf2.50 can actually be autoconf version 2.61. bootstrap.sh checks for the version of autoconf, but the autoconf script returns version 2.13 by default. If bootstrap.sh fails with a complaint about needing autoconf 2.59 or above and you have installed the prerequisites listed below, try:</p>
<hr /></div>
</div>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>AUTOCONF=/usr/bin/autoconf ./bootstrap.sh</pre>
</div>
</div>
<p>Several of the packages cannot detect capabilities of the Cross Compile environment correctly so configure needs to be called with many options to get it to work correctly. Check that the options I have match your Cross Compile environment. Prior to running this the following environment variables must be set: TARGET_CC &#8211; the cross compiler HOSTCC &#8211; the host compiler CFLAGS &#8211; CFLAGS for the cross compiler CPPFLAGS &#8211; CPPFLAGS for the cross compiler LDFLAGS &#8211; LDFLAGS for the cross compiler These environment variables also need to be set to point to the appropriate tool in the cross compiler&#8217;s toolchain CC, CXX, AR, LD, GCC, AS, NM, RANLIB, STRIP, SIZE, OBJCOPY &amp; OBJDUMP. Not sure if they are all used, but this is what worked for me.</p>
<p>You will need to adjust some setting to fit your environment, set the &#8220;path&#8221; in ac_cv_path__libcurl_config and &#8211;with-curl, or remove them if you use the version that comes with FreeSWITCH. Set &#8211;with-modinstdir to point to where the FreeSWITCH modules will be on the target filesystem.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>export config_TARGET_CC="$(TARGET_CC)"; \
   export config_BUILD_CC="$(HOSTCC)"; \
   export config_TARGET_CFLAGS="$(CFLAGS)"; \
   export config_TARGET_LIBS="$(LDFLAGS)"; \
   export CC_FOR_BUILD="$(HOSTCC)"; \
   export CFLAGS_FOR_BUILD=" "; \
   export ac_cv_file__dev_zero=no; \
   export apr_cv_tcp_nodelay_with_cork=yes; \
   export ac_cv_sizeof_ssize_t=4; \
   export ac_cv_file_dbd_apr_dbd_mysql_c=yes; \
   export ac_cv_path__libcurl_config=/path/curl-config; \
   export apr_cv_mutex_recursive=yes; \
   export ac_cv_func_pthread_rwlock_init=yes; \
   export apr_cv_type_rwlock_t=yes; \
       ./configure \
       --target=$(GNU_TARGET_NAME) \
       --host=$(GNU_TARGET_NAME) \
       --build=$(GNU_HOST_NAME) \
       --with-libcurl=/path/install \
       --with-devrandom=/dev/urandom \
       --with-modinstdir=/mod \</pre>
</div>
</div>
<p>If you have not done so edit modules.conf so that it will build the modules you desire. If you are unsure, leave this to the defaults. FreeSWITCH™ comes with a good set of modules as the default, until you become more familiar with FreeSWITCH™ it is advised that you not edit modules.conf. A # at the beginning will omit that module from being built. A list of the modules can be obtained from the <a title="Modules" href="http://wiki.freeswitch.org/wiki/Modules">Modules</a> page.</p>
<p>Once you are done configuring the build environment you need to run the following command. (Your PATH must point to the cross compiler toolchain)</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>make</pre>
</div>
</div>
<p>I found little use for make install as I didn&#8217;t want the Cross Compiled version installed on the build system. You will need to copy the freeswitch binary, library and modules directly out of the build tree into where ever you need them.</p>
<p><a name="Compile_Errors.3F"></a></p>
<h2>Compile Errors?</h2>
<p>Did you get any compile errors or notice any bugs? Remember FreeSWITCH is still in development and requires contribution from everybody. If you encounter a bug please file a bug report at <a class="external free" title="http://jira.freeswitch.org" rel="nofollow" href="http://jira.freeswitch.org/">http://jira.freeswitch.org</a> or email freeswitch-dev@lists.freeswitch.org (we prefer that you use Jira so that we can track all issues). Sometimes bugs are fixed by the time you notice them, if you do encounter a bug you may wish to get a more recent version of the source code and rebuild.</p>
<p><a name="Rebuilding"></a></p>
<h2>Rebuilding</h2>
<p>After doing a &#8220;svn update&#8221; or changing some source files, you may want to clean out your build area. To ensure that your build is clean, you should execute:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>make clean modwipe</pre>
</div>
</div>
<p>Alternatively, you can simply execute &#8220;make current&#8221; which will handle the svn up, clean up, and rebuild in one step:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>make current</pre>
</div>
</div>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Warning" href="http://wiki.freeswitch.org/wiki/Image:Warning.png"><img longdesc="/wiki/Image:Warning.png" src="http://wiki.freeswitch.org/images/thumb/c/cb/Warning.png/64px-Warning.png" alt="Warning" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<hr />NOTE: make current will take a while as it <strong>completely</strong> cleans the build environment and rebuilds FreeSWITCH!<br />
<hr /></div>
</div>
<p>Also, the clean targets leave the &#8220;modules.conf&#8221; file. To see if there are any new modules you may want to execute</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>diff build/modules.conf.in modules.conf</pre>
</div>
</div>
<p>Once you are satisfied with your options, follow the build directions above. If you have enabled a module that was not previously enabled, and you want to build just that module, or rebuild one that has changed, you may execute the following:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>make mod_name-install</pre>
</div>
</div>
<p>where mod_name is the name of the module you wish to rebuild.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Informational Tip" href="http://wiki.freeswitch.org/wiki/Image:Info.png"><img longdesc="/wiki/Image:Info.png" src="http://wiki.freeswitch.org/images/thumb/b/b3/Info.png/64px-Info.png" alt="Informational Tip" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<hr />that doing a &#8220;make install&#8221; will not overwrite any existing files in $(PREFIX)/conf if there already exists a $(PREFIX)/conf/freeswitch.xml file.</p>
<hr /></div>
</div>
<p><a name="Prerequisites"></a></p>
<h2>Prerequisites</h2>
<p>In order to build FreeSWITCH™ from the source code, you will need to have several tools installed. The list varies from platform to platform, and are listed here. Some distributions come with these requirements while others require you to obtain them.</p>
<p><a name="Unix-like_systems"></a></p>
<h3>Unix-like systems</h3>
<ul>
<li> <strong>SVN</strong>: an SVN client gives you access to the current code repository. Alternatively you may select to get a nightly tarball of the source instead of using SVN.</li>
<li> <strong>GNUMAKE</strong>: The GNU version of make.</li>
<li> <strong>AUTOCONF</strong>: Version 2.50 or higher</li>
<li> <strong>AUTOMAKE</strong>: Version 1.70 or higher</li>
<li> <strong>GLIBTOOL</strong>: Version 1.5.14 or higher</li>
<li> <strong>GCC</strong>: Version 3.95 or higher</li>
<li> <strong>WGET</strong>: Almost any version</li>
<li> <strong>LIBNCURSES</strong>: Almost any version</li>
</ul>
<p><a name="Mac_OS_X"></a></p>
<h4>Mac OS X</h4>
<p>You will need to install the Apple <a class="external text" title="http://connect.apple.com" rel="nofollow" href="http://connect.apple.com/">XCode development software</a> (which requires registration, but is free).  This should be performed first.</p>
<p>One easy way to install any missing tools is by using <a class="external text" title="http://www.finkproject.org" rel="nofollow" href="http://www.finkproject.org/">Fink</a>. Fink is a MacOS X tool that allows you to download convenient, pre-compiled binaries as well as source code for over 1,700 software packages.</p>
<p>The standard &#8220;fink install&#8221; includes the 1.5.10 version of glibtool, in order to get the 1.5.14 or later version, you must tell Fink to use the unstable branch (fink.conf man page), which then leads to an automatic download and install of the latest glibtool version.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>"fink install svn-client make automake1.9 autoconf2.5 libtool14 wget"</pre>
</div>
</div>
<p>However you install these tools, you will need to make certain they&#8217;re on your PATH.</p>
<p><a name="pfSense_package_with_GUI"></a></p>
<h4>pfSense package with GUI</h4>
<p>pfSense FreeSWITCH package is available for pfSense 1.2.1. The package includes a GUI for FreeSWITCH&#8217;s configuration. The naming convention for the GUI has been designed to closely match the XML tag names and file names used in the default XML configuration as closely as possible. Install pfSense 1.2.1 based on FreeBSD7, Then go to System -&gt; Packages and click the &#8216;+&#8217; add button on the right to install FreeSWITCH from the packages list. The package is around 50mb because it includes 8khz, and 16khz sounds and music on hold. After the installation FreeSWITCH will automatically start. By default it will bind to the WAN IP.</p>
<p>To download pfSense 1.2.1 go to: <a class="external free" title="http://www.pfsense.com/" rel="nofollow" href="http://www.pfsense.com/">http://www.pfsense.com/</a></p>
<p>The pfSense FreeeSWITCH package is being used on several live systems on dedicated hardware. It also has been tested and used from VMware and the audio quality is great.</p>
<p>If you already have a firewall in place and just want to use this package as an easy FreeSWITCH install you can turn off the firewall in pfSense by going to System -&gt; Advanced -&gt; Disable Firewall then put a check mark in &#8216;Disable all packet filtering.&#8217;</p>
<p>A pfSense based FreeSWITCH appliance under development and coming soon.</p>
<p><a name="Trixswitch_ISO"></a></p>
<h4>Trixswitch ISO</h4>
<p>To work with souce, you will need to install the c++ compiler: yum install gcc-c++ and also for trixswitch v.0.4 (at least) yum install subversion yum install make</p>
<p>After the foregoing are installed, you can use the &#8220;svn&#8221; i.e. subversion system to download the source as described in the main article, above.</p>
<p>Then, you must run the following files to install automake,autoconf, and libtool:</p>
<p>fixlibtool.sh fixautomake.sh fixautoconf.sh</p>
<p>You can find these scripts in freeswitch/bin/trunk/build/</p>
<p>If you do wind up installing gcc-c++ after an aborted build, you must start back at the beginning with ./configure</p>
<p><a name="Debian_Linux"></a></p>
<h4>Debian Linux</h4>
<p><a class="external text" title="http://www.debian.org" rel="nofollow" href="http://www.debian.org/">Debian</a> uses the aptitude <em>a.k.a. “apt”</em> package manager.  This allows you to quickly and easily install the prerequisites.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>aptitude install subversion subversion-tools automake1.9 gcc-4.1 autoconf make wget libtool g++ libncurses5 libncurses5-dev</pre>
</div>
</div>
<p>For Python integration, the following will work. Ensure you update /usr/bin/python to point at /usr/bin/python2.5 afterwards and configure will find a working Python library.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>aptitude install python2.5 python2.5-dev</pre>
</div>
</div>
<p>For TLS to work (needed to use Dingaling with gmail.com), also GNUTLS is necessary.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>aptitude install libgnutls-dev</pre>
</div>
</div>
<p>The source tree includes a <strong>debian/</strong> directory, so you can build a package using standard debian tools. First, do the svn checkout into a directory named after the version in the debian/changelog (i.e. freeswitch-1.0~beta3) or move it there immediately after the svn checkout. Then you still need to start with the ./bootstrap.sh step, and once done you <strong>SHOULD NOT</strong> move the directory, as explicit paths will have been inserted into some of the Makefiles (don&#8217;t run bootstrap.sh if you are going to use the <strong>debuild</strong> tool since its not needed, it will do it for you).</p>
<p>One of the several ways of then building the package is:</p>
<ul>
<li> ensure that you have the <a class="external text" title="http://packages.debian.org/stable/devscripts" rel="nofollow" href="http://packages.debian.org/stable/devscripts">devscripts</a> package installed.</li>
</ul>
<ul>
<li> Then (optionally) change the package version to something that includes the SVN version you&#8217;re building. This can be done by running <strong>dch -i</strong> and setting the version to something like: 1.0~beta3-0~svn7245</li>
</ul>
<ul>
<li> Perhaps (if you know what you&#8217;re doing) edit the modules to build that are set near the start of <strong>debian/rules</strong></li>
</ul>
<ul>
<li> then just run <strong>debuild -i -us -uc -b</strong> (which might tell you that there are some build dependencies missing, in which case, just install them and try again)</li>
</ul>
<p>After that, you should have a several <em>.deb</em> files in the directory above the source directory which can be installed with <strong>dpkg -i <em>packagename.</em>deb</strong></p>
<p><a name="Experience_compiling_FreeSwitch_1.0.1"></a></p>
<h5>Experience compiling FreeSwitch 1.0.1</h5>
<p>Another way is to first install the &#8220;build-essential&#8221; package:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>aptitude install build-essential</pre>
</div>
</div>
<p>Then run &#8220;dpkg-buildpackage&#8221; to build all the required .deb files:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>dpkg-buildpackage</pre>
</div>
</div>
<p>(Start dpkg-buildpackage in the freeswitch source directory.) dpkg-buildpackage will complain about missing dependencies, use the list of missing packages as indicated above; for example:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>aptitude install debhelper automake1.9 autoconf libtool unixodbc-dev libasound2-dev libcurl4-openssl-dev libssl-dev libogg-dev libvorbis-dev libperl-dev libgdbm-dev libdb-dev libgnutls-dev</pre>
</div>
</div>
<p>and restart &#8220;dpkg-buildpackage&#8221; to finish building the Debian packages.</p>
<p>Recommend packages are freeswitch_1.0.1-1_i386.deb and freeswitch-lang-de_1.0.1-1_i386.deb, the packages freeswitch-spidermonkey, freeswitch-lua, freeswitch-perl, freeswitch-sounds-music-8000 and monit are suggested by the base freeswitch package. The package monit have to be installed from the standard repository.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>dpkg -i freeswitch_1.0.1-1_i386.deb freeswitch-lang-en_1.0.1-1_i386.deb freeswitch-spidermonkey_1.0.1-1_i386.deb freeswitch-lua_1.0.1-1_i386.deb freeswitch-perl_1.0.1-1_i386.deb freeswitch-sounds-music-8000_1.0.1-1_i386.deb</pre>
</div>
</div>
<p>Installing monit with aptitude:</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>aptitude install monit</pre>
</div>
</div>
<p>Monit is used to monitor the fs process and restart it if it dies, but it won&#8217;t start unless it is configured. First you have to activate it in &#8220;/etc/default/monit&#8221; with setting the value startup to 1. The second step is to uncomment &#8220;set daemon 120&#8243; in /etc/monit/monitrc and add &#8220;include /etc/monit/freeswitch.monitrc&#8221; in the end of the file. After all you should be able to start monit with the provided init-script.</p>
<p>Note: Once you install the packages (using &#8220;dpkg -i freeswitch_1.0.1-1_i386.deb&#8221;, etc.), the installation is non-standard since freeswitch will end up in /opt/freeswitch. The configuration files will be in /opt/freeswitch/conf.</p>
<p><a name="For_a_Novice.2C_Another_Debian_Way_1.0.2"></a></p>
<h5>For a Novice, Another Debian Way 1.0.2</h5>
<p>I also found this guy&#8217;s instructions rather very simple for a novice  courtsey of <a class="external free" title="http://madhawa.com/?p=10" rel="nofollow" href="http://madhawa.com/?p=10">http://madhawa.com/?p=10</a></p>
<p><a name="CentOS"></a></p>
<h4>CentOS</h4>
<p><a class="external text" title="http://www.centos.org" rel="nofollow" href="http://www.centos.org/">CentOS</a> uses yum as a package manager; the following installs the required prerequisites on a base install of CentOS 5.0 and 5.1.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>yum install subversion autoconf automake libtool gcc-c++ ncurses-devel make</pre>
</div>
</div>
<p><a name="Fedora"></a></p>
<h4>Fedora</h4>
<p><a class="external text" title="http://www.fedoraproject.org" rel="nofollow" href="http://www.fedoraproject.org/">Fedora</a> also uses yum as a package manager; the following installs the required prerequisites on a base install of Fedora Core 8 and 9.</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>yum install subversion autoconf automake libtool gcc-c++ ncurses-devel make</pre>
</div>
</div>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Informational Tip" href="http://wiki.freeswitch.org/wiki/Image:Info.png"><img longdesc="/wiki/Image:Info.png" src="http://wiki.freeswitch.org/images/thumb/b/b3/Info.png/64px-Info.png" alt="Informational Tip" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<hr />Note: if you are building <a title="Mod xml curl" href="http://wiki.freeswitch.org/wiki/Mod_xml_curl">mod_xml_curl</a>, be aware that the latest Fedora releases have a broken libcurl shipped with yum and you will end up with an unloadable mod_xml_curl module due to missing symbols. You will probably need to configure FreeSWITCH using the &#8211;without-libcurl switch, this will make the build process to download and compile its own libcurl version, and then link the mod_xml_curl module with that.</p>
<hr /></div>
</div>
<p><a name="Gentoo_Linux"></a></p>
<h4>Gentoo Linux</h4>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Warning" href="http://wiki.freeswitch.org/wiki/Image:Warning.png"><img longdesc="/wiki/Image:Warning.png" src="http://wiki.freeswitch.org/images/thumb/c/cb/Warning.png/64px-Warning.png" alt="Warning" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<hr /><strong>The FreeSWITCH ebuild has been removed from the Gentoo voip overlay, please use one of the supported binary-only distributions (or the manual installation method, if it really has to be Gentoo).</strong><br />
<hr /></div>
</div>
<div style="text-align: center;">Or use a local overlay, I tested the following ebuilds and they work for me. &#8211;<a class="new" title="User:Cjc" href="http://wiki.freeswitch.org/index.php?title=User:Cjc&amp;action=edit">Cjc</a> 04:48, 6 September 2008 (EDT)<br />
There are some <a class="external text" title="http://oss.axsentis.de/gitweb/?p=axsentis-overlay.git;a=tree;f=net-misc;hb=HEAD" rel="nofollow" href="http://oss.axsentis.de/gitweb/?p=axsentis-overlay.git;a=tree;f=net-misc;hb=HEAD">ebuilds available from axsentis.de</a>.<br />
See Gentoo bug <a class="external text" title="http://bugs.gentoo.org/show_bug.cgi?id=150527" rel="nofollow" href="http://bugs.gentoo.org/show_bug.cgi?id=150527">#150527</a> and <a class="external text" title="http://bugs.gentoo.org/show_bug.cgi?id=233174" rel="nofollow" href="http://bugs.gentoo.org/show_bug.cgi?id=233174">#233174</a> for more information.</div>
<p><a name="Solaris"></a></p>
<h4>Solaris</h4>
<p><a class="external text" title="http://www.sun.com" rel="nofollow" href="http://www.sun.com/">Solaris</a> use the <a class="external text" title="http://opensolaris.org/os/project/jds/contributing/building/#jds-cbe" rel="nofollow" href="http://opensolaris.org/os/project/jds/contributing/building/#jds-cbe">jds-cbe</a> environment or fix path to working tr (as per <a class="external text" title="http://jira.freeswitch.org/browse/FSBUILD-30" rel="nofollow" href="http://jira.freeswitch.org/browse/FSBUILD-30">FSBUILD-30</a>).</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>export PATH=/usr/xpg4/bin:$PATH</pre>
</div>
</div>
<ul>
<li> Use <a class="external text" title="http://developers.sun.com/sunstudio/index.jsp" rel="nofollow" href="http://developers.sun.com/sunstudio/index.jsp">SunStudio 12</a></li>
<li> Install <a class="external text" title="http://pkgbuild.sourceforge.net/spec-files-extra/" rel="nofollow" href="http://pkgbuild.sourceforge.net/spec-files-extra/">SFE (Spec Files Extra)</a></li>
<li> Add SFEunixODBC to your Solaris installation</li>
</ul>
<p><a name="OpenSolaris_Nevada"></a></p>
<h4>OpenSolaris Nevada</h4>
<p>This is the distribution from the opensolaris.org guys, do not mix that up with os200805 which is the new OpenSolaris based distro from SUN.</p>
<ul>
<li> Select your development user. I will assume for the time being that the user is called freeswitch.</li>
<li> Create the target directory for freeswitch</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>mkdir /opt/freeswitch; chown freeswitch /opt/freeswitch</pre>
</div>
</div>
<ul>
<li> Give your build and development user software installation rights</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>usermod -P "Software Installation" freeswitch</pre>
</div>
</div>
<ul>
<li> log out and log back in as the freeswitch user (so that the new permissions become active)</li>
</ul>
<ul>
<li> download and unpack the new jds-cbe beta package:</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>/usr/sfw/bin/wget <a class="external free" title="http://dlc.sun.com/osol/jds/downloads/cbe/test/desktop-cbe-1.7.0-rc1-x86.tar.bz2" rel="nofollow" href="http://dlc.sun.com/osol/jds/downloads/cbe/test/desktop-cbe-1.7.0-rc1-x86.tar.bz2">http://dlc.sun.com/osol/jds/downloads/cbe/test/desktop-cbe-1.7.0-rc1-x86.tar.bz2</a>
gtar xvfz desktop-cbe-1.7.0-rc1-x86.tar.bz2"</pre>
</div>
</div>
<p>Install JDS-CBE</p>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cd desktop-cbe-1.7.0-rc1
./cbe-install</pre>
</div>
</div>
<ul>
<li> leave everything as default. Select the SunStudio compiler as your default compiler.</li>
</ul>
<ul>
<li> Download the spec-files-extra repository into a subdirectory called SFE</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>svn co <a class="external free" title="https://pkgbuild.svn.sourceforge.net/svnroot/pkgbuild/spec-files-extra/trunk" rel="nofollow" href="https://pkgbuild.svn.sourceforge.net/svnroot/pkgbuild/spec-files-extra/trunk">https://pkgbuild.svn.sourceforge.net/svnroot/pkgbuild/spec-files-extra/trunk</a> SFE</pre>
</div>
</div>
<ul>
<li> Load the jds-cbe environment</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>. /opt/dtbld/bin/env.sh</pre>
</div>
</div>
<ul>
<li> Compile and install SFEunixodbc</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cd SFE
pkgtool --download build SFEunixodbc.spec</pre>
</div>
</div>
<ul>
<li> Download freeswitch trunk</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>svn co <a class="external free" title="http://svn.freeswitch.org/svn/freeswitch/trunk" rel="nofollow" href="http://svn.freeswitch.org/svn/freeswitch/trunk">http://svn.freeswitch.org/svn/freeswitch/trunk</a> fstrunk</pre>
</div>
</div>
<ul>
<li> Prepare the freeswitch sources</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>cd fstrunk; ./bootstrap.sh</pre>
</div>
</div>
<ul>
<li> and edit the modules.conf file to select which modules you would like to have installed</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>vim modules.conf</pre>
</div>
</div>
<ul>
<li> Configure freeswitch sources for 64bit</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>CFLAGS=-m64 CXXYFLAGS=-m64 LDFLAGS=-m64 ./configure --prefix=/opt/freeswitch --enable-core-odbc-support \
--enable-core-libedit-support --enable-64 --with-openssl=/usr/sfw</pre>
</div>
</div>
<ul>
<li> or for 32bit</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>CFLAGS=-m32 CXXYFLAGS=-m32 LDFLAGS=-m32 ./configure --prefix=/opt/freeswitch --enable-core-odbc-support \
--enable-core-libedit-support --with-openssl=/usr/sfw</pre>
</div>
</div>
<ul>
<li> Drink a cup of coffee</li>
</ul>
<ul>
<li> run make :)</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>gmake</pre>
</div>
</div>
<ul>
<li> Install freeswitch into its target directory</li>
</ul>
<div style="float: left; width: 100%;">
<div class="floatleft"><span><a class="image" title="Type This" href="http://wiki.freeswitch.org/wiki/Image:Keyboard.png"><img longdesc="/wiki/Image:Keyboard.png" src="http://wiki.freeswitch.org/images/thumb/a/a9/Keyboard.png/64px-Keyboard.png" alt="Type This" width="64" height="64" /></a></span></div>
<div style="float: left; width: 90%;">
<pre>gmake install</pre>
</div>
</div>
<p>You are done :)</p>
<div class="editsection" style="float: right; margin-left: 5px;">[<a title="Edit section: Windows" href="http://wiki.freeswitch.org/index.php?title=Download_%26_Installation_Guide&amp;action=edit&amp;section=26">edit</a>]</div>
<p><a name="Windows_2"></a></p>
<h3>Windows</h3>
<div class="editsection" style="float: right; margin-left: 5px;">[<a title="Edit section: Precompiled Binaries" href="http://wiki.freeswitch.org/index.php?title=Download_%26_Installation_Guide&amp;action=edit&amp;section=27">edit</a>]</div>
<p><a name="Precompiled_Binaries"></a></p>
<h4>Precompiled Binaries</h4>
<p>For those that do not want to compile, I&#8217;ve put together an MSI install file for Windows (currently SVN 10175 &#8211; 10/27/08). Direct link: <a class="external free" title="http://files.freeswitch.org/freeswitch.msi" rel="nofollow" href="http://files.freeswitch.org/freeswitch.msi">http://files.freeswitch.org/freeswitch.msi</a></p>
<p>This build includes the standard modules and libraries. In addition:</p>
<p><a class="external text" title="http://wiki.freeswitch.org/wiki/Mod_cepstral" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Mod_cepstral">mod_cepstral</a> (if you plan to enable this module you&#8217;ll need the Windows release of Cepstral installed).<br />
<a class="external text" title="http://wiki.freeswitch.org/wiki/Mod_flite" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Mod_flite">mod_flite</a><br />
<a class="external text" title="http://wiki.freeswitch.org/wiki/Mod_pocketsphinx" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Mod_pocketsphinx">mod_pocketsphinx</a><br />
<a class="external text" title="http://wiki.freeswitch.org/wiki/Mod_shout" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Mod_shout">mod_shout</a><br />
8khz sound files</p>
<p>Before starting up FreeSwitch, make sure you have the Microsoft VC++ 2008 redistributable library installed:</p>
<pre><a class="external free" title="http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&amp;displaylang=en" rel="nofollow" href="http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&amp;displaylang=en</a>   (free download)</pre>
<p>If you let the MSI install under the default path, it&#8217;ll place everything in &#8220;C:\Program Files\FreeSWITCH&#8221;. The main executable is under this folder, the MSI will setup a program group with a shortcut to this exe.</p>
<p>Also, this build has the mod_cepstral module compiled so if you have the Windows version of Cepstral installed you&#8217;ll want to make sure you enable this module (enable it from modules.conf.xml in c:\program files\freeswitch\conf\autoload_configs). If you&#8217;re coming from the Asterisk world think of the conf folder as /etc/asterisk. Since most of the config files are built from *nix machines, you&#8217;ll probably need Microsoft Word to edit them.</p>
<p>You&#8217;ll note there&#8217;s a large repository of scripts under the scripts folder. All of these are examples from the src. You might be interested in checking out the wiki page I wrote up on <a class="external text" title="http://wiki.freeswitch.org/wiki/Mod_rss" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Mod_rss">mod_rss</a>. It makes great use of mod_cepstral for TTS tranlations of RSS news feeds. You can replace all the references to /opt/freeswitch on that page to &#8220;C:\Program Files\FreeSWITCH&#8221;.</p>
<div class="editsection" style="float: right; margin-left: 5px;">[<a title="Edit section: Windows quick start" href="http://wiki.freeswitch.org/index.php?title=Download_%26_Installation_Guide&amp;action=edit&amp;section=28">edit</a>]</div>
<p><a name="Windows_quick_start"></a></p>
<h4>Windows quick start</h4>
<p>It would probably help to know some basic console commands! Once you launch the FreeSWITCH exe you will be placed in the console. From here:</p>
<p>&#8220;help&#8221; displays all available console commands.</p>
<p>&#8220;sofia status&#8221; will display all sip profiles, gateways and their status.</p>
<p>You can drill down and say &#8220;sofia status profile internal&#8221; to list the internal profile and all registered internal endpoints.</p>
<p>&#8220;show channels&#8221; will display all active sessions.</p>
<p>&#8220;status&#8221; gives you uptime information.</p>
<p>&#8220;version&#8221; will display version information.</p>
<p>&#8220;shutdown&#8221; will bring down the switch. You cannot exit from the initial console that starts the switch without shutting it down. There is a socket based perl script in scripts/socket folder (fsconsole.pl) which will allow you to remotely connect to the console.</p>
<p>&#8220;load &lt;module&gt;&#8221; and &#8220;unload &lt;module&#8221; work similar to the Asterisk equivalent.</p>
<p>&#8220;reloadxml&#8221; is useful when editing your dialplan and can&#8217;t afford to restart the server. Just be aware of some restrictions: <a class="external free" title="http://wiki.freeswitch.org/wiki/FreeSwitch_FAQ#Q:_Does_reloadxml_reload_all_xml_files.3F" rel="nofollow" href="http://wiki.freeswitch.org/wiki/FreeSwitch_FAQ#Q:_Does_reloadxml_reload_all_xml_files.3F">http://wiki.freeswitch.org/wiki/FreeSwitch_FAQ#Q:_Does_reloadxml_reload_all_xml_files.3F</a></p>
<p>All of the console commands are covered on this wiki page: <a class="external free" title="http://wiki.freeswitch.org/wiki/Mod_commands#Core_Commands" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Mod_commands#Core_Commands">http://wiki.freeswitch.org/wiki/Mod_commands#Core_Commands</a></p>
<p>Finally, the Getting Started wiki page has some useful extensions to try out <a class="external free" title="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Some_stuff_to_try_out.21" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Some_stuff_to_try_out.21">http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Some_stuff_to_try_out.21</a> The default configuration includes 20 endpoint definitions in <em>prefix</em>\conf\directory\default (1000-1019).xml. More information on endpoints: <a class="external free" title="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#User_Configuration" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#User_Configuration">http://wiki.freeswitch.org/wiki/Getting_Started_Guide#User_Configuration</a></p>
<p>See here to configure a trunk (gateway) &#8211; <a class="external free" title="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Sample_Gateway_Configuration" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Sample_Gateway_Configuration">http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Sample_Gateway_Configuration</a></p>
<p>And to dial out via your newly created gateway &#8211; <a class="external free" title="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Dialing_out_via_Gateway" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Dialing_out_via_Gateway">http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Dialing_out_via_Gateway</a></p>
<p>Finally, receiving inbound calls from your gateway &#8211; <a class="external free" title="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Receiving_an_inbound_call_from_a_Gateway" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Receiving_an_inbound_call_from_a_Gateway">http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Receiving_an_inbound_call_from_a_Gateway</a></p>
<div class="editsection" style="float: right; margin-left: 5px;">[<a title="Edit section: Voicemail via email" href="http://wiki.freeswitch.org/index.php?title=Download_%26_Installation_Guide&amp;action=edit&amp;section=29">edit</a>]</div>
<p><a name="Voicemail_via_email"></a></p>
<h4>Voicemail via email</h4>
<p>A recent svn release of FreeSWITCH includes sending voicemail via SMTP from Windows (this was not possible before). See this page for more information: <a class="external free" title="http://wiki.freeswitch.org/wiki/Windows_email" rel="nofollow" href="http://wiki.freeswitch.org/wiki/Windows_email">http://wiki.freeswitch.org/wiki/Windows_email</a></p>
<p><a name="Building_from_source"></a></p>
<h4>Building from source</h4>
<p>To compile FreeSWITCH on Windows, you will need Visual C++ 2005 and if you are installing the Express Edition, the platform SDK (see these instructions for more details).</p>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/freeswitch-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
