You are going to want to set this for each time you log on.
First you have to determine your path to hadoop/bin
From your post my guess is it might be
/home/hadoop/hadoop/bin
Now you can do
EXPORT HADOOP_HOME=/home/hadoop/hadoop/bin
but this would need to be done every time you log on and off.
So I recommend going and adding this file to your profile folder. Usually found in /etc/profile. So try
sudo vi /etc/profile
and add the following line right on the top.
EXPORT HADOOP_HOME=/home/hadoop/hadoop/bin
Save and quit
:wq
And then run the following commmand to update your variables
source /etc/profile
To confirm it works try the following. Notice when using echo you use $ but when assigning the variable you do not.
echo $HADOOP_HOME