22/05/2015
1. Command: ls
The command “ls” stands for (List Directory Contents), List the contents of the folder, be it file or folder, from which it runs.
2. Command: lsblk
The “lsblk” stands for (List Block Devices), print block devices by their assigned name (but not RAM) on the standard output in a tree-like fashion.
3. Command: md5sum
The “md5sum” stands for (Compute and Check MD5 Message Digest), md5 checksum (commonly called hash) is used to match or verify integrity of files that may have changed as a result of a faulty file transfer, a disk error or non-malicious interference.
4. Command: dd
Command “dd” stands for (Convert and Copy a file), Can be used to convert and copy a file and most of the times is used to copy a iso file (or any other file) to a usb device (or any other location), thus can be used to make a ‘Bootlable‘ Usb Stick.
5. Command: uname
The “uname” command stands for (Unix Name), print detailed information about the machine name, Operating System and Kernel.
6. Command: history
The “history” command stands for History (Event) Record, it prints the history of long list of executed commands in terminal.
7. Command: sudo
The “sudo” (super user do) command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy in the sudoers list.
8. Command: mkdir
The “mkdir” (Make directory) command create a new directory with name path. However is the directory already exists, it will return an error message “cannot create folder, folder already exists”.
9. Command: touch
The “touch” command stands for (Update the access and modification times of each FILE to the current time). touch command creates the file, only if it doesn’t exist. If the file already exists it will update the timestamp and not the contents of the file.
10. Command: chmod
The Linux “chmod” command stands for (change file mode bits). chmod changes the file mode (permission) of each given file, folder, script, etc.. according to mode asked for.
There exist 3 types of permission on a file (folder or anything but to keep things simple we will be using file).
11. Command: chown
The Linux “chown” command stands for (change file owner and group). Every file belongs to a group of user and a owner. It is used Do ‘ls -l‘ into your directory and you will see something like this.
12. Command: apt
The Debian based “apt” command stands for (Advanced Package Tool). Apt is an advanced package manager for Debian based system (Ubuntu, Kubuntu, etc.), that automatically and intelligently search, install, update and resolves dependency of packages on Gnu/Linux system from command line.
13. Command: tar
The “tar” command is a Tape Archive is useful in creation of archive, in a number of file format and their extraction.
14. Command: cal
The “cal” (Calendar), it is used to displays calendar of the present month or any other month of any year that is advancing or passed.
15. Command: date
The “date” (Date) command print the current date and time on the standard output, and can further be set.
16. Command: cat
The “cat” stands for (Concatenation). Concatenate (join) two or more plain file and/or print contents of a file on standard output.
17. Command: cp
The “copy” stands for (Copy), it copies a file from one location to another location.
18. Command: mv
The “mv” command moves a file from one location to another location.
19. Command: pwd
The command “pwd” (print working directory), prints the current working directory with full path name from terminal.
20. Command: cd
Finally, the frequently used “cd” command stands for (change directory), it change the working directory to execute, copy, move write, read, etc. from terminal itself.