惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
博客园_首页
Jina AI
Jina AI
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
Vercel News
Vercel News
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
B
Blog
Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 鄙人取个名字好难

多线程(七)AQS Kafka Rebalance 机制 阿里云百炼实战-Spring AI 连接 AI应用API 阿里云百炼实战-IDEA集成Claude Code AI简介 Java进阶(八)动态代理 Hadoop(一)Linux环境搭建 Hadoop(二)基本概念 Ubuntu中SVN服务端安装 Docker(六)安装telnet命令 MySQL实用查询语句 Java进阶(七)布隆过滤器 NIO面试题 TCP/IP面试题 SPRING面试题 SpringBoot(五)原理剖析:Transaction原理 SpringBoot(四)原理剖析:AOP原理 SpringBoot(三)原理剖析:IOC原理 SpringBoot(二)原理剖析:AutoConfiguration原理 SpringBoot(一)原理剖析:SpringApplication启动原理
Hadoop(三)命令指南
鄙人取个名字好难 · 2026-03-20 · via 博客园 - 鄙人取个名字好难

概览

  All HDFS commands are invoked by the bin/hdfs script. Running the hdfs script without any arguments prints the description for all commands.
  Usage: hdfs [SHELL_OPTIONS] COMMAND [GENERIC_OPTIONS] [COMMAND_OPTIONS]

       官网地址

实例:上传文件到hdfs

-- 创建文件
[root@VM-75-149-centos file]# echo 'hello world!' > hello.text
[root@VM-75-149-centos file]# ls
hadoop-2.10.1.tar.gz  hello.text
[root@VM-75-149-centos file]# cat hello.text 
hello world!
-- hdfs创建多级目录
[root@VM-75-149-centos file]# hdfs dfs -mkdir -p /2022/05/
-- hdfs查询文件目录
[root@VM-75-149-centos file]# hdfs dfs -ls /       
Found 1 items
drwxr-xr-x   - root supergroup          0 2022-05-05 15:23 /2022
-- 上传文件到hdfs
[root@VM-75-149-centos file]# hdfs dfs -put hello.text /2022/05/ 
-- hdfs查询文件
[root@VM-75-149-centos file]# hdfs dfs -ls /2022/05/            
Found 1 items
-rw-r--r--   1 root supergroup         13 2022-05-05 15:26 /2022/05/hello.text

通过web查看上传的文件信息