Posts

How to setup Asterisk 1.8.7.1 on CentOS 6 i386 with FreePBX, Hylafax, Avantfax, IAXModem, and A2billing

 Asterisk 1.8.7.1, FreePBX 2.8.1, HylaFAX 6.0.5, AvantFAX 3.3.3, IAXModem 1.2.0, A2Billing 1.9.4 If you have any questions or comments please leave a comment or contact me directly email jeffkingsley007 [at]gmail dot com  or call 256782280084 DEMO LINES A2Billing Working Example, US Calling ONLY Access# 413-206-9861 PIN# 4320101553 IAXModem Fax over IP, Receive Line Only Fax# 413-455-0155 Asterisk Incoming Line, Live Line Access# 413-285-3050 #CentOS 6 Asterisk 1.8.8.0 PHP 5.3.2 http://mirror.centos.org/centos-6/6/os/i386 External Links icon #Install New Kernel < 4GB Ram yum -y install kernel kernel-devel kernel-headers system-config* Install New Kernel > 4GB Ram yum -y install kernel-PAE kernel-PAE-devel system-config* reboot #Firewall & Network Settings setup #Install Asterisk Dependencies yum install -y make nano mgetty mgetty-voice cups-lpd perl-DBD-Pg subversion wget python python-devel glibc glibc-devel gcc gcc-c++ flex screen s...

How to install Asterisk and A2billing on Ubuntu Server 12.04LTS

This installation was carried out on Ubuntu 12.04 LTS on 64bit We need to upgrade apt-get #apt-get upgrade #apt-get update Configure your timezone: #dpkg-reconfigure tzdata Install some pre-requisites: #apt-get install libapache2-mod-php5 php5 php5-common #apt-get install php5-cli php5-mysql mysql-server apache2 php5-gd (note the password for mysql, we will need it later) #apt-get install php5-mcrypt #apt-get install build-essential wget libssl-dev libncurses5-dev libnewt-dev  libxml2-dev linux-headers-$(uname -r) libsqlite3-dev uuid-dev Add jansson and install Asterisk 12.1.1 #apt-get install python-software-properties -y #apt-key adv --keyserver pgp.mit.edu --recv-keys 175E41DF #http://www.digip.org/jansson/releases/jansson-2.4.tar.gz #tar -zxf jansson-2.4.tar.gz #cd jansson-2.4/ #./configure --prefix=/usr/ && make clean && make && make install asterisk-1.8.27.0-rc1.tar.gz #add-apt-repository "deb http://packages.asterisk.o...

Easy way to Build FTP server in Ubuntu Server 12.04

vsftp change root directory FTP (File Transfer Protocol) is one way we communicate with remote computers. On this occasion I would share a tutorial on how to build an  FTP server  ubuntu server LTS 12.04, Acctualy,there are many applications that can be used in building  FTP server , but on this tutorial  how to build an  FTP server  on  ubuntu server  LTS 12.04  I will use an application called vsftpd (Very Secure FTP Daemon). sftpd uses the GPL license and can be used on all UNIX family, including in Linux. Other benefits of vstpd more “secure” (compared with) the other FTP server application, faster, and more stable. Let’s Start It, Now login to server with ssh. then install vsftpd with command below sudo apt-get install vsftpd After vsftpd installation is complete. actually, you no longer need to configure the vsftpd, because the default configuration is very secure and can be directly used. But if you wan...
Image
Installation System Requirements: 2 GB of hard disk space 128M or more memory, OpenVZ recommended 192MB or more (small memory Do not use the 64-bit systems) Linux is case-sensitive, enter the command Note! Installation steps: 1, landing putty or similar SSH tools; After landing run: screen-S lnmp If you are prompted to screen command does not exist can be executed: yum install screen or apt-get install screen installation, detailed screen tutorial click here . 2 Download LNMP a key installation package: You can choose to use the download version (recommended foreign or American VPS) or the full version (recommended domestic VPS use) For the download version execute the command: wget-c http://soft.vpser.net/lnmp/lnmp0.9.tar.gz For the full version execute the command: wget-c http://soft.vpser.net/lnmp/lnmp0.9-full.tar.gz of After the download is complete LNMP a key installation package will be downloaded to your server or VPS (ge...
Image
How to set-up a VPS with nginx, PHP, mysql, phpMyAdmin, mail server, FTP, Webmin, Memcached and EAccelerator and then install WordPress Here I explain how to set up a VPS with the features above and install WordPress on Ubuntu 10.04 LTS. It is always best to use a LTS (Long Term Support) version of Ubuntu since then you get security updates for 5 years, instead of 18 months. I got my VPS from IntoVPS , with 1024 MB of burstable RAM (512 MB guaranteed), 30GB disk space and 500GB monthly traffic for 10$/month. The steps I take here worked for me on this server, but if you have any problems either leave a comment or post in the forum. 1. Initial setup First we have to get the server ready. I am assuming you have already logged in using PuTTY as root. First update the package repositary listing: apt-get update Now install any updates: apt-get upgrade Just in case: apt-get install wget make Now were ready to install nginx. 2. NGINX nginx (pr...