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-- |
2 | mkdir /home/hightechnology |
2. Relative: It does not start with /.
Example:
1 | --Directory with relative path-- |
2 | cd /home |
3 | mkdir hightechnology |