Navigation through the file system: commands ls
, cd
, pwd
1. Linux File System Structure
Linux is a text-based operating system, and everything in it is represented as a file. Yep, even devices like your hard drive, webcam, or network are basically a type of file. So, knowing how to move around the Linux file system? That's skill number one. You can't do much without it. It's like in real life: you wouldn't wander blindly around your house when you know where the kitchen, bedroom, or sock drawer is. Same deal here.
In this lecture, we'll break down three main commands that'll let you navigate through the Linux file system: ls
, cd
, pwd
.
But before diving into these commands, let's figure out what the Linux file system actually looks like. It's got a tree-like structure, so all files and directories are arranged in a hierarchy. The very top of this "pyramid" is called the root directory and is represented by /
.
Main Directories:
Directory | Description |
---|---|
/ |
The root directory. Everything starts here. |
/home |
User home directories. For example, /home/your_name . |
/etc |
System configuration files. Don't mess with it unless you have to. |
/var |
Dynamic data such as logs and temporary files. |
/tmp |
Temporary files, automatically deleted by the system regularly. |
/dev |
Devices connected to the system (like a hard drive or USB). |
/mnt |
Mount points for external devices (USB drives, network drives, etc.). |
Absolute and Relative Paths
- Absolute Path starts from the root
/
. Example:/home/student/documents
. - Relative Path starts from the current directory. Example:
documents/file.txt
.
Now that you understand what the Linux file system is, let's move on to the commands themselves.
2. The pwd
Command: Where am I now?
pwd
stands for "print working directory". It's the command that answers the big philosophical question: "Where am I even at?".
Usage Example
$ pwd
/home/student
The command output shows that we're currently in the home
directory of the user student
.
Why do I need this?
If you get lost in the directory hierarchy, the pwd
command is your compass. It's especially useful when you're exploring an unfamiliar file structure or working on a large project.
3. Command ls
: What's even here?
ls
is a command to view the contents of a directory. It lets you see the files and folders that are in the current directory. It’s like opening a closet to check out what’s inside.
Example Usage
$ ls
Documents Downloads Pictures Videos
Here we see that the current directory contains the folders Documents
, Downloads
, Pictures
, and Videos
.
Useful Options
-l
— displays detailed information about each file:$ ls -l drwxr-xr-x 2 student student 4096 Oct 21 10:00 Documents -rw-r--r-- 1 student student 234 Oct 21 09:45 notes.txt
Here we see the file type, permissions, owner, group, size, modification date, and file name.
-a
— also displays hidden files (those starting with a dot, like.bashrc
):$ ls -a . .. .bashrc Documents Downloads
-h
— outputs file sizes in a human-readable format (like KB, MB):$ ls -lh -rw-r--r-- 1 student student 4.0K Oct 21 10:00 file.txt
Combining Options
You can combine options. For example:
$ ls -lha
4. Command cd
: Traveling the File System
The cd
(change directory) command lets you move from one directory to another. Think of it as your "personal portal" to navigate through the file system.
Usage Examples
Moving to another folder:
$ cd Documents $ pwd /home/student/Documents
Returning to the home directory:
$ cd ~ $ pwd /home/student
Moving one level up:
$ cd .. $ pwd /home
Going to the root directory:
$ cd / $ pwd /
Using an absolute path:
$ cd /var/log
Using a relative path:
$ cd ../Pictures
Returning to the previous directory:
$ cd - $ pwd /var/log
Errors When Using cd
If you try to move to a folder that doesn’t exist, Linux will definitely let you know:
$ cd nonexistent_folder
bash: cd: nonexistent_folder: No such file or directory
Make sure the folder name is spelled correctly.
5. Practice
To reinforce the material, follow these steps in your terminal.
Display the current directory:
$ pwd
Check the contents of the current directory:
$ ls
Navigate to the
Documents
folder:$ cd Documents
Return to your home directory:
$ cd ~
Go to the root directory and see what's there:
$ cd / $ ls
Move between folders using relative and absolute paths.
6. Useful Tips
Use the
Tab
key for auto-completing a folder or file name. For example:$ cd Doc<Tab>
The terminal will automatically complete it to
Documents
, if that folder exists.If you forget where you are, you can always check the path with the
pwd
command.Practice all the time! Navigating the file system using the command line becomes natural only with experience.
That's it, now you know how to move around the Linux file system using the commands pwd
, ls
, and cd
. These commands are the foundation of terminal work, and you'll need them in almost every task you'll encounter in the future.
GO TO FULL VERSION