Basic Linux Commands
*) How to extract tr.gz. file To extract one or more members from an archive : tar -zxvf {file.tar.gz} For example, If your tar name is backup.tar.gz, enter the following at a shell prompt: tar -zxvf backup.tar.gz *) How to run .bin file Change the permission of the file you downloaded to be executable. Type the following command: $ chmod +x file.bin Start the installation process or run .bin file.Type the following command: ./file.bin For example if .bin file name is application.bin. Type: $ chmod +x application.bin $ ./application.bin *) How to set a BASH variable equal to the output from a command? Use $(), which I find easier to read, and allows for nesting. OUTPUT=$(ls -1) echo $OUTPUT *) How to read IP ...