File System Navigation Commands in Linux
Last Updated :
22 Aug, 2024
Linux offers an alternative to the usual windows and icons. The terminal might seem different at first, relying on text commands instead of a mouse. But this simplicity holds immense power.

In this article, you’ll be going through a demonstration of Navigation Commands in Linux which will help in quickly navigating in the Linux file system. Let’s go through them, but before that have a short idea of the difference between Linux and Windows file systems.
File System Navigation Commands in Linux
Difference between Windows and Linux File System
Feature | Windows | Linux |
---|
Structure | Drives (C:, D:, etc.) and folders | Single, unified tree structure starting from root (/) |
---|
Case Sensitivity | Not case-sensitive | Case-sensitive |
---|
File Permissions | Simpler (user accounts) | More granular control (user, group, others) |
---|
File System | Primarily NTFS | Ext4 (most common) FAT32, NTFS (sometimes) |
---|
Overall Remarks | User-friendly, familiar interface | Flexible, powerful for advanced users |
---|
Commonly Used File System Navigation Commands
Linux Commands | Functions |
---|
pwd | Shows the current location. |
---|
ls | List files and folders. |
---|
cd | Change working directory. |
---|
mkdir | Used to create new folder. |
---|
rmdir | Remove an empty folder. |
---|
cp | Creating a copy of a file in a new location. |
---|
mv | Relocate files from one folder to another. |
---|
1. pwd (print working directory)
The pwd command shows the current location in the system. It tells you which folder you're currently in.
pwd

Observation
The current directory is /home/kali/Templates
2. ls (list files and directories)
The ls command is used to list the files and directories in the current directory. It provides an overview of what is inside a folder.
ls

Observation
All the files and folders present inside the current folder is listed.
3. cd (change directory)
The cd command is used to move between folders. You can tell it exactly which folder you want to go to (like giving it an address), or you can use shortcuts to get around. Let's look into both the methods.
Moving around nearby folder
If you want to move into a folder that's within the one you're already in, you can just use its name. For instance, if you're in your home directory and want to reach downloads.
cd [directory name]
cd Downloads

Observation
A. checking the current directory
B. using cd command to change the directory
C. observe the updated directory
Going to a Specific Folder
Imagine telling someone the full address to find your house. Similarly, you can do the same by giving the complete path to the folder. For example, you want to access the documents folder inside the username folder.
cd [directory path]
cd /home/username/documents

Observation
Directory StructureConsidering the above directory structure, the active directory was changed from Downloads to Documents by traversing from the home directory.
4. mkdir (make directory)
The mkdir command, an abbreviation for "make directory," allows you to create new folders within your existing file system. This provides a structured way to categorize and store your files.
mkdir [directory name]
mkdir GeeksForGeeks

Observation
A. User tried to create a new folder named GeeksForGeeks
B. changed the directory to newly created directory
C. The active directory is updated
5. rmdir (remove empty directory)
The rmdir command, short for "remove directory," enables you to delete empty directories. This is useful for cleaning up unused folders and maintaining a streamlined file system.
The syntax for rmdir is:
rmdir [directory_name]
Note: rmdir can only delete empty directories.

Observation
Observe that the empty directory was removed.
6. cp (copy)
The cp command acts like a duplicator, creating a copy of a file in a new location.
cp [source_file] [location]
For instance, to copy "image.jpg" from Downloads to Pictures while keeping the original, you'd use
cp ~/Downloads/image.jpg ~/Pictures

Obervation
A. Executing the copying command.
B. Changing the current active directory for checking.
C. Using the list command, we can observe that the image.jpg was copied.
7. mv (move)
The mv command is like a handy mover, allowing you to relocate files from one folder to another.
mv [source_file] [location]
For instance, to move a file named "image.jpg" from your Downloads folder to Documents, you'd use
mv ~/Downloads/image.jpg ~/Pictures

Observation
A. Executing the mv (move) command.
B. Changing the current active directory.
C. After executing ls (list) command, we can observe that the file has been transferred.
Additional Shortcut Tips
Serial No | Symbol | Symbol Name | Function |
---|
1 | ~ | tilde | shortcut to your home base |
---|
2 | . | dot | the folder you're in right now |
---|
3 | .. | double dot | the folder one level above |
---|
1. ~ (tilde) - shortcut in Linux
This symbol is like a shortcut to your home base. No matter where you are, typing tilde will always bring you back to your home folder.
cd ~

The active directory was updated to home.
2. . (dot) - shortcut in Linux
This simply means the folder you're in right now. If you're already inside a folder and want to work with something there, you can use the dot symbol.
3. .. (double dot) - shortcut in Linux
This means the folder one level above the one you're in, like going up a floor in a building. If you're deep inside folders and want to go back a step, this will take you to the bigger folder that contains the one you're in.
cd ..

Observation
A. The current directory is visible, and we execute the command.
B. The active directory is updated.
4. tree - seeing the bigger picture in Linux
This command isn't exactly for moving around, but it helps you see all the folders at once. It shows how all the folders are connected, like a family tree, so you can understand the bigger picture.
tree

Observation
All the files and folders of the active directory is listed.
Conclusion
The Linux terminal might seem daunting at first, but with a handful of basic commands, you've unlocked the ability to navigate the file system with ease. By using pwd to check your location, cd to move around, and ~, ., and .. for shortcuts, you can efficiently access files and folders. Remember, the tree command provides a helpful visual map of the directory structure.
As you gain confidence, there's a whole world of commands waiting to be explored. You can learn to copy, move, and delete files, create new directories, and even edit text files directly from the terminal. The possibilities are vast!
Do check out GeeksforGeeks Linux/Unix Tutorial
Similar Reads
File System Navigation Commands in Linux
Linux offers an alternative to the usual windows and icons. The terminal might seem different at first, relying on text commands instead of a mouse. But this simplicity holds immense power. In this article, youâll be going through a demonstration of Navigation Commands in Linux which will help in qu
7 min read
yes command in Linux with Examples
yes, the command in Linux is used to print a continuous output stream of a given STRING. If STRING is not mentioned then it prints 'y'; Syntax: of `yes` command in Linuxyes [STRING] Note: To stop printing please press Ctrl + C. Use of `yes` commandlet us say that we want to delete all the `.txt` fil
2 min read
How to List Open Files in Linux | lsof Command
In the world of Linux, understanding and managing open files is crucial for system administrators and users alike. The Linux operating system provides a powerful utility called lsof (List Open Files) that allows users to gain insights into the files currently open on their system. In this article, w
7 min read
How to Move File in Linux | mv Command
The `mv` command in Linux is like a superhero tool that can do a bunch of cool stuff with your files and folders. Think of it as a digital moving truck that helps you shift things around in your computer. Whether you want to tidy up your folders, give your files new names, or send them to different
7 min read
How to Rename File in Linux | rename Command
Changing the names of files in Linux is something we often do, and the "rename" command is like a helpful friend for this job. This guide is like a journey to becoming really good at renaming files on Linux, showing you how handy and useful the "rename" command can be. Whether you're just starting o
8 min read
whatis Command in Linux with Examples
whatis command in Linux is used to get a one-line manual page description. In Linux, each manual page has some sort of description within it. So, this command search for the manual pages names and show the manual page description of the specified filename or argument. Syntax of the `whatis` command
5 min read
Useful and time saving bash commands in Linux
There are many useful bash scripts that can make things easier. Many things can be done just using the terminal. Here is a list of some of such useful bash scripts through which we can do things that cannot be done manually. 1. Counting the number of files(or directory) in a given directory: Go to t
3 min read
Tail command in Linux with examples
It is the complementary of head command. The tail command, as the name implies, prints the last N number of data of the given input. By default, it prints the last 10 lines of the specified files. If more than one file name is provided then data from each file is preceded by its file name. Syntax of
7 min read
readlink command in Linux with Examples
The 'readlink' command in Linux is a valuable tool used to print resolved symbolic links or canonical file names. In simpler terms, when dealing with symbolic links and you need to know the actual path they represent, the 'readlink' command reveals the path of the symbolic link. This command is part
3 min read
ln command in Linux with Examples
The 'ln' command in Linux is a powerful utility that allows you to create links between files. These links can either be hard links or soft (symbolic) links. If you're unfamiliar with these concepts, check out our detailed guide on Hard and Soft Links in Linux to understand their differences, use ca
3 min read