linux熟悉常用的hdfs操作
时间: 2023-04-21 09:00:24 浏览: 209
实验2 熟悉常用的HDFS操作
5星 · 资源好评率100%
HDFS是Hadoop分布式文件系统的缩写,是Hadoop生态系统中的一个重要组件。下面是常用的HDFS操作:
1. 创建目录:hadoop fs -mkdir /path/to/directory
2. 删除目录:hadoop fs -rmr /path/to/directory
3. 查看目录:hadoop fs -ls /path/to/directory
4. 上传文件:hadoop fs -put /path/to/local/file /path/to/hdfs/directory
5. 下载文件:hadoop fs -get /path/to/hdfs/file /path/to/local/directory
6. 复制文件:hadoop fs -cp /path/to/source/file /path/to/destination/file
7. 移动文件:hadoop fs -mv /path/to/source/file /path/to/destination/file
8. 查看文件内容:hadoop fs -cat /path/to/file
9. 统计文件大小:hadoop fs -du /path/to/file
10. 修改文件权限:hadoop fs -chmod 777 /path/to/file
以上是常用的HDFS操作,可以帮助用户管理和操作Hadoop分布式文件系统。
阅读全文