Reputation: 175
When I execute the get command it says permission denied, I tried the already given solution but didn't worked. Following is the command and its op
hduser@ubuntu:~$ hadoop fs -get /user/hduser/Input/pg*.txt /home/vilas/Desktop/
Warning: $HADOOP_HOME is deprecated.
get: Permission denied
Upvotes: 1
Views: 6400
Reputation: 15
you must go into the desktop directory, open the terminal there and run the command
hadoop fs -get /user/hduser/Input/pg*.txt .
Upvotes: 0