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:

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

2. Relative: It does not start with /.

Example:

1--Directory with relative path--
2cd /home
3mkdir hightechnology

Comments are closed.