Monday, 12 May 2014

google adsence-how to approve your adsence account

How to approve your google adsence account

just follow these steps...

and get approved :-)


Wednesday, 25 December 2013

How to unblock someone on Whatsapp

A Quick Tutorial About Unblocking Contacts on Whatsapp App 
Tutorial Performed On Android OS.


How do I block or unblock a contact?

You can stop receiving WhatsApp messages from certain contacts by blocking them. Not sure what happens when you block someone?

Learn more here.

To block a contact on your Android phone:

    Open WhatsApp and go to your Chats screen.

    Tap the [Menu Button] > Settings > Contacts > Blocked Contacts.

        This page displays all contacts that you have blocked.
    Tap the Add blocked contacts icon in the top right.

If you would like to unblock someone, simply long-press the contact in the Blocked Contacts screen

and select [Unblock].

To block an unknown contact, simply open the chat conversation, scroll to the top, then tap [Block].



Sunday, 1 September 2013

What is Java?

Java is a high-level object-oriented programming language developed by the sun Microsystems.Through it is associated with the World Wide Web but it is a older then the origin of web.It was only developed keeping in mind  the consumer electronics and communication equipments.It came into existence as a part of web application,web services and a platform independent programming language in the 1990s.


 Java us influenced by C,C++,Smalltalk and borrow some advanced features from some other languages.The company promoted this software product with a slogan named"Write Once Run Anywhere"
that means it can develop and run on any device equipped with java virtual machine(JVM).This language is applicable in all kinds of operating systems including Linux,Windows,Solaris, and HP-UX etc.

Subscribe Us On YouTube

Tuesday, 27 August 2013

What Is Android?

Android is an open source and Linux based Operating System for mobile devices such as smartphones and tablet computer.Android was developed by the Open handset alliance,led by Google,and other companies.

Android offers a unified approach to application development for mobile devices which means developers need only develop for android,and their application should be able to run on different devices powered by Android.

The first beta version of the Android Software Development kit(SDK) was released by Google in 2007 where as the first commercial version,Android 1.0, was released in September 2008.

On June 27 ,2012 at the Google I/O Conference,Google announced the next Android version, 4.1 Jelly Bean. Jelly Bean is an incremental update,with the primary aim of improving the user interface, both in terms of functionality and performance.

Here How to know about your Android version…

Technorati Tags: ,,,

Monday, 22 April 2013

What is LINUX ?







There are lots of reasons for Linux popularity, but the main one is that it gives you a huge amount of software to work with completely free of charge. If you want to render 3D models, Linux has a program for it. If you want to mix music or edit a podcast, Linux has a program for it. If you want to edit Microsoft Office documents, organize family photos, chat to your friends, burn CDs and DVDs, watch movies,edit images or do just about anything, Linux has a program for it. And it's almost certainly free!
  
KNOW ABOUT LINUX
  
Linux is a free Unix-type operating system originally created by Linus Torvalds with the assistance of developers around the world. It originated in 1991 as a personal project of Linus Torvalds, a Finnish graduate student. The Kernel version 1.0 was released in 1994 and today the most recent stable version is 2.6.9 Developed under the GNU General Public License the source code for Linux is freely available to everyone.

NFS Server


If you have two or more machines, you may wish to share disk space or devices, such as a CD drive, between machines. For this there is network file system (NFS), the easiest way of sharing files and resources across a network.


NFS is the way of working with files on a remote machine as if they are on your local one. NFS is the standard de facto solution to access the same $HOME directories from any machine on the Net. Using it also is a good way to avoid keeping duplicated informatioNFS n from eating large amounts of disk space.

How to make NFS

System should be Yum Server or Yum Client.

yum install nfs* -y                                    (package install)

yum install portmap* -y                           (package install)

mkdir /Data_Share                                  (making Dir for sharing)

vim /Data_Share/file1                              (making file)

vim /etc/exports
(Entry)
/Data_Share   *(rw,sync)
:wq!

service nfs restart                                  (Restart the Service)

service portmap restart                         (Restart the Service)

chkconfig nfs on

chkconfig portmap on



Configuration on Client Side   


mount -t nfs 192.168.1.1:/xyz  /mnt           (Considering server ip as 192.168.1.1)

vim /etc/fstab                                             (To make Permanent Entry)

192.168.1.1:/Data_Share /mnt nfs default 0 0

How to make FTP server on redhat linux

FTP Server on RedHat

It is a file transfer protocol, which is use to transfer the file and receive the file from a Central server up to client, it work at application layer of OSI model and port no. is 20 & 21. port no. 20 is used for connectivity and port no. 21 is used for send & receive data.

FTP Important note:-

  •  The configuration file for vsftpd is "/etc/vsftpd/vsftpd.conf"
  •  By default root user can't access ftp server
  •  By default other user can't access ftp server
  •  By default anonymous user can assess ftp server & it need no password.

Server configuration:-


Step-1 install vsftpd package
#yum install vsftpd*
(package is installing from yum server)

Step-2 make changes in vsftpd.conf file

#vim /etc/vsftpd/vsftpd.conf

Step-3 restart ftp service
#service vsftpd restart  (Service on temporary )
#chkconfig vsftpd on (Service on permanent)


Step-4  Make directory as per requirement

#cd /var/ftp/pub
#mkdir upload download
#cat /download file1


Client Configuration:-


Step-1 Now access ftp server

#ftp 172.24.0.56  (change ip address as ftp server ip)
user: anonymous
Password: (No password require)
>cd pub
>cd download
>mget file1 (mget use for multiple file)
or
>get file1 (get use for one file)
>bye (bye use for exit from ftp)
or
>quit
>good bye (Reply from server side)