Possible Duplicate:
How can I install a .bin file?
I have a .bin file called file.bin and I am new to ubuntu and I am trying to figure out how to install it.
What is the proper command to run via Terminal?
I have tried:
./file.bin - reports error "Directory does not exist"
and
sudo ./file.bin - nothing happens at all with this command.
How do I execute this binary?
./file.binis the correct way to install it, but a file whose name ends in.bincould be anything. – Keith Thompson Aug 29 '11 at 23:01#!line at the top offile.bin. But from the looks of your screen snapshot, I suspect you should be runninginstall.sh, notfile.bin(install.shprobably takes care of invokingfile.binin the appropriate manner). What did the installation instructions tell you? – Keith Thompson Aug 29 '11 at 23:37