Categories: TutorialsUbuntu

How to Use cd Command in Linux

The “cd” command is commonly used to change the current working directory in Linux and other Unix-like operating systems. Change directory is denoted by the letter “cd.” It’s one of the most significant and widely used commands in the Linux system, and you’ll see it a lot. We can move around our system’s folders with the help of this command. We can move back to the previous directory, forward to the next directory, or wherever else. In this article, various cd operations will be applied in order to change directories in Linux.

Different ways to change directories

We will execute the following cd operations on directories:

  • Change to a new directory from the existing one
  • Change the directory using an absolute path
  • Change the directory using the relative path,
  • Go to your home directory
  • Return to your previous directory
  • Switch to the Parent Directory
  • Go to the root directory

Operation 1: Change to a New Directory from the Existing One

We can change our working directory from the current one to a different one. Execute the following command to see the current working directory:

$ pwd

Execute the following command to modify our current working directory:

$ cd  

The above output shows the change in directory from home to Desktop. We used the pwd command to display the current working directory, which is “/home/linux,” as shown in the preceding result. Then we used the ‘cd’ command to change our current directory, specifying the new directory’s path as “/home/linux/Desktop”.

Operation 2: Change the Directory Using an Absolute Path,

When utilizing an absolute path to change a directory, we must specify the entire path beginning at the root. Execute the following command to modify our current working directory:

$ cd  

We’re updating our directory from ‘home’ to ‘Downloads’ based on the given output. So, starting from the root (/), we’ve provided the entire path “/home/linux/Downloads.” This is known as the absolute path.

Operation 3: Change the Directory Using the Relative Path,

A relative path is a location that is relative to the current directory. Execute the following command to modify our current working directory:

$ cd  

We’re using a relative path to change the directory in the above output. We’ve updated our directory from ‘home’ to ‘Downloads,’ as in the previous example, but we haven’t provided the entire path. This is known as the relative path.

Operation 4: Go to Your Home Directory

Execute the following command to go back to your home directory:

$ cd ~

As you can see from the output above, we were in the Downloads directory before using the “cd” command but by using it now we are in our home directory.

Operation 5: Return to your previous directory

Execute the following command to shift to the previous directory from the current working directory:

$ cd -

We were in the “/Desktop” directory, as evidenced by the preceding output. This working directory has been changed to its previous directory “home/linux” by using this command.

Operation 6: Switch to the Parent Directory

Execute the following command to shift to the parent directory from the current working directory:

$ cd ..

We were in the “/Downloads” directory, as evidenced by the preceding output. As the parent for this directory is “home” so this working directory has been changed to its parent directory “home/linux” by using this command.

Operation 7: Go to the Root Directory

Execute the following command to shift to the root directory from the current working directory:

$ cd /

We were in the “/Templates” directory, as evidenced by the preceding output. As the root for this directory is “home” so this working directory has been changed to its root directory “home/linux” by using this command.

Conclusion

In this article, the basic use of cd command in order to change the directories using different methods is being provided. After reading this article, you will be able to know about the current working directory and you will also have the idea about the use of cd command in order to navigate your system’s directory structure.

Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications including CCNA RS, SCP, and ACE. As an IT engineer and technical author, he writes for various websites.

Ubuntu Server Admin

Recent Posts

Building optimized LLM chatbots with Canonical and NVIDIA

The landscape of generative AI is rapidly evolving, and building robust, scalable large language model…

2 hours ago

Unlocking Edge AI: a collaborative reference architecture with NVIDIA

The world of edge AI is rapidly transforming how devices and data centers work together.…

2 hours ago

How to Install and Use Zig Programming Language on Ubuntu or Debian Linux

In this article, we will see how to install and use zig programming language on…

6 hours ago

Linux Sed Tutorial: Learn Text Editing with Syntax and Examples

This article was adapted from its original version on NixCraft. Sed is an acronym for…

11 hours ago

How to Fix VMware’s “Could not open /dev/vmmon” Error on Ubuntu

You’ve recently installed VMware Workstation on your Ubuntu system and encountered the frustrating “Could not…

19 hours ago

How to Fix Ubuntu 404 Errors While Fetching Dependencies

Have you ever found yourself staring at a terminal full of 404 errors while trying…

19 hours ago