Commands On LINUX
******************** Commands On LINUX ************************* 1) vi - 'vi ' is the editor of LINUX Command Prompt. vi Filename.c 2) gedit - 'gedit' is also the editor of LINUX or Ubuntu Command Prompt. gedit Filename.c in this command gedit editor open in new window but our terminal is busy for all over process we will terminate it. To solve this problem using following command, gedit Filename.c & 3) cp - 'cp' command is use to copy one file to another file. cp SourceFileName.c DestinationFileName.c 4) rm - 'rm' command is use to remove file. rm FileName.c 5) mv - 'mv' command is use to move one file to another file. mv SourceFileN...