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 < current dir> 

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 < specified complete dir> 

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 < specified dir> 

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.

Ubuntu Server Admin

Recent Posts

🚀 Deploy Elastic Stack on Ubuntu VPS (5 Minute Quick-Start Guide)

Here’s the guide to deploy Elastic Stack on Ubuntu VPS, with secure access, HTTPS proxying,…

2 days ago

🚀 Deploy Nagios on Ubuntu VPS

This guide walks through deploying Nagios Core on an Ubuntu VPS, from system prep to…

2 days ago

Shoryuken Has a New Maintainer, and v7.0.0 Is Almost There

After a decade under Pablo Cantero's stewardship, Shoryuken has a new maintainer - me. I'm…

6 days ago

A better way to provision NVIDIA BlueField DPUs at scale with MAAS

MAAS 3.7 has been officially released and it includes a bunch of cool new features.…

2 weeks ago

Ruby Floats: When 2.6x Faster Is Actually Slower (and Then Faster Again)

Update: This article originally concluded that Eisel-Lemire wasn't worth it for Ruby. I was wrong.…

2 weeks ago

MicroCeph: why it’s the superior MinIO alternative (and how to use it)

Recently, the team at MinIO moved the open source project into maintenance mode and will…

2 weeks ago