To run .bin files you only need to write "./" followed by the file name while you are in the directory containing that file. Those files needs to marked as executable , so you will need to change its permissions.
Switch To root first ("su" command, then write the password) then apply the following:
Code:
filePath:# chmod a+x name_of_file.bin
Then run it by writing:
Code:
filePath:# ./name_of_file.bin
No comments:
Post a Comment