Create Directory on Linux Fedora using mkdir command
Create Directory on Linux Fedora using mkdir command.
The command example below show how to create directory on Linux Fedora system, the mkdir command can be use on other Linux operating system to create directory. The step by step example below start with create directory using "learn-create-directory" as an directory name in our example. The command example below create new directory on your current working directory, and then using the ls command to verify that you create the directory on your system.
Step by step example on create directory.
1. Log in on your Linux system and open shell terminal.
2. Use pwd command to lfind out your current working directory.
[linux@fedora11 ~]$ pwd
/home/fedora11
[linux@fedora11 ~]$
2. Execute ls command to see list of file and directory on your current working directory.
[linux@fedora11 ~]$ ls
Desktop Download Pictures Templates
Documents Music Public Videos
[linux@fedora11 ~]$
3. Execute mkdir command to create directory on your current working directory.
[linux@fedora11 ~]$ mkdir learn-create-directory
[linux@fedora11 ~]$
4. Execute ls command again to verify that you already create directory with "learn-create-directory" as directory name on the system, as show on example below.
[linux@fedora11 ~]$ ls
Desktop learn-create-directory Public
Documents Music Templates
Download Pictures Videos
[linux@fedora11 ~]$
Keywords: create directory, create directory on linux, create directory on linux fedora, create directory on fedora, create directory command
- 2630 reads
Comments
temesgan (not verified)
Thu, 10/13/2011 - 20:22
Permalink
hii!
Ecellet learn it is continue.