hncl
hncl

Reputation: 1

hadoop installation directory error

I am trying to setup hadoop from the blog : http://www.bogotobogo.com/Hadoop/BigData_hadoop_Install_on_ubuntu_single_node_cluster.php

I can do :

hduser@laptop:~$ wget    http://mirrors.sonic.net/apache/hadoop/common/hadoop-2.6.0/hadoop-2.6.0.tar.gz
hduser@laptop:~$ tar xvzf hadoop-2.6.0.tar.gz

after that when I try to :

hduser@laptop:~/hadoop-2.6.0$ sudo mv * /usr/local/hadoop

and it gives an error like No Such file or directory.

What is the main problem here?

Thank you

Upvotes: 0

Views: 901

Answers (3)

subodh
subodh

Reputation: 6158

Give a try with,

hduser@laptop:~$ tar xvzf hadoop-2.6.0.tar.gz .
hduser@laptop:~$ sudo mkdir -p /usr/local/hadoop
hduser@laptop:~$ mv hadoop-2.6.0 /usr/local/hadoop

Here, I found a very simple tutorial to install apache hadoop single node cluster setup

Upvotes: 0

Srinath Menon
Srinath Menon

Reputation: 1642

Once the hadoop is untarred , check the actual path where it has done this operation and verify the path you are on is correct .

hduser@laptop:~$ tar xvzf hadoop-2.6.0.tar.gz .

hduser@laptop:~$ ls -lrt

And see if it is here

Upvotes: 1

Tim Seed
Tim Seed

Reputation: 5279

You should probably do

 sudo mv ~/hadoop-2.6.0 /usr/local/hadoop

Upvotes: 0

Related Questions