How to move files/folders from one location to other in linux?
Moving files/folders from one location to other location in linux systems is similar to windows systems but using mv(move) command, ...
Read more
What is Soft and Hard links in linux?
Soft links and Hard links are used to access the file from other path apart from the original location of ...
Read more
How to delete/remove a file/folder in linux?
The command rm is used to delete/remove a file from the filesystem. To delete a folder/directory from the filesystem, use ...
Read more
How to copy files from one directory/folder to other in linux?
The command cp is used to copy the files/folders from one place to other. Using multiple options, you can copy ...
Read more
How to create a user account in linux?
One can login into the system if the user account has been created. Else, while login the user will get ...
Read more
How to create a new group in linux?
Managing user’s access to files and folders are made easy by adding the users into required groups and giving required ...
Read more
How to create a new file in linux?
To create a new file in Linux, you can use several text editors or command-line utilities. I’ll provide you with ...
Read more
What is vim editor in linux and how to use it?
Vim editor is an improved version of vi file editor in linux. With vim editor, one can easily navigate between ...
Read more
What is tar command in linux and how to use it in linux?
tar command is used to combine group multiple files and directories into single archive file. It is also refered as ...
Read more
24 types of examples for find command in linux
The command “find” in linux helps to find the files or folders/directories within a filesystem or across the filesystem based ...
Read more