How Linux commands work ? Installation of any operating system consumes some space on the hard disk and obviously, this space is taken by some internal folders and files, this file and folders have all the information about existing software and even ready to adapt information of other folder's that user will install. Every time a programmer type commands behind the system CPU will process or execute the file where the code of that particular command is written. Basic commands firefox cd ls pwd mkdir vi, vim, gedit df -l ps -aux #firefox This command will help to launch the Firefox browser using the command line interface and it can be easily terminated by using the ctrl + c shortcut. If you use the ctrl + c shortcut the Firefox browser will close or terminate. #cd (change directory) This command will use for switching to another directory it is the same as opening another folder in windows, mac, or any other operating system. #ls 'ls' command will list all the f...