Category Archives: Linux

Why i am moving to Linux in my home pc

Why i am moving to Linux in my home pc For the past 3 years i have used pirated windows xp os in my home pc. But i have faced lot of problems like system very slow, Blue screen and … Continue reading

Posted in Linux | Tagged , , , | Leave a comment

Adding Remote JMX for Red5

How to Add JMX for Red5 Server Here we are going to know, How to managing red5 server remotely using JMX. what is red5 server ..? Red5 is an Open Source Flash Server written in Java that supports: Streaming Video … Continue reading

Posted in Flash, Linux, Programming | Tagged , , , | 3 Comments

How to create and use private / public keys

Hi all, Here the document for how to create private and public keys for login. This is more helpful others can login to your machine without disclose the password. How to create private key for my machine..? Go to /home/root/.ssh … Continue reading

Posted in Linux, Programming | Tagged , | Leave a comment

CentOS Networking FAQ

How to set static ip..? [root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 ONBOOT=yes BOOTPROTO=static IPADDR=192.168.1.13 NETMASK=255.255.255.0 TYPE=Ethernet [root@localhost ~]# Edit your/etc/sysconfig/network-scripts/ifcfg-eth0 file like this. Then restart your network. How to restart the network..? The command for stop the network is “/etc/init.d/network stop” … Continue reading

Posted in Linux, Uncategorized | Tagged , | Leave a comment

How to add Return-path in php mail

Here is the code for add Return-path in php mail programmatically. $today = date(“F j\\t\h Y, g:i a”); $name = ‘Yourname’; $from = ‘frommail@example.com’; $to = ‘tomail@example.com’; $cc = ‘ccmail@example.com’; $bcc = ‘bccmail@example.com’; $subject = ‘Example Subject’; // To send … Continue reading

Posted in Linux, Programming | Tagged , | Leave a comment

How to Add FreeSwitch Service

Hello all, Here how to start freeswitch when machine boots. #!/bin/bash # # freeswitch This starts and stops the freeswitch # # chkconfig: 345 60 50 # chkconfig: – 60 50 # description: freeswitch.sh – startup script for freeswitch on … Continue reading

Posted in Flash, Linux | Tagged , | 1 Comment

Server Virtualization

Server Virtualization What is Virtualization..? Virtualization is a technique of partitioning or dividing the resources of a single server into multiple segregated execution environments. Each of these environments runs independently of the other, thus allowing multiple operating systems to run … Continue reading

Posted in Linux, Virtualization | Tagged , , | Leave a comment

How to set the static ip address in ubuntu..?

edit your /etc/network/interfaces file to auto eth0 iface eth0 inet static address 192.168.0.50 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.1 after that rebooting your network by excecuting the below command… [root@localhost ~]# /etc/init.d/networking restart

Posted in Linux | Tagged , , | Leave a comment