• 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.

What is a bin file to linux?

I'm not sure, I am kind of new to the command line in linux. I had one one for java, found a command and it made a rpm of the file so I could install it.

Good Luck

Will
 
It's usually just a shell script that you're supposed to execute to install software. If you downloaded it from a source you can trust, set it executable & try to run it as a normal user.

In some cases, you'll have to be the root user to perform some sysadmin-related function, but again it should boil down to if you can trust the .bin file.
 
Originally posted by: manly
It's usually just a shell script that you're supposed to execute to install software. If you downloaded it from a source you can trust, set it executable & try to run it as a normal user.

In some cases, you'll have to be the root user to perform some sysadmin-related function, but again it should boil down to if you can trust the .bin file.

I've also seen it used for floppy image files, but more often that not it's some type of script.

More info would help in any case.
 
I downloaded an install file and it was limewire.bin from download.com. I have been able to use the make command to install programs from tarballs, but do not know how to use a binary.
 
Originally posted by: geekender
I downloaded an install file and it was limewire.bin from download.com. I have been able to use the make command to install programs from tarballs, but do not know how to use a binary.

It's just a script. Do "chmod +x limewire.bin" and then "./limewire.bin".
 
Back
Top