How to Create Directories in Linux
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How to Create Directories in Linux
In Linux systems, you can create new directories either from the command line or with the help of your desktop’s file manager. The command that allows you to create directories (also known as folders) is
mkdir
.The syntax for the
mkdir
command is as follows:mkdir [OPTION] [DIRECTORY]
How to Create Multiple Directories:
To create multiple directories, specify the directories’ names as the command arguments, separated by space:
The
mkdir
command in Linux is used to create new directories.The mkdir stands for ‘make directory’. With the help of mkdir command, you can create a new directory wherever you want in your system. Just type “mkdir <dir name> , in place of <dir name> type the name of new directory, you want to create and then press enter.
The
mkdir
command in Linux/Unix allows users to create or make new directories. mkdir stands for “make directory.”With
mkdir
, you can also set permissions, create multiple directories (folders) at once, and much more.