Tuesday, July 13, 2010

Installing Binary and Scripts (.bin/.sh) Files

Here are the commands that you need to install binary(.bin) or Scripts(.sh) files

For .bin files
01. Make sure that the file is set to "executable" .
      chmod +x file_name
02. Then run the file
      ./file_name

For .sh files
01. Make sure that the file is set to "executable" do the step 01 above.
02.Then run the file either with the same command use as previous installing on .bin file or like this:
     sh file_name


No comments:

Post a Comment