A2oz

How to Open a Directory in Linux?

Published in Linux Command Line 2 mins read

You can open a directory in Linux using the cd command.

Using the cd Command

The cd command stands for "change directory". To open a directory, simply type cd followed by the directory's name. For example, to open the "Documents" directory, you would type:

cd Documents

Navigating Directories

You can navigate to subdirectories within a directory by using the forward slash (/). For example, to open the "Downloads" directory within the "Documents" directory, you would type:

cd Documents/Downloads

Opening the Home Directory

To open your home directory, you can use the tilde symbol (~). For example:

cd ~

Opening the Root Directory

To open the root directory, you can use the forward slash (/). For example:

cd /

Opening a Directory with a Specific Path

If you know the full path to a directory, you can use it to open the directory. For example:

cd /home/user/Documents

Using Tab Completion

You can use the Tab key to autocomplete directory names. This can be a helpful shortcut, especially when dealing with long directory names. For example, if you start typing cd Doc and press the Tab key, the system will try to complete the directory name.

Using the ls Command

The ls command lists the contents of a directory. You can use this command to see what files and directories are in a directory before you open it. For example, to list the contents of the "Documents" directory, you would type:

ls Documents

Using a GUI File Manager

Most Linux distributions have a graphical user interface (GUI) file manager. You can use this to open directories by clicking on them.

Related Articles