SlideShare a Scribd company logo
1 of 7
BASIC COMMAND OF HADOOP
~presented by ahmad
AGENDA
โ€ข LS
โ€ข MKDIR
โ€ข TOUCHZ
โ€ข COPYFROMLOCAL (OR) PUT
โ€ข CAT
โ€ข COPYTOLOCAL (OR) GET
โ€ข MOVEFROMLOCAL
โ€ข CP
โ€ข MV
โ€ข RMR
โ€ข DU
โ€ข DUS
โ€ข STAT
โ€ข SETREP
ls :This command is used to list all the files. Use lsr for recursive approach. It is
useful when we want a hierarchy of a folder.
Syntax : bin/hdfs dfs -ls <path>
Example: bin/hdfs dfs -ls /
mkdir: To create a directory. In Hadoop dfs there is no home directory by
default. So letโ€™s first create it.
Syntax: bin/hdfs dfs -mkdir <folder name>
creating home directory:
hdfs/bin -mkdir /user
hdfs/bin -mkdir /user/username -> write the username of your computer
Example : bin/hdfs dfs -mkdir /ahmad => '/' means absolute path
Touchz : It creates an empty file.
Syntax: bin/hdfs dfs -touchz <file_path>
Example: bin/hdfs dfs -touchz /geeks/myfile.txt
copyFromLocal (or) put: To copy files/folders from local file system
to hdfs store. This is the most important command. Local filesystem means the
files present on the OS.
Syntax: bin/hdfs dfs -copyFromLocal <local file path> <dest(present on hdfs)>
Example: bin/hdfs dfs -put ../Desktop/AI.txt /ahmad
cat: To print file contents.
Syntax: bin/hdfs dfs -cat <path>
Example: bin/hdfs dfs -cat /geeks/AI.txt ->
copyToLocal (or) get: To copy files/folders from hdfs store to local file
system.
Syntax: bin/hdfs dfs -copyToLocal <<srcfile(on hdfs)> <local file dest>
Example: bin/hdfs dfs -get /geeks/myfile.txt ../Desktop/hero
moveFromLocal: This command will move file from local to hdfs.
Syntax: bin/hdfs dfs -moveFromLocal <local src> <dest(on hdfs)>
Example: bin/hdfs dfs -moveFromLocal ../Desktop/cutAndPaste.txt /geeks
cp: This command is used to copy files within hdfs. Lets copy folder geeks to
geeks_copied.
Syntax: bin/hdfs dfs -cp <src(on hdfs)> <dest(on hdfs)>
Example: bin/hdfs -cp /geeks /geeks_copied
mv: This command is used to move files within hdfs. Lets cut-paste a file
myfile.txt from geeks folder to geeks_copied.
Syntax : bin/hdfs dfs -mv <src(on hdfs)> <src(on hdfs)>
Example: bin/hdfs -mv /geeks/myfile.txt /geeks_copied
rmr: This command deletes a file from HDFS recursively. It is very useful
command when you want to delete a non-empty directory.
Syntax : bin/hdfs dfs -rmr <filename/directoryName>
Example: bin/hdfs dfs -rmr /geeks_copied
du: It will give the size of each file in directory.
Syntax : bin/hdfs dfs -du <dirName>
Example: bin/hdfs dfs -du /geeks
dus: This command will give the total size of directory/file.
Syntax: bin/hdfs dfs -dus <dirName>
Example: bin/hdfs dfs -dus /geeks
stat: It will give the last modified time of directory or path. In short it will give
stats of the directory or file.
Syntax: bin/hdfs dfs -stat <hdfs file>
Example: bin/hdfs dfs -stat /geeks
setrep: This command is used to change the replication factor of a
file/directory in HDFS. By default it is 3 for anything which is stored in HDFS (as
set in hdfs core-site.xml).
Syntax: bin/hdfs dfs -setrep -R -w 6 geeks.txt
Example: bin/hdfs dfs -setrep -R 4 /geeks

More Related Content

What's hot

Empacotamento e backport de aplicaรงรตes em debian
Empacotamento e backport de aplicaรงรตes em debianEmpacotamento e backport de aplicaรงรตes em debian
Empacotamento e backport de aplicaรงรตes em debian
Andre Ferraz
ย 
Compression Commands in Linux
Compression Commands in LinuxCompression Commands in Linux
Compression Commands in Linux
Pegah Taheri
ย 
Basic command ppt
Basic command pptBasic command ppt
Basic command ppt
Rohit Kumar
ย 
Linux Commands
Linux CommandsLinux Commands
Linux Commands
Utkarsh Sengar
ย 
One Page Linux Manual
One Page Linux ManualOne Page Linux Manual
One Page Linux Manual
dummy
ย 

What's hot (20)

Empacotamento e backport de aplicaรงรตes em debian
Empacotamento e backport de aplicaรงรตes em debianEmpacotamento e backport de aplicaรงรตes em debian
Empacotamento e backport de aplicaรงรตes em debian
ย 
Compression Commands in Linux
Compression Commands in LinuxCompression Commands in Linux
Compression Commands in Linux
ย 
12 linux archiving tools
12 linux archiving tools12 linux archiving tools
12 linux archiving tools
ย 
Using the command line on macOS
Using the command line on macOSUsing the command line on macOS
Using the command line on macOS
ย 
Top 10 Hadoop Shell Commands
Top 10 Hadoop Shell Commands Top 10 Hadoop Shell Commands
Top 10 Hadoop Shell Commands
ย 
Basic command ppt
Basic command pptBasic command ppt
Basic command ppt
ย 
Linux Commands
Linux CommandsLinux Commands
Linux Commands
ย 
Directories description
Directories descriptionDirectories description
Directories description
ย 
Linux basic for CADD biologist
Linux basic for CADD biologistLinux basic for CADD biologist
Linux basic for CADD biologist
ย 
Hdfs lab hands-on
Hdfs lab hands-on Hdfs lab hands-on
Hdfs lab hands-on
ย 
Rpm Introduction
Rpm IntroductionRpm Introduction
Rpm Introduction
ย 
Course 102: Lecture 24: Archiving and Compression of Files
Course 102: Lecture 24: Archiving and Compression of Files Course 102: Lecture 24: Archiving and Compression of Files
Course 102: Lecture 24: Archiving and Compression of Files
ย 
Basic linux commands
Basic linux commands Basic linux commands
Basic linux commands
ย 
Linux basics
Linux basicsLinux basics
Linux basics
ย 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commands
ย 
The Linux Command Cheat Sheet
The Linux Command Cheat SheetThe Linux Command Cheat Sheet
The Linux Command Cheat Sheet
ย 
3.1.a linux commands reference
3.1.a linux commands reference3.1.a linux commands reference
3.1.a linux commands reference
ย 
Archlinux install
Archlinux installArchlinux install
Archlinux install
ย 
Cli1 Bibalex
Cli1 BibalexCli1 Bibalex
Cli1 Bibalex
ย 
One Page Linux Manual
One Page Linux ManualOne Page Linux Manual
One Page Linux Manual
ย 

Similar to Basic command of hadoop

5c_BigData_Hadoop_HDFS.PPTX
5c_BigData_Hadoop_HDFS.PPTX5c_BigData_Hadoop_HDFS.PPTX
5c_BigData_Hadoop_HDFS.PPTX
Miguel720844
ย 
Linux Presentation
Linux PresentationLinux Presentation
Linux Presentation
Muhammad Qazi
ย 
Unix Basics For Testers
Unix Basics For TestersUnix Basics For Testers
Unix Basics For Testers
nitin lakhanpal
ย 

Similar to Basic command of hadoop (20)

5c_BigData_Hadoop_HDFS.PPTX
5c_BigData_Hadoop_HDFS.PPTX5c_BigData_Hadoop_HDFS.PPTX
5c_BigData_Hadoop_HDFS.PPTX
ย 
Hadoop basic commands
Hadoop basic commandsHadoop basic commands
Hadoop basic commands
ย 
BITS: Introduction to Linux - Text manipulation tools for bioinformatics
BITS: Introduction to Linux - Text manipulation tools for bioinformaticsBITS: Introduction to Linux - Text manipulation tools for bioinformatics
BITS: Introduction to Linux - Text manipulation tools for bioinformatics
ย 
Linux cheat sheet
Linux cheat sheetLinux cheat sheet
Linux cheat sheet
ย 
Bd class 2 complete
Bd class 2 completeBd class 2 complete
Bd class 2 complete
ย 
Interacting with hdfs
Interacting with hdfsInteracting with hdfs
Interacting with hdfs
ย 
Linux Presentation
Linux PresentationLinux Presentation
Linux Presentation
ย 
Command Line Tools
Command Line ToolsCommand Line Tools
Command Line Tools
ย 
Introduction to the linux command line.pdf
Introduction to the linux command line.pdfIntroduction to the linux command line.pdf
Introduction to the linux command line.pdf
ย 
Configuring and manipulating HDFS files
Configuring and manipulating HDFS filesConfiguring and manipulating HDFS files
Configuring and manipulating HDFS files
ย 
LinuxLabBasics.ppt
LinuxLabBasics.pptLinuxLabBasics.ppt
LinuxLabBasics.ppt
ย 
Introduction to HDFS and MapReduce
Introduction to HDFS and MapReduceIntroduction to HDFS and MapReduce
Introduction to HDFS and MapReduce
ย 
MapReduce1.pptx
MapReduce1.pptxMapReduce1.pptx
MapReduce1.pptx
ย 
Linux basics part 1
Linux basics part 1Linux basics part 1
Linux basics part 1
ย 
Linux file system nevigation
Linux file system nevigationLinux file system nevigation
Linux file system nevigation
ย 
Unix Basics For Testers
Unix Basics For TestersUnix Basics For Testers
Unix Basics For Testers
ย 
Course 102: Lecture 3: Basic Concepts And Commands
Course 102: Lecture 3: Basic Concepts And Commands Course 102: Lecture 3: Basic Concepts And Commands
Course 102: Lecture 3: Basic Concepts And Commands
ย 
Part 2
Part 2Part 2
Part 2
ย 
Basic shell commands by Jeremy Sanders
Basic shell commands by Jeremy SandersBasic shell commands by Jeremy Sanders
Basic shell commands by Jeremy Sanders
ย 
unix_commands.ppt
unix_commands.pptunix_commands.ppt
unix_commands.ppt
ย 

Recently uploaded

Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
HyderabadDolls
ย 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
ahmedjiabur940
ย 
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
gajnagarg
ย 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
nirzagarg
ย 
Abortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Doha {{ QATAR }} +966572737505) Get CytotecAbortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
ย 
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
nirzagarg
ย 
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
gajnagarg
ย 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
nirzagarg
ย 
Call Girls in G.T.B. Nagar (delhi) call me [๐Ÿ”9953056974๐Ÿ”] escort service 24X7
Call Girls in G.T.B. Nagar  (delhi) call me [๐Ÿ”9953056974๐Ÿ”] escort service 24X7Call Girls in G.T.B. Nagar  (delhi) call me [๐Ÿ”9953056974๐Ÿ”] escort service 24X7
Call Girls in G.T.B. Nagar (delhi) call me [๐Ÿ”9953056974๐Ÿ”] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
nirzagarg
ย 
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
HyderabadDolls
ย 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
gajnagarg
ย 

Recently uploaded (20)

๐Ÿ‘‰ Bhilai Call Girls Service Just Call ๐Ÿ‘๐Ÿ‘„6378878445 ๐Ÿ‘๐Ÿ‘„ Top Class Call Girl Ser...
๐Ÿ‘‰ Bhilai Call Girls Service Just Call ๐Ÿ‘๐Ÿ‘„6378878445 ๐Ÿ‘๐Ÿ‘„ Top Class Call Girl Ser...๐Ÿ‘‰ Bhilai Call Girls Service Just Call ๐Ÿ‘๐Ÿ‘„6378878445 ๐Ÿ‘๐Ÿ‘„ Top Class Call Girl Ser...
๐Ÿ‘‰ Bhilai Call Girls Service Just Call ๐Ÿ‘๐Ÿ‘„6378878445 ๐Ÿ‘๐Ÿ‘„ Top Class Call Girl Ser...
ย 
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
ย 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
ย 
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
ย 
Oral Sex Call Girls Kashmiri Gate Delhi Just Call ๐Ÿ‘‰๐Ÿ‘‰ ๐Ÿ“ž 8448380779 Top Class C...
Oral Sex Call Girls Kashmiri Gate Delhi Just Call ๐Ÿ‘‰๐Ÿ‘‰ ๐Ÿ“ž 8448380779 Top Class C...Oral Sex Call Girls Kashmiri Gate Delhi Just Call ๐Ÿ‘‰๐Ÿ‘‰ ๐Ÿ“ž 8448380779 Top Class C...
Oral Sex Call Girls Kashmiri Gate Delhi Just Call ๐Ÿ‘‰๐Ÿ‘‰ ๐Ÿ“ž 8448380779 Top Class C...
ย 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
ย 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
ย 
Ranking and Scoring Exercises for Research
Ranking and Scoring Exercises for ResearchRanking and Scoring Exercises for Research
Ranking and Scoring Exercises for Research
ย 
Abortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Doha {{ QATAR }} +966572737505) Get CytotecAbortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
ย 
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
ย 
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
ย 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
ย 
Call Girls in G.T.B. Nagar (delhi) call me [๐Ÿ”9953056974๐Ÿ”] escort service 24X7
Call Girls in G.T.B. Nagar  (delhi) call me [๐Ÿ”9953056974๐Ÿ”] escort service 24X7Call Girls in G.T.B. Nagar  (delhi) call me [๐Ÿ”9953056974๐Ÿ”] escort service 24X7
Call Girls in G.T.B. Nagar (delhi) call me [๐Ÿ”9953056974๐Ÿ”] escort service 24X7
ย 
Gomti Nagar & best call girls in Lucknow | 9548273370 Independent Escorts & D...
Gomti Nagar & best call girls in Lucknow | 9548273370 Independent Escorts & D...Gomti Nagar & best call girls in Lucknow | 9548273370 Independent Escorts & D...
Gomti Nagar & best call girls in Lucknow | 9548273370 Independent Escorts & D...
ย 
๐Ÿ’ž Safe And Secure Call Girls Agra Call Girls Service Just Call ๐Ÿ‘๐Ÿ‘„6378878445 ๐Ÿ‘...
๐Ÿ’ž Safe And Secure Call Girls Agra Call Girls Service Just Call ๐Ÿ‘๐Ÿ‘„6378878445 ๐Ÿ‘...๐Ÿ’ž Safe And Secure Call Girls Agra Call Girls Service Just Call ๐Ÿ‘๐Ÿ‘„6378878445 ๐Ÿ‘...
๐Ÿ’ž Safe And Secure Call Girls Agra Call Girls Service Just Call ๐Ÿ‘๐Ÿ‘„6378878445 ๐Ÿ‘...
ย 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
ย 
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
ย 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
ย 
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptxRESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
ย 
Digital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham WareDigital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham Ware
ย 

Basic command of hadoop

  • 1. BASIC COMMAND OF HADOOP ~presented by ahmad
  • 2. AGENDA โ€ข LS โ€ข MKDIR โ€ข TOUCHZ โ€ข COPYFROMLOCAL (OR) PUT โ€ข CAT โ€ข COPYTOLOCAL (OR) GET โ€ข MOVEFROMLOCAL โ€ข CP โ€ข MV โ€ข RMR โ€ข DU โ€ข DUS โ€ข STAT โ€ข SETREP
  • 3. ls :This command is used to list all the files. Use lsr for recursive approach. It is useful when we want a hierarchy of a folder. Syntax : bin/hdfs dfs -ls <path> Example: bin/hdfs dfs -ls / mkdir: To create a directory. In Hadoop dfs there is no home directory by default. So letโ€™s first create it. Syntax: bin/hdfs dfs -mkdir <folder name> creating home directory: hdfs/bin -mkdir /user hdfs/bin -mkdir /user/username -> write the username of your computer Example : bin/hdfs dfs -mkdir /ahmad => '/' means absolute path
  • 4. Touchz : It creates an empty file. Syntax: bin/hdfs dfs -touchz <file_path> Example: bin/hdfs dfs -touchz /geeks/myfile.txt copyFromLocal (or) put: To copy files/folders from local file system to hdfs store. This is the most important command. Local filesystem means the files present on the OS. Syntax: bin/hdfs dfs -copyFromLocal <local file path> <dest(present on hdfs)> Example: bin/hdfs dfs -put ../Desktop/AI.txt /ahmad cat: To print file contents. Syntax: bin/hdfs dfs -cat <path> Example: bin/hdfs dfs -cat /geeks/AI.txt ->
  • 5. copyToLocal (or) get: To copy files/folders from hdfs store to local file system. Syntax: bin/hdfs dfs -copyToLocal <<srcfile(on hdfs)> <local file dest> Example: bin/hdfs dfs -get /geeks/myfile.txt ../Desktop/hero moveFromLocal: This command will move file from local to hdfs. Syntax: bin/hdfs dfs -moveFromLocal <local src> <dest(on hdfs)> Example: bin/hdfs dfs -moveFromLocal ../Desktop/cutAndPaste.txt /geeks cp: This command is used to copy files within hdfs. Lets copy folder geeks to geeks_copied. Syntax: bin/hdfs dfs -cp <src(on hdfs)> <dest(on hdfs)> Example: bin/hdfs -cp /geeks /geeks_copied
  • 6. mv: This command is used to move files within hdfs. Lets cut-paste a file myfile.txt from geeks folder to geeks_copied. Syntax : bin/hdfs dfs -mv <src(on hdfs)> <src(on hdfs)> Example: bin/hdfs -mv /geeks/myfile.txt /geeks_copied rmr: This command deletes a file from HDFS recursively. It is very useful command when you want to delete a non-empty directory. Syntax : bin/hdfs dfs -rmr <filename/directoryName> Example: bin/hdfs dfs -rmr /geeks_copied du: It will give the size of each file in directory. Syntax : bin/hdfs dfs -du <dirName> Example: bin/hdfs dfs -du /geeks
  • 7. dus: This command will give the total size of directory/file. Syntax: bin/hdfs dfs -dus <dirName> Example: bin/hdfs dfs -dus /geeks stat: It will give the last modified time of directory or path. In short it will give stats of the directory or file. Syntax: bin/hdfs dfs -stat <hdfs file> Example: bin/hdfs dfs -stat /geeks setrep: This command is used to change the replication factor of a file/directory in HDFS. By default it is 3 for anything which is stored in HDFS (as set in hdfs core-site.xml). Syntax: bin/hdfs dfs -setrep -R -w 6 geeks.txt Example: bin/hdfs dfs -setrep -R 4 /geeks