Posts

Showing posts from January, 2014

Hardware Requirements For VICIDIAL/GoAutoDial

Minimum Hardware requirements for VICIDIAL "There may be a suggestion, but not a requirement." VICIDIAL/GoAutoDial runs on a Pendtium 4 machine and also on a Xeon Quad Processor based System. Depending on the size of your ViciDial Setup you need a different amount of servers with different setups. Typical setups would be 100 seat : Database Server x 1 [The more powerful , the better] Xeon Quad Core  32 GB DDR3-1600 ECC SDRAM 4 x 600 GB SAS HDD (15K RPM) SAS 4 Port RAID Card Dialer Server x 3 Xeon Quad Core 8 GB DDR3-1600 ECC SDRAM 1 TB SATA HDD (7200 RPM) Web Server x 1 Xeon Quad Core 16 GB DDR3-1600 ECC SDRAM 1 TB SATA HDD (7200 RPM)

How to Install Asterisk 11 on Ubuntu 12.04 LTS

For this install I am using Asterisk 11.0.1 and will be compiling from source on Ubuntu 12.04.1. Before you begin the install process you will want to be sure that your server OS is up to date. When the update completes the server will reboot. apt-get update && apt-get upgrade -y && reboot Next you will want to resolve basic dependencies. ( More information on Asterisk dependencies .) apt-get install build-essential wget libssl-dev libncurses5-dev libnewt-dev libxml2-dev linux-headers-$(uname -r) libsqlite3-dev uuid-dev Download the source tarballs. These commands will get the current version of DAHDI, libpri and Asterisk. cd /usr/src/ wget http://downloads.asterisk.org/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz wget http://downloads.asterisk.org/pub/telephony/libpri/libpri-1.4-current.tar.gz wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-11-current.tar.gz Extract the files from the tarballs tar zxvf dahdi