mysqldump – MySQL Database Backup and restore program

MySQL Cluster

What is mysqldump The mysqldump client is a utility that performs logical backups, producing a set of SQL statements that can be run to reproduce the original schema objects, table data, or both. It dumps one or more MySQL database for backup or transfer to another SQL server. The mysqldump command can also generate output in CSV, other delimited text, … Read more

NiceDial : Missed Call Marketing Plateform

nicidial_wall

About NiceDial: NiceDial is Missed Call Marketing company who is dedicated to innovate product based on Missed call. Missed call is used in many different different application like Lead generation, Voting, Feedback, Number verification, Missed Call routing, Missed Call SMS and many more.  Why NiceDial: Unlike many service providers who are rigid, inflexible, unhelpful and … Read more

Unrecognized prilocaldialplan TON modifier: D – Asterisk issue

Asterisk dial command

Problem:  Unrecognized prilocaldialplan TON modifier: D Solution: Set caller id into dialplan. Dialplan Example: exten => _55550XXXXXXXXXX,1,set(CALLERID(num)=4425100) exten => _55550XXXXXXXXXX,n,Set(currenttime=${STRFTIME(${EPOCH},,%Y-%m-%d %H:%M:%S)}) exten => _55550XXXXXXXXXX,n,Set(CALLFILENAME=${CHANNEL}-${CDR(accountcode)}-${CALLERID(num)}-${EXTEN}-${STRFTIME(${EPOCH},,%Y%m%d-%H%M%S)}) exten => _55550XXXXXXXXXX,n,MixMonitor(${CALLFILENAME}.wav) exten => _55550XXXXXXXXXX,n,Dial(DAHDI/g0/0${EXTEN:5},,Ttg) exten => _55550XXXXXXXXXX,n,NoOp( Dial Status: ${DIALSTATUS}) exten => _55550XXXXXXXXXX,n,Hungup()

Python Installation

python tutorial

Check if already installed? Open a terminal window and type “python” to find out if it is already installed and which version is installed. python –version Download Python The most up-to-date and current source code, binaries, documentation, news, etc., is available on the official website of Python: Python Official Website : http://www.python.org/ You can download Python … Read more

lscpu : Linux CPU architecture information

lscpu

The lscpu command is CPU architecture information helper and can be found under Fedora Linux / RHEL / CentOS v6+ / Debian Linux v6+ and many other latest distro includes this command. Warning : lscput command has bug and sometimes in Xen Dom0 kernel reports wrong data. So please use /proc/cpuinfo for verification purpose. # lscpu … Read more

How to get processer (CPU) details in Linux

cpuinfo

Use the command # cat /proc/cpuinfo  to see the processor details in linux. processor — Provides each processor with an identifying number. On systems that have one processor, only a 0 is present. cpu family — Authoritatively identifies the type of processor in the system. For an Intel-based system, place the number in front of “86” to determine the value. … Read more

Python : An Overview

python tutorial

A sample Program #!/usr/bin/python print “Hello, Python!”; Outupt: Executing the program…. $python2.7 main.py Hello, Python! What is Python? Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language. It was created by Guido van Rossum during 1985- 1990. Like Perl, Python source code is also available under the GNU General Public License (GPL). Python … Read more