Categories
Linux

How to Create Directory in Linux

How to Create Directory in Linux

In this tutorial i will explain How to Create Directory in Linux. In Linux Directory paths are of two types. In this tutorial i will explain creating directory by both ways.

1. Absolute: It start with /.

Example:

--Directory with absolute path--
mkdir /home/hightechnology

2. Relative: It does not start with /.

Example:

--Directory with relative path--
cd /home
mkdir hightechnology

Comments are closed.