How To Make Directory In Linux?

Directories are used to store other directories or files in Linux and other operating systems. Directories can be created in different ways like File Managers, Command Line interfaces,s or applications. We can use the mkdir command in order to make a directory in Linux. The mkdir command can be used to create a single directory, … Read more

How To Rename A Directory In Linux?

How To Rename A Directory In Linux?

Directories or folders are used to store files and directories in Linux operating systems. The directory has also been named a folder. There are different ways to change a directory or folder name in Linux. Rename Directory with mv Command The mv command is the most popular command to move, rename files and directories. In … Read more

Delete/Remove File In Linux

Delete/Remove File In Linux

Files can be removed or deleted by using different commands in Linux. The removal of the file deletes related file system information from the file system table. While deleting a file there are different ways like prompt deletion, display verbose output, etc. Delete/Remove File with rm Command The rm command is a defacto command to … Read more

Recursive mkdir Command In Linux

Recursive mkdir Command In Linux

The mkdir command is used to create folders or directories in the Linux operating system. By default, one-level directories or folders can be created and child folders cannot be created with a single command. But to make things easier and faster the mkdir command provides the -p option in order to create multiple parent and … Read more

List Directories In Linux

List Directories In Linux

Directories or folders are used to store different items like files, directories, folder data, etc. While working with these items we may need to list them especially directories. There are different commands those can be used to list directories. In this tutorial, we will learn how to list directories in Linux. List Directories with ls … Read more

Linux mkdir Command Tutorial with Examples

Linux mkdir Command Tutorial with Examples

The mkdir command is used to create directories and folders in Linux operating system. The mkdir name comes from the “make directory” which can be also expressed as “make dir” where the “dir” is generally used for directory and there is a command with the same name. Also, the mkdir command can be used to … Read more