熟悉常用的HDFS

  1. 在本地Linux文件系统的“/home/hadoop/”目录下创建一个文件txt,里面可以随意输入一些单词.
    mkdir hadoop
    cd hadoop
    touch test.txt
    gedit test.txt
  2. 在本地查看文件位置(ls)
    cd ~/hadoop
    ls -al
  3. 在本地显示文件内容
    cat test.txt
  4. 使用命令把本地文件系统中的“txt”上传到HDFS中的当前用户目录的input目录下。
    cd /usr/local/hadoop
    ./sbin/start-dfs.sh
    ./bin/hdfs dfs -mkdir -p /user/hadoop
    ./bin/hdfs dfs -mkdir input
    ./bin/hdfs dfs -put ~/hadoop/test.txt input
  5. 查看hdfs中的文件(-ls)
    ./bin/hdfs dfs -ls input
  6. 显示hdfs中该的文件内容
    ./bin/hdfs dfs dfs -cat input/test.txt
  7. 删除本地的txt文件并查看目录
    cd ~/hadoop
    re -r test.txt
  8. 从hdfs中将txt下载地本地原来的位置。
    cd /usr/local/hadoop
    ./bin/hdfs dfs -get input/test.txt ~/hadoop
  9. 从hdfs中删除txt并查看目录
    ./bin/hdfs dfs -rm -ls input/test.txt

猜你喜欢

转载自www.cnblogs.com/wxyplu/p/8946424.html