• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick Linux Question

Glitchny

Diamond Member
Hey guys just a quick question. What is the command to execute a .bin file?

oh and another question, what is a good text only browser for linux that i can download. thatnx guys
 
at the command prompt, type
sh xxx.bin . (you might not be able to execute the file , then change permissions?)


Lynx
or
Links

are excellent text-based browsers
 
sh will only execute it if it's a bourne shell script. To execute *any* file, you make it executable (chmod +x file) and type the path to the file to run it.
 
originally posted bt: BingBongWongFooey
sh will only execute it if it's a bourne shell script. To execute *any* file, you make it executable (chmod +x file) and type the path to the file to run it.

I wish I had mentioned that earlier. 🙂
 
Back
Top