-
Recent Posts
What I'm Doing...
- I'm using Evolution mail client in ubuntu http://bit.ly/4bobBT its hve cool feature like google contacts & calender sync http://bit.ly/curz6 13 hrs ago
- Gmail send later chrome and firefox extensions http://bit.ly/dajupV 1 week ago
- Is there any #RTMFP implementation in open source #Flash media server like #Red5 ..? 3 weeks ago
- A presentation about P2P communication over #RTMFP using #Adobe #FMS http://bit.ly/bjpL5R 3 weeks ago
- Good site for find Linux alternatives [easy to search then http://bit.ly/9QVYCA ] try this http://bit.ly/c3eepy 2010-08-05
- More updates...
Posting tweet...
Recent Comments
- jaydoc on Tamil FM radio for ubuntu
- cpsingh on Offline dictionary for ubuntu 10.04
- wordman on Offline dictionary for ubuntu 10.04
- elanchezhiyank on Offline dictionary for ubuntu 10.04
- umakanth on About
Tags
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
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
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
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
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
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
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
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