Logo ← PostgreSQL Blog

Creating Directories in Linux

Creating directories in Linux is a fundamental operation that allows users to organize files and data effectively. Whether you’re setting…

Creating Directories in Linux

Creating directories in Linux is a fundamental operation that allows users to organize files and data effectively. Whether you’re setting up a new system, organizing backups, or managing data storage, knowing how to create directories using the mkdir command is essential. In this article, we'll explore the mkdir command in Linux and guide you through the process of creating directories, including specific directory paths like /u01, /u01/yedek, and /u01/yedek/coldBackup.

Introduction to mkdir Command

The mkdir command in Linux is used to create new directories. It stands for "make directory" and is a simple yet powerful command-line tool that allows users to create one or multiple directories at once.

Creating Directories Using mkdir Command

Basic Syntax

The basic syntax for using the mkdir command is:

$ mkdir [directory_name]

Creating Single Directory

To create a single directory, simply specify the directory name:

$ mkdir my_directory

Creating Multiple Directories

To create multiple directories at once, specify the directory names separated by spaces:

$ mkdir dir1 dir2 dir3

Creating Nested Directories

To create nested directories, use the -p option:

$ mkdir -p dir1/dir2/dir3

Creating Specific Directories: /u01, /u01/yedek, /u01/yedek/coldBackup

Creating /u01 Directory

If the /u01 directory does not exist, you can create it using the following command:

$ mkdir /u01

Creating /u01/yedek Directory

Next, create the /u01/yedek directory:

$ mkdir /u01/yedek

Creating /u01/yedek/coldBackup Directory

Finally, create the /u01/yedek/coldBackup directory:

$ mkdir /u01/yedek/coldBackup

Conclusion

Creating directories in Linux using the mkdir command is a straightforward process that allows users to organize and manage files and data effectively. Whether you're setting up new directories for system storage, backups, or data management, understanding how to use the mkdir command to create single, multiple, or nested directories is essential.

By following the steps outlined in this article, you can create specific directories like /u01, /u01/yedek, and /u01/yedek/coldBackup to organize your files and data efficiently in a Linux environment.