1. 程式人生 > >Hadoop學習記錄(二、hdfs shell命令)

Hadoop學習記錄(二、hdfs shell命令)

在/usr/local/hadoop-2.9.2/bin目錄下執行命令

1.檢視根目錄:

./hdfs dfs -ls /

2.檔案上傳:上傳到根目錄

./hdfs dfs -put /tmp/test.txt /

 

3.檢視檔案內容

./hdfs dfs -cat /test.txt

 

 4.新建資料夾

./hdfs dfs -mkdir /test

5.遞迴顯示檔案

./hdfs dfs -ls -R /

 

6.下載檔案到當前目錄

./hdfs dfs -get /test.txt test2.txt

 

7.刪除檔案

./hdfs dfs -rm /test.txt

 

8.刪除資料夾

./hdfs dfs -rm -R /test