Category Archives: Unix

Enable SSH (Secure Shell) in Ubuntu 14.04 ( Trusty Tahr)

Enable SSH (Secure Shell) in Ubuntu 14.04 ( Trusty Tahr) -How-to-Guide This tutorial shows you how to enable SSH in Ubuntu 14.04 ( Trusty Tahr) you may already know, SSH is a secure communication protocol that lets you remotely access to our Linux and Unix based systems. SSH is a replacement for Telnet.Telnet is very […]

Install Asterisk 1.8 from source on Ubuntu 12.04

Install Asterisk 1.8 from source on Ubuntu 12.04 New install updating the patches apt-get update apt-get upgrade Verifying kernel headers are installed apt-get install linux-headers-`uname -r` Downloding a packages for building asterisk, dependencies, compilers, etc Compiler apt-get install build-essential sudo apt-get install libssl-dev Required Dev file apt-get install libxml2-dev Termcap dev files apt-get install libncurses5-dev […]

Asterisk 11.0.0-beta1 Now Available

  The Asterisk Development Team is pleased to announce the first beta release of Asterisk 11.0.0 (the first Long Term Support release since 1.8). This release is available for immediate download at http://downloads.asterisk.org/pub/telephony/asterisk/releases All interested users of Asterisk are encouraged to participate in the Asterisk 11 testing process. Please report any issues found to the […]

How To Install Restricted Extras In Ubuntu 12.04 LTS

How To Install Restricted Extras In Ubuntu 12.04 LTS Installing this package will pull in support for MP3 playback and decoding, support for various other audio formats (gstreamer plugins), Microsoft fonts, Java runtime environment, Flash plugin, LAME (to create compressed audio files), and DVD playback. sudo apt-get install ubuntu-restricted-extras

How to install VSFTPD with CentOS

Install VSFTPD with CentOS $yum install vsftpd Turn on vsftpd auto start with $chkconfig –level 235 vsftpd on Open vsftpd.conf $nano /etc/vsftpd/vsftpd.conf Now Add all this lines below the vsftpd.conf anonymous_enable=NO chroot_local_user=YES listen_port=XXXXX ( Port should be above 1024 ) Restart vsftpd with service vsftpd restart. $service vsftpd restart