HADOOP - Installation setup
  Prerequisites  Hadoop requires a working Java 1.5+ (aka Java 5) installation. However, using Java 1.6/1.7 (aka Java 6/7) is recommended for running Hadoop. Please refer to jdk installation instructions  here.       Dedicated user for Hadoop system   A dedicated Hadoop user will help Hadoop installation from other software applications and user accounts running on the same machine.    umasarath@ubuntu:~$ sudo addgroup hadoop umasarath@ubuntu:~$ sudo adduser --ingroup hadoop hduser   The above two commands will add "hduser" user and "hadoop" group.     Hadoop Installation  Download Hadoop  from the Apache Download Mirrors and extract the contents of the Hadoop package to a location of your choice. The folder I chosen was the hduser  home folder. Extract the downloaded file in /home/hduser folder and make sure the file should be extracted in hduser login.    hduser@ubuntu:~$ sudo tar xzf hadoop-1.2.1.tar.gz hduser@ubuntu:~$ sudo mv hadoop-1.2.1 hadoop    Configuratio...