创建目录
1
2
3 1hadoop fs -mkdir/input
2
3
查看
1
2
3 1hadoop fs -ls
2
3
递归查看
1
2
3 1hadoop fs ls -R
2
3
上传
1
2
3 1hadoop fs -put
2
3
下载
1
2
3 1hadoop fs -get
2
3
删除
1
2
3 1hadoop fs -rm
2
3
从本地剪切粘贴到hdfs
1
2
3 1hadoop fs -moveFromLocal /input/xx.txt /input/xx.txt
2
3
从hdfs剪切粘贴到本地
1
2
3 1hadoop fs -moveToLocal /input/xx.txt /input/xx.txt
2
3
追加一个文件到另一个文件到末尾
1
2
3 1hadoop fs -appedToFile ./hello.txt /input/hello.txt
2
3
查看文件内容
1
2
3 1hadoop fs -cat /input/hello.txt
2
3
显示一个文件到末尾
1
2
3 1hadoop fs -tail /input/hello.txt
2
3
以字符串的形式打印文件的内容
1
2
3 1hadoop fs -text /input/hello.txt
2
3
修改文件权限
1
2
3 1hadoop fs -chmod 666 /input/hello.txt
2
3
修改文件所属
1
2
3 1hadoop fs -chown user.user /input/hello.txt
2
3
从本地文件系统拷贝到hdfs里
1
2
3 1hadoop fs -copyFromLocal /input/hello.txt /input/
2
3
从hdfs拷贝到本地
1
2
3 1hadoop fs -copyToLocal /input/hello.txt /input/
2
3
从hdfs到一个路径拷贝到另一个路径
1
2
3 1hadoop fs -cp /input/xx.txt /output/xx.txt
2
3
从hdfs到一个路径移动到另一个路径
1
2
3 1hadoop fs -mv /input/xx.txt /output/xx.txt
2
3
统计文件系统的可用空间信息
1
2
3 1hadoop fs -df -h /
2
3
统计文件夹的大小信息
1
2
3 1hadoop fs -du -s -h /
2
3
统计一个指定目录下的文件节点数量
1
2
3 1hadoop fs -count /input
2
3
设置hdfs的文件副本数量
1
2
3 1hadoop fs -setrep 3 /input/xx.txt
2
3